/* ═══════════════════════════════════════════════════════════════
   ONESHOT MEME TRADE — MASTER STYLESHEET
   Dark Web3 aesthetic · Glassmorphism · Neon accents
═══════════════════════════════════════════════════════════════ */

/* ───────────────────────────────────────
   1. CSS CUSTOM PROPERTIES
─────────────────────────────────────── */
:root {
  /* Colors */
  --bg-deepest:    #050505;
  --bg-dark:       #080808;
  --bg-card:       #0d0d0d;
  --bg-glass:      rgba(255, 255, 255, 0.04);
  --bg-glass-hover:rgba(255, 255, 255, 0.07);

  --neon-green:    #00f0a0;
  --neon-green-dim:rgba(0, 240, 160, 0.15);
  --neon-blue:     #0078ff;
  --neon-blue-dim: rgba(0, 120, 255, 0.15);
  --neon-purple:   #8b5cf6;
  --neon-purple-dim:rgba(139, 92, 246, 0.15);

  --text-primary:  #ffffff;
  --text-secondary:#9ca3af;
  --text-muted:    #4b5563;
  --text-accent:   #00f0a0;

  --border-glass:  rgba(255, 255, 255, 0.08);
  --border-neon:   rgba(0, 240, 160, 0.3);
  --border-blue:   rgba(0, 120, 255, 0.3);

  /* Spacing */
  --section-pad: clamp(80px, 10vw, 140px);

  /* Radii */
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ───────────────────────────────────────
   2. RESET & BASE
─────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-deepest);
  color: var(--text-primary);
  font-family: 'Inter', 'Space Grotesk', system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ───────────────────────────────────────
   3. AMBIENT BACKGROUND ORBS
─────────────────────────────────────── */
.ambient-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
  animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--neon-green), transparent 70%);
  top: -200px; left: -200px;
  animation-duration: 25s;
}

.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--neon-blue), transparent 70%);
  top: 40%; right: -150px;
  animation-duration: 18s;
  animation-delay: -8s;
}

.orb-3 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--neon-purple), transparent 70%);
  bottom: -200px; left: 30%;
  animation-duration: 22s;
  animation-delay: -12s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -40px) scale(1.05); }
  66%       { transform: translate(-20px, 30px) scale(0.95); }
}

/* ───────────────────────────────────────
   4. NAVIGATION
─────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  height: 64px;
  transition: all 0.3s var(--ease-smooth);
}

.navbar.scrolled {
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.logo-icon {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--neon-green), var(--neon-blue));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #000;
}

.logo-accent { color: var(--neon-green); }

.btn-nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  background: linear-gradient(135deg, var(--neon-green), #00c87a);
  color: #000;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s var(--ease-smooth);
  letter-spacing: 0.01em;
}

.btn-nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 240, 160, 0.35);
}

/* ───────────────────────────────────────
   5. HERO SECTION
─────────────────────────────────────── */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 110px 24px 60px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 7px; height: 7px;
  background: var(--neon-green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--neon-green);
  animation: pulse-dot 2s ease-in-out infinite;
}

.badge-dot.red { background: #ef4444; box-shadow: 0 0 8px #ef4444; }

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  max-width: 820px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--neon-green) 0%, #00c8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-blue {
  background: linear-gradient(135deg, var(--neon-blue) 0%, var(--neon-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 48px;
  line-height: 1.7;
}

.text-glow {
  color: var(--neon-green);
  text-shadow: 0 0 20px rgba(0, 240, 160, 0.5);
}

/* ───────────────────────────────────────
   6. VIDEO PLAYER
─────────────────────────────────────── */
.player-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 32px;
}

.player-glow-ring {
  position: absolute;
  inset: -3px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--neon-green), var(--neon-blue), var(--neon-green));
  background-size: 300% 300%;
  animation: gradientRotate 4s linear infinite;
  opacity: 0.6;
  z-index: 0;
  filter: blur(6px);
}

@keyframes gradientRotate {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.player-container {
  position: relative;
  z-index: 1;
  background: #0a0a0a;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-glass);
  aspect-ratio: 16 / 9;
}

/* ── Thumbnail ── */
.player-thumbnail {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.thumbnail-chart {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #050a12 0%, #020810 100%);
}

.chart-svg {
  width: 100%; height: 100%;
  display: block;
}

.coin-orb {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  animation: coinFloat 3s ease-in-out infinite;
}

.coin-emoji {
  font-size: clamp(3rem, 7vw, 5rem);
  filter: drop-shadow(0 0 30px rgba(0, 240, 160, 0.6));
  line-height: 1;
}

.coin-glow-ring {
  position: absolute;
  width: 120%; height: 120%;
  border-radius: 50%;
  border: 2px solid rgba(0, 240, 160, 0.3);
  animation: ringPulse 2s ease-in-out infinite;
  top: -10%; left: -10%;
}

.coin-price-badge {
  margin-top: 8px;
  background: linear-gradient(135deg, #00f0a0, #00c87a);
  color: #000;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

@keyframes coinFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50%       { transform: scale(1.2); opacity: 0.1; }
}

.play-btn {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-spring);
}

.play-btn-ring {
  position: absolute;
  width: 90px; height: 90px;
  border-radius: 50%;
  border: 2px solid rgba(0, 240, 160, 0.2);
  animation: ringPulse 2s ease-in-out infinite;
}

.play-btn-inner {
  width: 72px; height: 72px;
  background: rgba(0, 240, 160, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid var(--neon-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--neon-green);
  box-shadow: 0 0 30px rgba(0, 240, 160, 0.3), inset 0 0 20px rgba(0, 240, 160, 0.05);
  transition: all 0.3s var(--ease-spring);
}

.play-btn:hover .play-btn-inner {
  background: rgba(0, 240, 160, 0.25);
  transform: scale(1.1);
  box-shadow: 0 0 50px rgba(0, 240, 160, 0.5);
}

.preview-label {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(0, 240, 160, 0.1);
  border: 1px solid rgba(0, 240, 160, 0.2);
  backdrop-filter: blur(10px);
  color: var(--neon-green);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.05em;
}

/* ── Playing State ── */
.player-playing {
  position: absolute;
  inset: 0;
}

.video-backdrop {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #020810 0%, #050a12 100%);
  overflow: hidden;
}

.video-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
}

.video-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.15) 2px,
    rgba(0, 0, 0, 0.15) 4px
  );
  pointer-events: none;
}

.live-chart {
  position: absolute;
  inset: 0;
  opacity: 0.6;
}

.live-line {
  animation: chartAnimate 3s ease-in-out infinite alternate;
}

@keyframes chartAnimate {
  0%   { opacity: 0.8; }
  100% { opacity: 0.4; }
}

.video-overlay-text {
  position: absolute;
  bottom: 60px;
  left: 24px;
  z-index: 5;
}

.vot-tag {
  display: inline-block;
  background: rgba(239, 68, 68, 0.9);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 6px;
}

.video-overlay-text p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

/* Controls */
.player-controls {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px 16px;
  background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, transparent 100%);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.ctrl-btn {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  width: 30px; height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: all 0.2s;
}

.ctrl-btn:hover { color: var(--neon-green); }

.progress-track {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 100px;
  position: relative;
  cursor: pointer;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--neon-green), #00c8ff);
  border-radius: 100px;
  width: 0%;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(0, 240, 160, 0.5);
}

.progress-thumb {
  position: absolute;
  top: 50%; transform: translateY(-50%) translateX(-50%);
  width: 12px; height: 12px;
  background: var(--neon-green);
  border-radius: 50%;
  left: 0%;
  box-shadow: 0 0 10px rgba(0, 240, 160, 0.8);
  transition: left 0.1s linear;
}

.preview-zone {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: calc((60/2700) * 100%); /* 60s out of 45min */
  background: rgba(0, 240, 160, 0.12);
  border-right: 1px solid rgba(0, 240, 160, 0.5);
  border-radius: 100px 0 0 100px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4px;
}

.preview-zone-label {
  font-size: 0.55rem;
  color: var(--neon-green);
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.time-display {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 3px;
}

.time-sep { color: rgba(255,255,255,0.3); }
.time-total { color: rgba(255,255,255,0.4); }

.ctrl-right {
  display: flex;
  gap: 4px;
}

/* ── Paywall State ── */
.paywall-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
}

.paywall-blur-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #020810 0%, #050a12 100%);
  filter: blur(8px);
  transform: scale(1.05);
  opacity: 0.6;
}

.paywall-modal {
  position: relative;
  z-index: 2;
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(0, 240, 160, 0.2);
  border-radius: 20px;
  padding: 28px 28px 24px;
  width: 90%;
  max-width: 440px;
  box-shadow:
    0 0 0 1px rgba(0, 240, 160, 0.05),
    0 40px 80px rgba(0, 0, 0, 0.8),
    0 0 60px rgba(0, 240, 160, 0.05);
  overflow-y: auto;
  max-height: 95%;
  animation: modalAppear 0.4s var(--ease-spring);
}

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

.pw-lock-icon {
  position: relative;
  width: 52px; height: 52px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 240, 160, 0.1);
  border: 1px solid rgba(0, 240, 160, 0.3);
  border-radius: 50%;
  color: var(--neon-green);
  font-size: 1.3rem;
}

.pw-lock-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(0, 240, 160, 0.2);
  animation: ringPulse 2s ease-in-out infinite;
}

.pw-badge {
  display: inline-block;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.pw-title {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.pw-sub {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.5;
}

.pw-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.pw-price {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.04em;
}

.pw-price-old {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.pw-price-badge {
  font-size: 0.7rem;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(0,240,160,0.2), rgba(0,200,120,0.15));
  border: 1px solid rgba(0, 240, 160, 0.3);
  color: var(--neon-green);
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

/* Express pay */
.express-pay {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}

.btn-express {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s var(--ease-smooth);
  border: 1px solid var(--border-glass);
}

.btn-apple {
  background: #1c1c1e;
  color: #fff;
}
.btn-apple:hover {
  background: #2c2c2e;
  border-color: rgba(255,255,255,0.15);
}

.btn-google {
  background: #1c1c1e;
  padding: 10px;
}
.btn-google:hover { background: #2c2c2e; }

.gpay-logo { height: 22px; width: auto; }

.pay-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--text-muted);
  font-size: 0.75rem;
}

.pay-divider::before,
.pay-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-glass);
}

/* Card form */
.card-form { display: flex; flex-direction: column; gap: 10px; }

.form-group { display: flex; flex-direction: column; gap: 5px; }

.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
}

.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrap input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  padding: 10px 12px 10px 36px;
  color: var(--text-primary);
  font-size: 0.85rem;
  transition: all 0.2s;
  outline: none;
}

.input-wrap input:focus {
  border-color: rgba(0, 240, 160, 0.4);
  background: rgba(0, 240, 160, 0.03);
  box-shadow: 0 0 0 3px rgba(0, 240, 160, 0.06);
}

.input-wrap input::placeholder { color: var(--text-muted); }

.input-icon {
  position: absolute;
  left: 11px;
  color: var(--text-muted);
  font-size: 12px;
  pointer-events: none;
  z-index: 1;
}

.input-icon-right {
  position: absolute;
  right: 11px;
  color: var(--text-muted);
  font-size: 12px;
  cursor: help;
  z-index: 1;
}

.card-inputs { display: flex; flex-direction: column; gap: 0; }

.card-number-wrap { border-radius: 8px 8px 0 0 !important; }
.card-number-wrap input { border-radius: 8px 8px 0 0; border-bottom: none; }

.card-brands {
  position: absolute;
  right: 10px;
  display: flex;
  gap: 4px;
}

.card-brands img { height: 18px; width: auto; }

.card-row-bottom { display: grid; grid-template-columns: 1fr 1fr; }

.card-row-bottom .input-wrap:first-child input {
  border-radius: 0 0 0 8px;
  border-right: none;
}

.card-row-bottom .input-wrap:first-child input { padding-left: 12px; }
.card-row-bottom .input-wrap:last-child input { border-radius: 0 0 8px 0; }
.card-row-bottom .input-wrap:last-child input { padding-left: 12px; padding-right: 28px; }

/* Pay button */
.btn-pay-unlock {
  position: relative;
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--neon-green), #00c87a);
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.01em;
  overflow: hidden;
  transition: all 0.3s var(--ease-smooth);
  margin-top: 4px;
}

.btn-pay-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-pay-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-pay-unlock:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 240, 160, 0.5);
}

.btn-pay-unlock:hover .btn-pay-glow { opacity: 1; }

.stripe-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.stripe-logo { height: 20px; width: auto; opacity: 0.6; }

.trust-icons {
  display: flex;
  gap: 5px;
  color: var(--text-muted);
  font-size: 11px;
}

/* ── Preview Timer Bar ── */
.preview-timer-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-glass);
  border-radius: 10px;
  padding: 10px 16px;
}

.ptb-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  white-space: nowrap;
}

.ptb-left i { color: var(--neon-green); }
.ptb-left strong { color: var(--text-primary); }

.ptb-fill-track {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
  overflow: hidden;
}

.ptb-fill {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--neon-green), #00c8ff);
  border-radius: 100px;
  transition: width 1s linear;
  box-shadow: 0 0 8px rgba(0, 240, 160, 0.4);
}

/* ── Scroll indicator ── */
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 24px;
}

.bounce {
  animation: bounceDown 1.5s ease-in-out infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ───────────────────────────────────────
   7. TICKER
─────────────────────────────────────── */
.ticker-wrap {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  background: rgba(0, 240, 160, 0.03);
}

.ticker-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: tickerScroll 30s linear infinite;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
}

.ticker-item i { color: var(--neon-green); font-size: 0.7rem; }

@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ───────────────────────────────────────
   8. VALUE SECTION
─────────────────────────────────────── */
.value-section,
.features-section,
.testimonials-section,
.final-cta {
  position: relative;
  z-index: 1;
  padding: var(--section-pad) 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neon-green);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.value-card {
  position: relative;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 32px;
  overflow: hidden;
  transition: all 0.4s var(--ease-smooth);
}

.value-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.02), transparent);
  border-radius: inherit;
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.card-featured {
  border-color: rgba(0, 120, 255, 0.3);
  background: rgba(0, 120, 255, 0.05);
}

.card-featured:hover {
  border-color: rgba(0, 120, 255, 0.5);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 120, 255, 0.1);
}

.card-featured-badge {
  position: absolute;
  top: -1px; right: 20px;
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 0 0 8px 8px;
}

.card-icon-wrap {
  position: relative;
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.card-icon-glow {
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  opacity: 0.3;
  filter: blur(8px);
  z-index: -1;
}

.neon-green {
  background: rgba(0, 240, 160, 0.1);
  border: 1px solid rgba(0, 240, 160, 0.3);
  color: var(--neon-green);
}

.neon-green .card-icon-glow {
  background: var(--neon-green);
}

.neon-blue {
  background: rgba(0, 120, 255, 0.1);
  border: 1px solid rgba(0, 120, 255, 0.3);
  color: var(--neon-blue);
}

.neon-blue .card-icon-glow {
  background: var(--neon-blue);
}

.neon-purple {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: var(--neon-purple);
}

.neon-purple .card-icon-glow {
  background: var(--neon-purple);
}

.card-number {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.card-title {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.card-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
}

.card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.card-features li i {
  color: var(--neon-green);
  font-size: 10px;
  flex-shrink: 0;
}

.card-shine {
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
  transform: skewX(-20deg);
  transition: left 0.8s var(--ease-smooth);
}

.value-card:hover .card-shine { left: 160%; }

/* ───────────────────────────────────────
   9. FEATURES ZIG-ZAG
─────────────────────────────────────── */
.features-section {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding-top: 0;
}

.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature-block-reverse {
  direction: rtl;
}

.feature-block-reverse > * {
  direction: ltr;
}

.feature-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.neon-green-text { color: var(--neon-green); }
.neon-blue-text  { color: var(--neon-blue); }
.neon-text       { color: var(--neon-green); }

.feature-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.feature-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 28px;
}

.feature-stats {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.stat-pill {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 80px;
  backdrop-filter: blur(10px);
}

.stat-num {
  font-size: 1.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--neon-green), #00c8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
}

.btn-cta-feature {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--neon-green), #00c87a);
  color: #000;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 10px;
  transition: all 0.3s var(--ease-smooth);
  letter-spacing: 0.01em;
}

.btn-cta-feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 240, 160, 0.4);
}

.trust-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.trust-item i { font-size: 0.9rem; flex-shrink: 0; }

/* ── Vault Visual ── */
.feature-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vault-visual {
  position: relative;
  width: 320px; height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vault-outer-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(0, 240, 160, 0.1);
  animation: rotateRing 20s linear infinite;
}

.vault-middle-ring {
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  border: 1px dashed rgba(0, 240, 160, 0.15);
  animation: rotateRing 12s linear infinite reverse;
}

@keyframes rotateRing {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.vault-inner {
  position: relative;
  width: 180px; height: 180px;
  background: rgba(0, 240, 160, 0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 240, 160, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 40px rgba(0, 240, 160, 0.1),
    inset 0 0 30px rgba(0, 240, 160, 0.05);
}

.vault-door {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vault-icon {
  font-size: 4rem;
  color: var(--neon-green);
  filter: drop-shadow(0 0 20px rgba(0, 240, 160, 0.6));
  animation: vaultGlow 2s ease-in-out infinite alternate;
}

@keyframes vaultGlow {
  from { filter: drop-shadow(0 0 15px rgba(0, 240, 160, 0.4)); }
  to   { filter: drop-shadow(0 0 35px rgba(0, 240, 160, 0.9)); }
}

.vault-glow {
  position: absolute;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(0,240,160,0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: vaultGlow 2s ease-in-out infinite alternate;
}

.vault-sparkles { position: absolute; inset: -40px; }

.sparkle {
  position: absolute;
  color: var(--neon-green);
  font-size: 14px;
  animation: sparkleFloat 3s ease-in-out infinite;
  opacity: 0.6;
}

.s1 { top: 15%; left: 10%; animation-delay: 0s; }
.s2 { top: 20%; right: 8%; animation-delay: 0.8s; }
.s3 { bottom: 20%; left: 12%; animation-delay: 1.6s; }
.s4 { bottom: 15%; right: 10%; animation-delay: 2.4s; }

@keyframes sparkleFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
  50%       { transform: translateY(-15px) scale(1.2); opacity: 1; }
}

.vault-data-streams {
  position: absolute;
  inset: 0;
}

.data-stream {
  position: absolute;
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(0, 240, 160, 0.5);
  letter-spacing: 0.1em;
  animation: dataStreamAnim 4s ease-in-out infinite;
}

.ds1 { top: 8%; left: 5%; animation-delay: 0s; }
.ds2 { top: 12%; right: 5%; animation-delay: 1s; }
.ds3 { bottom: 10%; left: 3%; animation-delay: 2s; }
.ds4 { bottom: 12%; right: 5%; animation-delay: 3s; }

@keyframes dataStreamAnim {
  0%, 100% { opacity: 0.3; transform: translateY(0); }
  50%       { opacity: 0.8; transform: translateY(-5px); }
}

/* ── Access Ticket ── */
.access-ticket {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ticket-card {
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(0, 240, 160, 0.2);
  border-radius: 20px;
  width: 320px;
  overflow: hidden;
  box-shadow:
    0 0 60px rgba(0, 240, 160, 0.08),
    0 30px 60px rgba(0, 0, 0, 0.6);
  animation: ticketFloat 4s ease-in-out infinite;
}

@keyframes ticketFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%       { transform: translateY(-10px) rotate(1deg); }
}

.ticket-header {
  background: rgba(0, 240, 160, 0.06);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(0, 240, 160, 0.15);
}

.ticket-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--neon-green);
}

.ticket-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--neon-green);
}

.status-dot {
  width: 6px; height: 6px;
  background: var(--neon-green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--neon-green);
  animation: pulse-dot 1.5s ease-in-out infinite;
}

.ticket-divider {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 16px;
}

.ticket-notch {
  width: 20px; height: 20px;
  background: var(--bg-deepest);
  border-radius: 50%;
  position: absolute;
  top: 50%; transform: translateY(-50%);
  border: 1px solid rgba(0, 240, 160, 0.15);
}

.ticket-notch.left  { left: -10px; }
.ticket-notch.right { right: -10px; }

.ticket-dots {
  flex: 1;
  font-size: 0.65rem;
  color: rgba(0, 240, 160, 0.2);
  letter-spacing: 0.1em;
  text-align: center;
  padding: 8px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticket-body { padding: 18px 20px; }

.ticket-field {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.ticket-field:last-child { border-bottom: none; }

.tf-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.tf-value {
  font-size: 0.82rem;
  color: var(--text-primary);
  font-weight: 600;
}

.ticket-barcode {
  background: rgba(0, 240, 160, 0.04);
  border-top: 1px dashed rgba(0, 240, 160, 0.15);
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.barcode-lines {
  display: flex;
  gap: 2px;
  align-items: flex-end;
}

.bc-line {
  width: 2px;
  background: rgba(0, 240, 160, 0.6);
  border-radius: 1px;
}

.bc-text {
  font-size: 0.55rem;
  color: rgba(0, 240, 160, 0.4);
  letter-spacing: 0.15em;
  font-weight: 600;
}

.ticket-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse, rgba(0,240,160,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.confirm-toast {
  position: absolute;
  top: -16px; right: -16px;
  background: rgba(0, 240, 160, 0.15);
  border: 1px solid rgba(0, 240, 160, 0.3);
  backdrop-filter: blur(10px);
  color: var(--neon-green);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 8px 24px rgba(0, 240, 160, 0.15);
  animation: toastAppear 0.5s var(--ease-spring) both;
  animation-delay: 1s;
}

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

/* ───────────────────────────────────────
   10. TESTIMONIALS
─────────────────────────────────────── */
.testimonials-section { padding-top: 0; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.testi-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease-smooth);
  backdrop-filter: blur(10px);
}

.testi-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.1);
}

.testi-featured {
  border-color: rgba(0, 120, 255, 0.25);
  background: rgba(0, 120, 255, 0.04);
}

.testi-quote-mark {
  position: absolute;
  top: -10px; right: 20px;
  font-size: 8rem;
  color: rgba(0, 120, 255, 0.08);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.testi-stars { display: flex; gap: 3px; margin-bottom: 12px; }
.testi-stars i { color: #f59e0b; font-size: 12px; }

.testi-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-author { display: flex; align-items: center; gap: 12px; }

.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.testi-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
}

.testi-handle {
  font-size: 0.75rem;
  color: var(--neon-green);
  font-weight: 500;
}

/* ───────────────────────────────────────
   11. FINAL CTA
─────────────────────────────────────── */
.final-cta {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.fca-glow-bg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(0,240,160,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.fca-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #f87171;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.fca-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 16px;
}

.fca-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.countdown {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 16px 24px;
  margin-bottom: 36px;
  backdrop-filter: blur(20px);
}

.cd-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 60px;
}

.cd-num {
  font-size: 2rem;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(135deg, var(--neon-green), #00c8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.04em;
  line-height: 1;
}

.cd-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cd-sep {
  font-size: 1.5rem;
  color: var(--text-muted);
  padding: 0 2px;
  margin-bottom: 12px;
}

.btn-fca {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, var(--neon-green), #00c87a);
  color: #000;
  font-weight: 800;
  font-size: 1.05rem;
  border-radius: 14px;
  letter-spacing: 0.01em;
  transition: all 0.3s var(--ease-smooth);
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.btn-fca::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-fca:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(0, 240, 160, 0.5);
}

.btn-fca:hover::after { opacity: 1; }

.fca-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.fca-meta span { display: flex; align-items: center; gap: 6px; }

/* ───────────────────────────────────────
   12. FOOTER
─────────────────────────────────────── */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border-glass);
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(20px);
  padding: 100px 40px 60px; /* Increased padding */
}

.footer-inner { max-width: 1400px; margin: 0 auto; } /* Increased max-width */

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px; /* Increased gap */
  margin-bottom: 80px; /* Increased margin */
}

.footer-logo {
  font-size: 2rem; /* Increased font size */
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo i { color: var(--neon-green); }

.footer-tagline {
  font-size: 1.1rem; /* Increased font size */
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 30px;
}

.footer-socials { display: flex; gap: 14px; } /* Increased gap */

.social-btn {
  width: 48px; height: 48px; /* Increased size */
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.2rem; /* Increased icon size */
  transition: all 0.2s;
}

.social-btn:hover {
  border-color: var(--neon-green);
  color: var(--neon-green);
  box-shadow: 0 0 16px rgba(0, 240, 160, 0.2);
}

.footer-links-group {
  display: flex;
  flex-direction: column;
  gap: 12px; /* Increased gap */
}

.footer-links-group h4 {
  font-size: 0.95rem; /* Increased font size */
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.footer-links-group a {
  font-size: 1rem; /* Increased font size */
  color: var(--text-muted);
  transition: color 0.2s;
  line-height: 1.8;
}

.footer-links-group a:hover { color: var(--neon-green); }

.footer-trust-block h4 {
  font-size: 0.95rem; /* Increased font size */
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 18px;
}

.footer-stripe-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(99, 91, 255, 0.1);
  border: 1px solid rgba(99, 91, 255, 0.2);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 14px;
}

.footer-stripe-badge i {
  font-size: 2.2rem; /* Increased size */
  color: #635bff;
}

.fsb-title {
  display: block;
  font-size: 0.95rem; /* Increased font size */
  font-weight: 700;
  color: var(--text-primary);
}

.fsb-sub {
  display: block;
  font-size: 0.8rem; /* Increased font size */
  color: var(--text-muted);
}

.footer-ssl {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem; /* Increased font size */
  color: var(--text-muted);
}

.footer-ssl i { color: var(--neon-green); }

.footer-bottom {
  border-top: 1px solid var(--border-glass);
  padding-top: 30px; /* Increased padding */
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-bottom p {
  font-size: 0.9rem; /* Increased font size */
  color: var(--text-muted);
}

.footer-disclaimer {
  font-size: 0.8rem !important; /* Increased font size */
  line-height: 1.6;
  opacity: 0.7;
}

/* ───────────────────────────────────────
   13. SUCCESS MODAL
─────────────────────────────────────── */
.success-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.success-modal {
  background: rgba(10, 15, 10, 0.95);
  border: 1px solid rgba(0, 240, 160, 0.3);
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
  max-width: 440px;
  width: 90%;
  box-shadow: 0 0 80px rgba(0, 240, 160, 0.15);
  animation: modalAppear 0.4s var(--ease-spring);
}

.success-icon {
  position: relative;
  width: 72px; height: 72px;
  background: rgba(0, 240, 160, 0.1);
  border: 2px solid var(--neon-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.8rem;
  color: var(--neon-green);
}

.success-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(0, 240, 160, 0.2);
  animation: ringPulse 1.5s ease-in-out infinite;
}

.success-modal h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.success-modal p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 28px;
}

.btn-success {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--neon-green), #00c87a);
  color: #000;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 10px;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 240, 160, 0.4);
}

/* ───────────────────────────────────────
   14. SCROLL REVEAL ANIMATIONS
─────────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.75s var(--ease-smooth), transform 0.75s var(--ease-smooth);
  will-change: opacity, transform;
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Prevent Flash of Invisible Content on slow connections */
@media (prefers-reduced-motion: reduce) {
  .reveal-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .orb { animation: none; }
  .ticker-track { animation: none; }
  .coinFloat, .ticketFloat, .bounceDown { animation: none; }
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ───────────────────────────────────────
   15. RESPONSIVE
─────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .feature-block,
  .feature-block-reverse {
    grid-template-columns: 1fr;
    gap: 40px;
    direction: ltr;
  }

  .feature-block-reverse > * {
    direction: ltr;
  }

  .vault-visual,
  .access-ticket {
    order: -1;
  }

  .vault-visual { margin: 0 auto; }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .feature-stats {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .paywall-modal {
    padding: 20px 18px;
  }

  .express-pay { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .countdown { padding: 12px 16px; }
  .cd-num { font-size: 1.5rem; }

  .btn-fca {
    padding: 14px 24px;
    font-size: 0.9rem;
  }

  .vault-visual { width: 260px; height: 260px; }
}

/* ───────────────────────────────────────
   15b. EXTRA POLISH
─────────────────────────────────────── */

/* Player wrapper paywall-active state */
.paywall-active .player-glow-ring {
  animation: gradientRotate 2s linear infinite;
  opacity: 1;
  filter: blur(8px);
  background: linear-gradient(135deg, #ef4444, #f97316, #ef4444);
}

/* Hover shimmer on feature blocks */
.feature-block:hover .btn-cta-feature {
  box-shadow: 0 8px 28px rgba(0, 240, 160, 0.25);
}

/* Glassmorphism input active glow */
.card-form:focus-within .btn-pay-unlock {
  box-shadow: 0 0 30px rgba(0, 240, 160, 0.2);
}

/* Ticker gradient fade edges */
.ticker-wrap::before,
.ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.ticker-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-deepest), transparent);
}

.ticker-wrap::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg-deepest), transparent);
}

/* Section separator glow line */
.features-section::before {
  content: '';
  display: block;
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 240, 160, 0.15), transparent);
  margin-bottom: var(--section-pad);
}

/* Paywall modal neon border animation */
@keyframes neonBorderPulse {
  0%, 100% { border-color: rgba(0, 240, 160, 0.2); }
  50%       { border-color: rgba(0, 240, 160, 0.45); }
}

.paywall-modal {
  animation: modalAppear 0.4s var(--ease-spring), neonBorderPulse 3s ease-in-out infinite;
}

/* ───────────────────────────────────────
   16. SCROLLBAR
─────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deepest); }
::-webkit-scrollbar-thumb {
  background: rgba(0, 240, 160, 0.3);
  border-radius: 100px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 240, 160, 0.5);
}

/* ───────────────────────────────────────
   17. SELECTION
─────────────────────────────────────── */
::selection {
  background: rgba(0, 240, 160, 0.25);
  color: var(--text-primary);
}

/* Navbar Enhancements */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.nav-link:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.05);
}

.nav-link.active {
  color: var(--neon-green);
  background: rgba(0, 240, 160, 0.08);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s;
}

.nav-burger:hover { background: rgba(255,255,255,0.06); }

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 16px;
  position: absolute;
  top: 100%;
  left: 0; 
  right: 0;
  border-top: 1px solid var(--border-glass);
  background: rgba(5, 5, 5, 0.97);
  backdrop-filter: blur(20px);
}

.nav-mobile.open { display: flex; }

.nav-mobile-link {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.2s;
  text-decoration: none;
}

.nav-mobile-link:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.05);
}

@media (max-width: 768px) {
  .nav-links, .nav-actions {
    display: none;
  }
  .nav-burger {
    display: flex;
  }
}

/* 
   CONTENT PROTECTION STYLES
   Blocks selection, drag, and overlays watermarks
*/

/* 1. Global User Selection Disable */
.no-select {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* 2. Watermark */
.security-watermark {
  position: absolute;
  top: 10%;
  left: 10%;
  z-index: 100;
  pointer-events: none;
  opacity: 0.15;
  color: var(--text-secondary);
  font-family: monospace;
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 1s ease-in-out;
  mix-blend-mode: overlay;
}

.sw-id { font-weight: 700; color: var(--neon-green); }
.sw-ip { font-size: 0.65rem; }

/* 3. Security Warning Overlay (When PrintScreen detected) */
.security-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.security-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.so-content {
  text-align: center;
  color: #fff;
  transform: translateY(20px);
  transition: transform 0.3s var(--ease-spring);
}

.security-overlay.active .so-content {
  transform: translateY(0);
}

.so-content i {
  font-size: 3rem;
  color: #ef4444;
  margin-bottom: 16px;
  animation: pulse-red 1.5s infinite;
}

.so-content h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.so-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

@keyframes pulse-red {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.7; }
}

/* 4. Obfuscation Layer (Make text blurry when losing focus) */
body.blurred-content {
  filter: blur(10px);
  transition: filter 0.2s;
}
 
 / *   P r o t e c t . j s   2 . 0   S u p p o r t   * /  
 b o d y . i s - b l u r r e d   {  
     f i l t e r :   b l u r ( 2 0 p x )   g r a y s c a l e ( 1 0 0 % ) ;  
     o v e r f l o w :   h i d d e n ;  
     p o i n t e r - e v e n t s :   n o n e ;  
 }  
  
 b o d y . s e c u r i t y - v i o l a t i o n   >   *   {  
     d i s p l a y :   n o n e   ! i m p o r t a n t ;  
 }  
  
 b o d y . s e c u r i t y - v i o l a t i o n : : b e f o r e   {  
     c o n t e n t :   ' � a� � � �   V i o l a t i o n   d e   S � � c u r i t � �   D � � t e c t � � e ' ;  
     p o s i t i o n :   f i x e d ;  
     t o p :   5 0 % ;   l e f t :   5 0 % ;  
     t r a n s f o r m :   t r a n s l a t e ( - 5 0 % ,   - 5 0 % ) ;  
     f o n t - s i z e :   2 r e m ;  
     c o l o r :   # e f 4 4 4 4 ;  
     f o n t - f a m i l y :   s a n s - s e r i f ;  
     f o n t - w e i g h t :   b o l d ;  
     z - i n d e x :   9 9 9 9 9 9 ;  
     t e x t - a l i g n :   c e n t e r ;  
 }  
  
 / *   P r o t e c t . j s   2 . 0   S u p p o r t   -   B l a c k o u t   M o d e   * /  
 b o d y . i s - p r o t e c t e d : : a f t e r   {  
     c o n t e n t :   ' ' ;  
     p o s i t i o n :   f i x e d ;  
     i n s e t :   0 ;  
     b a c k g r o u n d :   # 0 0 0 ;  
     z - i n d e x :   9 9 9 9 9 9 ;  
     d i s p l a y :   b l o c k ;  
 }  
  
 b o d y . i s - p r o t e c t e d   . s e c u r i t y - w a r n i n g - t e x t   {  
     p o s i t i o n :   f i x e d ;  
     t o p :   5 0 % ;  
     l e f t :   5 0 % ;  
     t r a n s f o r m :   t r a n s l a t e ( - 5 0 % ,   - 5 0 % ) ;  
     z - i n d e x :   1 0 0 0 0 0 0 ;  
     c o l o r :   # f f f ;  
     f o n t - f a m i l y :   ' I n t e r ' ,   s a n s - s e r i f ;  
     t e x t - a l i g n :   c e n t e r ;  
     d i s p l a y :   f l e x ;  
     f l e x - d i r e c t i o n :   c o l u m n ;  
     a l i g n - i t e m s :   c e n t e r ;  
     g a p :   2 0 p x ;  
 }  
  
 b o d y . i s - p r o t e c t e d   . s e c u r i t y - w a r n i n g - t e x t   i   {  
     f o n t - s i z e :   4 r e m ;  
     c o l o r :   # e f 4 4 4 4 ;  
 }  
  
 b o d y . i s - p r o t e c t e d   . s e c u r i t y - w a r n i n g - t e x t   h 2   {  
     f o n t - s i z e :   2 r e m ;  
     m a r g i n :   0 ;  
 }  
  
 b o d y . i s - p r o t e c t e d   . s e c u r i t y - w a r n i n g - t e x t   p   {  
     c o l o r :   # 8 8 8 ;  
     m a x - w i d t h :   4 0 0 p x ;  
     l i n e - h e i g h t :   1 . 5 ;  
 }  
  
 / *   S h a k a   P l a y e r   S t y l e s   * /  
 . s h a k a - v i d e o - c o n t a i n e r   {  
     w i d t h :   1 0 0 % ;  
     h e i g h t :   1 0 0 % ;  
     p o s i t i o n :   a b s o l u t e ;  
     t o p :   0 ;   l e f t :   0 ;  
     b a c k g r o u n d :   # 0 0 0 ;  
     z - i n d e x :   5 ;  
 }  
 
/* Shaka Player Container */
.video-container {
  width: 100%;
  height: 100%;
  background: #000;
  position: relative;
  overflow: hidden;
}

#video {
  width: 100%;
  height: 100%;
  object-fit: contain; /* or cover, depending on preference */
}

/* Hide native controls if we were using custom ones, but we are using Shaka UI */
/* video::-webkit-media-controls { display:none !important; } */

/* =========================================
   Cookie Consent System (GDPR 2026)
   ========================================= */

.cookie-consent-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 9999999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-consent-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Banner (Initial View) */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    border-top: 1px solid var(--neon-green);
    padding: 2rem;
    z-index: 10000000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -10px 40px rgba(0, 240, 160, 0.1);
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.cookie-text h3 {
    color: var(--neon-green);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-text p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 800px;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    border: none;
}

.cookie-btn.accept {
    background: var(--neon-green);
    color: #000;
    box-shadow: 0 0 15px rgba(0, 240, 160, 0.4);
}

.cookie-btn.accept:hover {
    box-shadow: 0 0 25px rgba(0, 240, 160, 0.6);
    transform: translateY(-2px);
}

.cookie-btn.reject {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn.reject:hover {
    background: rgba(255, 255, 255, 0.2);
}

.cookie-btn.preferences {
    background: transparent;
    color: #aaa;
    text-decoration: underline;
    padding: 10px;
}

.cookie-btn.preferences:hover {
    color: #fff;
}

/* Preferences Modal (Detailed View) */
.cookie-modal {
    background: #0f0f0f;
    border: 1px solid var(--neon-green);
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    position: relative;
    box-shadow: 0 0 50px rgba(0, 240, 160, 0.15);
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.cookie-modal-header h3 {
    color: var(--neon-green);
    font-size: 1.5rem;
}

.close-modal {
    background: none;
    border: none;
    color: #888;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #fff;
}

.cookie-category {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cookie-category-title {
    font-weight: 700;
    color: #fff;
    font-size: 1.1rem;
}

.cookie-category-desc {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #333;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--neon-green);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--neon-green);
}

input:checked + .slider:before {
    transform: translateX(24px);
}

input:disabled + .slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-modal-footer {
    margin-top: 2rem;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}


/* ───────────────────────────────────────
   18. SECURITY & PROTECTION
─────────────────────────────────────── */
body.is-protected {
  overflow: hidden !important;
}

body.is-protected::after {
  content: '';
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 999999;
  display: block;
}

.security-overlay {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000000;
  pointer-events: none;
}
