/* 
 * tuerkeispiele.de - World Cup 2026 Streaming Guide
 * Premium Dark Football CSS Design System
 */

/* 1. LOCAL FONTS DEFINITIONS */
@font-face {
  font-family: 'Outfit';
  src: url('../fonts/outfit-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Outfit';
  src: url('../fonts/outfit-bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* 2. DESIGN SYSTEM TOKENS */
:root {
  /* Colors */
  --bg-primary: #07090e;
  --bg-secondary: #0d111c;
  --bg-tertiary: #161c2d;
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  --accent-red: #c8102e;          /* Turkish Crimson Red */
  --accent-red-rgb: 200, 16, 46;
  --accent-red-glow: rgba(200, 16, 46, 0.15);
  --accent-red-hover: #a50d24;
  
  --accent-gold: #ffb800;          /* Sports Gold / Amber */
  --accent-gold-rgb: 255, 184, 0;
  --accent-gold-glow: rgba(255, 184, 0, 0.15);
  --accent-gold-hover: #e0a200;
  
  --border-color: rgba(255, 255, 255, 0.06);
  --border-color-light: rgba(255, 255, 255, 0.12);
  
  /* Glassmorphism */
  --glass-bg: rgba(13, 17, 28, 0.75);
  --glass-border: rgba(255, 255, 255, 0.05);
  --glass-blur: blur(12px);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);

  /* Fonts */
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  
  /* Layout */
  --max-width: 1200px;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  transition: all 0.2s ease-in-out;
}

/* 4. UTILITIES & CONTAINER */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

.text-center {
  text-align: center;
}

.accent-text {
  color: var(--accent-red);
}

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

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-header p {
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}

/* Badge styles */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.badge-red {
  background: rgba(200, 16, 46, 0.12);
  border: 1px solid rgba(200, 16, 46, 0.3);
  color: #ff4d6d;
  box-shadow: 0 0 15px rgba(200, 16, 46, 0.1);
}

.badge-gold {
  background: rgba(255, 184, 0, 0.1);
  border: 1px solid rgba(255, 184, 0, 0.3);
  color: #ffca3a;
  box-shadow: 0 0 15px rgba(255, 184, 0, 0.08);
}

.ad-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  font-weight: 700;
  text-align: center;
}

/* Custom Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
  background: var(--accent-red);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(200, 16, 46, 0.3);
}

.btn-primary:hover {
  background: var(--accent-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(200, 16, 46, 0.45);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-color-light);
  color: var(--text-primary);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

/* 5. NAVIGATION HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.header-scrolled {
  height: 70px;
  background: rgba(7, 9, 14, 0.95);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--accent-red);
}

.logo-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Language selector */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  font-size: 0.85rem;
  font-weight: 700;
}

.lang-btn {
  color: var(--text-secondary);
  padding: 2px 6px;
  border-radius: 4px;
}

.lang-btn.active {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.1);
}

.lang-switcher a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.flag-icon {
  width: 16px;
  height: 12px;
  object-fit: cover;
  border-radius: 2px;
}

.mobile-toggle {
  display: none;
  color: var(--text-primary);
}

/* 6. HERO SECTION */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 40px);
  display: flex;
  align-items: center;
  background-color: var(--bg-primary);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.45;
  filter: saturate(1.1) brightness(0.85);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(7, 9, 14, 0.3) 0%, var(--bg-primary) 85%);
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 650px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.hero-title span {
  display: inline-block;
  background: linear-gradient(135deg, #ffffff 40%, #ffcbd2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  color: var(--text-secondary);
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 35px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-info-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(200, 16, 46, 0.1);
  border-radius: 50%;
  color: var(--accent-red);
  font-weight: bold;
}

.info-text p:first-child {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.info-text p:last-child {
  font-size: 0.95rem;
  font-weight: 700;
}

/* Hero Widget / Countdown Card */
.hero-widget {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 35px;
  box-shadow: var(--glass-shadow);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-widget::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--accent-red-glow) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}

.widget-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  font-weight: 700;
  margin-bottom: 20px;
}

/* Countdown Grid */
.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 25px;
}

.countdown-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 14px 10px;
}

.countdown-num {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
}

.countdown-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  margin-top: 4px;
}

/* Next Game Details inside widget */
.next-game-mini {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 16px;
  border: 1px solid var(--border-color);
  margin-top: 20px;
}

.teams-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 8px;
}

.team-mini {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.flag-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-color-light);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  background-color: #222;
}

.team-name-mini {
  font-size: 0.85rem;
  font-weight: 700;
}

.vs-divider {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.06);
  padding: 4px 8px;
  border-radius: 6px;
}

.game-time-mini {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* 7. SCHEDULE / FIKSTÜR SECTION */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.match-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.match-card:hover {
  transform: translateY(-5px);
  border-color: rgba(200, 16, 46, 0.25);
  box-shadow: 0 12px 30px rgba(200, 16, 46, 0.08);
}

.match-card-header {
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.match-stage {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.match-live-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-gold);
  background: rgba(255, 184, 0, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid rgba(255, 184, 0, 0.2);
}

.match-card-body {
  padding: 30px 24px;
  text-align: center;
  flex-grow: 1;
}

.match-teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 24px;
}

.match-team {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.match-flag {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-color-light);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  background-color: #222;
}

.match-team-name {
  font-weight: 700;
  font-size: 1rem;
}

.match-vs {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  padding: 6px 12px;
  border-radius: 8px;
}

.match-info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
  text-align: left;
  background: rgba(255, 255, 255, 0.01);
  padding: 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.match-info-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.match-info-icon {
  color: var(--accent-red);
  font-size: 1.05rem;
}

.match-info-label {
  color: var(--text-secondary);
}

.match-info-value {
  font-weight: 700;
  margin-left: auto;
}

.match-card-footer {
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--border-color);
}

.match-btn {
  width: 100%;
}

/* Timezone Converter Styling */
.timezone-banner {
  background: rgba(200, 16, 46, 0.08);
  border: 1px solid rgba(200, 16, 46, 0.2);
  border-radius: 12px;
  padding: 16px 24px;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.timezone-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.timezone-icon {
  font-size: 1.5rem;
  color: var(--accent-red);
}

.timezone-text h4 {
  font-weight: 700;
  margin-bottom: 2px;
}

.timezone-text p {
  color: var(--text-secondary);
  font-size: 0.88rem;
}

.timezone-select-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.timezone-select {
  background: var(--bg-tertiary);
  color: var(--text-primary);
  border: 1px solid var(--border-color-light);
  padding: 8px 16px;
  border-radius: 6px;
  font-family: inherit;
  font-weight: 700;
  outline: none;
}

/* 8. BROADCAST / COMPARISON SECTION */
.broadcast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.broadcast-content h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.broadcast-content p {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.channel-check-list {
  list-style: none;
  margin-bottom: 30px;
}

.channel-check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}

.channel-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #10b981;
  font-weight: 700;
}

/* Comparison Table */
.comparison-container {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th, .comparison-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.comparison-table td {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.col-channel {
  font-weight: 700;
  color: var(--text-primary) !important;
}

.highlight-row {
  background: rgba(226, 0, 116, 0.04);
}

.highlight-row td {
  color: var(--text-primary);
}

.status-yes {
  color: #10b981;
  font-weight: 700;
}

.status-partial {
  color: #f59e0b;
  font-weight: 700;
}

.status-no {
  color: #ef4444;
  font-weight: 700;
}

/* 9. DEALS & AFFILIATE BANNER SECTION */
.banners-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.banner-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 30px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}

.banner-info {
  max-width: 600px;
}

.banner-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.banner-info p {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.banner-features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.banner-feature {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
}

.banner-feature-icon {
  color: var(--accent-gold);
}

.banner-media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sponsored-link {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.sponsored-link:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(226, 0, 116, 0.25);
}

/* Image settings to prevent CLS */
.img-quer {
  width: 100%;
  max-width: 728px;
  height: auto;
  aspect-ratio: 728 / 90;
  object-fit: cover;
}

.img-quadrat {
  width: 300px;
  height: 250px;
  aspect-ratio: 300 / 250;
  object-fit: cover;
}

.banners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  width: 100%;
}

.banner-vertical-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: space-between;
  padding: 40px 30px;
}

.banner-vertical-layout .banner-info {
  margin-bottom: 25px;
}

/* 10. FAQ ACCORDION SECTION */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover, .faq-item.active {
  border-color: rgba(200, 16, 46, 0.2);
}

.faq-question {
  width: 100%;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
  text-align: left;
}

.faq-icon-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.faq-icon-toggle::before {
  content: "+";
  font-size: 1.3rem;
  font-weight: 400;
}

/* Grid-rows trick: zero-JS reflow, animates from 0fr → 1fr */
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  overflow: hidden;
  min-height: 0;
  padding: 0 24px;
  color: var(--text-secondary);
  font-size: 0.98rem;
  border-top: 1px solid transparent;
  transition: padding 0.35s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.35s ease;
}

/* Active FAQ states */
.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.active .faq-answer-inner {
  padding: 16px 24px 24px 24px;
  border-color: var(--border-color);
}

.faq-item.active .faq-icon-toggle {
  transform: rotate(45deg);
  background: rgba(200, 16, 46, 0.1);
  border-color: rgba(200, 16, 46, 0.3);
  color: var(--accent-red);
}

/* 11. COOKIE-FREE INFO BOX & FOOTER */
.footer {
  background: #040508;
  border-top: 1px solid var(--border-color);
  padding: 80px 0 40px 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-brand h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.footer-brand p {
  margin-bottom: 20px;
}

.footer-links h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a:hover {
  color: var(--text-primary);
}

.privacy-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #34d399;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-disclaimer {
  width: 100%;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 10px;
  border-top: 1px dashed var(--border-color);
  padding-top: 20px;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Performance: skip layout/paint of off-screen sections */
.section-padding {
  content-visibility: auto;
  contain-intrinsic-size: 1px 800px;
}

/* 12. RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .hero-info-bar {
    justify-content: center;
  }
  
  .hero-widget {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .schedule-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .broadcast-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .banner-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .banner-features {
    justify-content: center;
  }
  
  .banners-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 64px;
  }

  /* Lock body scroll when nav-overlay is open */
  body.menu-open {
    overflow: hidden;
  }

  /* ── Header & nav container ── */
  .nav-container {
    padding: 0 16px;
  }

  .logo {
    font-size: 1.2rem;
    gap: 8px;
  }

  /* Mobile nav overlay (escapes flex parent via fixed + explicit height) */
  #main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    height: calc(100dvh - var(--header-height));
    background: rgba(7, 9, 14, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 8px 0 32px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
    border-top: 1px solid var(--border-color-light);
    border-bottom: 2px solid var(--accent-red);
    display: block;
  }

  #main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0s;
  }

  /* Header desktop CTA & lang-switcher: hide; we render mobile versions inside the overlay */
  .nav-actions .lang-switcher,
  .nav-actions > .btn {
    display: none;
  }

  .nav-actions {
    gap: 0;
  }

  /* ── Mobile menu list ── */
  .nav-menu {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
    position: static;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu .nav-link {
    display: flex;
    align-items: center;
    padding: 18px 24px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
    width: 100%;
    transition: color 0.2s, background 0.2s;
  }

  .nav-menu .nav-link::after {
    content: '›';
    margin-left: auto;
    color: var(--text-muted);
    font-size: 1.4rem;
    line-height: 1;
  }

  .nav-menu .nav-link:active,
  .nav-menu .nav-link:focus {
    color: var(--accent-red);
    background: rgba(200, 16, 46, 0.06);
  }

  /* ── Mobile-only block: lang switcher + CTA inside menu overlay ── */
  .mobile-nav-extras {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 24px;
  }

  .mobile-nav-extras .lang-switcher {
    display: flex;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    padding: 8px 10px;
    border-radius: 30px;
    border: 1px solid var(--border-color);
    gap: 4px;
  }

  .mobile-nav-extras .lang-btn {
    flex: 1;
    text-align: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 22px;
    font-size: 0.9rem;
  }

  .mobile-nav-extras .lang-btn.active {
    background: var(--accent-red);
    color: #fff;
  }

  .mobile-nav-extras .btn {
    width: 100%;
    padding: 16px 20px;
    font-size: 1rem;
  }

  /* Hamburger button */
  .mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color-light);
    border-radius: 8px;
    padding: 6px;
    transition: background 0.2s;
    flex-shrink: 0;
  }

  .mobile-toggle:hover,
  .mobile-toggle:focus {
    background: rgba(255, 255, 255, 0.1);
    outline: none;
  }

  .mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
  }

  .mobile-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-toggle.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .mobile-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* ── General mobile layout ── */
  .header {
    padding: 0;
  }

  .section-padding {
    padding: 60px 0;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  /* Stack two-column editorial grids */
  div[style*="grid-template-columns: 1fr 1fr"],
  div[style*="grid-template-columns: 1.2fr"],
  div[style*="grid-template-columns: 1.1fr"] {
    grid-template-columns: 1fr !important;
  }

  div[style*="grid-template-columns: repeat(auto-fit, minmax(220px"] {
    grid-template-columns: 1fr 1fr !important;
  }

  /* Hero grid single column */
  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 30px);
    padding-bottom: 60px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-ctas .btn {
    flex: 1 1 auto;
    min-width: 0;
    padding: 14px 18px;
    font-size: 0.95rem;
  }

  .hero-info-bar {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero-widget {
    max-width: 100%;
    padding: 28px 22px;
  }

  /* Schedule 1 column */
  .schedule-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

  /* Broadcast single column */
  .broadcast-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Banner single column */
  .banner-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 24px;
  }

  .banner-features {
    justify-content: center;
  }

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

  /* Footer single column */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* Timezone converter wrap */
  .timezone-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .timezone-select-wrapper {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .timezone-select {
    width: 100%;
  }

  /* Comparison table: scroll horizontally on small */
  .comparison-container {
    padding: 20px;
    overflow-x: auto;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px 10px;
    font-size: 0.85rem;
  }
}

/* Small mobile (≤480px) */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .section-padding {
    padding: 48px 0;
  }

  .hero {
    padding-top: calc(var(--header-height) + 20px);
    padding-bottom: 48px;
  }

  .hero-content {
    padding: 0 4px;
  }

  .hero-title {
    font-size: clamp(1.85rem, 8vw, 2.5rem);
  }

  .hero-description {
    font-size: 0.98rem;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 12px;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .hero-info-bar {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 14px;
  }

  .hero-widget {
    padding: 22px 16px;
    border-radius: 16px;
  }

  .countdown {
    gap: 8px;
  }

  .countdown-box {
    padding: 10px 6px;
    border-radius: 10px;
  }

  .countdown-num {
    font-size: 1.6rem;
  }

  .countdown-label {
    font-size: 0.68rem;
  }

  .next-game-mini {
    padding: 14px 10px;
  }

  .teams-vs {
    gap: 10px;
  }

  .flag-circle {
    width: 40px;
    height: 40px;
  }

  .team-name-mini {
    font-size: 0.78rem;
  }

  .game-time-mini {
    font-size: 0.78rem;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .section-header h2 {
    font-size: clamp(1.65rem, 6vw, 2rem);
  }

  /* Squad cards: 1 column instead of 2 */
  div[style*="grid-template-columns: repeat(auto-fit, minmax(220px"] {
    grid-template-columns: 1fr !important;
  }

  /* Inline-styled editorial cards: reduce padding */
  div[style*="padding: 30px"][style*="border-radius: 16px"],
  div[style*="padding: 40px"][style*="border-radius: 16px"] {
    padding: 22px !important;
  }

  /* Match card: tighten */
  .match-card-header {
    padding: 12px 18px;
    flex-wrap: wrap;
    gap: 6px;
  }

  .match-card-body {
    padding: 22px 18px;
  }

  .match-card-footer {
    padding: 16px 18px;
  }

  .match-flag {
    width: 52px;
    height: 52px;
  }

  .match-team-name {
    font-size: 0.92rem;
  }

  .match-info-row {
    flex-wrap: wrap;
    font-size: 0.85rem;
  }

  /* Banner card: tighter */
  .banner-card {
    padding: 20px;
  }

  .banner-info h3 {
    font-size: 1.25rem;
  }

  /* Affiliate banner: scale square one down */
  .img-quadrat {
    width: 100%;
    max-width: 300px;
    height: auto;
  }

  /* FAQ tighter on small */
  .faq-question {
    padding: 18px 18px;
    font-size: 1rem;
    gap: 10px;
  }

  .faq-answer-inner {
    padding: 0 18px;
    font-size: 0.92rem;
  }

  .faq-item.active .faq-answer-inner {
    padding: 14px 18px 22px 18px;
  }

  /* Footer */
  .footer {
    padding: 60px 0 30px;
  }

  .footer-grid {
    gap: 30px;
    margin-bottom: 40px;
  }
}
