/* ==========================================================
   EMAIL VERIFIED — VELVET AMBER THEME
========================================================== */

:root {
  --bg: #020617;
  --paper: #0b1022;
  --ink: #f8fafc;
  --muted: #94a3b8;
  --line: #1e293b;

  --gold: #f2c94c;
  --gold-soft: rgba(242,201,76,0.18);
  --gold-grad: linear-gradient(
    90deg,
    #f2c94c 0%,
    #ffe9a8 45%,
    #f2c94c 100%
  );

  --radius: 18px;
  --shadow: 0 30px 80px rgba(0,0,0,0.55);
}

/* PAGE WRAP */
.verification-page {
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(
    circle at top,
    #0b1022,
    var(--bg) 70%
  );
  padding: 60px 4%;
}

/* CARD */
.verification-card {
  width: 100%;
  max-width: 640px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.02)
  );
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 48px 46px 44px;
  text-align: center;
}

/* ICON */
.verification-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--gold-soft);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 36px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* HEADINGS */
.verification-card h1 {
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 12px;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* TEXT */
.verification-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 18px;
}

.verification-card p.lead {
  font-size: 1.05rem;
  color: var(--ink);
}

/* STEPS */
.verification-steps {
  margin: 24px 0 28px;
  text-align: left;
}

.verification-steps ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.verification-steps li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.verification-steps li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 700;
}

/* NOTICE */
.verification-card .notice {
  font-size: 0.85rem;
  color: #9ca3af;
}

/* ACTIONS */
.verification-actions {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.verification-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 46px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

/* PRIMARY */
.verification-actions .btn-primary {
  background: var(--gold-grad);
  color: #020617;
}

.verification-actions .btn-primary:hover {
  filter: brightness(1.05);
}

/* SECONDARY */
.verification-actions .btn-secondary {
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
}

.verification-actions .btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}
