/*
Theme Name: IPTV Nordic
Theme URI: http://iptv-nordic.local
Description: High-performance, modern, and beautiful theme for IPTV Nordic based on Norwegian dark navy mockup.
Version: 1.1.0
Author: Antigravity
Author URI: https://deepmind.google
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: iptv-nordic
*/

/* ---------------------------------------------------------
   1. Design System Variables & Imports
   --------------------------------------------------------- */
@import url('assets/design-tokens.css');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Premium Matte Obsidian & Slate Base (Shaded to Midnight Aurora) */
  --color-bg-deep: var(--color-background);
  --color-bg-card: #0b0c16;
  --color-bg-card-hover: #14142d;
  
  /* Refined Professional Accents */
  --color-orange: var(--color-accent); /* Emerald Green Accent */
  --color-orange-hover: var(--color-accent-hover);
  --color-green-wa: #25d366; /* Keep WA green standard */
  --color-green-wa-hover: #1ebd59;
  --color-white: #ffffff;
  --color-text-primary: var(--color-foreground); /* High contrast soft white */
  --color-text-muted: var(--color-foreground-muted); /* Clean neutral gray */
  --color-yellow: var(--color-rating); /* Golden amber for reviews */
  
  /* Accents & Gradients for UI compatibility */
  --gradient-primary: linear-gradient(135deg, var(--color-accent) 0%, #06b6d4 100%);
  --gradient-primary-hover: linear-gradient(135deg, #06b6d4 0%, var(--color-accent-hover) 100%);
  --gradient-cyan-blue: linear-gradient(135deg, #ffffff 0%, var(--color-accent) 100%);
  --gradient-dark-card: linear-gradient(180deg, #0b0c16 0%, #040409 100%);
  --gradient-dark-card-hover: linear-gradient(180deg, #14142d 0%, #0a0a19 100%);
  
  --font-primary: 'Inter', sans-serif;
  
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --border-radius-lg: var(--primitive-radius-lg);
  --border-radius-md: var(--primitive-radius-md);
  --border-radius-sm: var(--primitive-radius-sm);
  
  /* Sharp Professional Shadows */
  --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.6);
  --shadow-glow-primary: 0 6px 20px rgba(16, 185, 129, 0.25);
  --shadow-glow-secondary: 0 6px 18px rgba(255, 255, 255, 0.02);
  --container-max-width: 1200px;
}

/* ---------------------------------------------------------
   2. Reset & Base Styles
   --------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-primary);
  color: var(--color-text-primary);
  background-color: var(--color-bg-deep);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
  background-color: var(--color-bg-deep);
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(16, 185, 129, 0.1) 0%, transparent 45%),
    radial-gradient(circle at 85% 65%, rgba(139, 92, 246, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 50% 90%, rgba(6, 182, 212, 0.08) 0%, transparent 40%);
  background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-white);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

button {
  font-family: var(--font-primary);
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ---------------------------------------------------------
   3. Typography Utility Classes
   --------------------------------------------------------- */
.h1-hero {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 20px auto;
  max-width: 900px;
  color: var(--color-white);
}

.p-subtitle {
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  color: var(--color-text-muted);
  max-width: 700px;
  margin: 0 auto 30px auto;
  line-height: 1.7;
}

/* ---------------------------------------------------------
   4. Buttons & Interactive Elements
   --------------------------------------------------------- */
.btn-primary-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--color-orange);
  color: var(--color-white);
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary-orange:hover,
.btn-primary-orange:focus-visible {
  background-color: var(--color-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(226, 35, 42, 0.25);
}

.btn-secondary-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--color-green-wa);
  color: var(--color-white);
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary-green:hover,
.btn-secondary-green:focus-visible {
  background-color: var(--color-green-wa-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(34, 197, 94, 0.25);
}

.btn-header-orange {
  background-color: var(--color-orange);
  color: var(--color-white);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  transition: var(--transition-smooth);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn-header-orange:hover {
  background-color: var(--color-orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(226, 35, 42, 0.2);
}

/* ---------------------------------------------------------
   5. Layout & Components
   --------------------------------------------------------- */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  padding: 16px 0;
  background-color: rgba(15, 15, 35, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background-color: var(--color-orange);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 22px;
  font-weight: 800;
}

.logo-text span {
  color: var(--color-orange);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-muted);
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--color-white);
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
}

.hamburger-btn span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--color-white);
  border-radius: 2px;
}

@media (max-width: 992px) {
  .nav-links, .btn-header-orange {
    display: none;
  }
  .hamburger-btn {
    display: flex;
  }
}

/* Mobile Nav Menu Overlays */
.mobile-nav-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-bg-deep);
  z-index: 999;
  padding: 40px;
  justify-content: center;
  align-items: center;
}

.mobile-nav-menu.active {
  display: flex;
}

.mobile-nav-menu ul {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.mobile-nav-menu a {
  font-size: 28px;
  font-weight: 800;
  color: var(--color-white);
}

.mobile-nav-menu a:hover {
  color: var(--color-orange);
}

.close-nav-btn {
  position: absolute;
  top: 40px;
  right: 40px;
  color: var(--color-white);
  font-size: 32px;
}

/* Hero Section */
.hero-section {
  text-align: center;
  padding: 90px 0 60px 0;
  position: relative;
  background-image: linear-gradient(to bottom, rgba(4, 4, 12, 0.65) 0%, var(--color-bg-deep) 100%), url('assets/sport-football.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.norway-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 94, 30, 0.06);
  border: 1px solid rgba(255, 94, 30, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 8px 24px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-orange);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(255, 94, 30, 0.1);
}

.norway-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 14px;
  border-radius: 2px;
  overflow: hidden;
}

/* Stats Cards Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 50px 0 40px 0;
}

@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

.stat-card {
  background-color: var(--color-bg-card);
  border-radius: var(--border-radius-md);
  padding: 28px 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.stat-card:hover {
  transform: translateY(-4px);
  background-color: var(--color-bg-card-hover);
  border-color: rgba(16, 185, 129, 0.35);
  box-shadow: var(--shadow-medium);
}

.stat-icon-wrap {
  width: 56px;
  height: 56px;
  background-color: rgba(16, 185, 129, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-orange);
  margin-bottom: 4px;
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-muted);
}

/* CTA Action Area */
.cta-button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 48px;
}

@media (max-width: 640px) {
  .cta-button-group {
    flex-direction: column;
    padding: 0 20px;
  }
}

/* Trust Badges Row */
.trust-badges-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
  opacity: 0.85;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-muted);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 8px 18px;
  border-radius: 50px;
}

.trust-badge-item svg {
  color: var(--color-orange);
}

/* Devices Section */
.devices-section {
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.devices-section h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
}

.device-icons-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 30px;
}

.device-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100px;
  opacity: 0.7;
  transition: var(--transition-smooth);
}

.device-item:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.device-item svg {
  color: var(--color-orange);
}

.device-item span {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-muted);
}

/* ---------------------------------------------------------
   5.1. Pricing Section & Cards
   --------------------------------------------------------- */
.pricing-section {
  padding: 45px 0;
  text-align: center;
  background-color: rgba(10, 10, 20, 0.4);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.pricing-card {
  background-color: var(--color-bg-card);
  border-radius: var(--border-radius-lg);
  padding: 40px 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-5px);
  background-color: var(--color-bg-card-hover);
  border-color: rgba(16, 185, 129, 0.35);
  box-shadow: var(--shadow-medium);
}

.pricing-card.featured {
  border: 2px solid var(--color-orange);
  background-color: #0c0c16;
  box-shadow: var(--shadow-glow-primary);
}

.pricing-card.featured:hover {
  border-color: var(--color-orange-hover);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.25);
}

.pricing-card.featured .norway-badge {
  background: var(--color-orange);
  color: var(--color-white);
  border-color: transparent;
  box-shadow: none;
}

.pricing-duration {
  font-size: 24px;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 6px;
}

.pricing-tagline {
  font-size: 13px;
  color: var(--color-text-muted);
}

.pricing-price {
  font-size: 54px;
  font-weight: 800;
  margin-top: 15px;
  line-height: 1;
  color: var(--color-white);
  letter-spacing: -0.02em;
  transition: var(--transition-smooth);
}

.pricing-card.featured .pricing-price {
  color: var(--color-orange);
}

.pricing-period {
  font-size: 13px;
  color: var(--color-text-muted);
  display: block;
  margin-bottom: 20px;
}

.pricing-features {
  list-style: none;
  margin: 20px 0 30px 0;
  text-align: left;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
}

.pricing-features li {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.pricing-card.featured .pricing-features li {
  color: var(--color-white);
}

.btn-pricing-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  transition: var(--transition-smooth);
  width: 100%;
  text-align: center;
  margin-top: auto;
}

.btn-pricing-order:hover {
  background: var(--color-orange);
  border-color: transparent;
  color: var(--color-white);
  transform: translateY(-2px);
}

.pricing-card.featured .btn-pricing-order {
  background: var(--color-orange);
  border-color: transparent;
  box-shadow: none;
}

.pricing-card.featured .btn-pricing-order:hover {
  background: var(--color-orange-hover);
}

/* --- Floating WhatsApp Button --- */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: var(--color-green-wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  z-index: 999;
  transition: var(--transition-smooth);
}

.floating-whatsapp::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  animation: pulse-wa 2s infinite;
  pointer-events: none;
}

.floating-whatsapp:hover {
  transform: scale(1.08);
  background-color: var(--color-green-wa-hover);
}

@keyframes pulse-wa {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ---------------------------------------------------------
   6. Custom Theme Footer
   --------------------------------------------------------- */
.site-footer {
  background-color: #050508;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 0 30px 0;
  margin-top: 40px;
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
  font-size: 22px;
  font-weight: 800;
}

.footer-logo span {
  color: var(--color-orange);
}

.footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.footer-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-muted);
}

.footer-links a:hover {
  color: var(--color-white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--color-text-muted);
  padding-top: 30px;
}

@media (max-width: 640px) {
  .footer-flex, .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-links {
    flex-direction: column;
    gap: 16px;
  }
}

/* ---------------------------------------------------------
   7. Accessibility and Focus Rules
   --------------------------------------------------------- */
.screen-reader-text {
  border: 0;
  clear: both;
  display: block;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: var(--color-bg-card);
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(255, 90, 31, 0.6);
  color: var(--color-white);
  display: block;
  font-size: 14px;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  position: absolute;
  top: 5px;
  text-decoration: none;
  width: auto;
  z-index: 100000;
}

/* ---------------------------------------------------------
   8. Library Marquee & Why IPTV Nordic Features
   --------------------------------------------------------- */
.section-badge-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-white);
  margin-bottom: 20px;
}

.section-badge-dot::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background-color: #00e676;
  border-radius: 50%;
  box-shadow: 0 0 8px #00e676;
}

.cyan-gradient-text {
  color: var(--color-orange);
}

.library-section {
  padding: 45px 0;
  background-color: transparent;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.02);
  border-bottom: 1px solid rgba(255,255,255,0.02);
  text-align: center;
}

.library-section h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.marquee-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 40px 0;
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}

.marquee-track.left {
  animation: scroll-left 40s linear infinite;
}

.marquee-track.right {
  animation: scroll-right 40s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scroll-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.poster-card {
  width: 170px;
  height: 250px;
  background-color: var(--color-bg-card);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  cursor: pointer;
}

.poster-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to top, rgba(5,8,20,0.9) 0%, rgba(5,8,20,0.3) 50%, rgba(5,8,20,0) 100%);
  z-index: 1;
}

.poster-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(16, 185, 129, 0.35);
  box-shadow: var(--shadow-medium);
}

.poster-card-content {
  position: relative;
  z-index: 2;
  text-align: left;
}

.poster-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 4px;
  line-height: 1.2;
}

.poster-meta {
  font-size: 11px;
  color: var(--color-orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.explore-btn-wrap {
  margin-top: 30px;
}

.btn-explore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: rgba(255,255,255,0.02);
  color: var(--color-white);
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  transition: var(--transition-smooth);
}

.btn-explore:hover {
  background-color: var(--color-white);
  color: var(--color-bg-deep);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

.why-section {
  padding: 45px 0;
  background-color: transparent;
  text-align: center;
}

.why-section h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.features-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

@media (max-width: 992px) {
  .features-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .features-card-grid {
    grid-template-columns: 1fr;
  }
}

.feature-item-card {
  background-color: var(--color-bg-card);
  border-radius: var(--border-radius-lg);
  padding: 36px 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: left;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-subtle);
}

.feature-item-card:hover {
  transform: translateY(-4px);
  background-color: var(--color-bg-card-hover);
  border-color: rgba(16, 185, 129, 0.35);
  box-shadow: var(--shadow-medium);
}

.feature-item-card .stat-icon-wrap {
  background-color: rgba(16, 185, 129, 0.08);
  color: var(--color-orange);
  margin-bottom: 0;
}

.feature-item-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-white);
}

.feature-item-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* --- FAQ Section --- */
.faq-section {
  padding: 45px 0;
  background-color: rgba(15, 15, 35, 0.45);
  border-top: 1px solid rgba(255,255,255,0.02);
  border-bottom: 1px solid rgba(255,255,255,0.02);
}
.faq-section h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 16px;
  text-align: center;
  letter-spacing: -0.02em;
}
.faq-accordion-wrap {
  max-width: 800px;
  margin: 50px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background-color: var(--color-bg-card);
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: var(--transition-smooth);
}
.faq-item[open] {
  border-color: rgba(16, 185, 129, 0.35);
  box-shadow: var(--shadow-medium);
}
.faq-item summary {
  padding: 24px;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  outline: none;
  transition: var(--transition-smooth);
}
.faq-item summary:hover {
  color: var(--color-orange);
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 400;
  color: var(--color-orange);
  transition: var(--transition-smooth);
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-answer {
  padding: 0 24px 24px 24px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 16px;
}

/* --- Floating Free Trial Button --- */
.floating-freetrial {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background-color: var(--color-orange);
  color: var(--color-white);
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(255, 90, 31, 0.3);
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
}

.floating-freetrial:hover {
  transform: scale(1.05) translateY(-2px);
  background-color: var(--color-orange-hover);
  box-shadow: 0 6px 25px rgba(255, 90, 31, 0.45);
}

@media (max-width: 576px) {
  .floating-freetrial {
    padding: 12px 20px;
    font-size: 13px;
    bottom: 20px;
    left: 20px;
  }
}

/* --- Kundeanmeldelser (Reviews Slider) --- */
.reviews-section {
  padding: 45px 0;
  background-color: transparent;
  text-align: center;
}

.reviews-section h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.reviews-slider-container {
  margin-top: 50px;
  position: relative;
  width: 100%;
}

.reviews-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 20px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

.reviews-slider::-webkit-scrollbar {
  height: 6px;
}

.reviews-slider::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.review-card {
  flex: 0 0 calc(25% - 15px); /* 4 columns on desktop */
  background-color: var(--color-bg-card);
  border-radius: var(--border-radius-md);
  padding: 32px 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: left;
  scroll-snap-align: start;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  box-shadow: var(--shadow-subtle);
}

.review-card:hover {
  transform: translateY(-4px);
  background-color: var(--color-bg-card-hover);
  border-color: rgba(16, 185, 129, 0.35);
  box-shadow: var(--shadow-medium);
}

.review-rating {
  color: var(--color-yellow);
  font-size: 16px;
  margin-bottom: 16px;
  display: flex;
  gap: 4px;
}

.review-quote {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 16px;
}

.author-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-white);
}

.author-meta {
  font-size: 12px;
  color: var(--color-orange);
  font-weight: 600;
}

@media (max-width: 992px) {
  .review-card {
    flex: 0 0 calc(33.333% - 14px); /* 3 columns on tablet */
  }
}

@media (max-width: 768px) {
  .review-card {
    flex: 0 0 calc(50% - 10px); /* 2 columns on mobile/phone */
  }
}

/* --- Blog Section --- */
.blog-section {
  padding: 45px 0;
  background-color: rgba(15, 15, 35, 0.45);
  border-top: 1px solid rgba(255,255,255,0.02);
  border-bottom: 1px solid rgba(255,255,255,0.02);
}

.blog-section h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 16px;
  text-align: center;
  letter-spacing: -0.02em;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  background-color: var(--color-bg-card);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  background-color: var(--color-bg-card-hover);
  border-color: rgba(16, 185, 129, 0.35);
  box-shadow: var(--shadow-medium);
}

.blog-card-img-placeholder {
  height: 180px;
  background-color: #0f0f1c;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-orange);
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.blog-card-img-placeholder svg {
  width: 44px;
  height: 44px;
  opacity: 0.8;
}

.blog-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.blog-card-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-orange);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-card-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.3;
}

.blog-card-title a {
  color: var(--color-white);
}

.blog-card-title a:hover {
  color: var(--color-orange);
}

.blog-card-excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-link {
  font-size: 14px;
  font-weight: 700;
  color: #00f2fe;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 12px;
}

.blog-card:hover .blog-card-link {
  color: var(--color-white);
}

.blog-card-link svg {
  transition: var(--transition-smooth);
}

.blog-card:hover .blog-card-link svg {
  transform: translateX(4px);
}

/* --- Featured Pricing Card & Green WhatsApp Pricing Button --- */
.stat-card.featured {
  border: 2px solid var(--color-orange) !important;
  box-shadow: 0 8px 30px rgba(255, 90, 31, 0.25) !important;
}

.btn-pricing-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--color-green-wa);
  color: var(--color-white);
  padding: 14px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  transition: var(--transition-smooth);
  width: 100%;
  margin-top: 10px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.15);
}

.btn-pricing-green:hover {
  background-color: var(--color-green-wa-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-pricing-green svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* --- Channel Grid Section --- */
.channels-section {
  padding: 45px 0;
  background-color: transparent;
  text-align: center;
}

.channels-section h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.logo-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 15px;
  margin: 50px 0 40px 0;
  justify-content: center;
}

.logo-channel-card {
  background-color: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-md);
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  transition: var(--transition-smooth);
}

.logo-channel-card:hover {
  background-color: var(--color-bg-card-hover);
  border-color: rgba(16, 185, 129, 0.35);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.logo-channel-text {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--color-white);
  opacity: 0.9;
}

.logo-channel-text span {
  color: var(--color-orange);
}

.btn-outline-explore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: var(--color-white);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  transition: var(--transition-smooth);
}

.btn-outline-explore:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--color-white);
  transform: scale(1.03);
}

/* --- Live Sports Showcase Section --- */
.sports-showcase-section {
  padding: 45px 0;
  background-color: transparent;
}

.sports-grid-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

@media (max-width: 992px) {
  .sports-grid-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.sports-text-side {
  text-align: left;
}

.sports-text-side h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: 15px;
  margin-bottom: 20px;
}

.sports-bullets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 30px 0 40px 0;
}

@media (max-width: 480px) {
  .sports-bullets-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.sport-bullet-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-muted);
}

.sport-bullet-item svg {
  color: #25d366;
  flex-shrink: 0;
}

.sports-image-side {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  aspect-ratio: 16 / 9;
}

.sports-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 10s ease;
}

.sports-image-side:hover img {
  transform: scale(1.08);
}

/* Sports Posters Scrollsnap Row */
.sports-posters-row-wrap {
  margin-top: 60px;
  width: 100%;
}

.sports-posters-row {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 20px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

.sports-posters-row::-webkit-scrollbar {
  height: 6px;
}

.sports-posters-row::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.sport-poster-card {
  flex: 0 0 calc(16.666% - 17px); /* 6 posters on desktop */
  background-color: var(--color-bg-card);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  scroll-snap-align: start;
  transition: var(--transition-smooth);
  aspect-ratio: 2 / 3;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 15px;
}

.sport-poster-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.75;
  transition: var(--transition-smooth);
}

.sport-poster-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(5,8,20,0.95) 100%);
  z-index: 2;
}

.sport-poster-card-content {
  position: relative;
  z-index: 3;
  width: 100%;
}

.sport-poster-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(16, 185, 129, 0.35);
  box-shadow: var(--shadow-medium);
}

.sport-poster-card:hover img {
  opacity: 0.9;
  transform: scale(1.05);
}

.sport-poster-meta {
  font-size: 10px;
  font-weight: 700;
  color: var(--color-orange);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 4px;
}

.sport-poster-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.2;
}

@media (max-width: 1200px) {
  .sport-poster-card {
    flex: 0 0 calc(25% - 15px); /* 4 columns on small desktop */
  }
}

@media (max-width: 768px) {
  .sport-poster-card {
    flex: 0 0 calc(33.333% - 14px); /* 3 columns on tablet */
  }
}

@media (max-width: 480px) {
  .sport-poster-card {
    flex: 0 0 calc(50% - 10px); /* 2 columns on mobile/phone */
  }
}

.logo-marquee-track:hover {
  animation-play-state: paused;
}

/* --- Interactive Smart TV Mockup --- */
.tv-mockup-wrapper {
  margin: 50px auto 20px auto;
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 5;
}

.tv-frame {
  background-color: #16161a;
  border: 10px solid #282830;
  border-radius: 16px;
  width: 100%;
  aspect-ratio: 16 / 9;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 80px rgba(255, 94, 30, 0.08);
  overflow: hidden;
  position: relative;
}

.tv-screen {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: grid;
  grid-template-columns: 80px 1fr;
  color: var(--color-white);
  font-family: var(--font-primary);
  text-align: left;
  position: relative;
}

/* TV Sidebar */
.tv-sidebar {
  background-color: rgba(0, 0, 0, 0.85);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  gap: 40px;
}

.tv-sidebar-logo {
  color: var(--color-orange);
}

.tv-sidebar-menu {
  display: flex;
  flex-direction: column;
  gap: 25px;
  color: rgba(255, 255, 255, 0.4);
}

.tv-sidebar-menu span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.tv-sidebar-menu span.active,
.tv-sidebar-menu span:hover {
  color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.1);
}

/* TV Main Content */
.tv-main-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.1) 100%);
}

.tv-screen-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.tv-brand-logo {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-white);
}

.tv-brand-logo span {
  color: var(--color-orange);
}

.tv-time {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

.tv-featured-info {
  margin-top: 20px;
  max-width: 500px;
}

.tv-meta-badge {
  background: rgba(230, 57, 37, 0.2);
  border: 1px solid rgba(230, 57, 37, 0.4);
  color: var(--color-orange);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tv-featured-title {
  font-size: clamp(20px, 3.5vw, 28px);
  font-weight: 800;
  margin-top: 12px;
  margin-bottom: 6px;
}

.tv-featured-meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
}

.tv-featured-description {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.tv-action-buttons {
  display: flex;
  gap: 12px;
}

.tv-btn-watch {
  background-color: var(--color-orange);
  color: var(--color-white);
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  transition: var(--transition-smooth);
}

.tv-btn-watch:hover {
  background-color: var(--color-orange-hover);
  transform: translateY(-1px);
}

.tv-btn-options {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  transition: var(--transition-smooth);
}

.tv-btn-options:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

/* --- TV Monitor Mockup Component (Inspired by User Image) --- */

/* --- Static Pages (Privacy, Refund, Terms) Styling --- */
.static-page-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-subtle);
  margin-bottom: 40px;
  text-align: left;
}

.page-title-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--color-white);
  text-align: left;
}

.page-content-body {
  color: var(--color-text-muted);
  font-size: 16px;
  line-height: 1.8;
}

.page-content-body h2 {
  font-size: 22px;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 12px;
  color: var(--color-white);
}

.page-content-body p {
  margin-bottom: 16px;
}

.page-content-body ul, .page-content-body ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-content-body li {
  margin-bottom: 8px;
}

.footer-legal-links a:hover {
  color: var(--color-white) !important;
}

/* --- Mobile Responsive Optimizations --- */
@media (max-width: 768px) {
  .logo-marquee-container {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    left: 0;
    right: 0;
  }
}

@media (max-width: 600px) {
  .tv-sidebar {
    display: none;
  }
  .tv-screen {
    grid-template-columns: 1fr;
  }
  .tv-main-content {
    padding: 15px;
  }
  .tv-featured-info {
    margin-top: 10px;
  }
  .tv-featured-description {
    display: none;
  }
}
