/* ============================================================
   IPTVGerman — Main Stylesheet
   ============================================================ */

/* ---------- Base ---------- */
body {
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--space-6);
}

section {
  padding-block: var(--section-pad);
}

.bg-black { background: var(--black); }
.bg-alt { background: var(--bg-alt); }
.bg-alt-2 { background: var(--bg-alt-2); }

/* ---------- Typography helpers ---------- */
.display {
  font-family: var(--font-display);
  letter-spacing: 0.5px;
  line-height: 1;
}

.section-head {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 52px);
  color: var(--white);
  letter-spacing: 1px;
}

.section-head .subtitle {
  margin-top: var(--space-4);
  color: var(--text-muted);
  font-size: 16px;
}

.gold { color: var(--gold); }
.red { color: var(--red); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: var(--fw-bold);
  border-radius: var(--radius-pill);
  padding: 12px 26px;
  transition: background var(--t-base), color var(--t-base),
    transform var(--t-base), box-shadow var(--t-base);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #ff2b2b 0%, var(--red) 50%, #a30000 100%);
  color: var(--white);
  letter-spacing: 0.3px;
  box-shadow: 0 8px 24px rgba(var(--red-rgb), 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #ffe27a 0%, var(--gold) 50%, #e0a800 100%);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(var(--gold-rgb), 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn-gold {
  background: linear-gradient(135deg, #ffe98a 0%, var(--gold) 45%, #e0a800 100%);
  color: var(--black);
  letter-spacing: 0.3px;
  box-shadow: 0 8px 24px rgba(var(--gold-rgb), 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}
.btn-gold:hover {
  background: linear-gradient(135deg, #ff2b2b 0%, var(--red) 50%, #a30000 100%);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(var(--red-rgb), 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.btn-outline-gold {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: linear-gradient(135deg, rgba(var(--gold-rgb), 0.14), rgba(var(--gold-rgb), 0));
  box-shadow: inset 0 0 22px rgba(var(--gold-rgb), 0.08);
}
.btn-outline-gold:hover {
  background: linear-gradient(135deg, #ffe98a 0%, var(--gold) 50%, #e0a800 100%);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(var(--gold-rgb), 0.4);
}

.btn-lg {
  font-size: 18px;
  padding: 16px 36px;
}

/* Hero CTA — premium gold gradient */
.hero-ctas .btn {
  background: linear-gradient(135deg, #ffe98a 0%, var(--gold) 45%, #e0a800 100%);
  color: var(--black);
  box-shadow: 0 10px 30px rgba(var(--gold-rgb), 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.hero-ctas .btn:hover {
  background: linear-gradient(135deg, #ff2b2b 0%, var(--red) 50%, #a30000 100%);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(var(--red-rgb), 0.45);
}

/* ============================================================
   Announcement bar + Navigation
   ============================================================ */
.announce {
  background: var(--red);
  color: var(--gold);
  font-size: 13px;
  text-align: center;
  padding: 7px var(--space-10) 7px var(--space-6);
  position: relative;
}
.announce.hidden { display: none; }
.announce .close {
  position: absolute;
  right: var(--space-4);
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 16px;
  line-height: 1;
  opacity: 0.8;
}
.announce .close:hover { opacity: 1; }

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--black);
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(to right, var(--red), var(--gold)) 1;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  height: 86px;
}
.logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 1px;
}
.logo .l-iptv { color: var(--gold); }
.logo .l-german { color: var(--red); }
.logo-img { height: 60px; width: auto; display: block; }
.f-logo .logo-img { height: 78px; }
@media (max-width: 480px) { .logo-img { height: 50px; } }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}
.nav-links a {
  font-size: 14px;
  font-weight: var(--fw-medium);
  color: var(--white);
  transition: color var(--t-fast);
}
.nav-links a:hover { color: var(--gold); }

.nav-cta { display: flex; align-items: center; gap: var(--space-4); }
.nav-cta .btn { border-radius: var(--radius-pill); padding: 10px 22px; }

.hamburger {
  display: none;
  color: var(--gold);
  font-size: 24px;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--black);
  overflow: hidden;
  padding-block: var(--space-20);
}
.hero::before {
  /* faint diagonal grid texture */
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(var(--red-rgb), 0.04) 0,
    rgba(var(--red-rgb), 0.04) 1px,
    transparent 1px,
    transparent 22px
  );
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  top: 40%;
  left: 30%;
  width: 700px;
  height: 700px;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(var(--red-rgb), 0.18) 0%,
    transparent 65%
  );
  pointer-events: none;
  animation: glowPulse 3s infinite ease-in-out;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 60% 40%;
  gap: var(--space-12);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: var(--white);
  font-size: 13px;
  font-weight: var(--fw-semibold);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-6);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 72px);
  line-height: 0.95;
  color: var(--white);
  letter-spacing: 1px;
  animation: fadeUp 0.6s ease-out both;
}
.hero h1 .line2 { color: var(--gold); display: block; }

.hero .subhead {
  margin-top: var(--space-6);
  max-width: 560px;
  font-size: 18px;
  color: var(--text-dim);
  line-height: 1.6;
  animation: fadeUp 0.6s ease-out 0.1s both;
}
.hero .subhead-lead {
  font-size: 20px;
  font-weight: var(--fw-semibold);
  color: var(--white);
  margin-bottom: var(--space-3);
}
.hero .subhead-lead + .subhead { margin-top: 0; }

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  margin-top: var(--space-6);
  animation: fadeUp 0.6s ease-out 0.2s both;
}
.trust-badges span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text-dim);
}
.trust-badges i { color: var(--gold); }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-8);
  animation: fadeUp 0.6s ease-out 0.3s both;
}
.hero .pay-note {
  margin-top: var(--space-5);
  font-size: 13px;
  color: var(--text-muted);
  animation: fadeUp 0.6s ease-out 0.4s both;
}

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

/* hero stat card */
.hero-card {
  background: var(--gray-dark);
  border: 1px solid var(--red);
  border-radius: var(--radius-card-lg);
  box-shadow: var(--shadow-red-strong);
  padding: var(--space-3);
  animation: fadeUp 0.6s ease-out 0.3s both;
}

/* TV / live preview */
.hero-preview {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-bottom: var(--space-3);
  background:
    radial-gradient(circle at 50% 38%, rgba(var(--red-rgb), 0.35), transparent 60%),
    linear-gradient(150deg, #2a1216 0%, #120a14 55%, #0a0a12 100%);
}
.hero-preview img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.badge-live,
.badge-quality {
  position: absolute;
  top: var(--space-3);
  z-index: 2;
  font-size: 12px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}
.badge-live {
  left: var(--space-3);
  background: var(--red);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.badge-live .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--white);
  animation: blink 1.4s infinite ease-in-out;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }
.badge-quality {
  right: var(--space-3);
  background: rgba(0, 0, 0, 0.6);
  color: var(--white);
  backdrop-filter: blur(4px);
}
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(var(--red-rgb), 0.85);
  color: var(--white);
  font-size: 22px;
  display: grid;
  place-items: center;
  padding-left: 4px;
  box-shadow: 0 0 0 0 rgba(var(--red-rgb), 0.6);
  animation: playPulse 2s infinite;
  transition: transform var(--t-base), background var(--t-base);
}
.play-btn:hover { transform: translate(-50%, -50%) scale(1.1); background: var(--red); }
@keyframes playPulse {
  0% { box-shadow: 0 0 0 0 rgba(var(--red-rgb), 0.5); }
  70% { box-shadow: 0 0 0 22px rgba(var(--red-rgb), 0); }
  100% { box-shadow: 0 0 0 0 rgba(var(--red-rgb), 0); }
}
.preview-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: var(--space-6) var(--space-4) var(--space-4);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
}
.preview-caption strong { display: block; color: var(--white); font-size: 16px; }
.preview-caption span { font-size: 13px; color: var(--text-dim); }

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
}
.stat {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: var(--space-2) var(--space-3);
}
.stat .num {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--gold);
  line-height: 1;
}
.stat .label {
  margin-top: 2px;
  font-size: 11px;
  color: var(--gray);
}

.server-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  margin-top: var(--space-2);
  padding: var(--space-2) var(--space-3);
  font-size: 13px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  color: var(--text-dim);
}
.server-bar i { color: var(--gold); }
.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ecc71;
  margin-right: 8px;
  box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.6);
  animation: statusPulse 2s infinite;
}
@keyframes statusPulse {
  0% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(46, 204, 113, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}

/* device ticker */
.ticker {
  background: var(--black);
  border-top: 1px solid #222;
  padding-block: var(--space-5);
  overflow: hidden;
}
.ticker-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  color: var(--gray);
  font-weight: var(--fw-medium);
  font-size: 15px;
}
.ticker-row span { display: inline-flex; align-items: center; gap: 8px; }
.ticker-row i { color: var(--red); }

/* German flag divider */
.flag-divider { height: 9px; display: flex; }
.flag-divider span { flex: 1; height: 3px; display: block; }
.flag-divider .s-black { background: var(--black); }
.flag-divider .s-red { background: var(--red); }
.flag-divider .s-gold { background: var(--gold); }
.flag-divider { flex-direction: column; }

/* ============================================================
   Generic card grid
   ============================================================ */
.grid {
  display: grid;
  gap: var(--space-6);
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: var(--space-6);
  transition: border-color var(--t-base), box-shadow var(--t-base),
    transform var(--t-base);
}

/* ---------- Features ---------- */
.feature-card {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.feature-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(var(--gold-rgb), 0.15);
  color: var(--gold);
  font-size: 20px;
  margin: 0 auto var(--space-4);
}
.feature-card h3 {
  font-size: 18px;
  font-weight: var(--fw-semibold);
  color: var(--white);
  margin-bottom: var(--space-2);
  line-height: 1.3;
}
.feature-card h3 .red { color: var(--red); }
.feature-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}
.feature-card p strong { color: var(--text-dim); font-weight: var(--fw-bold); }

/* Keyword tags inside cards */
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: auto;
  padding-top: var(--space-5);
}
.card-tag {
  background: rgba(var(--red-rgb), 0.1);
  border: 1px solid rgba(var(--red-rgb), 0.32);
  color: #ff6a6a;
  font-size: 12px;
  font-weight: var(--fw-medium);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

/* Section kicker badge + keyword pill row */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(var(--red-rgb), 0.12);
  border: 1px solid rgba(var(--red-rgb), 0.45);
  color: var(--red);
  font-size: 12px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-5);
}
.kicker i { color: var(--gold); }
.section-head .subtitle strong { color: var(--text-dim); }
.kw-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-6);
}
.kw-pill {
  background: rgba(var(--red-rgb), 0.14);
  border: 1px solid rgba(var(--red-rgb), 0.4);
  color: #ff6a6a;
  font-size: 13px;
  font-weight: var(--fw-semibold);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
}

/* ============================================================
   Pricing
   ============================================================ */
.countdown-wrap {
  text-align: center;
  margin-bottom: var(--space-10);
}
.countdown-wrap .label {
  color: var(--text-dim);
  font-weight: var(--fw-medium);
  margin-bottom: var(--space-3);
}
.countdown {
  display: inline-flex;
  gap: var(--space-3);
}
.cd-box {
  background: var(--gold);
  color: var(--black);
  border-radius: var(--radius-card);
  padding: var(--space-3) var(--space-4);
  min-width: 64px;
  text-align: center;
}
.cd-box .cd-num {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
}
.cd-box .cd-unit {
  font-size: 11px;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  align-items: stretch;
}
.price-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-card-lg);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  transition: border-color var(--t-base), box-shadow var(--t-base),
    transform var(--t-base);
}
.price-card:hover { box-shadow: 0 0 40px rgba(var(--red-rgb), 0.25); }
.price-card.popular {
  border: 2px solid var(--red);
  transform: scale(1.04);
  box-shadow: 0 0 40px rgba(var(--red-rgb), 0.25);
  animation: popularPulse 3s infinite ease-in-out;
}
@keyframes popularPulse {
  0%, 100% { box-shadow: 0 0 30px rgba(var(--red-rgb), 0.2); }
  50% { box-shadow: 0 0 55px rgba(var(--red-rgb), 0.45); }
}
.price-card.year {
  border: 2px solid var(--gold);
  animation: goldFloat 2.4s infinite ease-in-out;
}
.price-card.year:hover { box-shadow: 0 0 50px rgba(var(--gold-rgb), 0.45); }
@keyframes goldFloat {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 0 30px rgba(var(--gold-rgb), 0.2);
  }
  50% {
    transform: translateY(-12px);
    box-shadow: 0 16px 55px rgba(var(--gold-rgb), 0.45);
  }
}
.badge-popular {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: var(--fw-bold);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.price-card h3 {
  font-size: 16px;
  font-weight: var(--fw-semibold);
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.price-now {
  font-family: var(--font-display);
  font-size: 46px;
  color: var(--white);
  margin-top: var(--space-3);
  line-height: 1;
}
.price-now small { font-size: 16px; color: var(--gray); font-family: var(--font-body); }
.price-was {
  color: var(--gray);
  text-decoration: line-through;
  margin-top: var(--space-1);
  font-size: 15px;
}
.save-badge {
  display: inline-block;
  background: rgba(var(--red-rgb), 0.15);
  color: var(--red);
  font-size: 12px;
  font-weight: var(--fw-bold);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-top: var(--space-3);
}
.price-permonth { color: var(--gold); font-size: 13px; margin-top: var(--space-2); font-weight: var(--fw-semibold); }
.price-features {
  margin: var(--space-6) 0;
  display: grid;
  gap: var(--space-2);
  flex: 1;
}
.price-features li {
  font-size: 14px;
  color: var(--text-dim);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.price-features li i { color: var(--red); margin-top: 3px; }
.price-card .btn { width: 100%; margin-top: var(--space-5); }

.pay-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-5);
  margin-top: var(--space-10);
  color: var(--gray);
  font-size: 14px;
}
.pay-row .pay-icons { display: flex; gap: var(--space-4); font-size: 26px; color: var(--text-dim); }

/* ============================================================
   Channels
   ============================================================ */
.tab-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: var(--space-10);
}
.tab {
  background: var(--gray-mid);
  color: var(--gray);
  font-size: 14px;
  font-weight: var(--fw-medium);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  transition: background var(--t-base), color var(--t-base);
}
.tab.active,
.tab:hover {
  background: var(--red);
  color: var(--white);
}

.channel-card {
  text-align: center;
  padding: var(--space-6);
}
.channel-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.channel-card .emoji {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(var(--red-rgb), 0.15);
  color: var(--red);
  font-size: 26px;
  transition: background var(--t-base), color var(--t-base);
}
.channel-card:hover .emoji {
  background: rgba(var(--gold-rgb), 0.15);
  color: var(--gold);
}
.channel-card h3 {
  margin-top: var(--space-3);
  font-size: 16px;
  font-weight: var(--fw-semibold);
  color: var(--white);
}
.channel-card .count { color: var(--red); font-size: 14px; margin-top: 4px; font-weight: var(--fw-medium); }
.channel-card p { font-size: 13px; color: var(--gray); line-height: 1.6; margin-top: var(--space-3); }
.channel-card p strong,
.channels-more p strong { color: var(--text-dim); }

.channels-more {
  text-align: center;
  margin-top: var(--space-10);
  color: var(--text-muted);
}
.channels-more a {
  display: inline-block;
  margin-top: var(--space-4);
  color: var(--gold);
  font-weight: var(--fw-semibold);
}

/* ============================================================
   Trust / Why-us section
   ============================================================ */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}
.trust-content h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 44px);
  color: var(--white);
  letter-spacing: 0.5px;
  line-height: 1.06;
  margin-bottom: var(--space-5);
}
.trust-content h2 .red { color: var(--red); }
.trust-content h2 .gold { color: var(--gold); }
.trust-lead { color: var(--text-dim); font-size: 17px; line-height: 1.7; margin-bottom: var(--space-6); }
.trust-lead strong { color: var(--white); }
.trust-checks { display: grid; gap: var(--space-4); margin-bottom: var(--space-6); }
.trust-checks li {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  color: var(--gray);
  font-size: 15px;
  line-height: 1.6;
}
.trust-checks li i { color: var(--gold); font-size: 18px; margin-top: 2px; flex-shrink: 0; }
.trust-checks strong { color: var(--text-dim); }
.trust-content .kw-row { justify-content: flex-start; margin-top: 0; }

/* Dashboard mockup */
.dash {
  position: relative;
  background: var(--gray-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-card-lg);
  box-shadow: var(--shadow-lg);
}
.dash-bar {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-card-lg) var(--radius-card-lg) 0 0;
}
.dash-dots { display: inline-flex; gap: 6px; }
.dash-dots i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.dash-dots i:nth-child(1) { background: #ff5f57; }
.dash-dots i:nth-child(2) { background: #febc2e; }
.dash-dots i:nth-child(3) { background: #28c840; }
.dash-title { margin-left: auto; font-size: 13px; color: var(--text-muted); }
.dash-body { padding: var(--space-5); display: grid; gap: var(--space-3); }
.dash-stats { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }
.dash-stat {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: var(--space-3) var(--space-4);
}
.dash-stat .n { font-family: var(--font-display); font-size: 28px; color: var(--red); line-height: 1; }
.dash-stat .l { font-size: 12px; color: var(--gray); margin-top: 4px; }
.dash-preview {
  position: relative;
  aspect-ratio: 3 / 2;
  border-radius: var(--radius-card);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 38%, rgba(var(--red-rgb), 0.35), transparent 60%),
    linear-gradient(150deg, #2a1216 0%, #120a14 55%, #0a0a12 100%);
}
.dash-preview img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.dash-live,
.dash-row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: var(--space-3) var(--space-4);
}
.dash-live { justify-content: space-between; color: var(--white); font-weight: var(--fw-semibold); font-size: 14px; }
.dash-live .live-dot { display: inline-flex; align-items: center; gap: 6px; color: var(--red); font-size: 12px; font-weight: var(--fw-bold); }
.dash-live .live-dot .d { width: 7px; height: 7px; border-radius: 50%; background: var(--red); animation: blink 1.4s infinite ease-in-out; }
.dash-ico {
  width: 30px;
  height: 30px;
  border-radius: var(--radius-card);
  display: grid;
  place-items: center;
  background: rgba(var(--red-rgb), 0.15);
  color: var(--red);
  font-size: 13px;
  flex-shrink: 0;
}
.dash-rt { display: flex; flex-direction: column; line-height: 1.25; }
.dash-rt strong { color: var(--white); font-size: 14px; font-weight: var(--fw-semibold); }
.dash-rt small { color: var(--gray); font-size: 12px; }
.dash-q { margin-left: auto; color: #2ecc71; font-size: 12px; font-weight: var(--fw-bold); }
.dash-badge {
  position: absolute;
  right: var(--space-5);
  bottom: var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: rgba(18, 18, 18, 0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: var(--space-3) var(--space-4);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(4px);
}
.dash-badge-ico {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(46, 204, 113, 0.18);
  color: #2ecc71;
}
.dash-badge strong { display: block; color: var(--white); font-size: 13px; }
.dash-badge small { color: var(--gray); font-size: 12px; }

/* Trust stats row */
.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-16);
}
.trust-stat {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-card-lg);
  padding: var(--space-6);
  text-align: center;
  transition: border-color var(--t-base), transform var(--t-base);
}
.trust-stat:hover { border-color: var(--red); transform: translateY(-3px); }
.trust-stat .n { font-family: var(--font-display); font-size: 40px; color: var(--red); line-height: 1; }
.trust-stat .l { color: var(--gray); font-size: 14px; margin-top: var(--space-2); }

/* ============================================================
   Poster showcase (infinite scroll)
   ============================================================ */
.poster-rows {
  display: grid;
  gap: var(--space-4);
  margin-top: var(--space-12);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%);
}
.poster-row { overflow: hidden; }
.poster-track {
  display: flex;
  width: max-content;
  will-change: transform;
}
.poster-track--left { animation: posterLeft 40s linear infinite; }
.poster-track--right { animation: posterRight 45s linear infinite; }
.poster-row:hover .poster-track { animation-play-state: paused; }
@keyframes posterLeft {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-1 * var(--marquee-d, 50%))); }
}
@keyframes posterRight {
  from { transform: translateX(calc(-1 * var(--marquee-d, 50%))); }
  to { transform: translateX(0); }
}

.poster {
  position: relative;
  flex: 0 0 130px;
  width: 130px;
  height: 190px;
  margin-right: var(--space-4);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  background-color: var(--gray-mid);
  background-size: cover;
  background-position: center;
  display: block;
  text-decoration: none;
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out);
}
.poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.15) 45%, transparent 70%);
}
.poster:hover { transform: translateY(-6px); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6); border-color: var(--gold); }
.poster-info { position: absolute; left: 10px; right: 10px; bottom: 10px; z-index: 2; }
.poster-info strong { display: block; color: var(--white); font-size: 13px; font-weight: var(--fw-semibold); line-height: 1.2; }
.poster-info small { color: var(--text-dim); font-size: 11px; }
.poster-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  background: var(--gold);
  color: var(--black);
  font-size: 10px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.5px;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}
.poster-live {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.5px;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}
.poster-live .d { width: 5px; height: 5px; border-radius: 50%; background: var(--white); animation: blink 1.4s infinite ease-in-out; }

@media (prefers-reduced-motion: reduce) {
  .poster-track--left, .poster-track--right,
  .sport-track--left, .sport-track--right { animation: none; }
}

/* ============================================================
   Live-Sport scroller
   ============================================================ */
.sport-rows {
  margin-top: var(--space-10);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%);
}
.sport-row { overflow: hidden; }
.sport-track { display: flex; width: max-content; will-change: transform; }
.sport-track--left { animation: posterLeft 50s linear infinite; }
.sport-track--right { animation: posterRight 60s linear infinite; }
.sport-row:hover .sport-track { animation-play-state: paused; }

.sport-card {
  position: relative;
  flex: 0 0 160px;
  width: 160px;
  height: 240px;
  margin-right: 14px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-color: var(--gray-mid);
  background-size: cover;
  background-position: center;
  display: block;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out), border-color var(--t-base);
}
.sport-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.85) 72%, rgba(0, 0, 0, 0.97) 100%);
}
.sport-card:hover { transform: scale(1.05); box-shadow: 0 8px 32px rgba(var(--red-rgb), 0.35); border-color: var(--red); }
.sport-bottom { position: absolute; left: 0; right: 0; bottom: 0; padding: 10px; z-index: 2; }
.sport-league { font-size: 9px; font-weight: var(--fw-bold); color: var(--gold); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 3px; }
.sport-title { font-size: 13px; font-weight: var(--fw-semibold); color: #fff; line-height: 1.25; }
.sport-live {
  position: absolute; top: 9px; left: 9px; z-index: 2;
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--red); color: #fff; font-size: 8px; font-weight: var(--fw-bold);
  letter-spacing: 0.5px; padding: 3px 8px; border-radius: 5px;
  box-shadow: 0 2px 8px rgba(var(--red-rgb), 0.5);
}
.sport-live .d { width: 5px; height: 5px; border-radius: 50%; background: #fff; animation: blink 1s infinite; }
.sport-qual {
  position: absolute; top: 9px; right: 9px; z-index: 2;
  background: var(--gold); color: #000; font-size: 8px; font-weight: var(--fw-bold);
  letter-spacing: 0.5px; padding: 3px 8px; border-radius: 5px;
  box-shadow: 0 2px 8px rgba(var(--gold-rgb), 0.4);
}
.sport-soon {
  position: absolute; top: 9px; right: 9px; z-index: 2;
  background: rgba(0, 0, 0, 0.7); color: var(--gold); border: 1px solid var(--gold);
  font-size: 8px; font-weight: var(--fw-bold); letter-spacing: 0.5px; padding: 3px 8px; border-radius: 5px;
}
.sport-score {
  position: absolute; left: 9px; right: 9px; bottom: 68px; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(0, 0, 0, 0.75); border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px; padding: 5px 8px;
}
.sport-score .t { font-size: 9px; font-weight: var(--fw-semibold); color: #fff; }
.sport-score .n { font-size: 13px; font-weight: var(--fw-bold); color: var(--gold); }
.sport-score .s { font-size: 10px; color: rgba(255, 255, 255, 0.4); }

.sport-cta {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--space-4);
  background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-card-lg);
  padding: var(--space-4) var(--space-6); margin-top: var(--space-8);
}
.sport-cta p { font-size: 14px; color: var(--text-dim); line-height: 1.6; margin: 0; }
.sport-cta p strong { color: var(--white); }
.sport-cta p .red { color: var(--red); }
.sport-cta .btn { flex-shrink: 0; }

/* ============================================================
   Devices
   ============================================================ */
.device-card {
  text-align: center;
  border-radius: var(--radius-card-lg);
  padding: var(--space-6) var(--space-4);
}
.device-card:hover { transform: scale(1.05); border-color: var(--red); }
.device-card i { font-size: 40px; color: var(--red); }
.device-card .emoji { font-size: 36px; line-height: 1; }
.device-card h3 {
  margin-top: var(--space-3);
  font-size: 15px;
  font-weight: var(--fw-bold);
  color: var(--white);
}
.device-card p { font-size: 13px; color: var(--gray); margin-top: 4px; }

.apps-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-10);
}
.apps-row .apps-label { color: var(--text-dim); font-weight: var(--fw-semibold); margin-right: var(--space-2); }
.app-pill {
  background: var(--gray-mid);
  border: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 13px;
  font-weight: var(--fw-medium);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.info-bar {
  background: #0d0d0d;
  border-top: 1px solid var(--border);
  margin-top: var(--space-12);
  padding: var(--space-5);
  text-align: center;
  color: #666;
  font-size: 14px;
}

/* ============================================================
   How it works (steps)
   ============================================================ */
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}
.steps::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 16%;
  right: 16%;
  border-top: 2px dashed var(--gray-light);
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--space-6);
}
.step .step-num {
  font-family: var(--font-display);
  font-size: 80px;
  color: rgba(var(--red-rgb), 0.15);
  line-height: 0.8;
}
.step .step-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 24px;
  margin: calc(-1 * var(--space-6)) auto var(--space-4);
}
.step h3 {
  font-size: 20px;
  font-weight: var(--fw-semibold);
  color: var(--white);
  margin-bottom: var(--space-3);
}
.step p { font-size: 14px; color: var(--gray); line-height: 1.6; max-width: 300px; margin-inline: auto; }
.steps-cta { text-align: center; margin-top: var(--space-12); }

/* ============================================================
   Testimonials
   ============================================================ */
.rating-bar {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--gray-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: var(--space-3) var(--space-6);
  margin: 0 auto var(--space-12);
  color: var(--text-dim);
}
.rating-bar .stars { color: var(--gold); letter-spacing: 2px; }
.rating-bar strong { color: var(--white); }
.center-flex { display: flex; justify-content: center; }

.testi-card { display: flex; flex-direction: column; gap: var(--space-4); border-radius: var(--radius-card-lg); }
.testi-card .stars { color: var(--gold); letter-spacing: 2px; }
.testi-card .quote { font-style: italic; font-size: 14px; color: #cccccc; line-height: 1.7; }
.testi-author { display: flex; align-items: center; gap: var(--space-3); margin-top: auto; }
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: var(--fw-bold);
  font-size: 14px;
  flex-shrink: 0;
}
.testi-author .name { font-weight: var(--fw-semibold); color: var(--white); font-size: 14px; }
.testi-author .meta { font-size: 12px; color: var(--gray); }
.testi-author .meta .verified { color: var(--gold); }

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-5);
  margin-top: var(--space-12);
  color: var(--gray);
  font-size: 14px;
}
.trust-logos i { font-size: 26px; color: var(--text-dim); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 860px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  text-align: left;
  font-size: 16px;
  font-weight: var(--fw-semibold);
  color: var(--white);
  padding: var(--space-5) 0;
  transition: color var(--t-fast);
}
.faq-q:hover { color: var(--gold); }
.faq-q .icon { color: var(--red); font-size: 20px; flex-shrink: 0; transition: transform var(--t-base); }
.faq-item.open .faq-q { color: var(--gold); }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-base) ease;
}
.faq-a p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  padding-bottom: var(--space-5);
}

/* ============================================================
   SEO content block
   ============================================================ */
.seo-content { max-width: 900px; margin: 0 auto; }
.seo-content h2 {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: var(--space-6);
}
.seo-content h3 {
  color: var(--white);
  font-size: 22px;
  font-weight: var(--fw-bold);
  border-left: 3px solid var(--red);
  padding-left: var(--space-4);
  margin: var(--space-10) 0 var(--space-4);
}
.seo-content p { color: var(--gray); font-size: 15px; line-height: 1.8; margin-bottom: var(--space-4); }
.seo-content strong { color: var(--text-dim); }
.seo-content a:not(.btn) {
  color: var(--gold);
  font-weight: var(--fw-semibold);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--t-fast);
}
.seo-content a:not(.btn):hover { color: var(--red); }
.seo-content a:not(.btn) strong { color: inherit; }

/* Alternating white / black guide blocks */
.guide-block {
  padding: var(--space-8);
  border-radius: var(--radius-card-lg);
  margin-bottom: var(--space-5);
}
.guide-block h3 { margin-top: 0; }
.guide-block p:last-child { margin-bottom: 0; }

.guide-block--dark {
  background: #0d0d0d;
  border: 1px solid var(--border);
}

.guide-block--light { background: #ffffff; }
.guide-block--light h3 { color: #111111; }
.guide-block--light p { color: #333333; }
.guide-block--light strong { color: #000000; }
.guide-block--light a { color: var(--red); }
.guide-block--light a:hover { color: #a30000; }
.guide-block--light a strong { color: inherit; }

/* Conversion CTA at end of the guide */
.guide-cta {
  margin-top: var(--space-12);
  background: linear-gradient(135deg, rgba(var(--red-rgb), 0.12), rgba(var(--gold-rgb), 0.08));
  border: 1px solid rgba(var(--gold-rgb), 0.3);
  border-radius: var(--radius-card-lg);
  padding: var(--space-10) var(--space-8);
  text-align: center;
}
.guide-cta h3 {
  color: var(--white);
  font-size: 24px;
  font-weight: var(--fw-bold);
  margin: 0 0 var(--space-3);
  border-left: 0;
  padding-left: 0;
}
.guide-cta p { color: var(--text-dim); margin: 0 auto var(--space-6); max-width: 560px; }
.guide-cta-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--bg-deep);
  border-top: 3px solid transparent;
  border-image: linear-gradient(to right, var(--red), var(--gold)) 1;
  padding-block: var(--section-pad) var(--space-8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-10);
}
.footer .f-logo {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 1px;
}
.footer .f-logo .l-iptv { color: var(--gold); }
.footer .f-logo .l-german { color: var(--red); }
.footer .tagline { color: var(--text-dim); font-weight: var(--fw-medium); margin-top: var(--space-3); }
.footer .f-desc { color: var(--gray); font-size: 14px; line-height: 1.6; margin-top: var(--space-3); }
.footer h4 {
  color: var(--white);
  font-size: 15px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-5);
}
.footer ul { display: grid; gap: var(--space-3); }
.footer ul a, .footer ul li { color: var(--gray); font-size: 14px; transition: color var(--t-fast); }
.footer ul a:hover { color: var(--gold); }
.social-icons { display: flex; gap: var(--space-3); margin-top: var(--space-5); }
.social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 16px;
  transition: transform var(--t-base);
}
.social-icons a:hover { transform: translateY(-3px); }
.social-icons .wa { background: var(--whatsapp); }
.social-icons .tg { background: var(--telegram); }
.social-icons .em { background: var(--red); }
.footer .f-pay { display: flex; gap: var(--space-3); font-size: 22px; color: var(--text-dim); margin-top: var(--space-4); }

.footer-bottom {
  border-top: 1px solid var(--gray-light);
  margin-top: var(--space-12);
  padding-top: var(--space-6);
  text-align: center;
}
.footer-bottom .copy { color: #444; font-size: 12px; line-height: 1.6; }
.footer-bottom .seo-keywords { color: #333; font-size: 11px; margin-top: var(--space-3); }
.footer-bottom .backlinks { color: #444; font-size: 12px; line-height: 1.6; margin-top: var(--space-3); }
.footer-bottom .backlinks a { color: var(--gray); text-decoration: underline; }
.footer-bottom .backlinks a:hover { color: var(--gold); }

/* ============================================================
   Floating WhatsApp + conversion boosters
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
}
.wa-float .wa-btn {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 30px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform var(--t-base);
}
.wa-float .wa-btn:hover { transform: scale(1.1); }
.wa-float .wa-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: var(--fw-bold);
  display: grid;
  place-items: center;
}
.wa-float .wa-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--gray-dark);
  color: var(--white);
  font-size: 13px;
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base);
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* Exit intent modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
}
.modal-overlay.show { display: flex; }
.modal {
  position: relative;
  background: var(--gray-dark);
  border: 1px solid var(--red);
  border-radius: var(--radius-card-lg);
  box-shadow: var(--shadow-red-strong);
  max-width: 460px;
  width: 100%;
  padding: var(--space-10);
  text-align: center;
  animation: fadeUp 0.4s ease-out both;
}
.modal .modal-close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  color: var(--gray);
  font-size: 20px;
}
.modal .modal-close:hover { color: var(--white); }
.modal h3 { font-size: 24px; color: var(--white); font-weight: var(--fw-bold); margin-bottom: var(--space-4); }
.modal p { color: var(--text-dim); margin-bottom: var(--space-6); line-height: 1.6; }
.modal .btn { width: 100%; }
.modal .modal-decline { display: inline-block; margin-top: var(--space-4); color: var(--gray); font-size: 12px; }
.modal .modal-decline:hover { color: var(--text-dim); }

/* Mobile sticky bottom bar */
.sticky-bottom {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9998;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
}
.sb-text {
  font-size: clamp(12px, 3.5vw, 14px);
  font-weight: var(--fw-bold);
  color: var(--black);
  white-space: nowrap;
  flex-shrink: 1;
}
.sb-text strong { color: var(--red); }
.sb-btn {
  flex-shrink: 0;
  color: var(--black);
  font-weight: var(--fw-bold);
  font-size: clamp(12.5px, 3.6vw, 14px);
  letter-spacing: 0.2px;
  white-space: nowrap;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Social proof toast */
.toast {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 9997;
  background: var(--gray-dark);
  border-left: 3px solid var(--red);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-md);
  padding: var(--space-4) var(--space-5);
  font-size: 14px;
  color: var(--text-dim);
  max-width: 320px;
  transform: translateX(-120%);
  transition: transform 0.4s var(--ease-out);
}
.toast.show { transform: translateX(0); }
.toast .t-name { color: var(--white); font-weight: var(--fw-semibold); }

/* ============================================================
   Scroll animations
   ============================================================ */
.animate { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
.animate.visible { opacity: 1; transform: translateY(0); }
.animate.from-left { transform: translateX(-40px); }
.animate.from-right { transform: translateX(40px); }
.animate.from-left.visible,
.animate.from-right.visible { transform: translateX(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .animate { opacity: 1; transform: none; }
}

/* ============================================================
   UX, accessibility & premium polish
   ============================================================ */

/* Kill horizontal overflow from reveal transforms / decorative glows */
html { overflow-x: hidden; }
.hero-glow { max-width: 100vw; }

/* Anchor links land below the sticky navbar instead of under it */
section[id],
[id="kontakt"] { scroll-margin-top: 100px; }

/* Visible keyboard focus for accessibility */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.tab:focus-visible,
.faq-q:focus-visible,
.hamburger:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Announcement bar inner elements */
.announce strong { color: var(--white); }
.announce a {
  color: var(--white);
  text-decoration: underline;
  font-weight: var(--fw-bold);
  margin-left: 6px;
  white-space: nowrap;
}

/* Tactile press feedback on every button */
.btn:active { transform: translateY(1px) scale(0.995); }

/* Premium mobile sticky bar — one full-width gold CTA button */
.sticky-bottom {
  background: linear-gradient(135deg, #ffe98a 0%, var(--gold) 45%, #e0a800 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.18);
  box-shadow: 0 -8px 26px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: filter var(--t-fast);
}
.sticky-bottom:hover { filter: brightness(1.03); }
.sticky-bottom:active { filter: brightness(0.95); }

/* ---------- Premium feel: selection, scroll, glass nav ---------- */

/* Branded text selection */
::selection { background: var(--gold); color: var(--black); }
::-moz-selection { background: var(--gold); color: var(--black); }

/* Smooth anchor scrolling clears the sticky navbar */
html { scroll-padding-top: 100px; }

/* Glassy sticky navbar */
.navbar {
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

/* Consistent, premium easing on interactive elements */
.btn,
.card,
.price-card,
.feature-icon,
.channel-card .emoji,
.device-card,
.tab,
.app-pill,
.social-icons a,
.wa-float .wa-btn {
  transition-timing-function: var(--ease-out);
}

/* Animated underline for nav links */
.nav-links a {
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--t-base) var(--ease-out);
}
.nav-links a:hover::after { width: 100%; }

/* Smoother reveal animations */
.animate { transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out); }

/* Refined custom scrollbar (desktop pointers only) */
@media (min-width: 769px) and (pointer: fine) {
  * { scrollbar-width: thin; scrollbar-color: #2a2a2a transparent; }
  ::-webkit-scrollbar { width: 10px; height: 10px; }
  ::-webkit-scrollbar-track { background: transparent; }
  ::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    border-radius: var(--radius-pill);
    border: 2px solid var(--black);
  }
  ::-webkit-scrollbar-thumb:hover { background: #3a3a3a; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card.popular { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding-block: var(--section-pad-mobile); }
  .footer { padding-block: var(--section-pad-mobile) var(--space-8); }

  /* Room for the fixed sticky bar so it never covers the footer */
  body { padding-bottom: 58px; }

  /* Compact mobile navbar (keeps desktop logo big, frees screen space) */
  .nav-inner { height: 62px; }
  .logo-img { height: 42px; }
  .nav-links { top: 62px; }
  html { scroll-padding-top: 76px; }
  section[id], [id="kontakt"] { scroll-margin-top: 76px; }

  /* Hero CTA: one line, full-width, scales to fit */
  .hero-ctas { width: 100%; }
  .hero-ctas .btn {
    width: 100%;
    white-space: nowrap;
    text-align: center;
    font-size: clamp(15px, 4.4vw, 18px);
    padding-inline: 16px;
    padding-block: 15px;
  }

  /* Calmer cards on mobile — no perpetual float/pulse (less jank + battery) */
  .price-card.year,
  .price-card.popular { animation: none; transform: none; }
  .hero-glow { animation: none; opacity: 0.6; }

  /* Comfortable guide reading on mobile */
  .guide-block { padding: var(--space-6); }
  .guide-cta { padding: var(--space-8) var(--space-6); }

  /* Sport scroller: stack CTA, full-width button */
  .sport-cta { flex-direction: column; align-items: stretch; text-align: center; }
  .sport-cta .btn { width: 100%; }

  /* Bigger tap targets in the mobile menu */
  .nav-links a { padding: 10px 0; font-size: 16px; }

  .nav-links {
    display: none;
    position: absolute;
    top: 86px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: var(--black);
    border-bottom: 1px solid var(--border);
    padding: var(--space-5) var(--space-6);
    gap: var(--space-5);
  }
  .nav-links.open { display: flex; }
  .nav-cta .btn { display: none; }
  .hamburger { display: block; }

  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: var(--space-10); }

  /* Trust section stacks */
  .trust-grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .trust-stats { grid-template-columns: 1fr 1fr; margin-top: var(--space-10); }

  .grid-3 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }

  .seo-content h2 { font-size: 32px; }

  .sticky-bottom { display: flex; }
  .wa-float { bottom: 78px; }
  .toast { bottom: 70px; left: 12px; right: 12px; max-width: none; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .stat-grid { gap: var(--space-3); }
  .stat .num { font-size: 38px; }
  .footer-grid { grid-template-columns: 1fr; }
  .countdown { gap: var(--space-2); }
  .cd-box { min-width: 56px; padding: var(--space-2) var(--space-3); }
  .cd-box .cd-num { font-size: 26px; }

  /* Long CTAs wrap instead of overflowing */
  .btn-lg { white-space: normal; text-align: center; line-height: 1.35; }
  .steps-cta .btn, .hero-ctas .btn { width: 100%; }

  /* Full-width CTA buttons for easy tapping */
  .guide-cta-btns .btn { width: 100%; }
  .guide-cta { padding: var(--space-8) var(--space-5); }
  .guide-block { padding: var(--space-5); }

  /* Slightly smaller sport cards on small phones */
  .sport-card { flex-basis: 146px; width: 146px; height: 218px; }

  /* Hero fits narrow phones */
  .hero { padding-block: var(--space-12); }
  .hero h1 { font-size: clamp(38px, 11vw, 52px); }
  .hero .subhead { font-size: 16px; }
  .hero .subhead-lead { font-size: 18px; }
  .eyebrow { font-size: 12px; }

  /* Announcement bar more compact on phones */
  .announce { font-size: 12px; padding: 8px 34px 8px 12px; }
  .announce a { display: block; margin: 4px auto 0; width: fit-content; }

  /* Section headings scale down a touch */
  .section-head h2 { font-size: clamp(28px, 8vw, 40px); }

  /* Comfortable tap targets */
  .nav-links a { padding: 6px 0; }
  .tab { padding: 9px 16px; }

  /* Trust section on small phones */
  .dash-badge { position: static; margin: var(--space-1) var(--space-5) var(--space-5); right: auto; bottom: auto; }
  .trust-stat .n { font-size: 34px; }
  .dash-stat .n { font-size: 24px; }
}

/* ============================================================
   Internal keyword links (homepage body copy)
   ============================================================ */
.hero .subhead a,
.section-head .subtitle a,
.trust-lead a,
.trust-checks a,
.guide-cta p a {
  color: var(--gold);
  font-weight: var(--fw-semibold);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(var(--gold-rgb), 0.45);
  transition: color var(--t-fast), text-decoration-color var(--t-fast);
}
.hero .subhead a:hover,
.section-head .subtitle a:hover,
.trust-lead a:hover,
.trust-checks a:hover,
.guide-cta p a:hover {
  color: var(--red);
  text-decoration-color: var(--red);
}
.hero .subhead a strong,
.section-head .subtitle a strong,
.trust-lead a strong { color: inherit; }

/* ============================================================
   Topic hub — keyword-anchored internal link grid
   ============================================================ */
.topic-hub {
  margin-top: var(--space-12);
  padding-top: var(--space-10);
  border-top: 1px solid var(--border);
}
.topic-hub h3 {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.5px;
  color: var(--white);
  text-align: center;
  margin-bottom: var(--space-8);
}
.topic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-4);
}
.topic-grid a {
  display: block;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: var(--space-5);
  transition: border-color var(--t-base), transform var(--t-base);
}
.topic-grid a:hover { border-color: var(--gold); transform: translateY(-3px); }
.topic-grid strong {
  display: block;
  color: var(--white);
  font-size: 15.5px;
  font-weight: var(--fw-bold);
  line-height: 1.35;
}
.topic-grid strong i { color: var(--red); font-size: 12px; margin-left: 6px; }
.topic-grid span {
  display: block;
  color: var(--gray);
  font-size: 13px;
  line-height: 1.6;
  margin-top: 6px;
}
@media (prefers-reduced-motion: reduce) {
  .topic-grid a { transition: none; }
  .topic-grid a:hover { transform: none; }
}

/* ============================================================
   Navigation: collapse earlier now that the menu carries the
   four keyword landing pages (9 items overflow below ~1100px)
   ============================================================ */
@media (max-width: 1200px) and (min-width: 1025px) {
  .nav-inner { gap: var(--space-4); }
  .nav-links { gap: var(--space-5); }
  .nav-links a { font-size: 13px; }
  .nav-cta .btn { padding: 10px 16px; font-size: 13px; }
}

/* 769–1024px: same drawer as mobile, but the navbar is still 86px tall
   (the ≤768px block re-positions it to 62px). */
@media (max-width: 1024px) and (min-width: 769px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 86px;
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    background: var(--black);
    border-bottom: 1px solid var(--border);
    padding: var(--space-5) var(--space-6);
    gap: var(--space-5);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 0; font-size: 16px; }
  .hamburger { display: block; }
}
