/**
 * HOT 4K Theme Styles
 * Extracted from landing-page.html
 *
 * @package byrifi
 * @version 1.0.0
 */

/* ==================== CSS VARIABLES ==================== */
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-card: #ffffff;
    --accent-orange: #f59e0b;
    --accent-orange-dark: #d97706;
    --accent-gradient: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --btn-primary: #f59e0b;
    --btn-primary-hover: #d97706;
    --text-heading: #1a1f36;
    --text-body: #4b5563;
    --text-muted: #6b7280;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* N-Style (Netflix Inspired) */
[data-theme="n-style"] {
    --bg-primary: #141414;
    --bg-secondary: #000000;
    --bg-card: #181818;
    --accent-orange: #E50914;
    --accent-orange-dark: #B20710;
    --accent-gradient: linear-gradient(135deg, #E50914 0%, #B20710 100%);
    --btn-primary: #E50914;
    --btn-primary-hover: #B20710;
    --text-heading: #ffffff;
    --text-body: #e5e5e5;
    --text-muted: #a3a3a3;
    --border-color: #333333;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}

/* H-Style (Hulu Inspired) */
[data-theme="h-style"] {
    --bg-primary: #0B0C0F;
    --bg-secondary: #16181D;
    --bg-card: #1F2329;
    --accent-orange: #1CE783;
    --accent-orange-dark: #14a85f;
    --accent-gradient: linear-gradient(135deg, #1CE783 0%, #14a85f 100%);
    --btn-primary: #1CE783;
    --btn-primary-hover: #14a85f;
    --text-heading: #ffffff;
    --text-body: #e5e5e5;
    --text-muted: #9ca3af;
    --border-color: #2d333b;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}

/* Royal-Style (Gold & Navy) */
[data-theme="royal-style"] {
    --bg-primary: #0a192f;
    --bg-secondary: #06101f;
    --bg-card: #112240;
    --accent-orange: #d4af37;
    --accent-orange-dark: #aa8c2c;
    --accent-gradient: linear-gradient(135deg, #d4af37 0%, #aa8c2c 100%);
    --btn-primary: #d4af37;
    --btn-primary-hover: #aa8c2c;
    --text-heading: #e6f1ff;
    --text-body: #8892b0;
    --text-muted: #606a86;
    --border-color: #233554;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}

/* Theme Specific Overrides */
[data-theme="n-style"] .hero,
[data-theme="h-style"] .hero,
[data-theme="royal-style"] .hero {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

[data-theme="n-style"] .pricing,
[data-theme="h-style"] .pricing,
[data-theme="royal-style"] .pricing {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

[data-theme="n-style"] .header,
[data-theme="h-style"] .header,
[data-theme="royal-style"] .header {
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
}

[data-theme="n-style"] .dropdown-menu,
[data-theme="h-style"] .dropdown-menu,
[data-theme="royal-style"] .dropdown-menu,
[data-theme="n-style"] .mega-dropdown,
[data-theme="h-style"] .mega-dropdown,
[data-theme="royal-style"] .mega-dropdown {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}

[data-theme="n-style"] .dropdown-menu li a:hover,
[data-theme="h-style"] .dropdown-menu li a:hover,
[data-theme="royal-style"] .dropdown-menu li a:hover {
    background: var(--bg-secondary);
}

[data-theme="n-style"] .mega-highlight,
[data-theme="h-style"] .mega-highlight,
[data-theme="royal-style"] .mega-highlight {
    background: var(--bg-secondary);
}

[data-theme="h-style"] .btn-primary {
    color: #000;
}

[data-theme="royal-style"] .btn-primary {
    color: #000;
}

/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-primary);
    color: var(--text-body);
    line-height: 1.6;
}

/* Prevent any horizontal overflow */
.hero,
.section,
.footer,
section:not(.header) {
    max-width: 100vw;
    overflow-x: hidden;
}

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

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

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

.btn-primary:hover {
    background: var(--btn-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-orange {
    background: var(--accent-gradient);
    color: white;
}

.btn-orange:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    filter: brightness(1.1);
}

/* WhatsApp Button */
.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

/* Telegram Button */
.btn-telegram {
    background: #0088cc;
    color: white;
}

.btn-telegram:hover {
    background: #006699;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.4);
}

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

/* ==================== SECTION STYLING ==================== */
.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--bg-secondary);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-heading);
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

/* ==================== HEADER ==================== */
.header {
    background: var(--bg-primary);
    padding: 16px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    overflow: visible;
    /* Allow mobile menu to show */
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo-icon {
    width: 36px;
    height: auto;
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-heading);
}

.logo-text span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--text-body);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-orange);
}

.header-cta {
    display: flex;
    gap: 12px;
}

.header-cta .btn {
    padding: 10px 20px;
    font-size: 14px;
}

/* ==================== DROPDOWN MENUS ==================== */
.nav-links li {
    position: relative;
}

.nav-links>li>a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.2s;
}

.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Standard Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 1000;
    margin-top: 10px;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-body);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
}

.dropdown-menu li a:hover {
    background: #f8f9fa;
    color: var(--accent-orange);
}

.dropdown-divider {
    height: 1px;
    background: var(--border-color);
    margin: 8px 0;
}

/* Mega Dropdown */
.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 1000;
    margin-top: 10px;
    overflow: hidden;
}

.mega-dropdown::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
}

.has-dropdown:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
}

.mega-dropdown-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.mega-col {
    padding: 24px;
    border-right: 1px solid var(--border-color);
}

.mega-col:last-child {
    border-right: none;
}

.mega-col h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.mega-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-col ul li {
    margin-bottom: 4px;
}

.mega-col ul li a {
    display: block;
    padding: 8px 0;
    color: var(--text-body);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.mega-col ul li a:hover {
    color: var(--accent-orange);
}

.mega-highlight {
    background: #fef3e2;
    border-right: none;
}

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

.mega-card-badge {
    display: inline-block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-orange);
    margin-bottom: 8px;
}

.mega-card h5 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--text-heading);
}

.mega-card p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.mega-card .btn {
    padding: 8px 16px;
    font-size: 13px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: relative;
    width: 40px;
    height: 40px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    position: absolute;
    left: 8px;
    background: var(--text-heading);
    transition: all 0.3s ease;
}

.mobile-menu-btn span:nth-child(1) {
    top: 12px;
}

.mobile-menu-btn span:nth-child(2) {
    top: 19px;
}

.mobile-menu-btn span:nth-child(3) {
    top: 26px;
}

/* Hamburger to X animation */
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 19px;
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 19px;
}

/* ==================== HERO ==================== */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
    overflow-x: clip;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: 0;
    width: 50%;
    max-width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(247, 147, 30, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%);
    border: 1px solid rgba(247, 147, 30, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--accent-orange-dark);
    margin-bottom: 24px;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-heading);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero h1 .highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

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

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-heading);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.stat-value svg {
    color: var(--accent-orange);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.hero-visual {
    position: relative;
}

.hero-image-container {
    position: relative;
    background: var(--accent-gradient);
    border-radius: 24px;
    padding: 4px;
    box-shadow: var(--shadow-xl);
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.hero-placeholder {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #1a1f36 0%, #2d3748 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    font-size: 0.875rem;
}

.hero-float-card {
    position: absolute;
    background: var(--bg-card);
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-float-card.channels {
    top: 20%;
    left: 0;
}

.hero-float-card.quality {
    bottom: 20%;
    right: 0;
}

.float-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.float-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.float-text strong {
    display: block;
    color: var(--text-heading);
    font-size: 1.125rem;
}

.float-text span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ==================== SPORTS SHOWCASE ==================== */
.sports-showcase {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    overflow: hidden;
    overflow-x: clip;
}

.sports-showcase h3 {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: white;
    margin-bottom: 40px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 16px;
}

.sports-grid-item {
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.sports-grid-item:hover {
    transform: scale(1.08);
    border-color: var(--accent-orange);
    box-shadow: 0 8px 32px rgba(245, 158, 11, 0.3);
}

.sports-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.sports-grid-item:hover img {
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .sports-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 768px) {
    .sports-showcase h3 {
        font-size: 1.25rem;
        letter-spacing: 2px;
    }

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

@media (max-width: 480px) {
    .sports-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .sports-grid-item {
        border-radius: 12px;
    }
}

/* ==================== CAROUSELS ==================== */
.carousel-section {
    padding: 60px 0;
    overflow: hidden;
}

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

.carousel-header h2 {
    font-size: 2rem;
    color: var(--text-heading);
}

.carousel-nav {
    display: flex;
    gap: 12px;
}

.carousel-nav button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.carousel-nav button:hover {
    border-color: var(--btn-primary);
    color: var(--btn-primary);
}

.carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-item {
    flex: 0 0 auto;
    width: 180px;
    transition: transform 0.3s;
}

.carousel-item:hover {
    transform: scale(1.05);
}

.poster-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 2/3;
    background: linear-gradient(135deg, #1a1f36 0%, #2d3748 100%);
}

.poster-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.poster-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    text-align: center;
    padding: 20px;
}

.poster-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
}

.poster-overlay h4 {
    font-size: 0.875rem;
    margin-bottom: 4px;
}

.poster-overlay span {
    font-size: 0.75rem;
    opacity: 0.7;
}

/* Banner Style Carousel (Netflix-style horizontal) */
.banner-carousel .carousel-item.banner-item {
    width: 320px;
    flex: 0 0 auto;
}

.banner-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #1a1f36 0%, #2d3748 100%);
    transition: all 0.3s ease;
}

.banner-card:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.banner-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.banner-card:hover img {
    transform: scale(1.08);
}

@media (max-width: 768px) {
    .banner-carousel .carousel-item.banner-item {
        width: 280px;
    }
}

@media (max-width: 480px) {
    .banner-carousel .carousel-item.banner-item {
        width: 240px;
    }
}

/* ==================== LIVE SPORTS SECTION ==================== */
.live-sports-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
    overflow-x: clip;
}

.live-sports-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.live-sports-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.5);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    color: #ef4444;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse-live 1.5s ease-in-out infinite;
}

@keyframes pulse-live {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.live-sports-section h2 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    line-height: 1.1;
}

.live-sports-section p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.6;
}

.sports-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.sport-category-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 20px;
    border-radius: 50px;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sport-category-tag:hover {
    background: rgba(245, 158, 11, 0.2);
    border-color: var(--accent-orange);
    transform: translateY(-2px);
}

.sport-emoji {
    font-size: 1.25rem;
}

.sports-cta {
    margin-top: 24px;
}

@media (max-width: 768px) {
    .live-sports-section h2 {
        font-size: 2rem;
    }

    .live-sports-section p {
        font-size: 1rem;
    }

    .sport-category-tag {
        padding: 10px 16px;
        font-size: 0.875rem;
    }
}

/* ==================== FEATURES ==================== */
.features {
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent-orange);
}

.feature-card h3 {
    font-size: 1.25rem;
    color: var(--text-heading);
    margin-bottom: 8px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

/* ==================== PRICING ==================== */
.pricing {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.pricing-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.toggle-label {
    font-weight: 600;
    color: var(--text-muted);
    transition: color 0.3s;
}

.toggle-label.active {
    color: var(--text-heading);
}

.save-badge {
    background: #dc2626;
    color: white;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: 4px;
}

/* Switch Toggle */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked+.slider {
    background: var(--accent-gradient);
}

input:focus+.slider {
    box-shadow: 0 0 1px var(--accent-orange);
}

input:checked+.slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

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

.pricing-card.featured {
    border: 2px solid var(--accent-orange);
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
    z-index: 1;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

/* Holiday Sale Ribbon */
.pricing-ribbon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gradient);
    color: white;
    text-align: center;
    padding: 4px 20px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 2px 10px rgba(245, 158, 11, 0.3);
    width: auto;
    min-width: 120px;
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 50px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
    padding-top: 24px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    color: var(--text-heading);
    margin-bottom: 8px;
}

.pricing-header .subtitle {
    color: var(--text-muted);
}

.price {
    text-align: center;
    margin-bottom: 32px;
}

.price-old {
    font-size: 1.5rem;
    color: #dc2626;
    text-decoration: line-through;
    opacity: 0.8;
    position: relative;
}

.price-old::after {
    content: '';
    position: absolute;
    left: -4px;
    right: -4px;
    top: 50%;
    height: 2px;
    background: #dc2626;
    transform: rotate(-5deg);
}

.price-current {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-heading);
}

.price-period {
    font-size: 0.875rem;
    color: var(--text-muted);
    display: block;
    margin-top: 4px;
}

.pricing-features {
    margin-bottom: 32px;
    list-style: none;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-body);
    font-size: 0.9375rem;
}

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

.pricing-features svg {
    width: 20px;
    height: 20px;
    color: var(--accent-orange);
    flex-shrink: 0;
}

.pricing-cta {
    margin-top: auto;
}

.pricing-cta .btn {
    width: 100%;
}

/* ==================== COMPARISON TABLE ==================== */
.comparison-table {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.comparison-header {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    background: var(--bg-secondary);
    border-bottom: 2px solid var(--border-color);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    border-bottom: 1px solid var(--border-color);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-cell {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.comparison-cell.label {
    justify-content: flex-start;
    font-weight: 500;
    color: var(--text-heading);
}

.comparison-cell.highlight {
    background: rgba(247, 147, 30, 0.05);
}

.comparison-header .comparison-cell {
    font-weight: 600;
    color: var(--text-heading);
    padding: 24px;
}

.comparison-logo {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.25rem;
    font-weight: 700;
}

/* ==================== HOW IT WORKS ==================== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.step-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

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

.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gradient);
    color: white;
    font-size: 1rem;
    font-weight: 700;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 16px auto 24px;
}

.step-icon svg {
    width: 40px;
    height: 40px;
    color: var(--accent-orange);
}

.step-card h3 {
    font-size: 1.25rem;
    color: var(--text-heading);
    margin-bottom: 12px;
}

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

/* ==================== TESTIMONIALS ==================== */
.testimonials-header {
    text-align: center;
    margin-bottom: 48px;
}

.rating-display {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stars {
    display: flex;
    gap: 4px;
}

.stars svg {
    width: 24px;
    height: 24px;
}

.rating-text {
    color: var(--text-muted);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

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

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.testimonial-info strong {
    display: block;
    color: var(--text-heading);
}

.testimonial-info span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.verified-badge {
    margin-left: auto;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
}

.testimonial-stars svg {
    width: 16px;
    height: 16px;
}

.testimonial-card h4 {
    color: var(--text-heading);
    margin-bottom: 8px;
}

.testimonial-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ==================== FAQ ==================== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-heading);
    font-family: inherit;
}

.faq-question svg {
    width: 24px;
    height: 24px;
    color: var(--text-muted);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

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

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

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ==================== FINAL CTA ==================== */
.cta-section {
    background: linear-gradient(135deg, #1a1f36 0%, #2d3748 100%);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.125rem;
    opacity: 0.8;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.cta-section .btn-secondary {
    border-color: white;
    color: white;
}

.cta-section .btn-secondary:hover {
    background: white;
    color: var(--text-heading);
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.cta-trust span {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.7;
    font-size: 0.875rem;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--bg-secondary);
    padding: 60px 0 24px;
}

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

.footer-brand .logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 12px;
}

.footer-brand .logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-heading);
}

.footer-brand .logo-text span {
    color: var(--accent-orange);
}

.footer-brand>p {
    margin-top: 12px;
    color: var(--text-muted);
    max-width: 300px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 8px;
    color: var(--text-body);
    transition: all 0.2s;
    border: 1px solid var(--border-color);
}

.social-link:hover {
    background: var(--accent-orange);
    color: white;
    border-color: var(--accent-orange);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-column h4 {
    color: var(--text-heading);
    margin-bottom: 16px;
    font-size: 0.9rem;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.875rem;
}

.footer-column a:hover {
    color: var(--accent-orange);
}

/* Footer Trust Badges */
.footer-trust {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 24px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.trust-item svg {
    width: 20px;
    height: 20px;
    color: var(--accent-orange);
    flex-shrink: 0;
}

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

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

.payment-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.payment-icons span {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.payment-methods {
    color: var(--text-muted);
    font-size: 0.8rem;
}


/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .hero-visual {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }

    .hero-image-container {
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-float-card {
        display: none;
    }

    .comparison-table {
        overflow-x: auto;
    }

    .comparison-header,
    .comparison-row {
        min-width: 600px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .header .container {
        position: relative;
    }

    .header nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        display: none;
        margin-top: 16px;
    }

    .header nav.active {
        display: block;
    }

    .header .nav-links {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0;
    }

    .header .nav-links li {
        border-bottom: 1px solid var(--border-color);
    }

    .header .nav-links li:last-child {
        border-bottom: none;
    }

    .header .nav-links a {
        padding: 16px 20px;
        display: block;
        font-size: 1rem;
    }

    /* Hide dropdowns on mobile */
    .dropdown-menu,
    .mega-dropdown {
        display: none !important;
    }

    .dropdown-arrow {
        display: none;
    }

    .header .header-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        z-index: 1001;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .hero-float-card {
        display: none;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

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

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }

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

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-trust {
        flex-wrap: wrap;
        gap: 20px;
    }

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

    .cta-content h2 {
        font-size: 1.75rem;
    }

}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.875rem;
    }

    .hero-cta {
        flex-direction: column;
    }

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

    .carousel-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-trust {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

/* ==================== FACEBOOK REDIRECT OVERLAY ==================== */
.fb-redirect-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.fb-redirect-modal {
    background: white;
    border-radius: 24px;
    padding: 40px;
    max-width: 400px;
    text-align: center;
}

.fb-redirect-modal h2 {
    color: var(--text-heading);
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.fb-redirect-modal p {
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.fb-redirect-modal .btn {
    width: 100%;
    margin-bottom: 12px;
}

.fb-redirect-modal .instructions {
    background: var(--bg-secondary);
    padding: 16px;
    border-radius: 12px;
    margin-top: 16px;
}

.fb-redirect-modal .instructions ol {
    text-align: left;
    padding-left: 20px;
    color: var(--text-body);
}

.fb-redirect-modal .instructions li {
    margin-bottom: 8px;
}