/* ============================================================
   IPTV Deutschland 24 – "Stadium Night" Theme
   ============================================================ */

:root {
  --bg: #07090f;
  --bg-alt: #0a1410;
  --card: #101a14;
  --card-2: #121d26;
  --card-border: #1d3326;
  --text: #eef3ee;
  --text-muted: #9bb0a3;
  --green: #18c964;
  --green-2: #00e676;
  --green-dark: #0a7a3c;
  --gold: #ffce00;
  --red: #dd0000;
  --gradient: linear-gradient(135deg, #0fbf5f 0%, #18c964 45%, #8be000 100%);
  --gradient-gold: linear-gradient(135deg, #ffce00 0%, #ffa200 100%);
  --radius: 16px;
  --shadow: 0 12px 44px rgba(0, 0, 0, 0.5);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background:
    radial-gradient(ellipse 70% 45% at 50% -5%, rgba(24, 201, 100, 0.10), transparent 60%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

.container { width: min(1200px, 92%); margin-inline: auto; }
.container-narrow { width: min(840px, 92%); }

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-block;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  background: rgba(24, 201, 100, 0.10);
  border: 1px solid rgba(24, 201, 100, 0.35);
  color: #6fe2a4;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* ===== Scroll progress (pitch line) ===== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 4px;
  z-index: 200;
  background: rgba(255, 255, 255, 0.05);
}

.scroll-progress-bar {
  position: relative;
  height: 100%;
  width: 0%;
  background: var(--gradient);
  box-shadow: 0 0 12px rgba(24, 201, 100, 0.8);
}

.scroll-progress-ball {
  position: absolute;
  right: -7px; top: 50%;
  width: 14px; height: 14px;
  transform: translateY(-50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, #fff 0 35%, #cfd6cf 60%, #9aa39a 100%);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 0.8rem 1.7rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--gradient);
  color: #04140a;
  box-shadow: 0 8px 28px rgba(24, 201, 100, 0.35);
}

.btn-primary:hover { box-shadow: 0 12px 38px rgba(24, 201, 100, 0.55); }

.btn-primary::after {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}

.btn-primary:hover::after { left: 130%; }

.btn-outline {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  border: 2px solid var(--card-border);
}

.btn-outline:hover { border-color: var(--green); color: #fff; box-shadow: 0 6px 22px rgba(24, 201, 100, 0.18); }

.btn-light { background: #fff; color: #0a5a2d; }

.btn-lg { padding: 1.05rem 2.3rem; font-size: 1.05rem; }
.btn-block { display: block; width: 100%; }

.btn-kick:hover { animation: kick 0.45s ease; }

@keyframes kick {
  0% { transform: translateY(-2px) rotate(0); }
  30% { transform: translateY(-5px) rotate(-2.5deg); }
  60% { transform: translateY(-1px) rotate(1.8deg); }
  100% { transform: translateY(-2px) rotate(0); }
}

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 9, 15, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(29, 51, 38, 0.8);
  transition: background 0.3s ease;
}

.header.scrolled { background: rgba(7, 9, 15, 0.95); }

.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 78px;
}

.logo { display: flex; align-items: center; text-decoration: none; }
.logo img { height: 56px; width: auto; }

.nav { display: flex; gap: 1.7rem; margin-left: auto; }

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.15s;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav a:hover { color: #fff; }
.nav a:hover::after { transform: scaleX(1); }

.btn-header { white-space: nowrap; padding: 0.65rem 1.3rem; font-size: 0.88rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 25px; height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 5rem 0 0;
  overflow: hidden;
}

.floodlight {
  position: absolute;
  top: -140px;
  width: 560px; height: 560px;
  pointer-events: none;
  background: conic-gradient(from 200deg at 50% 0%, transparent 38%, rgba(232, 255, 240, 0.10) 46%, rgba(232, 255, 240, 0.16) 50%, rgba(232, 255, 240, 0.10) 54%, transparent 62%);
  animation: flicker 7s ease-in-out infinite;
}

.floodlight-left { left: -160px; transform: rotate(24deg); }
.floodlight-right { right: -160px; transform: rotate(-24deg) scaleX(-1); animation-delay: 1.6s; }

@keyframes flicker {
  0%, 100% { opacity: 0.85; }
  48% { opacity: 1; }
  52% { opacity: 0.65; }
  56% { opacity: 0.95; }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 3rem;
  align-items: center;
  padding-bottom: 5.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  background: rgba(221, 0, 0, 0.12);
  border: 1px solid rgba(221, 0, 0, 0.45);
  color: #ff9b9b;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}

.live-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #ff2e2e;
  box-shadow: 0 0 0 0 rgba(255, 46, 46, 0.6);
  animation: livePulse 1.6s ease-out infinite;
}

@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 46, 46, 0.6); }
  100% { box-shadow: 0 0 0 11px rgba(255, 46, 46, 0); }
}

.hero-title {
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  font-weight: 900;
  font-style: italic;
  line-height: 1.06;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 1.3rem;
}

.hero-line {
  display: block;
  opacity: 0;
  transform: translateY(26px);
  animation: lineIn 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-line:nth-child(2) { animation-delay: 0.15s; }
.hero-line:nth-child(3) { animation-delay: 0.3s; }

.hero-line-small {
  font-size: 0.42em;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-top: 0.6rem;
}

@keyframes lineIn {
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  color: var(--text-muted);
  font-size: 1.08rem;
  max-width: 540px;
  margin-bottom: 2rem;
  opacity: 0;
  animation: lineIn 0.7s ease 0.45s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: lineIn 0.7s ease 0.6s forwards;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.6rem;
  list-style: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0;
  animation: lineIn 0.7s ease 0.75s forwards;
}

/* Hero pitch visual */
.hero-visual { display: flex; justify-content: center; }

.pitch-wrap {
  position: relative;
  width: 100%;
  max-width: 380px;
  filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.6));
  transform: perspective(1100px) rotateX(14deg) rotateZ(-3deg);
}

.pitch-svg { width: 100%; height: auto; border-radius: 16px; }

.pitch-lines * {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  fill: none;
}

.hero .pitch-lines *,
.revealed .pitch-lines * {
  animation: drawLine 1.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.pitch-lines *:nth-child(1) { animation-delay: 0.2s; }
.pitch-lines *:nth-child(2) { animation-delay: 0.5s; }
.pitch-lines *:nth-child(3) { animation-delay: 0.7s; }
.pitch-lines *:nth-child(4) { animation-delay: 0.9s; }
.pitch-lines *:nth-child(5) { animation-delay: 1.0s; }
.pitch-lines *:nth-child(6) { animation-delay: 1.1s; }
.pitch-lines *:nth-child(7) { animation-delay: 1.2s; }
.pitch-lines *:nth-child(8) { animation-delay: 1.3s; }
.pitch-lines *:nth-child(9) { animation-delay: 1.4s; }

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

.hero-ball {
  position: absolute;
  left: 50%;
  top: 38%;
  width: 74px; height: 74px;
  margin-left: -37px;
  animation: ballBounce 1.9s cubic-bezier(0.28, 0, 0.45, 1) infinite;
  z-index: 3;
}

.hero-ball .football-svg {
  width: 100%; height: 100%;
  animation: ballSpin 5.5s linear infinite;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.55));
}

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

@keyframes ballBounce {
  0%, 100% { transform: translateY(0) scale(1, 1); }
  12% { transform: translateY(8px) scale(1.06, 0.92); }
  45% { transform: translateY(-110px) scale(0.97, 1.04); }
  55% { transform: translateY(-118px) scale(1, 1); }
  65% { transform: translateY(-110px) scale(0.97, 1.04); }
  95% { transform: translateY(4px) scale(1.04, 0.94); }
}

.hero-ball-shadow {
  position: absolute;
  left: 50%; top: calc(38% + 78px);
  width: 84px; height: 18px;
  margin-left: -42px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  filter: blur(5px);
  animation: shadowPulse 1.9s cubic-bezier(0.28, 0, 0.45, 1) infinite;
}

@keyframes shadowPulse {
  0%, 100% { transform: scale(1); opacity: 0.55; }
  50% { transform: scale(0.55); opacity: 0.22; }
}

.score-chip {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  background: rgba(7, 9, 15, 0.92);
  border: 1px solid var(--card-border);
  border-radius: 999px;
  padding: 0.55rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  box-shadow: var(--shadow);
}

.score-chip strong { color: var(--gold); font-variant-numeric: tabular-nums; }

/* Flag wave divider */
.flag-divider { position: relative; z-index: 1; margin-top: -10px; }
.flag-divider svg { display: block; width: 100%; height: 46px; }

/* ===== Journey (scroll football) ===== */
.journey-zone { position: relative; }

.journey-overlay {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
}

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

.journey-path {
  fill: none;
  stroke: rgba(24, 201, 100, 0.45);
  stroke-width: 2.6px;
  stroke-dasharray: 10 14;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 6px rgba(24, 201, 100, 0.5));
}

.journey-ball {
  position: absolute;
  top: 0; left: 0;
  width: 58px; height: 58px;
  will-change: transform;
}

.journey-ball .football-svg {
  width: 100%; height: 100%;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.65)) drop-shadow(0 0 22px rgba(24, 201, 100, 0.35));
}

/* ===== Stats ===== */
.stats {
  position: relative;
  border-block: 1px solid var(--card-border);
  background: linear-gradient(180deg, rgba(24, 201, 100, 0.06), transparent);
  padding: 2.6rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  font-style: italic;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
}

.stat span { color: var(--text-muted); font-size: 0.9rem; }

/* ===== Sections ===== */
.section { position: relative; padding: 5.5rem 0; }
.section-alt { background: var(--bg-alt); }

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.2rem;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.8rem;
}

.section-head p { color: var(--text-muted); font-size: 1.05rem; }

/* ===== Reveal on scroll ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s ease var(--d, 0ms), transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) var(--d, 0ms);
}

[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* ===== Features ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.9rem;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(24, 201, 100, 0.5);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-icon { font-size: 2rem; margin-bottom: 0.9rem; }
.feature-card h3 { font-size: 1.12rem; margin-bottom: 0.5rem; }
.feature-card p { color: var(--text-muted); font-size: 0.93rem; }

/* ===== Marquee ===== */
.marquee {
  overflow: hidden;
  padding: 0.4rem 0 2.6rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  gap: 0.8rem;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee:hover .marquee-track { animation-play-state: paused; }

.marquee-track span {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 999px;
  padding: 0.55rem 1.25rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

.marquee-track span.hot {
  border-color: rgba(255, 206, 0, 0.55);
  color: var(--gold);
  background: rgba(255, 206, 0, 0.07);
}

@keyframes marquee { to { transform: translateX(-50%); } }

/* ===== Channels / content cards ===== */
.content-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.content-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.7rem;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.content-card:hover { transform: translateY(-5px); border-color: rgba(24, 201, 100, 0.45); }

.content-card.card-sport { border-color: rgba(255, 206, 0, 0.4); }
.content-card.card-sport:hover { border-color: var(--gold); }

.content-card h3 { margin-bottom: 1rem; font-size: 1.05rem; }

.content-card ul { list-style: none; }

.content-card li {
  color: var(--text-muted);
  font-size: 0.92rem;
  padding: 0.32rem 0 0.32rem 1.4rem;
  position: relative;
}

.content-card li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: 0.85rem;
}

.card-sport li::before { color: var(--gold); }

/* Countries */
.countries { margin-top: 3.2rem; text-align: center; }

.countries-title {
  font-size: 1.5rem;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.countries-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 640px;
  margin: 0 auto 1.8rem;
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.country-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.3rem 1.2rem;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.country-card:hover { border-color: rgba(24, 201, 100, 0.5); transform: translateY(-4px); }

.country-card h4 { font-size: 1rem; margin-bottom: 0.45rem; }
.country-card p { color: var(--text-muted); font-size: 0.84rem; line-height: 1.7; }

/* ===== Sport / tactic board ===== */
.sport-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3.5rem;
  align-items: center;
}

.sport-content h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.sport-content > p { color: var(--text-muted); margin-bottom: 1.6rem; }

.sport-list {
  list-style: none;
  margin-bottom: 2rem;
}

.sport-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.55rem 0;
  font-weight: 600;
  font-size: 0.98rem;
}

.sport-list li span {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(24, 201, 100, 0.10);
  border: 1px solid rgba(24, 201, 100, 0.3);
  font-size: 1.05rem;
  flex-shrink: 0;
}

.sport-visual { position: relative; }

.tactic-svg {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--card-border);
}

.tactic-svg .pitch-lines * {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}

.sport-visual.revealed .tactic-svg .pitch-lines * {
  animation: drawLine 1.3s ease forwards;
}

.shot-path {
  fill: none;
  opacity: 0;
  transition: opacity 0.6s ease 1.2s;
}

.sport-visual.revealed .shot-path {
  opacity: 1;
  animation: ants 1.2s linear infinite;
}

@keyframes ants { to { stroke-dashoffset: -34; } }

.tactic-players-a circle, .tactic-players-b circle {
  transform-box: fill-box;
  transform-origin: center;
  animation: playerPulse 2.6s ease-in-out infinite;
}

.tactic-players-a circle:nth-child(2) { animation-delay: 0.4s; }
.tactic-players-a circle:nth-child(3) { animation-delay: 0.8s; }
.tactic-players-a circle:nth-child(4) { animation-delay: 1.2s; }
.tactic-players-a circle:nth-child(5) { animation-delay: 1.6s; }
.tactic-players-b circle:nth-child(2) { animation-delay: 0.6s; }
.tactic-players-b circle:nth-child(3) { animation-delay: 1.0s; }
.tactic-players-b circle:nth-child(4) { animation-delay: 1.4s; }

@keyframes playerPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.25); }
}

.ticker {
  position: absolute;
  left: 12px; right: 12px; bottom: 12px;
  display: flex;
  gap: 0.6rem;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, #000 85%, transparent);
  mask-image: linear-gradient(90deg, #000 85%, transparent);
}

.ticker-item {
  flex-shrink: 0;
  background: rgba(7, 9, 15, 0.88);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 0.4rem 0.8rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  animation: tickerSlide 9s linear infinite;
}

@keyframes tickerSlide {
  from { transform: translateX(0); }
  to { transform: translateX(-104%); }
}

/* ===== Pricing ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.9rem;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}

.price-card::after {
  content: "⚽";
  position: absolute;
  right: -22px; bottom: -26px;
  font-size: 6.5rem;
  opacity: 0.05;
  transform: rotate(-15deg);
  transition: transform 0.5s ease, opacity 0.3s ease;
  pointer-events: none;
}

.price-card:hover {
  transform: translateY(-7px);
  border-color: rgba(24, 201, 100, 0.55);
  box-shadow: var(--shadow);
}

.price-card:hover::after { transform: rotate(20deg) scale(1.1); opacity: 0.09; }

.price-card-featured {
  border: 2px solid var(--gold);
  box-shadow: 0 0 60px rgba(255, 206, 0, 0.16);
  background: linear-gradient(180deg, rgba(255, 206, 0, 0.05), var(--card) 45%);
}

.ribbon {
  position: absolute;
  top: 14px; right: -38px;
  background: var(--gradient-gold);
  color: #2b1d00;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  padding: 0.32rem 2.8rem;
  transform: rotate(38deg);
  white-space: nowrap;
}

.plan-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #6fe2a4;
  background: rgba(24, 201, 100, 0.10);
  border: 1px solid rgba(24, 201, 100, 0.3);
  border-radius: 6px;
  padding: 0.28rem 0.7rem;
  margin-bottom: 1rem;
}

.price-card-featured .plan-tag {
  color: var(--gold);
  background: rgba(255, 206, 0, 0.08);
  border-color: rgba(255, 206, 0, 0.4);
}

.price-card h3 { font-size: 1.08rem; margin-bottom: 0.2rem; }

.price-desc { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 1.1rem; }

.price { margin-bottom: 1.2rem; }

.price .amount {
  font-size: 2.3rem;
  font-weight: 900;
  font-style: italic;
  font-variant-numeric: tabular-nums;
}

.price-card-featured .price .amount {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.price .period { color: var(--text-muted); font-size: 0.9rem; margin-left: 0.35rem; }

.price-features { list-style: none; margin-bottom: 1.6rem; flex-grow: 1; }

.price-features li {
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 0.32rem 0 0.32rem 1.5rem;
  position: relative;
}

.price-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: 0.78rem;
}

.price-card-featured .price-features li::before { color: var(--gold); }

.pricing-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 2.2rem;
}

/* ===== Steps ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  text-align: center;
}

.step {
  position: relative;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2.1rem 1.6rem;
}

.step-num {
  width: 52px; height: 52px;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gradient);
  color: #04140a;
  font-weight: 900;
  font-style: italic;
  font-size: 1.3rem;
  box-shadow: 0 6px 22px rgba(24, 201, 100, 0.4);
}

.step h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.step p { color: var(--text-muted); font-size: 0.92rem; }

/* ===== Devices ===== */
.device-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.device-badges span {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 999px;
  padding: 0.55rem 1.25rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 600;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.device-badges span:hover {
  border-color: var(--green);
  color: #fff;
  transform: translateY(-3px);
}

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 0.8rem; }

.faq-item {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.faq-item.open { border-color: rgba(24, 201, 100, 0.5); }

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

.faq-icon {
  font-size: 1.35rem;
  color: var(--green);
  transition: transform 0.25s;
  flex-shrink: 0;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.32s ease; }

.faq-a p {
  padding: 0 1.4rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.94rem;
}

/* ===== CTA ===== */
.cta {
  position: relative;
  background: linear-gradient(135deg, #0a7a3c 0%, #18c964 55%, #76d600 100%);
  padding: 5rem 0;
  overflow: hidden;
}

.cta-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 30%, rgba(255, 255, 255, 0.14) 0 56px, transparent 57px),
    radial-gradient(circle at 88% 70%, rgba(255, 255, 255, 0.12) 0 72px, transparent 73px),
    repeating-linear-gradient(90deg, transparent 0 110px, rgba(255, 255, 255, 0.05) 110px 220px);
}

.cta-inner { position: relative; text-align: center; }

.cta h2 {
  font-size: clamp(1.9rem, 3.8vw, 2.6rem);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.7rem;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.25);
}

.cta p { color: rgba(255, 255, 255, 0.94); font-size: 1.12rem; margin-bottom: 1.9rem; }

/* ===== Footer ===== */
.footer {
  background: #05070c;
  border-top: 1px solid var(--card-border);
  padding: 3.5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

.footer-brand .logo img { height: 64px; }

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 1rem;
  max-width: 300px;
}

.footer-col h4 { font-size: 0.95rem; margin-bottom: 1rem; color: #fff; }

.footer-col a, .footer-col span {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.25rem 0;
}

.footer-col a:hover { color: var(--green-2); }

.footer-bottom {
  border-top: 1px solid var(--card-border);
  padding: 1.4rem 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ===== TOR! overlay ===== */
.tor-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-content: center;
  text-align: center;
  pointer-events: none;
  visibility: hidden;
}

.tor-overlay.show { visibility: visible; }

.tor-flash {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.32), rgba(24, 201, 100, 0.14) 45%, transparent 75%);
  opacity: 0;
}

.tor-overlay.show .tor-flash { animation: torFlash 1.9s ease forwards; }

@keyframes torFlash {
  0% { opacity: 0; }
  12% { opacity: 1; }
  100% { opacity: 0; }
}

.tor-text {
  position: relative;
  font-size: clamp(4.5rem, 17vw, 11rem);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow:
    0 0 40px rgba(24, 201, 100, 0.9),
    0 0 90px rgba(24, 201, 100, 0.5),
    0 6px 0 rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: scale(0.4) rotate(-6deg);
}

.tor-text span { color: var(--gold); }

.tor-overlay.show .tor-text { animation: torText 1.9s cubic-bezier(0.2, 1.4, 0.3, 1) forwards; }

@keyframes torText {
  0% { opacity: 0; transform: scale(0.4) rotate(-6deg); }
  18% { opacity: 1; transform: scale(1.08) rotate(1.5deg); }
  28% { transform: scale(1) rotate(0); }
  78% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.12); }
}

.tor-sub {
  position: relative;
  font-weight: 800;
  font-size: clamp(1rem, 2.6vw, 1.4rem);
  color: rgba(255, 255, 255, 0.92);
  opacity: 0;
}

.tor-overlay.show .tor-sub { animation: torSub 1.9s ease forwards; }

@keyframes torSub {
  0%, 20% { opacity: 0; transform: translateY(16px); }
  35% { opacity: 1; transform: translateY(0); }
  80% { opacity: 1; }
  100% { opacity: 0; }
}

.tor-confetti { position: absolute; inset: 0; overflow: hidden; }

.tor-confetti i {
  position: absolute;
  top: -4vh;
  width: 10px; height: 16px;
  border-radius: 2px;
  opacity: 0;
  animation: confettiFall var(--dur, 1.9s) ease-in var(--delay, 0s) forwards;
}

@keyframes confettiFall {
  0% { opacity: 1; transform: translateY(0) rotate(0); }
  100% { opacity: 0.9; transform: translateY(108vh) rotate(640deg); }
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .journey-overlay, .hero-ball, .hero-ball-shadow, .floodlight { display: none; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .journey-overlay { display: none; }
}

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-inline: auto; }
  .hero-actions, .hero-trust { justify-content: center; }
  .pitch-wrap { max-width: 320px; margin-top: 1.5rem; }
  .features-grid, .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .content-grid, .countries-grid { grid-template-columns: repeat(2, 1fr); }
  .sport-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav {
    position: fixed;
    top: 78px;
    left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(7, 9, 15, 0.98);
    border-bottom: 1px solid var(--card-border);
    padding: 0.5rem 0;
    transform: translateY(-140%);
    transition: transform 0.25s ease;
    z-index: 99;
  }

  .nav.open { transform: translateY(0); }
  .nav a { padding: 0.95rem 5%; }
  .nav a::after { display: none; }

  .nav-toggle { display: flex; margin-left: auto; }
  .btn-header { display: none; }
  .logo img { height: 46px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid, .steps-grid, .content-grid, .countries-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .section { padding: 3.8rem 0; }
  .hero-title { font-size: clamp(2rem, 9vw, 2.6rem); }
}
