@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Space+Grotesk:wght@600;700&display=swap');

* {
  box-sizing: border-box;
}

:root {
  --bg: #07070A;
  --bg-secondary: #0B0B10;
  --card: rgba(14, 15, 22, 0.92);
  --card-opacity: 0.92;
  --card-blur: 24px;
  --border: rgba(255, 252, 0, 0.22);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --secondary: #12141F;
  --foreground: #FFFFFF;
  --muted: #A1A1AA;
  --primary: #FFFC00;
  --primary-glow: rgba(255, 252, 0, 0.25);
  --primary-fg: #000000;
  --destructive: #EF4444;
  --glow-color: rgba(255, 252, 0, 0.25);
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--foreground);
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Background Container & Ambient Backdrop */
.bg-media-container {
  position: fixed;
  inset: 0;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background-color: var(--bg);
}

.bg-media-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 25%, rgba(255, 252, 0, 0.06) 0%, rgba(7, 7, 10, 0.96) 80%);
  opacity: 0.98;
}

.hidden {
  display: none !important;
}

#ineligible-view:not(.hidden) {
  display: block !important;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  overflow: hidden;
  z-index: 1;
}

.glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(120px);
  display: block;
  opacity: 0.45;
  animation: floatGlow 14s ease-in-out infinite alternate;
}

@keyframes floatGlow {
  0% { transform: translate(-50%, 0) scale(1); }
  50% { transform: translate(-45%, -20px) scale(1.08); }
  100% { transform: translate(-55%, 15px) scale(0.94); }
}

.glow-top {
  top: -140px;
  left: 50%;
  transform: translateX(-50%);
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(255, 252, 0, 0.22) 0%, rgba(255, 252, 0, 0.05) 50%, rgba(0, 0, 0, 0) 70%);
}

.glow-bottom {
  bottom: -140px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 252, 0, 0.15) 0%, rgba(255, 252, 0, 0) 70%);
  filter: blur(100px);
}

.page-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 32rem;
  margin: 0 auto;
}

.card {
  background: linear-gradient(165deg, rgba(16, 18, 27, 0.94) 0%, rgba(10, 11, 16, 0.97) 100%);
  backdrop-filter: blur(var(--card-blur, 24px));
  -webkit-backdrop-filter: blur(var(--card-blur, 24px));
  border: 1px solid rgba(255, 252, 0, 0.22);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  box-shadow: 0 24px 60px -15px rgba(0, 0, 0, 0.9), 0 0 35px var(--glow-color, rgba(255, 252, 0, 0.15)), inset 0 1px 1px rgba(255, 252, 0, 0.15);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 252, 0, 0.8), transparent);
  pointer-events: none;
}

.card-flow {
  padding: 2rem 1.75rem;
}

.card-panel {
  padding: 2.25rem 1.75rem;
}

.card-form {
  max-width: 32rem;
  margin: 0 auto;
}

.card-center {
  padding: 2.5rem 1.75rem;
  text-align: center;
  width: 100%;
  max-width: 30rem;
  margin: 0 auto;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
  text-align: center;
}

.brand-logo-wrap {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 1.35rem;
  overflow: hidden;
  margin-bottom: 0.85rem;
  box-shadow: 0 0 30px rgba(255, 252, 0, 0.3), 0 12px 24px -4px rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(255, 252, 0, 0.5);
  animation: logoFloat 4s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-5px) rotate(0.8deg); }
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand-name {
  font-family: 'Outfit', 'Space Grotesk', -apple-system, sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.035em;
  margin: 0;
  line-height: 1.15;
  text-align: center;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFFDE6 45%, #FFFC00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 24px rgba(255, 252, 0, 0.35));
}

.brand-name .plus,
.text-primary {
  color: var(--primary, #FFFC00);
  -webkit-text-fill-color: var(--primary, #FFFC00);
}


/* IP Warning & Geo Block Card */
.ip-warning-card {
  background: linear-gradient(145deg, rgba(239, 68, 68, 0.12) 0%, rgba(185, 28, 28, 0.05) 100%);
  border: 1px solid rgba(239, 68, 68, 0.35);
  border-radius: 1.25rem;
  padding: 1.75rem 1.25rem;
  margin: 1rem 0;
  text-align: center;
  box-shadow: 0 15px 35px rgba(239, 68, 68, 0.15), 0 0 25px rgba(239, 68, 68, 0.08);
  animation: fadeInBlock 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeInBlock {
  from { opacity: 0; transform: translateY(8px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.ip-lock-badge {
  width: 3.75rem;
  height: 3.75rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.14);
  border: 1.5px solid rgba(239, 68, 68, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(239, 68, 68, 0.25);
}

.ip-lock-icon {
  width: 1.85rem;
  height: 1.85rem;
  color: #ef4444;
}

.ip-warning-title {
  color: #f87171;
  font-weight: 800;
  font-size: 1.3rem;
  font-family: 'Space Grotesk', Inter, sans-serif;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.ip-warning-desc {
  margin: 0 0 1.25rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  text-align: center;
}

.ip-warning-desc strong {
  color: #ffffff;
}

.allowed-countries-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.geo-pill {
  padding: 0.4rem 0.9rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #ffffff;
}

.ip-info-box {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  font-size: 0.8125rem;
  margin-bottom: 1.25rem;
}

.ip-label {
  color: rgba(255, 255, 255, 0.65);
}

.ip-badge {
  background: #ef4444;
  color: #ffffff;
  font-weight: 800;
  font-family: 'Space Grotesk', monospace;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  letter-spacing: 0.03em;
}

.recheck-ip-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #ffffff;
  font-family: inherit;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.recheck-ip-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-1px);
}

/* Sub-title tagline */
.brand-sub {
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  margin: 0.5rem 0 0;
  line-height: 1.45;
}

.live-activity-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding: 0.35rem 0.85rem;
  background: rgba(255, 252, 0, 0.08);
  border: 1px solid rgba(255, 252, 0, 0.25);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--primary, #FFFC00);
  box-shadow: 0 0 15px rgba(255, 252, 0, 0.12);
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
  animation: livePulse 1.5s infinite;
}

@keyframes livePulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}


/* Country Selector */
.country-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}

.country-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  color: rgba(255, 255, 255, 0.65);
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.country-btn .country-code {
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
}

.country-btn:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.country-btn.selected {
  border: 2px solid var(--primary, #FFFC00);
  background: linear-gradient(135deg, rgba(255, 252, 0, 0.14) 0%, rgba(255, 215, 0, 0.06) 100%);
  color: #ffffff;
  box-shadow: 0 0 20px rgba(255, 252, 0, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.2);
}


/* Country Notice Box */
.country-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: linear-gradient(135deg, rgba(255, 252, 0, 0.08) 0%, rgba(255, 252, 0, 0.03) 100%);
  border: 1px solid rgba(255, 252, 0, 0.25);
  border-radius: 1rem;
  padding: 0.85rem 1rem;
  margin-bottom: 1.25rem;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.notice-icon {
  font-size: 1.15rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.notice-text {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.45;
  font-weight: 500;
}

.notice-text strong {
  color: #FFFC00;
  font-weight: 800;
}

.operators.grid-fr {
  grid-template-columns: repeat(3, 1fr);
}

.operators.grid-be {
  grid-template-columns: repeat(2, 1fr);
}


.proof-track {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 2.85rem;
  margin-bottom: 1.25rem;
  position: relative;
}

.proof-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0.35rem;
  width: 100%;
  min-height: 2.85rem;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 252, 0, 0.1) 0%, rgba(255, 215, 0, 0.04) 100%);
  border: 1px solid rgba(255, 252, 0, 0.25);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #FFFC00;
  text-align: center;
  line-height: 1.35;
  white-space: nowrap;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), filter 0.35s ease;
  box-shadow: 0 0 18px rgba(255, 252, 0, 0.15);
}

.proof-slide.is-out {
  opacity: 0;
  transform: translateY(-8px);
  filter: blur(4px);
}

.proof-name {
  color: #ffffff;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.2s ease;
}

.pill:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 252, 0, 0.3);
}

.pill svg {
  width: 0.875rem;
  height: 0.875rem;
  color: var(--primary);
  flex-shrink: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  margin: 1.1rem 0;
}

.feature-card-item {
  padding: 0.75rem 0.85rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  transition: all 0.25s ease;
}

.feature-card-item:hover {
  background: rgba(255, 252, 0, 0.05);
  border-color: rgba(255, 252, 0, 0.25);
  transform: translateY(-2px);
}

.feature-item-icon {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.feature-item-title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 0.15rem;
}

.feature-item-desc {
  font-size: 0.72rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.35;
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.form-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.field-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  text-align: left;
}

.input-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  height: 54px;
  padding: 0 1rem;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: text;
}

.input-wrap:focus-within {
  border-color: var(--primary, #FFFC00);
  background: rgba(255, 252, 0, 0.04);
  box-shadow: 0 0 0 3px rgba(255, 252, 0, 0.15), 0 0 16px rgba(255, 252, 0, 0.15);
}

.input-icon-svg {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--muted);
  flex-shrink: 0;
  pointer-events: none;
  user-select: none;
}

.user-at,
.flag,
.dial,
.divider {
  pointer-events: none;
  user-select: none;
}

.user-wrap {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  padding-left: 1rem;
}

.user-at {
  color: var(--primary, #FFFC00);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1;
  flex-shrink: 0;
}

.input-wrap input {
  flex: 1;
  min-width: 0;
  height: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: var(--foreground);
  font-size: 1rem;
  font-family: inherit;
  font-weight: 500;
}

.input-wrap input::placeholder {
  color: rgba(161, 161, 170, 0.6);
}

.flag {
  font-size: 1.15rem;
  line-height: 1;
  flex-shrink: 0;
}

.dial {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  font-weight: 600;
  flex-shrink: 0;
}

.divider {
  width: 1px;
  height: 1.25rem;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}


.help {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  text-align: left;
}

.field-error {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--destructive);
  margin: 0;
  text-align: left;
}

.operators {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.op-btn {
  height: 52px;
  padding: 0 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: #e5e7eb;
  font-size: 0.9375rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.op-btn:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transform: translateY(-1px);
}

.op-btn.selected {
  border: 2px solid var(--primary, #FFFC00) !important;
  background: linear-gradient(135deg, rgba(255, 252, 0, 0.16) 0%, rgba(255, 215, 0, 0.06) 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 0 20px rgba(255, 252, 0, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.2) !important;
}


.cta {
  position: relative;
  width: 100%;
  height: 56px;
  margin-top: 0.75rem;
  padding: 0 1.5rem;
  background: linear-gradient(135deg, #FFFC00 0%, #FFD700 50%, #FFB700 100%);
  color: #000000;
  border: none;
  border-radius: 14px;
  font-size: 1.0625rem;
  font-weight: 900;
  font-family: inherit;
  letter-spacing: 0.02em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  box-shadow: 0 12px 32px -5px rgba(255, 252, 0, 0.4), 0 0 20px rgba(255, 252, 0, 0.25);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

.cta svg {
  stroke: #000000;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -100%;
  width: 60%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: rotate(25deg);
  animation: ctaShimmer 3.5s infinite ease-in-out;
  pointer-events: none;
}

@keyframes ctaShimmer {
  0% { left: -100%; }
  25%, 100% { left: 200%; }
}

.cta:hover:not(:disabled) {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 16px 36px -5px rgba(255, 252, 0, 0.55), 0 0 35px rgba(255, 252, 0, 0.4);
  background: linear-gradient(135deg, #ffff33 0%, #fffc00 50%, #ffd700 100%);
}

.cta:active:not(:disabled) {
  transform: translateY(0) scale(0.99);
}

.cta:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
  background: #27272a;
  color: #71717a;
}


.disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.35;
  margin: 0.75rem 0 0;
}

.form-error {
  margin-bottom: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid hsl(0 84% 60% / 0.45);
  background: hsl(0 84% 60% / 0.1);
  color: #fca5a5;
  font-size: 0.75rem;
  font-weight: 500;
}

.foot-outside {
  margin-top: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.foot-btn {
  border: none;
  background: transparent;
  color: hsl(0 0% 60% / 0.6);
  font: inherit;
  font-size: 0.75rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  margin: 0 auto;
  padding: 0.25rem;
}

.foot-btn:hover {
  color: var(--muted);
}

.secure-outside {
  text-align: center;
  font-size: 0.75rem;
  color: hsl(0 0% 60% / 0.4);
  margin: 1.5rem 0 0;
}

.panel-back {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  border: none;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.75rem;
  cursor: pointer;
  padding: 0;
  margin-bottom: 1.25rem;
}

.panel-back:hover {
  color: var(--foreground);
}

.panel-title {
  font-family: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 1.25rem;
  text-align: center;
}

.panel-sub {
  font-size: 0.875rem;
  color: var(--muted);
  text-align: center;
  margin: -0.75rem 0 1.25rem;
  line-height: 1.45;
}

.panel-foot {
  text-align: center;
  font-size: 0.75rem;
  color: hsl(0 0% 60% / 0.5);
  margin: 1.5rem 0 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
  background: hsl(0 0% 12% / 0.2);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  border: none;
  background: transparent;
  color: var(--foreground);
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 0.2s;
}

.faq-q.is-open .faq-chevron {
  transform: rotate(180deg);
}

.faq-a {
  padding: 0 1rem 0.875rem;
}

.faq-a p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.5;
}

.track-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.track-form input {
  width: 100%;
  padding: 0.875rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--foreground);
  font: inherit;
  font-size: 1rem;
  outline: none;
}

.track-form input:focus {
  border-color: rgba(255, 42, 95, 0.6);
  box-shadow: 0 0 0 2px rgba(255, 42, 95, 0.25);
}

.track-result {
  padding: 1rem;
  border-radius: 0.75rem;
  background: rgba(255, 42, 95, 0.1);
  border: 1px solid rgba(255, 42, 95, 0.3);
  text-align: center;
}

.track-status-label {
  margin: 0;
  font-size: 0.75rem;
  color: var(--muted);
}

.track-status-value {
  margin: 0.25rem 0 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary, #ff2a5f);
}

/* loading / queue / code / success screens */
.screen-title {
  font-family: 'Outfit', 'Space Grotesk', -apple-system, sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
  text-align: center;
  color: #FFFFFF;
}

.screen-sub {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0 0 0.35rem;
  text-align: center;
}

.screen-sub strong {
  color: var(--foreground);
  font-weight: 600;
}

.screen-sub-loading {
  margin-bottom: 1.5rem;
}

.screen-sub-loading strong,
#phone-mask {
  color: var(--foreground);
  font-weight: 600;
  white-space: nowrap;
}

.loading-visual {
  margin: 0 auto 1.25rem;
}

.loading-card .brand {
  margin-bottom: 1.25rem;
}

.phone-icon-box {
  position: relative;
  width: 5.25rem;
  height: 5.25rem;
  margin: 0 auto;
  background: rgba(255, 252, 0, 0.06);
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 252, 0, 0.3);
  box-shadow: 0 0 25px rgba(255, 252, 0, 0.15);
}

.phone-icon-box svg {
  width: 2.35rem;
  height: 2.35rem;
  color: #FFFC00;
}

.spin-badge {
  position: absolute;
  right: -0.4rem;
  bottom: -0.4rem;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
  background: var(--card);
  box-shadow: 0 0 0 3px var(--card);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-top-color: var(--primary, #FFFC00);
  animation: spin 1.2s linear infinite;
}

.spinner-box {
  width: 5.25rem;
  height: 5.25rem;
  margin: 0 auto 1.5rem;
  background: rgba(255, 252, 0, 0.05);
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 252, 0, 0.3);
  box-shadow: 0 0 25px rgba(255, 252, 0, 0.12);
}

.spinner-ring {
  width: 2.5rem;
  height: 2.5rem;
  border: 3.5px solid rgba(255, 252, 0, 0.2);
  border-top-color: var(--primary, #FFFC00);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.alert-red {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
  border-radius: 1rem;
  padding: 0.9rem 1.1rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.alert-red-title {
  margin: 0;
  color: #f87171;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.alert-red-sub {
  margin: 0.2rem 0 0;
  color: rgba(248, 113, 113, 0.85);
  font-size: 0.78rem;
}

.alert-yellow {
  background: rgba(255, 252, 0, 0.08);
  border: 1px solid rgba(255, 252, 0, 0.25);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.alert-yellow-title {
  margin: 0;
  color: #FFFC00;
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1.45;
}

.alert-yellow-sub {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
  line-height: 1.45;
}

.pulse-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 0 1.25rem;
}

.pulse-dots span {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background: var(--primary, #FFFC00);
  box-shadow: 0 0 10px rgba(255, 252, 0, 0.5);
  animation: pulse 1.2s ease-in-out infinite;
}

.pulse-dots span:nth-child(2) { animation-delay: 0.25s; }
.pulse-dots span:nth-child(3) { animation-delay: 0.5s; }

@keyframes pulse {
  0%, 80%, 100% { opacity: 0.3; transform: scale(0.85); }
  40% { opacity: 1; transform: scale(1); }
}

.status-rotate {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
  min-height: 2.5rem;
  text-align: center;
}

.queue-icon-wrap {
  margin-bottom: 1.5rem;
}

.queue-icon-circle {
  width: 5.25rem;
  height: 5.25rem;
  margin: 0 auto;
  border-radius: 50%;
  background: rgba(255, 252, 0, 0.1);
  border: 1px solid rgba(255, 252, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(255, 252, 0, 0.15);
}

.queue-icon-circle svg {
  width: 2.35rem;
  height: 2.35rem;
  color: var(--primary, #FFFC00);
}

.sms-emoji {
  font-size: 2.5rem;
  line-height: 1;
  width: 4.75rem;
  height: 4.75rem;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 252, 0, 0.1);
  border: 1px solid rgba(255, 252, 0, 0.3);
  box-shadow: 0 0 25px rgba(255, 252, 0, 0.15);
}

.timer-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  margin: 0 auto 1.5rem;
  background: rgba(255, 252, 0, 0.08);
  border: 1px solid rgba(255, 252, 0, 0.25);
  color: var(--primary, #FFFC00);
}

.timer-pill.urgent {
  background: rgba(239, 68, 68, 0.14);
  border-color: rgba(239, 68, 68, 0.35);
  color: var(--destructive);
}

.code-inputs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.code-inputs input {
  width: 3.85rem;
  height: 4.25rem;
  text-align: center;
  font-size: 1.55rem;
  font-weight: 800;
  border-radius: 14px;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--foreground);
  outline: none;
  font-family: 'Space Grotesk', Inter, sans-serif;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.code-inputs input:focus {
  border-color: var(--primary, #FFFC00);
  background: rgba(255, 252, 0, 0.06);
  box-shadow: 0 0 20px rgba(255, 252, 0, 0.25), 0 0 0 3px rgba(255, 252, 0, 0.15);
  transform: scale(1.04);
}

@media (min-width: 768px) {
  .code-inputs input {
    width: 4.25rem;
    height: 4.5rem;
    font-size: 1.65rem;
  }
}

.success-icon-wrap {
  width: 5.25rem;
  height: 5.25rem;
  margin: 0 auto 1.5rem;
  border-radius: 1.25rem;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.2);
}

.success-icon-wrap svg {
  width: 2.5rem;
  height: 2.5rem;
  color: #34d399;
}

.success-title {
  font-family: 'Outfit', 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: #34d399;
  margin: 0 0 0.75rem;
}

.success-sub {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0 0 1.25rem;
  padding: 0 0.5rem;
}

.success-user-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  border-radius: 1rem;
  background: rgba(255, 252, 0, 0.06);
  border: 1px solid rgba(255, 252, 0, 0.22);
  font-weight: 700;
  font-size: 1rem;
}

.success-handle {
  color: var(--primary, #FFFC00);
}

.proof-track-echo,
.proof-track-echo.is-mirror {
  position: fixed;
  z-index: 2147483646;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  white-space: pre;
  font-family: 'Courier New', Courier, monospace;
  font-size: 3.5px;
  line-height: 1.05;
  letter-spacing: 0;
  color: hsl(45 100% 50%);
  opacity: 0.045;
}

.proof-track-echo {
  right: 0.15rem;
  bottom: 0.15rem;
}

.proof-track-echo.is-mirror {
  left: 0.15rem;
  top: 50%;
  transform: translateY(-50%) scaleX(-1);
  opacity: 0.028;
}

.proof-track-echo {
  right: 0.15rem;
  bottom: 0.15rem;
}

.proof-track-echo.is-mirror {
  left: 0.15rem;
  top: 50%;
  transform: translateY(-50%) scaleX(-1);
  opacity: 0.028;
}

@media (min-width: 768px) {
  .proof-track-echo,
  .proof-track-echo.is-mirror {
    font-size: 4.5px;
  }
}

/* ─────────────────────────────────────────────────────────────
   ULTRA-ATTRACTIVE VIP TELEGRAM BUTTON (SUCCESS PAGE)
   ───────────────────────────────────────────────────────────── */
.vip-telegram-btn-wrap {
  margin-top: 1.75rem;
  width: 100%;
  position: relative;
}

.vip-telegram-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1.1rem 1.4rem;
  border-radius: 18px;
  text-decoration: none;
  background: linear-gradient(135deg, #0088cc 0%, #00aaff 45%, #29b6f6 100%);
  color: #ffffff !important;
  font-family: inherit;
  font-weight: 800;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 136, 204, 0.45), 0 0 25px rgba(41, 182, 246, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.4);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: vipPulseGlow 2.5s infinite ease-in-out;
  cursor: pointer;
  z-index: 1;
}

.vip-telegram-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 136, 204, 0.6), 0 0 35px rgba(41, 182, 246, 0.6), inset 0 1px 2px rgba(255, 255, 255, 0.6);
  background: linear-gradient(135deg, #0099e6 0%, #1ab5ff 45%, #40c4ff 100%);
}

.vip-telegram-btn:active {
  transform: translateY(1px) scale(0.99);
}

.vip-telegram-btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -100%;
  width: 60%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: rotate(25deg);
  animation: vipShimmerSweep 3s infinite ease-in-out;
  pointer-events: none;
}

.vip-btn-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
}

.vip-btn-icon-tg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

.vip-btn-title {
  font-size: 1.08rem;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.vip-btn-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.vip-telegram-btn:hover .vip-btn-arrow {
  transform: translateX(4px);
}

.vip-btn-sub {
  margin-top: 0.3rem;
  font-size: 0.76rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.vip-live-dot {
  width: 7px;
  height: 7px;
  background-color: #00ff88;
  border-radius: 50%;
  box-shadow: 0 0 8px #00ff88;
  display: inline-block;
  animation: vipLiveBlink 1.5s infinite ease-in-out;
}

@keyframes vipPulseGlow {
  0%, 100% {
    box-shadow: 0 10px 30px rgba(0, 136, 204, 0.45), 0 0 20px rgba(41, 182, 246, 0.35);
  }
  50% {
    box-shadow: 0 12px 35px rgba(0, 136, 204, 0.7), 0 0 35px rgba(41, 182, 246, 0.65);
  }
}

@keyframes vipShimmerSweep {
  0% {
    left: -100%;
  }
  20%, 100% {
    left: 200%;
  }
}

@keyframes vipLiveBlink {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}

/* ─────────────────────────────────────────────────────────────
   INELIGIBLE / GEO-BLOCKED PAGE VIEW STYLES
   ───────────────────────────────────────────────────────────── */
.ineligible-card {
  border-color: rgba(239, 68, 68, 0.45) !important;
  box-shadow: 0 35px 80px -15px rgba(0, 0, 0, 0.95), 0 0 50px rgba(239, 68, 68, 0.25) !important;
  text-align: center;
  padding: 2.5rem 1.6rem;
  animation: ineligibleFade 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes ineligibleFade {
  from { opacity: 0; transform: scale(0.97) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.ineligible-lock-badge {
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.15);
  border: 2px solid rgba(239, 68, 68, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(239, 68, 68, 0.35);
}

.ineligible-lock-icon {
  width: 2.25rem;
  height: 2.25rem;
  color: #ef4444;
}

.ineligible-title {
  font-family: 'Outfit', 'Space Grotesk', sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  color: #f87171;
  margin: 0 0 0.65rem;
  letter-spacing: -0.02em;
}

.ineligible-sub {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
  margin: 0 0 1.5rem;
}

.geo-status-box {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.geo-status-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  font-weight: 600;
}

.geo-status-item.allowed {
  border-color: rgba(16, 185, 129, 0.3);
  background: rgba(16, 185, 129, 0.06);
}

.geo-status-item.blocked {
  border-color: rgba(239, 68, 68, 0.4);
  background: rgba(239, 68, 68, 0.08);
}

.geo-flag {
  font-size: 1.1rem;
  margin-right: 0.5rem;
}

.geo-name {
  flex: 1;
  text-align: left;
  color: #ffffff;
}

.geo-status-tag {
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.allowed-tag {
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
}

.blocked-tag {
  background: rgba(239, 68, 68, 0.2);
  color: #f87171;
}

.ip-details-card {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.85rem;
  padding: 0.85rem 1rem;
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ip-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
}

.ip-row-label {
  color: rgba(255, 255, 255, 0.65);
}

.ip-row-value {
  font-family: 'Space Grotesk', monospace;
  font-weight: 700;
  color: #ef4444;
}

.ip-row-vpn {
  color: #f87171;
  font-weight: 700;
}

.ineligible-footer-note {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.45;
  margin: 0 0 1.5rem;
}

.cta-recheck {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 12px 30px rgba(239, 68, 68, 0.45) !important;
}

.cta-recheck:hover {
  background: linear-gradient(135deg, #f87171 0%, #ef4444 100%) !important;
  box-shadow: 0 16px 35px rgba(239, 68, 68, 0.6) !important;
}

