/* =========================
   BASE RESET (GLOBAL)
========================= */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100svh;
  background: radial-gradient(circle at top, #121212, #050505);
  font-family: "Segoe UI", system-ui, sans-serif;
  color: #ffffff;
}

/* =========================
   LAYOUT (GLOBAL)
========================= */
.container {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* =========================
   MAIN CARD (VERIFY DEFAULT)
========================= */
.card {
  background: rgba(20, 20, 20, 0.95);
  padding: 28px;
  border-radius: 14px;
  width: 92%;
  max-width: 360px;
  text-align: center;
  box-shadow:
    0 0 40px rgba(0, 0, 0, 0.8),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  animation: fadeIn 0.6s ease;
}

/* =================================================
   REMOVE BLOCK LOOK ON HOME PAGE
================================================= */
.card:has(#home) {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}

/* =========================
   VERIFY PAGE TYPOGRAPHY
========================= */
h1 {
  margin: 0;
  font-size: 22px;
}

.subtitle {
  font-size: 14px;
  color: #b5b5b5;
  margin: 10px 0 20px;
}

.status {
  margin-top: 15px;
  font-size: 13px;
  color: #9ad3ff;
  min-height: 18px;
  line-height: 1.5;
}

/* =========================
   TURNSTILE VISIBILITY FIX ✅
========================= */
#turnstile-box {
  margin: 18px auto;
  opacity: 1 !important;
  pointer-events: auto !important;
}

/* =================================================
   HOME PAGE – PREMIUM UI
================================================= */
#home {
  width: 100%;
}

/* ---------- HERO ---------- */
#home .hero {
  text-align: center;
  padding: 40px 20px 20px;
}

#home .badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  color: #7dd3fc;
  font-size: 13px;
  margin-bottom: 18px;
}

#home h1 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}

#home h1 span {
  background: linear-gradient(90deg, #22d3ee, #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#home .powered {
  margin-top: 14px;
  font-size: 13px;
  color: #94a3b8;
}

#home .powered strong {
  color: #22d3ee;
}

/* ---------- BUTTONS ---------- */
#home .buttons {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#home .btn {
  padding: 14px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
}

#home .btn.primary {
  background: linear-gradient(90deg, #22d3ee, #38bdf8);
  color: #020617;
}

#home .btn.secondary {
  background: rgba(255,255,255,0.05);
  color: #e5e7eb;
  border: 1px solid rgba(255,255,255,0.08);
}

/* =========================
   WARRANTY / RENEWAL (ADJUSTED ✅)
========================= */
#home .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 28px 16px 0;
}

#home .grid .card {
  background: rgba(255,255,255,0.035);
  border-radius: 16px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  animation: none;
}

#home .icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  background: rgba(255,255,255,0.06);
  font-size: 18px;
}

#home .grid h3 {
  margin-bottom: 6px;
  font-size: 14px;
}

#home .grid p {
  font-size: 12px;
  color: #9ca3af;
  line-height: 1.5;
}

/* =========================
   FOOTER
========================= */
footer {
  margin-top: 32px;
  padding-bottom: 12px;
  font-size: 11px;
  color: #777;
  text-align: center;
}

footer a {
  color: #9ad3ff;
  text-decoration: none;
}

/* =========================
   ANIMATION
========================= */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
