@charset "utf-8";
/* IPTV Central - Complete Design System
   Inspired by templatemo_604 layout structure
   Completely new visual identity for streaming services */

/* ============================================
   CSS VARIABLES / DESIGN TOKENS
   ============================================ */
:root {
    /* Primary palette - Cyber/Streaming theme */
    --primary: #00d4ff;
    --primary-dark: #0099cc;
    --primary-light: #66e5ff;
    --secondary: #7c3aed;
    --secondary-dark: #5b21b6;
    --secondary-light: #a78bfa;
    --accent: #f59e0b;
    --accent-light: #fbbf24;
    
    /* Background system */
    --bg-deep: #030712;
    --bg-dark: #0a1628;
    --bg-section: #0d1f3c;
    --bg-card: #111d35;
    --bg-card-hover: #162544;
    
    /* Glass morphism */
    --glass-bg: rgba(13, 31, 60, 0.6);
    --glass-bg-light: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(0, 212, 255, 0.12);
    --glass-border-hover: rgba(0, 212, 255, 0.25);
    
    /* Text */
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --text-accent: #00d4ff;
    
    /* Status */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    --gradient-hero: linear-gradient(135deg, #030712 0%, #0a1628 40%, #111d35 100%);
    --gradient-card: linear-gradient(145deg, rgba(13, 31, 60, 0.8) 0%, rgba(3, 7, 18, 0.9) 100%);
    --gradient-cta: linear-gradient(135deg, #7c3aed 0%, #00d4ff 100%);
    --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #f59e0b 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(0, 212, 255, 0.15);
    --shadow-glow-purple: 0 0 30px rgba(124, 58, 237, 0.15);
    
    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Font */
    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Inter', 'Outfit', sans-serif;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--primary-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

/* ============================================
   FLOATING PARTICLES (replacing snowflakes)
   ============================================ */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        opacity: 0;
        transform: translateY(-20px) scale(1);
    }
}

/* ============================================
   HEADER - Two Row Design (template-inspired)
   ============================================ */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(3, 7, 18, 0.98) 0%, rgba(10, 22, 40, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: all var(--transition);
}

header.scrolled {
    background: rgba(3, 7, 18, 0.99);
    border-bottom-color: rgba(0, 212, 255, 0.2);
    box-shadow: var(--shadow-glow);
}

/* Logo Row */
.header-logo-row {
    text-align: center;
    padding: 12px 24px 8px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.06);
    position: relative;
}

.header-logo-row .logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.header-logo-row .logo img {
    height: 42px;
    width: auto;
}

.header-logo-row .logo .logo-text-highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 300;
}

/* Navigation Row */
.header-nav-row {
    padding: 0 24px;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    max-width: 1280px;
    margin: 0 auto;
}

.nav-decor {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 0.75rem;
    opacity: 0.5;
}

.nav-decor .dot {
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 4px;
    padding: 6px 0;
}

.nav-links li a {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition);
    border-radius: var(--radius-sm);
    position: relative;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--primary);
    background: rgba(0, 212, 255, 0.08);
}

.nav-links li a.nav-cta {
    background: var(--gradient-primary);
    color: #fff;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: var(--radius-full);
}

.nav-links li a.nav-cta:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: var(--shadow-glow);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* Language Selector */
.lang-selector {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 999;
}

.lang-selector .lang-toggle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.lang-selector .lang-toggle:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.lang-selector .lang-toggle img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.lang-selector .lang-dropdown {
    position: absolute;
    bottom: 54px;
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 8px;
    min-width: 160px;
    display: none;
    box-shadow: var(--shadow-lg);
}

.lang-selector .lang-dropdown.active {
    display: block;
}

.lang-selector .lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 0.85rem;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.lang-selector .lang-option:hover,
.lang-selector .lang-option.active {
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary);
}

.lang-selector .lang-option img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
}

/* Currency Selector */
.currency-selector-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.currency-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
}

.currency-select {
    color: var(--primary);
    padding: 8px 15px;
    font-size: 0.9rem;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    cursor: pointer;
    transition: border-color var(--transition);
    font-family: var(--font-primary);
}

.currency-select:hover,
.currency-select:focus {
    border-color: var(--primary);
    outline: none;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 60px;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(3, 7, 18, 0.3) 100%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

.hero-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--radius-full);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
}

.platform-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.platform-icon {
    opacity: 1;
    transition: all var(--transition);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-icon:hover {
    opacity: 1;
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.2);
}

.platform-icon img {
    height: 28px;
    width: auto;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.hero-guarantee {
    margin-top: 16px;
}

.hero-guarantee h4 {
    color: var(--success);
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-guarantee h4::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 50%;
    font-size: 0.7rem;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image img,
.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    filter: drop-shadow(0 20px 60px rgba(0, 212, 255, 0.15));
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 212, 255, 0.4);
    color: #fff;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    border-color: var(--primary);
    background: rgba(0, 212, 255, 0.08);
    color: var(--primary);
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    color: #fff;
}

.btn-buy {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--gradient-primary);
    color: #fff;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    width: 100%;
    justify-content: center;
}

.btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.35);
    color: #fff;
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.05rem;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 16px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: var(--radius-full);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.pricing-section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.pricing-note {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 24px;
}

/* ============================================
   VOD SHOWCASE (Scrolling rows)
   ============================================ */
.vod-showcase-section {
    padding: 80px 0;
    overflow: hidden;
    background: var(--bg-dark);
}

.showcase-desktop,
.showcase-desktop-row2 {
    overflow: hidden;
    margin: 20px 0;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.showcase-desktop .flex,
.showcase-desktop-row2 .flex {
    display: flex;
    gap: 20px;
    animation: scrollLeft 60s linear infinite;
}

.showcase-desktop-row2 .flex {
    animation: scrollRight 60s linear infinite;
}

@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.vod-card-container {
    flex-shrink: 0;
}

.vod-card {
    width: 160px;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform var(--transition);
}

.vod-card:hover {
    transform: scale(1.05);
}

.vod-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.showcase-footer-text {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 20px;
    padding: 0 24px;
}

/* Sports Showcase */
.sports-showcase-section {
    padding: 80px 0;
    overflow: hidden;
    background: var(--bg-section);
}

.showcase-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}

.showcase-arrow-left,
.showcase-arrow-right {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
    z-index: 2;
}

.showcase-arrow-left:hover,
.showcase-arrow-right:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.showcase-desktop-sports {
    overflow: hidden;
    flex: 1;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.showcase-desktop-sports .flex {
    display: flex;
    gap: 20px;
    animation: scrollLeft 40s linear infinite;
}

.sports-card-container {
    flex-shrink: 0;
}

.sports-card {
    width: 140px;
    text-align: center;
}

.showcase-sports-logo {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-card);
    padding: 16px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.showcase-sports-logo:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.sports-league-image {
    width: 100%;
    height: 100px;
    object-fit: contain;
}

.sports-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

.sports-text {
    color: var(--text-primary);
    font-size: 0.75rem;
    font-weight: 600;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats {
    position: relative;
    padding: 80px 0;
    background: var(--bg-section);
    overflow: hidden;
}

.stats-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(124, 58, 237, 0.05));
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 32px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.stat-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

.stat-item .stat-number {
    white-space: nowrap;
}
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-preview {
    position: relative;
    padding: 100px 0;
    background: var(--bg-dark);
    overflow: hidden;
}

.pricing-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center top, rgba(0, 212, 255, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    position: relative;
    z-index: 2;
}

.pricing-card {
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--glass-border-hover);
    box-shadow: var(--shadow-glow);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
    transform: scale(1.03);
}

.pricing-card.featured::before {
    opacity: 1;
}

.pricing-card.featured::after {
    content: '⭐ BEST VALUE';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--gradient-gold);
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 40px;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

.pricing-header {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--glass-border);
}

.plan-duration {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
    letter-spacing: 1px;
}

.plan-name {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-price {
    font-size: 2.8rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.plan-save {
    display: inline-block;
    padding: 3px 12px;
    background: rgba(16, 185, 129, 0.15);
    color: var(--success);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.plan-features {
    list-style: none;
    margin-bottom: 28px;
    text-align: left;
}

.plan-features li {
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li i {
    color: var(--success);
    font-size: 0.85rem;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.payment-methods img {
    height: 24px;
    width: auto;
    opacity: 0.6;
    transition: opacity var(--transition);
}

.payment-methods img:hover {
    opacity: 1;
}

.instant-activation {
    margin-top: 12px;
    font-size: 0.8rem;
    color: var(--success);
    font-weight: 500;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
    padding: 100px 0;
    background: var(--bg-section);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.feature-card {
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--glass-border-hover);
    box-shadow: var(--shadow-glow);
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--primary);
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   SPORTS LOGOS SECTION
   ============================================ */
.sports-section {
    padding: 80px 0;
    background: var(--bg-dark);
}

.sports-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    align-items: center;
    margin-bottom: 40px;
}

.sports-logo {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 12px 20px;
    transition: all var(--transition);
}

.sports-logo:hover {
    background: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 212, 255, 0.2);
}

.sports-logo img {
    height: 50px;
    width: auto;
    opacity: 1;
    transition: all var(--transition);
}

.sports-logo:hover img {
    opacity: 1;
    transform: scale(1.05);
}

.sports-cta {
    text-align: center;
    margin-top: 40px;
}

/* ============================================
   DEVICE SECTION
   ============================================ */
.device-section {
    padding: 100px 0;
    background: var(--bg-section);
}

.device-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.device-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 20px;
}

.device-description {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.device-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 28px;
}

.device-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   WHAT YOU GET
   ============================================ */
.what-you-get {
    padding: 100px 0;
    background: var(--bg-dark);
}

.what-you-get-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.what-you-get-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 28px;
}

.what-you-get-list {
    list-style: none;
}

.what-you-get-list li {
    padding: 12px 0;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    padding-left: 28px;
}

.what-you-get-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.what-you-get-list li strong {
    color: var(--text-primary);
}

.what-you-get-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   ADDITIONAL FEATURES
   ============================================ */
.additional-features {
    padding: 100px 0;
    background: var(--bg-section);
}

.additional-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.additional-feature-card {
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}

.additional-feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--glass-border-hover);
    box-shadow: var(--shadow-glow);
}

.additional-feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.additional-feature-card h3 {
    padding: 20px 24px 8px;
    font-size: 1.15rem;
}

.additional-feature-card p {
    padding: 0 24px 24px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============================================
   TESTIMONIALS 
   ============================================ */
.testimonials {
    position: relative;
    padding: 100px 0;
    background: var(--bg-dark);
    overflow: hidden;
}

.testimonials-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.testimonials-nav-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}

.testimonials-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.testimonials-nav-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.testimonials-slider-container {
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.testimonials-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    flex-shrink: 0;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-slide img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
    position: relative;
    z-index: 2;
}

.testimonials-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-muted);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.testimonials-dot.active {
    background: var(--primary);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-preview,
.faq {
    padding: 100px 0;
    background: var(--bg-section);
}

.faq-preview-grid,
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--glass-border-hover);
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 16px;
}

.faq-question span {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.faq-question i {
    color: var(--primary);
    transition: transform var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
    position: relative;
    padding: 100px 0;
    background: var(--bg-dark);
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 36px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.cta-guarantee h4 {
    color: var(--success);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-hero,
.faq-hero,
.privacy-hero,
.terms-hero,
.refund-hero,
.channels-hero,
.blog-hero,
.downloads-hero {
    position: relative;
    padding: 160px 0 80px;
    background: var(--gradient-hero);
    text-align: center;
}

.contact-hero-overlay,
.faq-hero-overlay,
.privacy-hero-overlay,
.terms-hero-overlay,
.refund-hero-overlay,
.channels-hero-overlay,
.blog-hero-overlay,
.downloads-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center top, rgba(0, 212, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.contact-hero-content,
.faq-hero-content,
.privacy-hero-content,
.terms-hero-content,
.refund-hero-content,
.channels-hero-content,
.blog-hero-content,
.downloads-hero-content {
    position: relative;
    z-index: 2;
}

.contact-hero-subtitle,
.faq-hero-subtitle,
.privacy-hero-subtitle,
.terms-hero-subtitle,
.refund-hero-subtitle,
.channels-hero-subtitle,
.blog-hero-subtitle,
.downloads-hero-subtitle {
    display: inline-block;
    padding: 5px 16px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: var(--radius-full);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.contact-hero-title,
.faq-hero-title,
.privacy-hero-title,
.terms-hero-title,
.refund-hero-title,
.channels-hero-title,
.blog-hero-title,
.downloads-hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
}

/* Contact Form */
.contact-section {
    padding: 100px 0;
    background: var(--bg-section);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-info-card {
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--primary);
    flex-shrink: 0;
}

.contact-info-text h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-info-text p {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.contact-info-text a {
    color: var(--text-secondary);
}

.contact-info-text a:hover {
    color: var(--primary);
}

.contact-form-card {
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-buttons {
    display: flex;
    gap: 12px;
}

.btn-submit {
    flex: 1;
    padding: 14px 28px;
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-clear {
    padding: 14px 28px;
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-clear:hover {
    border-color: var(--error);
    color: var(--error);
}

/* ============================================
   CHANNELS PAGE
   ============================================ */
.channels-section {
    padding: 80px 0;
    background: var(--bg-section);
}

.country-region-group {
    margin-bottom: 40px;
}

.region-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--glass-border);
}

.country-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.country-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    text-decoration: none;
    transition: all var(--transition);
    font-size: 0.9rem;
}

.country-card:hover,
.country-card.active {
    border-color: var(--primary);
    background: rgba(0, 212, 255, 0.05);
    color: var(--primary);
}

.country-flag {
    font-size: 1.3rem;
}

.country-count {
    margin-left: auto;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.channel-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
    margin-top: 40px;
}

.channel-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.channel-item:hover {
    border-color: var(--glass-border-hover);
}

.channel-logo {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    object-fit: contain;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px;
}

.channel-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.channel-quality {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
}

/* ============================================
   BLOG
   ============================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
    padding: 80px 0;
}

.blog-card {
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}

.blog-card:hover {
    transform: translateY(-4px);
    border-color: var(--glass-border-hover);
    box-shadow: var(--shadow-glow);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-content {
    padding: 24px;
}

.blog-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.blog-card-excerpt {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Blog Topic Page */
.blog-topic-section {
    padding: 80px 0;
    background: var(--bg-section);
}

.blog-topic-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-topic-content h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.blog-topic-content .blog-meta {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--glass-border);
}

.blog-topic-content .blog-body {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
}

.blog-topic-content .blog-body h2,
.blog-topic-content .blog-body h3 {
    color: var(--text-primary);
    margin: 28px 0 12px;
}

.blog-topic-content .blog-body p {
    margin-bottom: 16px;
}

.blog-topic-content .blog-body ul,
.blog-topic-content .blog-body ol {
    margin: 16px 0;
    padding-left: 24px;
}

.blog-topic-content .blog-body li {
    margin-bottom: 8px;
}

/* ============================================
   DOWNLOADS PAGE
   ============================================ */
.downloads-section {
    padding: 80px 0;
    background: var(--bg-section);
}

.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.download-card {
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition);
}

.download-card:hover {
    transform: translateY(-4px);
    border-color: var(--glass-border-hover);
    box-shadow: var(--shadow-glow);
}

.download-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border-radius: var(--radius-md);
    font-size: 1.8rem;
    color: var(--primary);
}

.download-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.download-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* ============================================
   PRIVACY / TERMS / REFUND
   ============================================ */
.privacy-content,
.terms-content,
.refund-content {
    padding: 80px 0;
    background: var(--bg-section);
}

.privacy-container,
.terms-container,
.refund-container {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-text,
.terms-text,
.refund-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}

.privacy-text h3,
.terms-text h3,
.refund-text h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin: 32px 0 12px;
}

.privacy-text h4,
.terms-text h4,
.refund-text h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin: 24px 0 8px;
}

.privacy-text p,
.terms-text p,
.refund-text p {
    margin-bottom: 16px;
}

.privacy-text ul,
.terms-text ul,
.refund-text ul {
    margin: 12px 0;
    padding-left: 24px;
}

.privacy-text li,
.terms-text li,
.refund-text li {
    margin-bottom: 8px;
}

.privacy-text a,
.terms-text a,
.refund-text a {
    color: var(--primary);
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info li {
    padding: 6px 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    position: relative;
    padding: 60px 0 0;
    background: var(--bg-deep);
    border-top: 1px solid var(--glass-border);
}

.footer-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-bottom: 40px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 24px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 24px;
    margin-bottom: 32px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding: 20px 0;
    position: relative;
    z-index: 2;
}

.footer-copyright {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
}

.whatsapp-button {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all var(--transition);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
    color: #fff;
}

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

/* ============================================
   ALERTS
   ============================================ */
.alert {
    padding: 16px 24px;
    border-radius: var(--radius-md);
    margin: 16px 24px;
    font-size: 0.9rem;
    position: relative;
    z-index: 100;
}

.alert-success {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--success);
}

.alert-error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: var(--error);
}

/* ============================================
   SETUP GUIDE (device page overrides)
   ============================================ */
.device-setup-page {
    padding-top: 120px;
    min-height: 100vh;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .platform-icons {
        justify-content: center;
    }
    
    .device-grid,
    .what-you-get-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .additional-features-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-preview-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-logo-row {
        padding: 10px 16px 6px;
    }
    
    .header-logo-row .logo {
        font-size: 1.2rem;
    }
    
    .header-logo-row .logo img {
        height: 32px;
    }
    
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(3, 7, 18, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 8px;
        z-index: 1000;
        padding: 20px;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li a {
        font-size: 1.2rem;
        padding: 12px 24px;
    }
    
    .nav-toggle {
        display: flex;
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .nav-decor {
        display: none;
    }
    
    .hero {
        padding-top: 100px;
        min-height: auto;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-guarantee {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .form-buttons {
        flex-direction: column;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* Lazy load images */
.lazy-load {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.lazy-load.loaded {
    opacity: 1;
}

/* ============================================
   CHANNELS PAGE - Country Selection & Channel Grid
   ============================================ */
.channels-hero {
    position: relative;
    padding: 140px 0 60px;
    background: linear-gradient(135deg, #030712 0%, #0a1628 40%, #111d35 100%);
    text-align: center;
}

.channels-list {
    padding: 60px 0;
    background: var(--bg-section);
}

.country-selection .section-header {
    margin-bottom: 40px;
}

.country-region {
    margin-bottom: 32px;
}

.countries-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.country-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.country-card {
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition);
}

.country-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.country-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    text-decoration: none;
    color: var(--text-primary);
}

.country-flag {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.country-info {
    flex: 1;
    min-width: 0;
}

.country-name {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.country-channels {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin: 2px 0 0;
}

.country-arrow {
    color: var(--text-muted);
    font-size: 0.8rem;
    transition: color var(--transition);
}

.country-card:hover .country-arrow {
    color: var(--primary);
}

/* Channel Grid */
.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.channel-card {
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: all var(--transition);
}

.channel-card:hover {
    border-color: var(--glass-border-hover);
    box-shadow: var(--shadow-glow);
}

.channel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.channel-header .channel-name {
    font-size: 0.95rem;
    font-weight: 600;
    flex: 1;
    margin-right: 8px;
}

.channel-quality {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.quality-hd { background: rgba(0, 212, 255, 0.15); color: #00d4ff; }
.quality-fhd,
.quality-fullhd { background: rgba(16, 185, 129, 0.15); color: #10b981; }
.quality-4k,
.quality-uhd { background: rgba(245, 158, 11, 0.15); color: #f59e0b; }
.quality-8k { background: rgba(239, 68, 68, 0.15); color: #ef4444; }
.quality-sd { background: rgba(100, 116, 139, 0.15); color: #94a3b8; }

.channel-info { margin-bottom: 12px; }

.channel-meta {
    display: flex;
    gap: 16px;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.channel-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.channel-description {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-top: 8px;
    line-height: 1.5;
}

.channel-status { margin-top: 8px; }

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-active {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.status-inactive {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

/* Country Channels View */
.country-channels-view .country-header {
    margin-bottom: 24px;
}

.country-breadcrumb {
    margin-bottom: 16px;
}

.country-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.country-title-flag {
    font-size: 2rem;
    margin-right: 8px;
}

.country-description {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Channel Search Bar */
.channels-search-bar {
    margin-bottom: 24px;
}

.search-bar-inner {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    gap: 12px;
    transition: border-color var(--transition);
}

.search-bar-inner:focus-within {
    border-color: var(--primary);
}

.search-bar-icon {
    color: var(--text-muted);
    font-size: 1rem;
}

.search-bar-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
}

.search-bar-input::placeholder {
    color: var(--text-muted);
}

.search-bar-clear {
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s ease;
    line-height: 1;
}

.search-results-count {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 8px;
    display: none;
}

.no-search-results {
    text-align: center;
    padding: 48px 24px;
    color: var(--text-muted);
}

.no-search-results i {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
}

.channels-search-bar.is-sticky {
    position: sticky;
    top: 80px;
    z-index: 50;
    background: var(--bg-section);
    padding: 12px 0;
}

.no-results {
    text-align: center;
    padding: 60px 24px;
}

.no-results-icon {
    font-size: 3rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.channels-cta {
    text-align: center;
    padding: 60px 24px;
    margin-top: 40px;
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
}

.channels-cta h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.channels-cta p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.channels-cta .cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .country-row {
        grid-template-columns: 1fr;
    }
    .channels-grid {
        grid-template-columns: 1fr;
    }
    .country-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 1024px) {
    .country-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   DOWNLOAD CENTER STYLES
   ============================================ */
.downloads-hero {
    position: relative;
    padding: 140px 0 60px;
    background: linear-gradient(135deg, #030712 0%, #0a1628 40%, #111d35 100%);
    text-align: center;
}

.downloads-content {
    padding: 60px 0;
    background: var(--bg-section);
}

.download-category {
    margin-bottom: 40px;
}

.download-category.recommended-app {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.04), rgba(124, 58, 237, 0.04));
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.category-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--primary);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.category-header h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 4px;
}

.badge-activated {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 20px;
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    font-size: 0.75rem;
    font-weight: 600;
    margin-right: 6px;
}

.badge-recommended {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 20px;
    background: rgba(0, 212, 255, 0.15);
    color: #00d4ff;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-info {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 20px;
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-warning {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 20px;
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
    font-size: 0.75rem;
    font-weight: 600;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
}

.download-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: var(--text-primary);
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 24px 16px;
    transition: all var(--transition);
}

.download-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
    color: var(--text-primary);
}

.download-card .download-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border-radius: var(--radius-md);
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 14px;
}

.download-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.download-card p {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 14px;
    line-height: 1.5;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    transition: all var(--transition);
}

.download-card:hover .download-btn {
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.downloader-code,
.downloader-code-large {
    display: block;
    margin-top: 10px;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.downloader-code strong,
.downloader-code-large strong {
    color: var(--primary);
    font-size: 1.1rem;
}

.code-card {
    cursor: default;
}

.cta-section {
    padding: 60px 0;
    background: var(--bg-dark);
    text-align: center;
}

.cta-section h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.cta-section p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .download-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .category-header {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .download-grid {
        grid-template-columns: 1fr;
    }
}

/* Series showcase compatibility */
.row { display: flex; flex-wrap: wrap; }
.col-12 { flex: 0 0 100%; max-width: 100%; }
.text-center { text-align: center; }
.gap-6 { gap: 20px; }
.flex { display: flex; }
