/* ===================================
   StreamHub - Premium IPTV Website
   Dark & Light Theme Support
   ================================== */

/* Theme Variables */
:root {
    --primary: #ff6b35;
    --primary-dark: #e55a2b;
    --primary-light: #ff8f6b;
    --success: #22c55e;
    --warning: #f59e0b;
}

/* Dark Theme (Default) */
[data-theme="dark"] {
    --bg-primary: #0a0a0f;
    --bg-secondary: #0f0f18;
    --bg-card: #16161f;
    --bg-card-hover: #1c1c28;
    --text-primary: #ffffff;
    --text-secondary: rgba(255,255,255,0.7);
    --text-muted: rgba(255,255,255,0.5);
    --border-color: rgba(255,255,255,0.08);
    --shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Light Theme */
[data-theme="light"] {
    --bg-primary: #f8fafc;
    --bg-secondary: #ffffff;
    --bg-card: #ffffff;
    --bg-card-hover: #f1f5f9;
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --border-color: rgba(0,0,0,0.1);
    --shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    transition: background 0.3s, color 0.3s;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===================================
   BUTTONS
   ================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.header .btn {
    padding: 10px 20px;
    font-size: 13px;
    border-radius: 6px;
}

.btn-primary {
    background: var(--primary);
    color: #ffffff !important;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-glass {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-glass:hover {
    background: rgba(255,255,255,0.2);
}

.btn-white {
    background: white;
    color: var(--primary);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,255,255,0.2);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary);
}

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

.btn-block {
    width: 100%;
}

.btn-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* ===================================
   THEME TOGGLE
   ================================== */
.theme-toggle {
    position: fixed;
    top: 100px;
    right: 25px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    cursor: pointer;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: var(--shadow);
}

.theme-toggle:hover {
    transform: scale(1.1);
    border-color: var(--primary);
}

.theme-toggle .fa-moon {
    display: block;
    color: var(--primary);
    font-size: 20px;
}

.theme-toggle .fa-sun {
    display: none;
    color: var(--primary);
    font-size: 20px;
}

[data-theme="light"] .theme-toggle .fa-moon {
    display: none;
}

[data-theme="light"] .theme-toggle .fa-sun {
    display: block;
}

/* ===================================
   WHATSAPP BUTTON
   ================================== */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    z-index: 1000;
    box-shadow: 0 5px 30px rgba(37, 211, 102, 0.5);
    transition: transform 0.3s;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
}

/* ===================================
   PROMOTIONAL BANNER
   ================================== */
.promo-banner {
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    padding: 10px 0;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

.promo-banner p {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.promo-banner i {
    color: #ffffff;
}

.promo-banner strong {
    color: #ffffff;
}

.promo-banner .promo-code {
    background: rgba(255, 255, 255, 0.2);
    padding: 3px 10px;
    border-radius: 4px;
    font-weight: 700;
    color: #ffffff;
}

.promo-banner a {
    color: #ffffff;
    font-weight: 600;
    text-decoration: underline;
    margin-left: 10px;
}

.promo-banner a:hover {
    opacity: 0.9;
}

/* Nav Highlight */
.nav-highlight {
    color: var(--primary) !important;
    font-weight: 700 !important;
}

/* ===================================
   HEADER
   ================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    background: rgba(20, 20, 28, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s;
}

[data-theme="light"] .header {
    background: rgba(255,255,255,0.98);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

[data-theme="light"] .nav-menu a {
    color: #475569;
}

[data-theme="light"] .nav-menu a:hover {
    color: var(--primary);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
}

.logo i {
    font-size: 32px;
    color: var(--primary);
}

.logo strong {
    color: var(--primary);
}

/* WorldWaveTV.com Logo Styles */
.worldwave-logo {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.worldwave-logo .logo-world {
    color: #ffffff;
    font-weight: 400;
}

.worldwave-logo .logo-wave {
    color: #9ca3af;
    font-weight: 400;
}

.worldwave-logo .logo-tv {
    color: #ff6b35;
    font-weight: 700;
}

.worldwave-logo .logo-com {
    color: #ff6b35;
    font-size: 0.75em;
    font-weight: 500;
}

[data-theme="light"] .worldwave-logo .logo-world {
    color: #1f2937;
}

[data-theme="light"] .worldwave-logo .logo-wave {
    color: #6b7280;
}

.footer-brand .tagline {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
    margin-bottom: 15px;
}

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

.nav-menu a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 26px;
    cursor: pointer;
}

/* ===================================
   HERO SECTION
   ================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 120px 20px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1522869635100-9f4c5e86aa37?w=1920&q=80') center/cover no-repeat;
}

[data-theme="light"] .hero-image {
    background: url('https://images.unsplash.com/photo-1586899028174-e7098604235b?w=1920&q=80') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.85) 0%, rgba(26, 16, 37, 0.80) 50%, rgba(15, 10, 26, 0.85) 100%);
}

[data-theme="light"] .hero-overlay {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(30, 41, 59, 0.88) 50%, rgba(51, 65, 85, 0.85) 100%);
}

.hero-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: rgba(255, 107, 53, 0.3);
    top: -200px;
    right: -100px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: rgba(139, 92, 246, 0.25);
    bottom: -150px;
    left: -100px;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: rgba(236, 72, 153, 0.2);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-tagline {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 143, 107, 0.1));
    border: 1px solid rgba(255, 107, 53, 0.4);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 22px !important;
    margin-bottom: 30px !important;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.hero-features span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
}

.hero-features span i {
    color: var(--primary);
    font-size: 18px;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 35px;
}

.hero-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #22c55e;
}

.hero-badge-item i {
    font-size: 14px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: white;
}

[data-theme="light"] .hero h1 {
    color: white;
}

.hero p {
    font-size: 20px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 20px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-stat > i {
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
}

.hero-stat-info {
    text-align: left;
}

.hero-stat-info strong {
    display: inline;
    font-size: 28px;
    font-weight: 800;
    color: white;
    line-height: 1.2;
}

.counter-suffix {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
}

.hero-stat-info span {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-top: 2px;
}

@media (max-width: 992px) {
    .hero-stats {
        gap: 25px;
    }
    
    .hero-stat-info strong,
    .counter-suffix {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 25px 0;
    }
    
    .hero-stat {
        justify-content: flex-start;
        background: rgba(255,255,255,0.05);
        padding: 15px;
        border-radius: 12px;
        border: 1px solid rgba(255,255,255,0.1);
    }
    
    .hero-stat > i {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .hero-stat-info strong,
    .counter-suffix {
        font-size: 20px;
    }
    
    .hero-stat-info span {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .hero-stat {
        padding: 12px;
        gap: 10px;
    }
    
    .hero-stat > i {
        width: 38px;
        height: 38px;
        font-size: 16px;
        border-radius: 10px;
    }
    
    .hero-stat-info strong,
    .counter-suffix {
        font-size: 16px;
    }
    
    .hero-stat-info span {
        font-size: 10px;
    }
}

.hero-stats-old {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.hero-stats .stat {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.hero-stats .stat i {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
}

.hero-stats .stat strong {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: white;
}

.hero-stats .stat span {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ===================================
   MARQUEE SECTION
   ================================== */
.marquee-section {
    padding: 30px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.services-marquee {
    padding: 40px 0;
    background: var(--bg-secondary);
    overflow: hidden;
}

[data-theme="light"] .services-marquee {
    background: #f1f5f9;
}

.marquee {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
}

.services-marquee {
    margin-bottom: 20px;
}

.services-marquee .marquee-content {
    display: flex;
    gap: 0;
    animation: marquee-scroll 25s linear infinite;
}

.service-name {
    display: inline-flex;
    align-items: center;
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

[data-theme="light"] .service-name {
    color: #334155;
}

.service-name::after {
    content: '•';
    color: var(--primary);
    margin-left: 40px;
    font-size: 24px;
}

.logos-marquee .marquee-content {
    display: flex;
    gap: 50px;
    animation: marquee-scroll 35s linear infinite;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    height: 50px;
    background: var(--bg-card);
    border-radius: 12px;
    padding: 10px 25px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

[data-theme="light"] .logo-item {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.logo-item:hover {
    border-color: var(--primary);
    transform: scale(1.05);
}

.logo-item img {
    max-height: 30px;
    max-width: 100px;
    object-fit: contain;
    transition: filter 0.3s;
}

[data-theme="light"] .logo-item img {
    opacity: 0.9;
}

.logo-item:hover img {
    filter: none;
}

.logo-item i {
    font-size: 24px;
    color: var(--primary);
    margin-right: 10px;
}

.logo-item span {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}

/* Official Logo Styles */
.logo-item.official-logo {
    min-width: 120px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.08);
}

[data-theme="light"] .logo-item.official-logo {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.logo-item.official-logo img {
    max-height: 30px;
    max-width: 100px;
    filter: brightness(1.2);
}

[data-theme="light"] .logo-item.official-logo img {
    filter: none;
}

.logo-item.brand-logo {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

[data-theme="light"] .logo-item.brand-logo {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.logo-item.brand-logo i {
    color: var(--primary);
}

.logo-item.brand-logo.filex i { color: #e50914; }
.logo-item.brand-logo.starshare i { color: #fbbf24; }
.logo-item.brand-logo.b1g i { color: #3b82f6; }
.logo-item.brand-logo.lionott i { color: #f59e0b; }
.logo-item.brand-logo.opplex i { color: #8b5cf6; }
.logo-item.brand-logo.bosstv i { color: #22c55e; }

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===================================
   SECTION STYLES
   ================================== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
}

/* ===================================
   PRICING SECTION
   ================================== */
.pricing {
    background: var(--bg-secondary);
}

.service-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .service-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0 20px 10px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .service-tabs::-webkit-scrollbar {
        display: none;
    }
}

.service-tab {
    padding: 10px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
}

.service-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.service-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

[data-theme="light"] .service-tab {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #475569;
}

[data-theme="light"] .service-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

[data-theme="light"] .service-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.current-service {
    text-align: center;
    margin-bottom: 50px;
}

.current-service h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.current-service p {
    color: var(--text-secondary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.price-card {
    padding: 35px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    position: relative;
    transition: all 0.3s;
    text-align: center;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.price-card.featured {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 143, 107, 0.05));
    border-color: var(--primary);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 24px;
    background: var(--primary);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: white;
    white-space: nowrap;
}

.save-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 14px;
    background: rgba(34, 197, 94, 0.15);
    color: var(--success);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

.price-header {
    margin-bottom: 30px;
}

.price-header .duration {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    margin: 15px 0;
}

.price .currency {
    font-size: 24px;
    font-weight: 700;
    margin-top: 10px;
    color: var(--text-primary);
}

.price .amount {
    font-size: 60px;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-header > p {
    font-size: 14px;
    color: var(--text-muted);
}

.price-features {
    margin-bottom: 30px;
    text-align: left;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.price-features li:last-child {
    border-bottom: none;
}

.price-features i {
    color: var(--primary);
    font-size: 14px;
}

.pricing-note {
    text-align: center;
    margin-top: 50px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--text-secondary);
}

.pricing-note i {
    font-size: 24px;
    color: var(--success);
}

/* ===================================
   FEATURES SECTION
   ================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    padding: 40px 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin: 0 auto 25px;
}

.feature-icon i {
    color: white !important;
    font-size: 32px;
}

.feature-icon .icon-4k {
    font-size: 26px;
    font-weight: 900;
    color: white !important;
    letter-spacing: -1px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===================================
   STATS SECTION
   ================================== */
.stats-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s;
}

.stat-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon i {
    font-size: 24px;
    color: white;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-card {
        padding: 25px 15px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
    }
    
    .stat-icon i {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   CHANNELS/SERVICES SECTION
   ================================== */
.channels {
    background: var(--bg-secondary);
}

.services-showcase {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.service-item {
    padding: 30px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
}

.service-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin: 0 auto 15px;
}

.service-item h4 {
    font-size: 14px;
    font-weight: 600;
}

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

/* ===================================
   REVIEWS SECTION
   ================================== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.review-card {
    padding: 35px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    transition: all 0.3s;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.review-card.featured {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 143, 107, 0.05));
    border-color: var(--primary);
}

.review-rating {
    margin-bottom: 20px;
}

.review-rating i {
    color: #fbbf24;
    font-size: 16px;
    margin-right: 2px;
}

.review-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: white;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 3px;
}

.author-info span {
    font-size: 13px;
    color: var(--text-muted);
}

.verified {
    margin-left: auto;
    color: var(--success);
    font-size: 20px;
}

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

/* ===================================
   STATS SECTION
   ================================== */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-box {
    text-align: center;
    color: white;
}

.stat-box i {
    font-size: 40px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.stat-number {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* ===================================
   FAQ SECTION
   ================================== */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.faq-item:hover {
    border-color: rgba(255, 107, 53, 0.3);
}

.faq-question {
    width: 100%;
    padding: 22px 28px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 28px 22px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===================================
   CTA SECTION
   ================================== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1025, #0f0a1a);
    text-align: center;
}

[data-theme="light"] .cta-section {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.cta-content h2 {
    font-size: 44px;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* ===================================
   CONTACT SECTION
   ================================== */
.contact {
    background: var(--bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-card {
    padding: 40px 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
}

.contact-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.contact-card i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.contact-card span {
    font-size: 13px;
    color: var(--text-muted);
}

/* ===================================
   FOOTER
   ================================== */
.footer {
    padding: 80px 0 30px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
}

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

.footer-brand p {
    color: var(--text-secondary);
    font-size: 15px;
    margin: 20px 0;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.footer-links h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-links a {
    display: block;
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 15px;
    transition: color 0.3s;
}

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

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

.footer-bottom p {
    color: var(--text-muted);
    font-size: 14px;
}

.payment-icons {
    display: flex;
    gap: 20px;
    font-size: 28px;
    color: var(--text-muted);
}

/* ===================================
   RESPONSIVE
   ================================== */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-showcase {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-menu,
    .nav .btn {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .hero h1 {
        font-size: 44px;
    }
    .features-grid,
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-showcase {
        grid-template-columns: repeat(3, 1fr);
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }
    .hero-tagline {
        font-size: 12px;
        padding: 8px 16px;
        letter-spacing: 1px;
    }
    .hero-subtitle {
        font-size: 16px !important;
    }
    .hero-features {
        gap: 15px;
    }
    .hero-features span {
        font-size: 14px;
    }
    .hero-badges {
        flex-direction: column;
        gap: 10px;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .hero-stats {
        gap: 30px;
    }
    .section-header h2 {
        font-size: 32px;
    }
    .pricing-grid,
    .features-grid,
    .reviews-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .services-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .social-links {
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
    .service-tabs {
        gap: 8px;
    }
    .service-tab {
        padding: 10px 16px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }
    section {
        padding: 50px 0;
    }
    .container {
        padding: 0 15px;
    }
    .price-card,
    .feature-card,
    .review-card {
        padding: 20px 15px;
    }
    .theme-toggle {
        top: 80px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    .service-name {
        padding: 10px 25px;
        font-size: 14px;
    }
    .service-name::after {
        margin-left: 25px;
    }
    .logo-item {
        min-width: 100px;
        padding: 8px 15px;
    }
    .section-header h2 {
        font-size: 26px;
    }
    .section-header p {
        font-size: 14px;
    }
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    .btn-lg {
        padding: 14px 28px;
    }
    .hero-features {
        flex-direction: column;
        gap: 10px;
    }
    .hero-features span {
        font-size: 13px;
    }
    .networks-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }
    .network-item {
        padding: 15px 10px;
    }
    .network-item i {
        font-size: 24px;
    }
    .network-item span {
        font-size: 10px;
    }
}

/* Mobile Menu Styles */
@media (max-width: 992px) {
    .nav-menu {
        display: flex !important;
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
        flex-direction: column;
        padding: 100px 30px 40px;
        gap: 0;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 40px rgba(0,0,0,0.3);
        z-index: 999;
        overflow-y: auto;
    }
    
    .menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: 10px;
        cursor: pointer;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        display: flex;
        align-items: center;
        padding: 18px 0;
        font-size: 16px;
        font-weight: 600;
        color: var(--text-primary);
        transition: all 0.3s;
        position: relative;
    }
    
    .nav-menu a::before {
        content: '';
        position: absolute;
        left: 0;
        width: 0;
        height: 100%;
        background: linear-gradient(90deg, rgba(255, 107, 53, 0.1), transparent);
        transition: width 0.3s;
    }
    
    .nav-menu a:hover::before,
    .nav-menu a.active::before {
        width: 100%;
    }
    
    .nav-menu a:hover,
    .nav-menu a.active {
        color: var(--primary);
        padding-left: 15px;
    }
    
    /* Mobile menu header decoration */
    .nav-menu::before {
        content: 'Menu';
        position: absolute;
        top: 30px;
        left: 30px;
        font-size: 24px;
        font-weight: 800;
        color: var(--text-primary);
    }
    
    .nav-menu::after {
        content: '';
        position: absolute;
        top: 65px;
        left: 30px;
        width: 50px;
        height: 3px;
        background: var(--primary);
        border-radius: 2px;
    }
    
    /* Hamburger button styling */
    .menu-toggle {
        z-index: 1001;
        position: relative;
    }
    
    .menu-toggle i {
        font-size: 24px;
        transition: transform 0.3s;
    }
    
    .menu-toggle.active i {
        transform: rotate(90deg);
    }
    
    /* Overlay when menu is open */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
        z-index: 998;
    }
    
    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* ===================================
   HOW IT WORKS PAGE
   ================================== */
.page-header {
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1478720568477-152d9b164e26?w=1920&q=80') center/cover no-repeat;
    z-index: -2;
}

[data-theme="light"] .page-header::before {
    background: url('https://images.unsplash.com/photo-1517604931442-7e0c8ed2963c?w=1920&q=80') center/cover no-repeat;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.70), rgba(26, 16, 37, 0.65));
    z-index: -1;
}

[data-theme="light"] .page-header::after {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.75), rgba(30, 41, 59, 0.70));
}

.page-header h1 {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.how-it-works-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.device-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
}

.device-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.device-tab i {
    font-size: 18px;
}

.device-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.device-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.device-panel {
    display: none;
}

.device-panel.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

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

.steps-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.steps-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.steps-card h3 i {
    font-size: 28px;
    color: var(--primary);
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: 12px;
    transition: all 0.3s;
}

.step-item:hover {
    transform: translateX(10px);
    background: rgba(255, 107, 53, 0.1);
}

.step-number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: white;
}

.step-item p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.step-item strong {
    color: var(--primary);
}

.download-link {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 600;
}

.download-link:hover {
    color: var(--primary-light);
}

.note-box {
    margin-top: 25px;
    padding: 20px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon i {
    font-size: 28px;
    color: var(--primary);
}

.feature-icon .icon-4k {
    font-size: 22px;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -1px;
}

.note-box i {
    font-size: 20px;
    color: var(--primary);
    margin-top: 2px;
}

.note-box p {
    font-size: 15px;
    color: var(--text-secondary);
}

.note-box a {
    color: var(--primary);
    text-decoration: underline;
}

.contact-cta {
    padding: 80px 0;
    background: var(--bg-primary);
}

.cta-box {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 143, 107, 0.05));
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 24px;
    padding: 60px;
    text-align: center;
}

[data-theme="light"] .cta-box {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(255, 143, 107, 0.04));
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.cta-box h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-box > p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.cta-box a {
    color: var(--primary);
}

.nav-menu a.active {
    color: var(--primary);
}

@media (max-width: 768px) {
    .page-header {
        padding: 140px 0 60px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .device-tabs {
        gap: 8px;
    }
    
    .device-tab {
        padding: 10px 16px;
        font-size: 12px;
    }
    
    .device-tab span {
        display: none;
    }
    
    .device-tab i {
        font-size: 20px;
    }
    
    .steps-card {
        padding: 25px;
    }
    
    .steps-card h3 {
        font-size: 20px;
    }
    
    .step-item {
        padding: 15px;
    }
    
    .cta-box {
        padding: 40px 25px;
    }
    
    .cta-box h2 {
        font-size: 22px;
    }
}

/* ===================================
   CHANNELS PAGE
   ================================== */
.channels-page {
    padding: 80px 0;
    background: var(--bg-primary);
}

/* Featured Networks */
.featured-networks {
    margin-bottom: 60px;
    text-align: center;
}

.featured-networks h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.networks-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 20px;
}

.network-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s;
}

.network-item:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.networks-subtitle {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 14px;
}

a.network-item {
    text-decoration: none;
}

.network-item i {
    font-size: 32px;
    color: var(--primary);
    transition: all 0.3s;
}

.network-item:hover i {
    transform: scale(1.2);
}

.network-item span {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 1200px) {
    .networks-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .networks-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .network-item {
        padding: 15px 10px;
    }
    
    .network-item img {
        max-height: 30px;
    }
}

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

.channels-filter {
    margin-bottom: 50px;
}

.search-box {
    position: relative;
    max-width: 500px;
    margin: 0 auto 30px;
}

.search-box i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.search-box input {
    width: 100%;
    padding: 15px 20px 15px 50px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-size: 16px;
    color: var(--text-primary);
    transition: all 0.3s;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary);
}

.filter-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.filter-tag {
    padding: 10px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-tag:hover,
.filter-tag.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
}

.channel-categories {
    column-count: 3;
    column-gap: 25px;
    margin-bottom: 60px;
}

.channel-category {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s;
    break-inside: avoid;
    margin-bottom: 25px;
    display: inline-block;
    width: 100%;
}

.channel-category:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.channel-category h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
}

.channel-category h3 i {
    color: var(--primary);
    font-size: 20px;
}

.channel-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.channel-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: var(--bg-secondary);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    transition: all 0.3s;
}

.channel-item:hover {
    background: rgba(255, 107, 53, 0.1);
    color: var(--text-primary);
}

.channel-item i {
    color: var(--primary);
    font-size: 14px;
}

.channels-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.stat-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.stat-box:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.stat-box i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 15px;
}

.stat-box h4 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 14px;
    color: var(--text-muted);
}

.channels-cta {
    text-align: center;
    padding: 60px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 143, 107, 0.05));
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 24px;
}

.channels-cta h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
}

.channels-cta p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* Responsive Channels Page */
@media (max-width: 992px) {
    .channels-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1200px) {
    .channel-categories {
        column-count: 2;
    }
}

@media (max-width: 768px) {
    .channel-categories {
        column-count: 1;
    }
    
    .channels-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-box {
        padding: 20px;
    }
    
    .stat-box h4 {
        font-size: 22px;
    }
    
    .channels-cta {
        padding: 40px 25px;
    }
    
    .channels-cta h2 {
        font-size: 24px;
    }
    
    .promo-banner p {
        font-size: 12px;
    }
    
    .promo-banner .promo-code {
        display: none;
    }
}

@media (max-width: 480px) {
    .channels-stats {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===================================
   PROMOTIONAL OFFERS PAGE
   ================================== */
.offers-header .offer-badge {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.offers-page {
    padding: 80px 0;
    background: var(--bg-primary);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.offer-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.offer-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.offer-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 143, 107, 0.05));
}

.offer-badge-corner {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.offer-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.offer-icon i {
    font-size: 32px;
    color: #fff;
}

.offer-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.offer-card > p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.6;
}

.offer-code {
    background: var(--bg-secondary);
    border: 2px dashed var(--primary);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 25px;
}

.offer-code span {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.offer-code strong {
    font-size: 24px;
    color: var(--primary);
    letter-spacing: 3px;
}

.offer-features {
    text-align: left;
    margin-bottom: 25px;
}

.offer-features li {
    padding: 8px 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.offer-features li i {
    color: var(--primary);
}

/* Referral Section */
.referral-section {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 143, 107, 0.05));
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 24px;
    padding: 60px;
    margin-bottom: 80px;
}

.referral-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.referral-info .section-tag {
    margin-bottom: 15px;
}

.referral-info h2 {
    font-size: 18px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 10px;
}

.referral-info h3 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

.referral-info > p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.referral-steps {
    margin-bottom: 30px;
}

.referral-steps li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    color: var(--text-secondary);
}

.referral-steps li span {
    width: 30px;
    height: 30px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.referral-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.referral-image i {
    font-size: 200px;
    color: var(--primary);
    opacity: 0.3;
}

/* Verification Form */
.verification-section {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 60px;
    margin-bottom: 80px;
}

.verification-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-size: 16px;
    color: var(--text-primary);
    transition: all 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
}

.verification-form .btn {
    width: 100%;
    padding: 18px;
    font-size: 16px;
}

/* WhatsApp Contact Section */
.whatsapp-contact-section {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 60px;
    margin-bottom: 80px;
    text-align: center;
}

@media (max-width: 768px) {
    .whatsapp-contact-section {
        padding: 40px 20px;
        margin-bottom: 50px;
    }
    
    .whatsapp-cta-box {
        padding: 30px 20px;
    }
    
    .whatsapp-cta-box > i {
        font-size: 45px;
    }
    
    .whatsapp-cta-box h3 {
        font-size: 20px;
    }
}

.whatsapp-cta-box {
    max-width: 500px;
    margin: 40px auto 0;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(37, 211, 102, 0.05));
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: 20px;
    padding: 40px;
}

.whatsapp-cta-box > i {
    font-size: 60px;
    color: #25D366;
    margin-bottom: 20px;
}

.whatsapp-cta-box h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.whatsapp-cta-box > p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.whatsapp-cta-box .btn {
    background: #25D366;
    border-color: #25D366;
}

.whatsapp-cta-box .btn:hover {
    background: #128C7E;
    border-color: #128C7E;
}

/* Benefits Grid */
.why-choose-section {
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.benefit-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s;
}

.benefit-item:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.benefit-item i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
}

.benefit-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.benefit-item p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Responsive Offers Page */
@media (max-width: 992px) {
    .offers-grid {
        grid-template-columns: 1fr;
    }
    
    .referral-content {
        grid-template-columns: 1fr;
    }
    
    .referral-image {
        display: none;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Pricing Page Styles */
.pricing-page {
    padding: 80px 0;
    background: var(--bg-primary);
}

.pricing-offers-banner {
    padding: 30px 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 143, 107, 0.05));
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.offer-banner-content {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.offer-icon-box {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-icon-box i {
    font-size: 24px;
    color: #fff;
}

.offer-text {
    flex: 1;
    min-width: 250px;
}

.offer-text h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.offer-text p {
    color: var(--text-secondary);
    font-size: 14px;
}

.offer-text strong {
    color: var(--primary);
    background: rgba(255, 107, 53, 0.2);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: monospace;
    letter-spacing: 1px;
}

.referral-mini-banner {
    margin-top: 60px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
}

.referral-mini-content {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.referral-mini-content > i {
    font-size: 40px;
    color: var(--primary);
}

.referral-mini-content > div {
    flex: 1;
    min-width: 200px;
}

.referral-mini-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.referral-mini-content p {
    color: var(--text-muted);
    font-size: 14px;
}

.pricing-features .features-grid {
    grid-template-columns: repeat(6, 1fr);
}

.pricing-features .feature-card {
    padding: 25px 15px;
}

.pricing-features .feature-card h3 {
    font-size: 14px;
}

.pricing-features .feature-card p {
    font-size: 12px;
}

@media (max-width: 992px) {
    .pricing-features .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .offer-banner-content {
        text-align: center;
    }
    
    .pricing-features .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .referral-section,
    .verification-section {
        padding: 40px 25px;
    }
    
    .referral-info h3 {
        font-size: 32px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .benefit-item {
        padding: 20px;
    }
}
