:root {
  --bg: #05050a;
  --text: #f0f6ff;
  --muted: #9aa0ae;
  --brand: #00ff88;
  --brand2: #00d175;
  --accent-red: #ff4757;
  --bg-card: #0e0e14;
  --border: #1a1a27;
  --brand-glow: rgba(0, 255, 136, 0.25);
}

* { box-sizing: border-box; }
html, body { margin: 0; height: 100%; }

body {
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
  line-height: 1.47059;
  font-weight: 400;
  letter-spacing: -0.022em;
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at 10% 80%, rgba(0, 255, 136, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 90% 20%, rgba(0, 255, 136, 0.05) 0%, transparent 45%),
    linear-gradient(to top, rgba(0, 0, 0, 0.1), transparent);
  position: relative;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

.orb1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.4), transparent);
  top: -100px;
  left: -100px;
  animation: float1 20s ease-in-out infinite;
}

.orb2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 213, 117, 0.3), transparent);
  bottom: -50px;
  right: -50px;
  animation: float2 15s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, 50px) scale(1.1); }
}

@keyframes float2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, -40px) scale(1.15); }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.container {
  max-width: 480px;
  margin: 0 auto;
  padding: 60px 20px 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.section {
  opacity: 1;
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.section.fade-out {
  opacity: 0;
  transform: translateY(-20px);
}

.section.hidden {
  display: none;
}

.section.fade-in {
  animation: fadeIn 0.5s ease-out forwards;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 auto 20px;
}

.logo-container {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  box-shadow: 0 10px 40px rgba(0, 255, 136, 0.4);
}

.logo {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 20px;
}

.main-title {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.1;
  margin: 30px 0 20px;
  background: linear-gradient(90deg, var(--text), var(--brand));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.question-subtitle {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 40px;
  line-height: 1.5;
}

.age-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 400px;
  margin: 0 auto;
}

.age-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 18px 24px;
  color: var(--text);
  text-align: center;
  cursor: pointer;
  background: #1a1d29;
  border: 2px solid #2a2d39;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.age-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 255, 136, 0.2);
}

.age-btn:active {
  transform: translateY(-1px);
}

.age-btn.primary {
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 8px 30px rgba(0, 255, 136, 0.4);
}

.age-btn.primary:hover {
  background: #00ff88;
  box-shadow: 0 12px 40px rgba(0, 255, 136, 0.5);
}

.age-btn-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}

.age-btn.primary .age-btn-title {
  color: #000;
}

.age-btn-subtitle {
  font-size: 12px;
  color: #787c89;
  font-weight: 500;
  line-height: 1.4;
  opacity: 0.8;
}

.age-btn.primary .age-btn-subtitle {
  color: #004d2e;
  opacity: 0.7;
}

.youre-in-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 auto 20px;
}

.check-circle {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 20px;
}

.youre-in-text {
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}

.text-neon {
  color: var(--brand);
  text-shadow: 0 0 24px rgba(0, 255, 136, 0.22);
}

.subtitle {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
}

.card {
  margin-top: 30px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02) 0%, transparent 100%),
    var(--bg-card);
  border: 1px solid var(--border);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255,255,255,0.03);
  overflow: hidden;
  text-align: left;
}

.section-title {
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--muted);
  padding: 18px 18px 10px;
}

.li {
  display: flex;
  gap: 16px;
  padding: 18px 18px;
  align-items: flex-start;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.check {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(0, 255, 136, 0.12);
  border: 1px solid rgba(0, 255, 136, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-weight: 800;
  flex: 0 0 auto;
  margin-top: 2px;
}

.muted-text {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  margin-top: 4px;
}

.cta {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  color: #04110a;
  border: none;
  text-decoration: none;
  border-radius: 18px;
  padding: 18px 20px;
  margin-top: 30px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow:
    0 18px 40px rgba(0, 255, 136, 0.22),
    0 0 0 1px rgba(255,255,255,0.04) inset;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    filter 0.18s ease;
}

.cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.02);
  box-shadow:
    0 22px 50px rgba(0, 255, 136, 0.28),
    0 0 0 1px rgba(255,255,255,0.05) inset;
}

.cta.redirecting {
  opacity: 0.8;
  pointer-events: none;
  transform: scale(0.99);
}

.cta-icon {
  width: 22px;
  height: 22px;
}

.foot {
  font-size: 12px;
  color: var(--muted);
  margin-top: 22px;
}

.activation-notice {
  margin-top: 20px;
  border-radius: 18px;
  padding: 16px 16px;
  background:
    linear-gradient(180deg, rgba(255,71,87,0.06), rgba(255,71,87,0.02)),
    #120b0d;
  border: 1px solid rgba(255, 71, 87, 0.18);
  text-align: left;
}

.activation-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.lock-icon {
  font-size: 18px;
  line-height: 1;
}

.activation-title {
  font-weight: 800;
  font-size: 14px;
  color: var(--text);
}

.activation-text {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.highlight-green {
  color: var(--brand);
  font-weight: 800;
}

.trustpilot-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 8px;
  pointer-events: none;
  user-select: none;
}

.tp-logo {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.3px;
}

.tp-stars {
  display: flex;
  gap: 2px;
}

.tp-star {
  width: 18px;
  height: 18px;
  background: #00b67a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tp-star svg {
  width: 12px;
  height: 12px;
  fill: #fff;
}

.tp-info {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
}

.tp-score {
  font-weight: 700;
  color: var(--text);
}

.payout-badge {
  background: linear-gradient(135deg, #0a1a0f 0%, #0f1419 100%);
  border: 1px solid var(--brand);
  border-radius: 12px;
  padding: 12px 16px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.15);
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.4;
}

.debug-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #1a1a2e;
  border-bottom: 2px solid #00ff88;
  padding: 12px 16px;
  z-index: 9999;
  font-family: monospace;
  font-size: 12px;
}

.debug-banner-inner {
  max-width: 500px;
  margin: 0 auto;
}

.debug-title {
  color: #00ff88;
  font-weight: bold;
  margin-bottom: 6px;
}

.debug-line {
  color: #fff;
}

.debug-url {
  color: #aaa;
  font-size: 11px;
  margin-top: 4px;
  word-break: break-all;
}

@media (max-width: 520px) {
  .container { padding: 44px 16px 32px; }
  .main-title { font-size: 44px; }
  .youre-in-text { font-size: 40px; }
  .logo-container, .logo { width: 62px; height: 62px; }
}
