/*
Theme Name: IPTV España
Theme URI: http://spain-iptv.local/
Description: Tema premium exclusivo para el servicio líder de IPTV en España. Arquitectura visual Cinema Command Center & Streaming OS con ultra-alta definición 4K, soporte multipantalla, baja latencia CDN y optimización SEO integral para Google.
Version: 3.0.0
Author: IPTV España Team
Text Domain: iptvespana
*/

/* ==========================================================================
   CSS VARIABLES & DESIGN SYSTEM: CINEMA COMMAND CENTER OS
   ========================================================================== */
:root {
  /* Canvas & Surface Colors */
  --bg-core: #05070D;
  --bg-surface-1: #0B0F19;
  --bg-surface-2: #111827;
  --bg-surface-3: #1A2234;
  --bg-glass: rgba(14, 20, 35, 0.75);
  --bg-glass-heavy: rgba(8, 12, 22, 0.92);
  --bg-glass-light: rgba(255, 255, 255, 0.04);

  /* Accents & Brand */
  --cinema-red: #E50914;
  --cinema-red-glow: rgba(229, 9, 20, 0.45);
  --cinema-red-hover: #b80710;
  --spain-gold: #FFC400;
  --spain-gold-glow: rgba(255, 196, 0, 0.35);
  --emerald-live: #10B981;
  --emerald-glow: rgba(16, 185, 129, 0.4);
  --wa-green: #25D366;
  --wa-green-glow: rgba(37, 211, 102, 0.4);

  /* Borders */
  --border-subtle: rgba(255, 255, 255, 0.07);
  --border-medium: rgba(255, 255, 255, 0.14);
  --border-active: rgba(229, 9, 20, 0.5);
  --border-gold: rgba(255, 196, 0, 0.5);

  /* Typography */
  --text-main: #F1F5F9;
  --text-muted: #94A3B8;
  --text-dim: #94A3B8;
  --text-pure: #FFFFFF;

  /* Geometry & Shadows */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-xl: 36px;
  --radius-full: 9999px;

  --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-elevated: 0 16px 40px rgba(0, 0, 0, 0.6);
  --shadow-glow-red: 0 0 35px rgba(229, 9, 20, 0.35);
  --shadow-glow-gold: 0 0 35px rgba(255, 196, 0, 0.3);
}

/* Global Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  background-color: var(--bg-core);
  color: var(--text-main);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

body {
  background-color: var(--bg-core);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Ambient Ambient Cinema Lighting Mesh */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: 
    radial-gradient(circle at 10% 10%, rgba(229, 9, 20, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 90% 20%, rgba(255, 196, 0, 0.08) 0%, transparent 35%),
    radial-gradient(circle at 50% 70%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 90%, rgba(229, 9, 20, 0.08) 0%, transparent 45%);
  pointer-events: none;
  z-index: 0;
}

#app {
  position: relative;
  z-index: 1;
}

.container,
.cinema-container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

@media (max-width: 640px) {
  .container,
  .cinema-container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-pure);
  font-weight: 800;
  line-height: 1.15;
}

.gradient-title-gold {
  background: linear-gradient(135deg, #FFFFFF 15%, #FFC400 70%, #E50914 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-title-red {
  background: linear-gradient(135deg, #FFFFFF 20%, #FF4D4D 70%, #E50914 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   HEADER & CINEMA OS BAR
   ========================================================================== */
.os-topbar {
  background: rgba(8, 12, 22, 0.85);
  border-bottom: 1px solid var(--border-subtle);
  padding: 8px 0;
  font-size: 0.8rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  z-index: 1010;
}

.os-topbar-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.live-indicator-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-weight: 600;
}

.live-dot {
  width: 8px;
  height: 8px;
  background-color: var(--emerald-live);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--emerald-live);
  animation: pulse-dot 1.8s infinite;
}

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

.os-topbar-promo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(229, 9, 20, 0.15);
  border: 1px solid rgba(229, 9, 20, 0.3);
  color: #FF7070;
  padding: 3px 12px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Floating Cinema Navbar */
.os-nav-outer {
  position: sticky;
  top: 14px;
  z-index: 1000;
  padding: 0 20px;
}

.os-nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  background: rgba(11, 15, 25, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-full);
  padding: 8px 18px;
  box-shadow: var(--shadow-elevated);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: all 0.3s ease;
}

.os-nav-inner:hover {
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.8), 0 0 30px rgba(229, 9, 20, 0.15);
}

.os-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.os-brand-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #1E293B, #0F172A);
  border: 1px solid var(--border-medium);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.os-brand-icon svg {
  width: 24px;
  height: 16px;
  border-radius: 2px;
}

.os-brand-name {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  color: #FFFFFF;
  white-space: nowrap;
}

.os-brand-name span.highlight {
  background: linear-gradient(135deg, #FFC400, #E50914);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-left: 4px;
}

.os-pro-pill {
  font-size: 0.58rem;
  font-weight: 900;
  background: rgba(255, 196, 0, 0.15);
  color: var(--spain-gold);
  border: 1px solid rgba(255, 196, 0, 0.4);
  padding: 2px 6px;
  border-radius: 5px;
  margin-left: 6px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* Nav Menu Items */
.os-menu-items {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 1;
}

.os-menu-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 11px;
  border-radius: var(--radius-full);
  transition: all 0.2s ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  line-height: 1.2;
}

.os-menu-link:hover, .os-menu-link.active {
  color: var(--text-pure);
  background: rgba(255, 255, 255, 0.1);
}

.os-menu-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.btn-os-wa {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--wa-green);
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.25);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  transition: all 0.25s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-os-wa:hover {
  background: rgba(37, 211, 102, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-os-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--cinema-red) 0%, var(--cinema-red-hover) 100%);
  color: #FFFFFF;
  padding: 9px 18px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 800;
  box-shadow: 0 4px 20px var(--cinema-red-glow);
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-os-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(229, 9, 20, 0.6);
  color: #FFFFFF;
}

.os-mobile-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-medium);
  color: var(--text-pure);
  width: 42px;
  height: 42px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* ==========================================================================
   HERO: THE CINEMA COMMAND CENTER STAGE
   ========================================================================== */
.cinema-hero-stage {
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}

.cinema-hero-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 45px;
}

.hero-micro-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-medium);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-micro-pill .pulse-radar {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cinema-red);
  box-shadow: 0 0 10px var(--cinema-red);
}

.cinema-hero-title {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.cinema-hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 780px;
  margin: 0 auto 35px;
}

.cinema-hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-cinema-main {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--cinema-red) 0%, var(--cinema-red-hover) 100%);
  color: #FFFFFF;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 30px var(--cinema-red-glow);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: none;
  cursor: pointer;
}

.btn-cinema-main:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 36px rgba(229, 9, 20, 0.7);
  color: #FFFFFF;
}

.btn-cinema-trial {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-medium);
  color: #FFFFFF;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  font-family: inherit;
  cursor: pointer;
  outline: none;
}

.btn-cinema-trial:hover {
  background: rgba(37, 211, 102, 0.15);
  border-color: rgba(37, 211, 102, 0.4);
  color: #FFFFFF;
  transform: translateY(-3px);
}

/* Quick Metrics Bar */
.cinema-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 18px 28px;
  background: rgba(14, 20, 35, 0.5);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  max-width: 860px;
  margin: 0 auto;
}

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

.stat-item .stat-icon {
  color: var(--spain-gold);
  font-size: 1.2rem;
}

.stat-item .stat-num {
  font-size: 1.1rem;
  font-weight: 800;
  color: #FFFFFF;
}

.stat-item .stat-label {
  font-size: 0.8rem;
  color: var(--text-dim);
  font-weight: 600;
}

/* ==========================================================================
   INTERACTIVE CINEMA PLAYER MOCKUP (STREAMING OS UI)
   ========================================================================== */
.cinema-player-wrapper {
  margin-top: 50px;
  position: relative;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.cinema-player-frame {
  background: #080C14;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85), 0 0 40px rgba(229, 9, 20, 0.2);
  position: relative;
}

/* Top Cinema OS Player Bar */
.player-top-os-bar {
  background: rgba(11, 15, 25, 0.95);
  border-bottom: 1px solid var(--border-subtle);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}

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

.channel-badge {
  background: var(--cinema-red);
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.channel-title {
  font-weight: 800;
  color: #FFFFFF;
}

.player-telemetry {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.telemetry-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.telemetry-item span.green {
  color: var(--emerald-live);
  font-weight: 700;
}

/* Main Display Canvas */
.player-screen-canvas {
  position: relative;
  min-height: 480px;
  background: #020408;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
  transition: all 0.5s ease;
}

/* Realistic live football broadcast simulated HUD */
.live-match-hud {
  position: absolute;
  top: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  background: rgba(11, 15, 25, 0.85);
  backdrop-filter: blur(15px);
  border: 1px solid var(--border-medium);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
}

.hud-league {
  background: linear-gradient(135deg, #1E293B, #0F172A);
  color: var(--spain-gold);
  font-weight: 900;
  font-size: 0.75rem;
  padding: 8px 14px;
  border-right: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hud-scoreboard {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  gap: 12px;
  font-weight: 800;
  font-size: 0.95rem;
}

.hud-team {
  color: #FFFFFF;
}

.hud-score {
  background: rgba(229, 9, 20, 0.2);
  color: #FFFFFF;
  padding: 2px 8px;
  border-radius: 6px;
  border: 1px solid rgba(229, 9, 20, 0.4);
}

.hud-time {
  color: var(--emerald-live);
  font-size: 0.8rem;
  padding-left: 8px;
  border-left: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* 4K UHD Pro Stamp on Screen */
.hud-quality-stamp {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(255, 196, 0, 0.4);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 900;
  color: var(--spain-gold);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Interactive Channel Selector Row */
.player-channel-switcher {
  background: rgba(8, 12, 22, 0.92);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-medium);
  padding: 16px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.channel-preview-tab {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
  user-select: none;
}

.channel-preview-tab:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.channel-preview-tab.active {
  background: rgba(229, 9, 20, 0.15);
  border-color: var(--cinema-red);
  box-shadow: 0 0 15px rgba(229, 9, 20, 0.3);
}

.tab-icon {
  width: 36px;
  height: 36px;
  background: #1E293B;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.channel-preview-tab.active .tab-icon {
  background: var(--cinema-red);
}

.tab-details h4,
.tab-details .tab-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 2px;
  display: block;
}

.tab-details p {
  font-size: 0.72rem;
  color: var(--text-dim);
}

/* ==========================================================================
   LIVE EVENTS SCHEDULE TICKER
   ========================================================================== */
.live-schedule-strip {
  padding: 30px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(8, 12, 22, 0.6);
}

.schedule-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.schedule-title-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.schedule-title-group h2,
.schedule-title-group h3 {
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
  color: #FFFFFF;
}

.events-carousel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.event-match-card {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  padding: 16px;
  position: relative;
  transition: all 0.3s ease;
}

.event-match-card:hover {
  border-color: rgba(229, 9, 20, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.event-top-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.event-league {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--spain-gold);
  text-transform: uppercase;
}

.event-badge-live {
  background: var(--cinema-red);
  color: #FFFFFF;
  font-size: 0.65rem;
  font-weight: 900;
  padding: 2px 6px;
  border-radius: 4px;
}

.event-teams {
  font-size: 0.95rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.event-broadcast {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-dim);
  border-top: 1px solid var(--border-subtle);
  padding-top: 8px;
}

/* ==========================================================================
   INTERACTIVE TABBED FEATURE SHOWCASE
   ========================================================================== */
.feature-showcase-section {
  padding: 100px 0;
}

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

.section-micro-badge {
  color: #FF5555;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-block;
  margin-bottom: 12px;
}

.section-big-title {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.tabbed-showcase-container {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: center;
}

.showcase-tabs-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.showcase-tab-trigger {
  background: rgba(14, 20, 35, 0.4);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  text-align: left;
}

.showcase-tab-trigger:hover {
  background: rgba(14, 20, 35, 0.8);
  border-color: var(--border-medium);
}

.showcase-tab-trigger.active {
  background: rgba(14, 20, 35, 0.9);
  border-color: var(--cinema-red);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(229, 9, 20, 0.15);
}

.showcase-tab-trigger.active::before {
  content: '';
  position: absolute;
  left: -1px;
  top: 15%;
  height: 70%;
  width: 4px;
  background: var(--cinema-red);
  border-radius: 4px;
}

.tab-trigger-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.tab-trigger-title i {
  color: var(--spain-gold);
}

.showcase-tab-trigger.active .tab-trigger-title i {
  color: var(--cinema-red);
}

.tab-trigger-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Showcase Display Canvas */
.showcase-display-canvas {
  background: linear-gradient(135deg, #0C101C 0%, #080C14 100%);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: 40px;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow-elevated);
  position: relative;
  overflow: hidden;
}

.showcase-tab-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

.showcase-tab-content.active {
  display: block;
}

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

.feature-pill-highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(229, 9, 20, 0.15);
  color: #FF6B6B;
  border: 1px solid rgba(229, 9, 20, 0.3);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.content-headline {
  font-size: 1.8rem;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 16px;
  line-height: 1.25;
}

.content-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.feature-checkmarks-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  list-style: none;
}

.feature-checkmarks-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-main);
  font-weight: 600;
}

.feature-checkmarks-list li i {
  color: var(--emerald-live);
}

/* ==========================================================================
   INTERACTIVE DEVICE ECOSYSTEM HUB
   ========================================================================== */
.device-hub-section {
  padding: 90px 0;
  background: rgba(8, 12, 22, 0.4);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.device-switcher-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 45px;
}

.device-switch-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 12px 22px;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s ease;
}

.device-switch-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

.device-switch-btn.active {
  background: var(--cinema-red);
  color: #FFFFFF;
  border-color: var(--cinema-red);
  box-shadow: 0 4px 20px var(--cinema-red-glow);
}

.device-card-content {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: 45px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-elevated);
}

.device-screen-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  background: #060b13;
  border-radius: 16px;
  border: 1px solid var(--border-medium);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  transition: opacity 0.25s ease;
  display: block;
}

.device-step-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 24px;
}

.device-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(229, 9, 20, 0.15);
  border: 1px solid rgba(229, 9, 20, 0.4);
  color: #FF5555;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
}

.step-text h4,
.step-text h5 {
  font-size: 1rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 4px;
}

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

.apps-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.app-pill-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-medium);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-main);
}

/* ==========================================================================
   WHY ORDER 24H FREE TRIAL SHOWCASE SECTION
   ========================================================================== */
.free-trial-showcase-section {
  padding: 90px 0 20px;
  position: relative;
  z-index: 1;
}

.section-micro-badge.trial-badge {
  background: rgba(16, 185, 129, 0.12);
  color: #10B981;
  border: 1px solid rgba(16, 185, 129, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.live-dot-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #10B981;
  box-shadow: 0 0 10px #10B981;
  animation: trialPulse 1.8s infinite ease-in-out;
  display: inline-block;
}

@keyframes trialPulse {
  0% { transform: scale(0.9); opacity: 0.7; box-shadow: 0 0 4px #10B981; }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 12px #10B981; }
  100% { transform: scale(0.9); opacity: 0.7; box-shadow: 0 0 4px #10B981; }
}

.trial-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.trial-pillar-card {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-subtle);
}

.trial-pillar-card:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 0 0 25px rgba(16, 185, 129, 0.15);
}

.trial-pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10B981;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.trial-pillar-card:hover .trial-pillar-icon {
  transform: scale(1.08);
  background: rgba(16, 185, 129, 0.18);
}

.trial-pillar-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pillar-step-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #10B981;
  margin-bottom: 8px;
}

.trial-pillar-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.35;
  margin-bottom: 10px;
}

.trial-pillar-text {
  font-size: 0.85rem;
  color: #94A3B8;
  line-height: 1.6;
  margin: 0;
}

/* Trial Action Callout Box */
.trial-action-callout {
  margin-top: 40px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.07) 0%, rgba(15, 23, 42, 0.9) 100%);
  border: 1px solid rgba(16, 185, 129, 0.28);
  border-radius: var(--radius-xl);
  padding: 34px 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.trial-callout-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  right: -60px;
  top: -60px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.16) 0%, transparent 70%);
  pointer-events: none;
}

.trial-callout-text {
  position: relative;
  z-index: 2;
  flex: 1;
}

.trial-callout-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 900;
  color: #10B981;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.trial-callout-title {
  font-size: 1.35rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.trial-callout-desc {
  font-size: 0.88rem;
  color: #CBD5E1;
  max-width: 620px;
  line-height: 1.55;
  margin: 0 0 14px 0;
}

.trial-callout-micro-features {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #10B981;
}

.trial-callout-micro-features span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.trial-callout-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
  align-items: stretch;
  position: relative;
  z-index: 2;
  min-width: 220px;
}

.btn-trial-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #10B981, #059669);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.92rem;
  padding: 13px 24px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.35);
  text-align: center;
  white-space: nowrap;
}

.btn-trial-primary:hover {
  background: linear-gradient(135deg, #059669, #047857);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.5);
  color: #ffffff;
}

.btn-trial-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #E2E8F0;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 11px 20px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.25s ease;
  text-align: center;
  white-space: nowrap;
}

.btn-trial-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 1080px) {
  .trial-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .trial-action-callout {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 26px 20px;
  }
  .trial-callout-desc {
    max-width: 100%;
  }
  .trial-callout-micro-features {
    justify-content: center;
  }
  .trial-callout-actions {
    min-width: 100%;
  }
}

@media (max-width: 640px) {
  .free-trial-showcase-section {
    padding: 60px 0 15px;
  }
  .trial-pillars-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
  }
  .trial-pillar-card {
    padding: 22px 18px;
  }
  .trial-callout-title {
    font-size: 1.18rem;
  }
}

/* ==========================================================================
   RADICALLY REDESIGNED VIP PRICING & SUBSCRIPTION CARDS
   ========================================================================== */
.pricing-vip-section {
  padding: 110px 0;
  position: relative;
}

.vip-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
  max-width: 1180px;
  margin: 0 auto;
}

.vip-plan-card {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-subtle);
}

.vip-plan-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow-elevated);
}

/* The Featured VIP 12M Plan Card */
.vip-plan-card.featured-vip {
  background: linear-gradient(180deg, #161D2E 0%, #0D1322 100%);
  border: 2px solid var(--spain-gold);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 35px var(--spain-gold-glow);
  transform: scale(1.04);
  z-index: 2;
}

.vip-plan-card.featured-vip:hover {
  transform: scale(1.04) translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 45px rgba(255, 196, 0, 0.5);
}

.card-top-tag {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #FFC400, #E50914);
  color: #000000;
  font-weight: 900;
  font-size: 0.78rem;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(255, 196, 0, 0.5);
}

.plan-header {
  margin-bottom: 24px;
}

.plan-name {
  font-size: 1.5rem;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.plan-tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.plan-price-block {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-subtle);
}

.price-currency {
  font-size: 1.8rem;
  font-weight: 800;
  color: #FFFFFF;
  vertical-align: top;
  margin-right: 2px;
}

.price-integer {
  font-size: 3.6rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1;
}

.featured-vip .price-integer {
  background: linear-gradient(135deg, #FFFFFF 30%, #FFC400 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.price-period {
  font-size: 0.9rem;
  color: var(--text-dim);
  font-weight: 600;
  display: block;
  margin-top: 6px;
}

.monthly-equivalent-badge {
  display: inline-block;
  background: rgba(37, 211, 102, 0.15);
  color: var(--wa-green);
  border: 1px solid rgba(37, 211, 102, 0.3);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 800;
  margin-top: 8px;
}

.plan-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 35px;
}

.plan-features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-main);
  font-weight: 500;
}

.plan-features-list li i {
  color: var(--emerald-live);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.btn-plan-order {
  display: block;
  text-align: center;
  padding: 16px 24px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-plan-standard {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  border: 1px solid var(--border-medium);
}

.btn-plan-standard:hover {
  background: var(--cinema-red);
  border-color: var(--cinema-red);
  box-shadow: 0 6px 20px var(--cinema-red-glow);
  color: #FFFFFF;
}

.btn-plan-vip {
  background: linear-gradient(135deg, var(--cinema-red) 0%, var(--cinema-red-hover) 100%);
  color: #FFFFFF;
  box-shadow: 0 8px 30px var(--cinema-red-glow);
}

.btn-plan-vip:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 36px rgba(229, 9, 20, 0.7);
  color: #FFFFFF;
}

/* Trust Payments Strip */
.trust-payment-bar {
  margin-top: 50px;
  text-align: center;
  padding: 24px;
  background: rgba(14, 20, 35, 0.4);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.trust-payment-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.payment-badges-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.pay-badge-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ==========================================================================
   INTERACTIVE SPEED & COMPATIBILITY CHECKER (MICRO-APP)
   ========================================================================== */
.speed-microapp-section {
  padding: 80px 0;
}

.speed-microapp-card {
  background: linear-gradient(135deg, #0F172A 0%, #0B1120 100%);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: 50px 40px;
  box-shadow: var(--shadow-elevated);
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}

.speedometer-visual-wrapper {
  margin: 30px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, #1E293B 0%, #0F172A 70%);
  border: 4px solid var(--border-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 30px rgba(0,0,0,0.6);
}

.speed-display-value {
  font-size: 3rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1;
}

.speed-unit {
  font-size: 0.85rem;
  color: var(--spain-gold);
  font-weight: 800;
  text-transform: uppercase;
}

.btn-speed-run {
  background: linear-gradient(135deg, var(--cinema-red) 0%, var(--cinema-red-hover) 100%);
  color: #FFFFFF;
  border: none;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 6px 25px var(--cinema-red-glow);
  transition: all 0.3s ease;
}

.btn-speed-run:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 10px 30px rgba(229, 9, 20, 0.6);
}

.speed-verdict-box {
  margin-top: 24px;
  padding: 14px 20px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--emerald-live);
  font-weight: 700;
  display: none;
}

/* ==========================================================================
   SPANISH REGIONAL CDN HUBS
   ========================================================================== */
.cdn-network-section {
  padding: 90px 0;
  background: rgba(8, 12, 22, 0.5);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.cdn-nodes-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.cdn-node-card {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  transition: all 0.25s ease;
}

.cdn-node-card:hover {
  border-color: rgba(229, 9, 20, 0.4);
  transform: translateY(-4px);
}

.cdn-node-name {
  font-size: 1rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.cdn-latency-pill {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--emerald-live);
  background: rgba(16, 185, 129, 0.12);
  padding: 3px 8px;
  border-radius: var(--radius-full);
  display: inline-block;
}

/* ==========================================================================
   TRUST WALL & REVIEWS
   ========================================================================== */
.trust-wall-section {
  padding: 100px 0;
}

.trustpilot-summary-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.trustpilot-stars {
  color: var(--spain-gold);
  font-size: 1.1rem;
}

.reviews-masonry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-item-card {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E50914, #FFC400);
  color: #FFFFFF;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.review-author-info h3,
.review-author-info h4,
.review-author-name {
  font-size: 0.98rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0;
}

.review-author-info p {
  font-size: 0.78rem;
  color: var(--text-dim);
}

.review-stars {
  color: var(--spain-gold);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.review-quote {
  font-size: 0.94rem;
  color: var(--text-main);
  line-height: 1.6;
  font-style: italic;
}

/* ==========================================================================
   MODERN FAQ ACCORDION
   ========================================================================== */
.faq-cinema-section {
  padding: 100px 0;
  background: rgba(8, 12, 22, 0.4);
}

.faq-modern-container {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-modern-item {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.25s ease;
}

.faq-modern-item.active {
  border-color: rgba(229, 9, 20, 0.4);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.faq-modern-trigger {
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-modern-trigger h3,
.faq-modern-trigger h4,
.faq-modern-trigger .faq-question {
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0;
}

.faq-modern-icon {
  font-size: 1.2rem;
  color: var(--cinema-red);
  transition: transform 0.3s ease;
}

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

.faq-modern-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 28px;
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

.faq-modern-item.active .faq-modern-answer {
  max-height: 400px;
  padding: 0 28px 24px;
}

/* ==========================================================================
   HIGH CONVERSION FOOTER
   ========================================================================== */
.cinema-footer {
  background: #04060A;
  border-top: 1px solid var(--border-medium);
  padding: 80px 0 40px;
}

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

.footer-col h4,
.footer-col .footer-col-title {
  font-size: 1rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.footer-col ul li a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: var(--spain-gold);
}

.footer-whatsapp-card {
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.25);
  border-radius: var(--radius-md);
  padding: 20px;
}

.footer-whatsapp-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.footer-bottom-strip {
  border-top: 1px solid var(--border-subtle);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #94A3B8;
  flex-wrap: wrap;
  gap: 16px;
}

/* ==========================================================================
   FLOATING WHATSAPP RADAR BUTTON (CONVERSION ENGINE - ALL PAGES)
   ========================================================================== */
.wa-floating-radar {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  z-index: 999999 !important;
  text-decoration: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.wa-floating-icon {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5), 0 2px 10px rgba(0, 0, 0, 0.4);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.wa-floating-radar:hover .wa-floating-icon {
  transform: scale(1.12) translateY(-4px);
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.7), 0 4px 14px rgba(0, 0, 0, 0.5);
}

.wa-floating-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.7;
  z-index: -1;
  animation: radar-pulse 2.2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

@keyframes radar-pulse {
  0% { transform: scale(1); opacity: 0.75; }
  60% { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}

.wa-badge-notify {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #E50914;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 900;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #060913;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  animation: wa-badge-bounce 3s infinite ease;
}

@keyframes wa-badge-bounce {
  0%, 80%, 100% { transform: scale(1); }
  90% { transform: scale(1.2); }
}

.wa-floating-label {
  background: rgba(13, 18, 31, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #FFFFFF;
  padding: 9px 18px;
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 700;
  border: 1px solid rgba(37, 211, 102, 0.4);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.55);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  pointer-events: auto;
  transition: all 0.3s ease;
}

.wa-floating-label::before {
  content: '';
  display: inline-block;
  width: 9px;
  height: 9px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 0 10px #25D366;
  animation: wa-online-blink 1.8s infinite ease-in-out;
}

@keyframes wa-online-blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.wa-floating-radar:hover .wa-floating-label {
  border-color: #25D366;
  transform: translateX(-4px);
  background: rgba(18, 24, 42, 0.98);
}

@media (max-width: 640px) {
  .wa-floating-radar {
    bottom: 22px;
    right: 20px;
    gap: 0;
  }
  .wa-floating-icon {
    width: 62px;
    height: 62px;
    font-size: 2rem;
  }
  .wa-floating-label {
    display: none;
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN (TABLET & MOBILE)
   ========================================================================== */
/* Medium desktop & Laptop refinement: 1081px to 1340px */
@media (max-width: 1340px) {
  .os-nav-inner {
    padding: 7px 14px;
    gap: 8px;
  }
  .os-menu-items {
    gap: 2px;
  }
  .os-menu-link {
    font-size: 0.8rem;
    padding: 5px 8px;
  }
  .os-brand-name {
    font-size: 1.18rem;
  }
  .wa-num-text {
    display: none;
  }
  .btn-os-wa {
    padding: 7px 11px;
    font-size: 0.88rem;
  }
  .btn-os-cta {
    padding: 8px 14px;
    font-size: 0.8rem;
  }
}

@media (max-width: 1080px) {
  .events-carousel-grid { grid-template-columns: repeat(2, 1fr); }
  .tabbed-showcase-container { grid-template-columns: 1fr; }
  .device-card-content { grid-template-columns: 1fr; }
  .vip-pricing-grid { grid-template-columns: 1fr; max-width: 520px; }
  .vip-plan-card.featured-vip { transform: none; }
  .vip-plan-card.featured-vip:hover { transform: translateY(-8px); }
  .cdn-nodes-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-masonry-grid { grid-template-columns: 1fr; }
  .footer-top-grid { grid-template-columns: 1fr 1fr; }
  .player-channel-switcher { grid-template-columns: repeat(2, 1fr); }

  .os-menu-items, .os-menu-actions {
    display: none !important;
  }
  .os-mobile-toggle {
    display: flex !important;
  }
  
  /* Mobile Drawer Dropdown */
  body.os-menu-open .os-menu-items {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 75px;
    left: 16px;
    right: 16px;
    background: rgba(11, 15, 25, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    padding: 24px 20px 16px;
    gap: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.85);
    z-index: 1005;
    max-height: calc(85vh - 120px);
    overflow-y: auto;
  }

  body.os-menu-open .os-menu-link {
    font-size: 1rem;
    padding: 12px 16px;
  }

  body.os-menu-open .os-menu-actions {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    bottom: 20px;
    left: 16px;
    right: 16px;
    background: rgba(11, 15, 25, 0.98);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-xl);
    padding: 16px 20px;
    z-index: 1006;
    gap: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.9);
  }

  body.os-menu-open .wa-num-text {
    display: inline !important;
  }

  body.os-menu-open .btn-os-wa,
  body.os-menu-open .btn-os-cta {
    width: 100%;
    justify-content: center;
    padding: 12px;
  }
}

@media (max-width: 640px) {
  .cinema-hero-title { font-size: 2.2rem; }
  .cinema-stats-bar { gap: 16px; flex-direction: column; align-items: flex-start; }
  .events-carousel-grid { grid-template-columns: 1fr; }
  .player-channel-switcher { grid-template-columns: 1fr; }
  .cdn-nodes-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top-grid { grid-template-columns: 1fr; }

  /* Top OS Bar & Telemetry on Mobile */
  .player-top-os-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 14px;
  }
  .player-channel-info {
    width: 100%;
    justify-content: space-between;
  }
  .player-channel-info .channel-title {
    font-size: 0.82rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .player-telemetry {
    width: 100%;
    justify-content: flex-start;
    gap: 12px;
    font-size: 0.72rem;
    flex-wrap: wrap;
  }

  /* Cinema Player Canvas & Broadcast HUD on Mobile */
  .player-screen-canvas {
    min-height: 250px;
    aspect-ratio: 16 / 10;
  }
  .live-match-hud {
    top: 10px;
    left: 10px;
    max-width: calc(100% - 20px);
    border-radius: 8px;
    font-size: 0.75rem;
  }
  .hud-league {
    padding: 6px 10px;
    font-size: 0.8rem;
    white-space: nowrap;
  }
  .hud-league span {
    display: none;
  }
  .hud-scoreboard {
    padding: 6px 10px;
    gap: 8px;
    font-size: 0.78rem;
    white-space: nowrap;
  }
  .hud-team {
    white-space: nowrap;
    max-width: none;
    font-size: 0.78rem;
  }
  .hud-score {
    padding: 1px 6px;
    font-size: 0.74rem;
    flex-shrink: 0;
  }
  .hud-time {
    display: none;
  }
  .hud-quality-stamp { display: none; }

  /* Device Ecosystem Hub on Mobile */
  .device-switcher-nav {
    gap: 8px;
    margin-bottom: 24px;
  }
  .device-switch-btn {
    padding: 8px 14px;
    font-size: 0.78rem;
    gap: 6px;
  }
  .device-card-content {
    padding: 24px 16px;
    gap: 24px;
    border-radius: 16px;
  }
  .device-card-content h3 {
    font-size: 1.35rem !important;
  }
  .device-screen-img {
    aspect-ratio: 3 / 2;
    object-fit: contain;
    border-radius: 12px;
  }
}

/* ==========================================================================
   BLOG & KNOWLEDGE BASE CINEMA STYLES
   ========================================================================== */
.blog-page {
  background: var(--bg-core);
  min-height: 100vh;
  padding-bottom: 100px;
  color: var(--text-main);
}

.blog-hero-banner {
  padding: 40px 0 20px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 40px;
}

.blog-breadcrumb {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.blog-breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.blog-breadcrumb a:hover {
  color: var(--spain-gold);
}

.blog-breadcrumb span {
  color: var(--spain-gold);
  font-weight: 700;
}

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
}

@media (max-width: 1024px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }
}

.blog-main {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: 40px md:50px;
  box-shadow: var(--shadow-elevated);
}

.blog-post-header h1 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.blog-post-meta-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--text-dim);
}

.meta-tag {
  background: rgba(229, 9, 20, 0.15);
  color: #FF6B6B;
  border: 1px solid rgba(229, 9, 20, 0.3);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-weight: 800;
  text-transform: uppercase;
}

.blog-featured-image {
  margin-bottom: 35px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.blog-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-post-content {
  font-size: 1.08rem;
  line-height: 1.8;
  color: #CBD5E1;
}

.blog-post-content h2, .blog-post-content h3 {
  color: #FFFFFF;
  font-weight: 900;
  margin-top: 36px;
  margin-bottom: 16px;
}

.blog-post-content h2 { font-size: 1.8rem; border-bottom: 1px solid var(--border-subtle); padding-bottom: 10px; }
.blog-post-content h3 { font-size: 1.4rem; }

.blog-post-content p {
  margin-bottom: 20px;
}

.blog-post-content ul, .blog-post-content ol {
  margin-left: 24px;
  margin-bottom: 24px;
}

.blog-post-content li {
  margin-bottom: 8px;
}

.blog-post-content a {
  color: var(--spain-gold);
  text-decoration: underline;
}

.blog-post-content blockquote {
  border-left: 4px solid var(--cinema-red);
  background: rgba(255, 255, 255, 0.03);
  padding: 18px 24px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 28px 0;
  font-style: italic;
  color: #E2E8F0;
}

/* Inline CTA Banner inside blog */
.inline-cta-banner {
  background: linear-gradient(135deg, #161D2E 0%, #0D1322 100%);
  border: 1px solid rgba(255, 196, 0, 0.4);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.inline-cta-title {
  font-size: 1.3rem;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.inline-cta-sub {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.inline-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wa-green);
  color: #05070D;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 800;
  text-decoration: none;
  font-size: 0.95rem;
  box-shadow: 0 4px 15px var(--wa-green-glow);
  transition: all 0.25s ease;
}

.inline-cta-btn:hover {
  transform: translateY(-2px);
  color: #05070D;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* Sidebar */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-card {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-subtle);
}

.sidebar-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 10px;
}

.author-card-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--spain-gold);
}

.author-name {
  font-weight: 800;
  color: #FFFFFF;
}

.author-bio {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 2px;
}

.sidebar-plan-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  margin-bottom: 10px;
  text-decoration: none;
  color: white;
  transition: all 0.2s;
}

.sidebar-plan-item:hover {
  background: rgba(229, 9, 20, 0.15);
  border-color: var(--cinema-red);
}

/* ==========================================================================
   CHECKOUT & ORDER PAGE SPECIFIC STYLES (template-commander.php)
   ========================================================================== */

/* Main 2-Column Grid Layout */
.order-checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}

@media (max-width: 1024px) {
  .order-checkout-layout {
    grid-template-columns: 1fr;
  }
}

/* Two-column form field row (First name & Last name) */
.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 640px) {
  .form-row-2col {
    grid-template-columns: 1fr;
  }
}

/* Reassurance Banner on Paid Checkout Pages */
.checkout-reassurance-banner {
  max-width: 1100px;
  margin: 0 auto 32px;
  padding: 18px 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(6, 78, 59, 0.45) 0%, #0B0F19 50%, rgba(120, 53, 15, 0.25) 100%);
  border: 1px solid rgba(16, 185, 129, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(16, 185, 129, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.checkout-reassurance-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.checkout-reassurance-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #10B981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: inset 0 0 10px rgba(16, 185, 129, 0.2);
}

.checkout-reassurance-content {
  flex: 1;
}

.checkout-reassurance-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.reassurance-title-badge {
  font-size: 0.78rem;
  font-weight: 900;
  color: #10B981;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.reassurance-free-pill {
  background: #10B981;
  color: #000000;
  font-size: 0.65rem;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.checkout-reassurance-text {
  font-size: 0.85rem;
  color: #CBD5E1;
  margin-top: 4px;
  line-height: 1.5;
}

.checkout-reassurance-text strong {
  color: #FFFFFF;
}

.checkout-reassurance-action {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .checkout-reassurance-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 20px 16px;
  }
  .checkout-reassurance-left {
    flex-direction: column;
    text-align: center;
  }
  .checkout-reassurance-eyebrow {
    justify-content: center;
  }
  .checkout-reassurance-action {
    width: 100%;
  }
  .checkout-reassurance-action .btn-cinema-trial {
    width: 100%;
    justify-content: center;
  }
}

/* Plan Switcher 4-Pill Grid */
.checkout-plan-switcher-wrap {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-switcher-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.plan-switcher-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

@media (max-width: 640px) {
  .plan-switcher-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.checkout-plan-pill {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px 8px 14px;
  min-height: 82px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #070A12;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

.checkout-plan-pill:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: #0D1220;
  transform: translateY(-2px);
}

.pill-floating-tag {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: 9999px;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 0.04em;
  z-index: 5;
  line-height: 1.3;
}

.pill-tag-trial {
  background: #10B981;
  color: #000000;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.5);
}

.pill-tag-vip {
  background: linear-gradient(135deg, #FFC400, #E50914);
  color: #000000;
  box-shadow: 0 2px 8px rgba(255, 196, 0, 0.5);
}

.pill-label-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: #94A3B8;
  margin-bottom: 3px;
  line-height: 1.2;
  text-align: center;
}

.pill-label-price {
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.1;
  color: #FFFFFF;
  text-align: center;
}

/* Active Pill States */
.checkout-plan-pill.pill-active-trial {
  border-color: #10B981;
  background: rgba(16, 185, 129, 0.12);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.28);
}
.checkout-plan-pill.pill-active-trial .pill-label-title {
  color: #FFFFFF;
}
.checkout-plan-pill.pill-active-trial .pill-label-price {
  color: #10B981;
}

.checkout-plan-pill.pill-active-paid {
  border-color: #E50914;
  background: rgba(229, 9, 20, 0.12);
  box-shadow: 0 0 18px rgba(229, 9, 20, 0.28);
}
.checkout-plan-pill.pill-active-paid .pill-label-title {
  color: #FFFFFF;
}

.checkout-plan-pill.pill-active-vip {
  border-color: #FFC400;
  background: rgba(255, 196, 0, 0.12);
  box-shadow: 0 0 22px rgba(255, 196, 0, 0.32);
}
.checkout-plan-pill.pill-active-vip .pill-label-title {
  color: #FFFFFF;
}
.checkout-plan-pill.pill-active-vip .pill-label-price {
  color: #FFC400;
}


