/* =============================================
   /verify — открытые данные о домене
   Подключается только на verify.php и en/verify.php,
   поэтому не тащим эти правила в общий style-new.css.
   ============================================= */

.verify-hero {
  display: grid;
  grid-template-columns: minmax(0, 380px) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
  max-width: 940px;
  margin: 2.5rem auto 0;
}

.verify-cert img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
}

.verify-cert-dl {
  display: inline-block;
  margin-top: 0.9rem;
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 600;
}
.verify-cert-dl:hover {
  color: #ffd700;
}

.verify-age {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #f5c842, #ffd700 50%, #daa520);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}
.verify-age span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  -webkit-text-fill-color: #e6c766;
  color: #e6c766;
}

.verify-hero-text p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}
.verify-hero-text strong {
  color: var(--text-primary);
}

/* --- Таблица WHOIS --- */
.verify-whois {
  max-width: 720px;
  margin: 2rem auto 0;
  background: var(--bg-card);
  border: 1px solid rgba(255, 193, 7, 0.22);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
}

.verify-table {
  margin: 0;
}
.verify-table > div {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border-color);
}
.verify-table > div:last-child {
  border-bottom: none;
}
.verify-table dt {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
}
.verify-table dd {
  margin: 0;
  color: var(--text-primary);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.85rem;
  word-break: break-word;
}
.verify-table dd.hl {
  color: #ffd700;
  font-weight: 700;
}

.verify-source {
  margin: 1.1rem 0 0;
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.5;
}
.verify-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 0.4rem;
  border-radius: 50%;
  background: #21c96a;
  box-shadow: 0 0 0 3px rgba(33, 201, 106, 0.18);
  vertical-align: middle;
}
/* Реестр не ответил — точка не должна врать, что данные свежие */
.verify-dot.stale {
  background: #e0a33e;
  box-shadow: 0 0 0 3px rgba(224, 163, 62, 0.18);
}

/* --- Независимые проверки --- */
.verify-h3 {
  margin: 2.6rem 0 0.4rem;
  text-align: center;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
}
.verify-lead {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
}
.verify-lead code {
  color: #ffd700;
  background: rgba(255, 215, 0, 0.08);
  padding: 0.05rem 0.35rem;
  border-radius: 4px;
}

.verify-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}
.verify-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.05rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 999px;
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all var(--transition);
}
.verify-links a:hover {
  color: #ffd700;
  border-color: rgba(255, 193, 7, 0.45);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}
.verify-links i {
  color: #e6c766;
}

/* --- След в других реестрах --- */
.verify-trace {
  max-width: 760px;
  margin: 2.2rem auto 0;
  padding: 1.3rem 1.6rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
}
.verify-trace h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
}
.verify-trace ul {
  margin: 0;
  padding-left: 1.1rem;
}
.verify-trace li {
  color: var(--text-muted);
  font-size: 0.87rem;
  line-height: 1.6;
  margin-bottom: 0.8rem;
}
.verify-trace li:last-child {
  margin-bottom: 0;
}
.verify-trace strong {
  color: var(--text-secondary);
}

/* --- Годы в веб-архиве --- */
.verify-years {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.9rem;
  max-width: 900px;
  margin: 2rem auto 0;
}
.verify-year {
  display: block;
  padding: 1rem 1.1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.verify-year:hover {
  border-color: rgba(255, 193, 7, 0.45);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
}
.verify-year-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffd700;
  line-height: 1.1;
}
.verify-year-date {
  display: block;
  color: var(--text-muted);
  font-size: 0.78rem;
}
.verify-year-go {
  display: block;
  margin-top: 0.45rem;
  color: var(--text-secondary);
  font-size: 0.75rem;
  font-weight: 600;
}
.verify-year:hover .verify-year-go {
  color: #ffd700;
}

.verify-note {
  max-width: 900px;
  margin: 1.4rem auto 0;
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

.verify-honest {
  max-width: 760px;
  margin: 2.6rem auto 0;
  padding: 1.5rem 1.7rem;
  background: var(--bg-card);
  border-left: 3px solid #ffd700;
  border-radius: var(--radius-sm);
}
.verify-honest h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 0.7rem;
}
.verify-honest p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin-bottom: 0.7rem;
}
.verify-honest p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .verify-hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.6rem;
    margin-top: 1.8rem;
  }
  .verify-cert {
    max-width: 380px;
    margin: 0 auto;
    text-align: center;
  }
  .verify-age {
    font-size: 2.6rem;
    text-align: center;
  }
  .verify-age span {
    text-align: center;
  }
  .verify-whois {
    padding: 1.1rem 1.1rem;
  }
  .verify-table > div {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.2rem;
  }
  .verify-links a {
    flex: 1 1 auto;
    justify-content: center;
  }
  .verify-years {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  }
  .verify-honest {
    padding: 1.2rem 1.2rem;
  }
}
