/* ============================================================= */
/*  ReedStreams – Global Styles                                   */
/* ============================================================= */

:root {
            --primary-color: #8db902;
            --secondary-color: #0a0e17;
            --accent-color: #1a2332;
            --text-light: #ffffff;
            --text-muted: #a0aec0;
            --transition: all 0.3s ease;
            --border-radius: 7px;
            --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            --gradient: linear-gradient(135deg, rgba(13, 18, 29, 0.85) 0%, rgba(26, 35, 50, 0.75) 100%);
        

    /* DEEP DARK SINGLE-COLOR GRADIENT – blends with #0b0b0b */
    --gradient: linear-gradient(
        360deg,
        rgba(11, 11, 11, 0.75) 0%,
        rgba(0, 0, 0, 0.82) 100%
    );
}

/* ------------------------------------------------------------- */
/*  Reset & Base                                                 */
/* ------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
a { text-decoration: none; }

body {
    background-color: var(--secondary-color);
    color: var(--text-light);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ------------------------------------------------------------- */
/*  Landing Section (hero)                                        */
/* ------------------------------------------------------------- */
.landing-section {
    min-height: 100vh;
    background: 
        linear-gradient(to top, 
            #0a0e17 0%,
            rgba(10, 14, 23, 0.25) 70vh,
            rgba(10, 14, 23, 0.5) 80vh,
            rgba(10, 14, 23, 2) 90vh,
            transparent 100%
        ),
        url('https://services.nunchee.com/api/2.0/assets/images/6853204b20bc4bd4a8ec2697/view/backdrop/100&quot') center center/cover;
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Smooth section transition */
.landing-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        #0a0e17 100%
    );
    pointer-events: none;
    z-index: 1;
}
.landing-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* ------------------------------------------------------------- */
/*  Header / Top Bar                                             */
/* ------------------------------------------------------------- */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem;
    position: relative;
    z-index: 10;
    transition: var(--transition);
}
.logo {
    display: flex;
    align-items: center;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}
.logo-text { color: var(--text-light); }
.logo-accent { color: var(--primary-color); }

/* Desktop navigation (hidden on mobile) */
.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}
.nav-links a {
    color: var(--text-light);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}
.nav-links a:hover { color: var(--primary-color); }
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 1.5rem; }
.watch-now-btn {

    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.65rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    /* removed accidental green shadow */
    box-shadow: none;
}
.watch-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 100;
}

/* ------------------------------------------------------------- */
/*  Hero Content                                                 */
/* ------------------------------------------------------------- */
.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 3rem;
    max-width: 650px;
    position: relative;
    z-index: 2;
}
.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-subtitle {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.6;
    max-width: 500px;
}
.cta-buttons { display: flex; gap: 1.5rem; }
.primary-cta {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.65rem 3rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--box-shadow);
}
.primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.4);
}
.secondary-cta {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255,255,255,0.2);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.secondary-cta:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.4);
}

/* Stats */
.stats { display: flex; gap: 3rem; margin-top: 2rem; }
.stat-item { display: flex; flex-direction: column; }
.stat-value { font-size: 2rem; font-weight: 700; color: var(--primary-color); }
.stat-label { font-size: 0.9rem; color: var(--text-muted); }


/* ------------------------------------------------------------- */
/*  Mobile Menu                                                  */
/* ------------------------------------------------------------- */
.mobile-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 80%; max-width: 300px;
    height: 100vh;
    background: var(--secondary-color);
    z-index: 99;
    transition: var(--transition);
    padding: 5rem 2rem 2rem;
    box-shadow: -5px 0 15px rgba(0,0,0,0.5);
    overflow-y: auto;
}
.mobile-nav.active { right: 0; }
.mobile-nav-links { list-style: none; display: flex; flex-direction: column; gap: 1.5rem; }
.mobile-nav-links a {
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}
.mobile-nav-links a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}
.mobile-nav-actions { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.mobile-watch-btn {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 1rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 98;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.overlay.active { opacity: 1; visibility: visible; }

/* ------------------------------------------------------------- */
/*  Responsive                                                   */
/* ------------------------------------------------------------- */
@media (max-width: 1024px) {
    .hero-title { font-size: 2.8rem; }
}
@media (max-width: 768px) {
    .top-bar { padding: 1rem 1.5rem; }
    .nav-links, .rolex { display: none; }
    .mobile-menu-btn { display: block; }
    .hero-content { padding: 0 1.5rem; text-align: center; align-items: center; }
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .cta-buttons { flex-direction: column; width: 100%; max-width: 300px; }
    .primary-cta, .secondary-cta { width: 100%; justify-content: center; padding: 1.2rem 1.5rem; font-size: 1.1rem; }
    .stats { flex-wrap: wrap; gap: 1.5rem; justify-content: center; }
    .stat-item { align-items: center; }
    .landing-section {
    max-height: 85vh;
}
   
}
@media (max-width: 480px) {
    .top-bar { padding: 1rem; }
    .logo { font-size: 1.5rem; }
    .hero-content { padding: 0 1rem; }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .stats { gap: 1rem; }
    .stat-value { font-size: 1.7rem; }
    .landing-section {
    max-height: 85vh;
}
    
}
@media (max-width: 320px) {
    .top-bar { padding: 1rem 1rem; }
    .logo { font-size: 1rem; }
    .mobile-menu-btn { font-size: 1rem; }
    .mobile-nav { max-width: 240px; padding: 4rem 1rem 1rem; }
    .mobile-nav-links a { font-size: 0.9rem; padding: 0.6rem 0; }
    .mobile-watch-btn { padding: 0.6rem; font-size: 0.8rem; }
    .hero-content { padding: 0 0.6rem; }
    .hero-title { font-size: 1.4rem; }
    .hero-subtitle { font-size: 0.8rem; max-width: 240px; }
    .cta-buttons { gap: 0.6rem; max-width: 240px; }
    .primary-cta, .secondary-cta { padding: 0.6rem 1rem; font-size: 0.8rem; }
    .stats { gap: 0.6rem; }
    .stat-value { font-size: 1rem; }
    .stat-label { font-size: 0.55rem; }
    .landing-section {
    max-height: 85vh;
}
    
}

/* ------------------------------------------------------------- */
/*  Animations                                                   */
/* ------------------------------------------------------------- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
.animate-fadeInUp { animation: fadeInUp 0.8s ease forwards; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

/* Live Icon Pulse CSS */
.ri-live-line {
    color: var(--primary-color);
    animation: live-pulse 1.5s infinite;
}

@keyframes live-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}


/* Page Load Animation */
.page-load-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.page-load-animation.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 60px;
    height: 60px;
    position: relative;
}

.loader-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top: 4px solid var(--primary-color);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Content fade-in */
body.loaded .landing-section {
    animation: fadeInUp 1s ease;
}


        /* Scroll indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            z-index: 1000;
            transform: translateX(-50%);
            color: white;
            font-size: 0.9rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(-10px);
            }
            60% {
                transform: translateX(-50%) translateY(-5px);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .footer-logo {
                font-size: 2.5rem;
            }
            
            .footer-tagline {
                font-size: 1.1rem;
            }
            
            .footer-links {
                gap: 2rem;
            }
            
            .footer-link {
                font-size: 1rem;
            }
            
            .legal-notice {
                padding: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .footer-logo {
                font-size: 2rem;
            }
            
            .footer-tagline {
                font-size: 1rem;
            }
            
            .footer-links {
                flex-direction: column;
                gap: 1rem;
            }
            
            .legal-notice {
                padding: 1rem;
            }
            
            .legal-text {
                font-size: 0.85rem;
            }
        }



        /* Live Match Counts - Compact & Sleek */
.live-match-counts {
    position: absolute;
    bottom: 100px;
    right: 30px;
    background: rgba(10, 14, 23, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(141, 185, 2, 0.3);
    border-radius: 12px;
    padding: 1rem;
    width: 240px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    z-index: 5;
    animation: slideInRight 0.6s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.counts-header {
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(141, 185, 2, 0.2);
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: #ff4444;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
    100% { opacity: 1; transform: scale(1); }
}

.sport-counts {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sport-row {
    display: flex;
    gap: 0.5rem;
}

.sport-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 40px;
}

.sport-item:hover {
    background: rgba(141, 185, 2, 0.1);
    transform: translateY(-1px);
}

.sport-item i {
    color: var(--primary-color);
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

.sport-name {
    color: var(--text-light);
    font-size: 0.8rem;
    font-weight: 500;
    flex: 1;
}

.match-count {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.75rem;
    min-width: 25px;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .live-match-counts {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        max-width: 280px;
        margin: 1.5rem auto;
        animation: slideInUp 0.6s ease-out;
    }
    
    @keyframes slideInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

@media (max-width: 480px) {
    .live-match-counts {
        padding: 0.8rem;
        max-width: 260px;
    }
    
    .sport-item {
        padding: 0.4rem;
        min-height: 36px;
    }
    
    .sport-name {
        font-size: 0.75rem;
    }
    
    .match-count {
        font-size: 0.7rem;
        padding: 0.15rem 0.4rem;
        min-width: 22px;
    }
}

/* Floating Match Counts Toggle */
.floating-match-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: var(--primary-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 6px 20px rgba(141, 185, 2, 0.3);
    transition: all 0.3s ease;
    border: none;
}

.floating-match-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(141, 185, 2, 0.5);
}

/* Live Match Counts - Floating Menu */
.live-match-counts {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: rgba(10, 14, 23, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(141, 185, 2, 0.3);
    border-radius: 16px;
    padding: 1.2rem;
    width: 400px;
    max-height: 400px;
    overflow-y: auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    z-index: 999;
    display: none;
    animation: slideInUp 0.3s ease-out;
}

.live-match-counts.active {
    display: block;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.counts-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(141, 185, 2, 0.2);
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: #FF0000;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.close-match-counts {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1rem;
    cursor: pointer;
    padding: 0.4rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-match-counts:hover {
    color: var(--primary-color);
    background: rgba(141, 185, 2, 0.1);
}

.sport-counts {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding-right: 4px; /* Space for scrollbar */
}

.sport-row {
    display: flex;
    gap: 0.6rem;
}

.sport-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.sport-item:hover {
    background: rgba(141, 185, 2, 0.08);
    transform: translateY(-1px);
    border-color: rgba(141, 185, 2, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.sport-item i {
    color: var(--primary-color);
    font-size: 0.95rem;
    width: 18px;
    text-align: center;
}

.sport-name {
    color: var(--text-light);
    font-size: 0.82rem;
    font-weight: 500;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.match-count {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.3rem 0.7rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.75rem;
    min-width: 32px;
    text-align: center;
}

/* Scrollbar styling - Fixed to not overflow */
.live-match-counts::-webkit-scrollbar {
    width: 4px;
}

.live-match-counts::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 2px;
    margin: 2px 0;
}

.live-match-counts::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 2px;
}

.live-match-counts::-webkit-scrollbar-thumb:hover {
    background: #7aa302;
}

/* Hide scrollbar when not needed */
.live-match-counts {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) rgba(255, 255, 255, 0.03);
}

/* Responsive */
@media (max-width: 768px) {
    .floating-match-toggle {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
        border-radius: 14px;
    }
    
    .live-match-counts {
        bottom: 85px;
        right: 20px;
        left: 20px;
        width: auto;
        max-height: 60vh;
        padding: 1rem;
    }
    
    .sport-item {
        padding: 0.6rem;
        min-height: 44px;
    }
    
    .sport-name {
        font-size: 0.78rem;
    }
    
    .match-count {
        padding: 0.25rem 0.6rem;
        min-width: 28px;
        font-size: 0.7rem;
    }
    
    .live-pulse {
        top: 6px;
        right: 6px;
        width: 9px;
        height: 9px;
    }
}

@media (max-width: 480px) {
    .floating-match-toggle {
        bottom: 15px;
        right: 15px;
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
        border-radius: 12px;
    }
    
    .live-match-counts {
        bottom: 75px;
        right: 15px;
        left: 15px;
        padding: 0.9rem;
    }
    
    .sport-item {
        padding: 0.5rem;
        min-height: 42px;
        gap: 0.5rem;
    }
    
    .sport-name {
        font-size: 0.75rem;
    }
}
/* Muted navigation button */
.muted-nav-btn {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-left: 2rem;
    background: rgba(255, 255, 255, 0.03);
}

.muted-nav-btn:hover {
    color: var(--primary-color);
    border-color: rgba(141, 185, 2, 0.3);
    background: rgba(141, 185, 2, 0.05);
    transform: translateY(-1px);
}

/* Add this to ensure immediate full coverage */
.desktop-scrolling-container {
    margin-left: -1.5rem; /* Compensate for any container padding */
    margin-right: -1.5rem;
    width: calc(100% + 3rem);
}

/* For mobile */
.mobile-scrolling-container {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
    width: calc(100% + 1rem);
}

/*/* Floating absolute image on right side - UPDATED */
.floating-side-image {
    position: absolute;
    right: 1%;
    top: 50%;
    transform: translateY(-50%);
    width: 650px;
    height: 400px;
    background: url('../Images/Header.png') center center/cover;
    filter: blur(px);
    opacity: 1;
    z-index: 2;
    margin-top: 3vh;
    overflow: hidden;
    box-shadow: 20 20px 40px rgba(0, 0, 0, 0.5);
}

/* Mobile - hide floating image */
@media (max-width: 1024px) {
    .floating-side-image {
        display: none;
    }
}

/* Footer Styles - Professional Design */
.footer {
    background: linear-gradient(rgba(10, 14, 23, 0.85), rgba(10, 14, 23, 0.9)), 
                        url('https://getwallpapers.com/wallpaper/full/f/8/7/462009.jpg') no-repeat center center/cover; 
    color: var(--text-light);
    padding: 3rem 2rem 1.5rem;
    position: relative;
    border-top: 1px solid var(--primary-color);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-logo .logo-text {
    color: var(--text-light);
}

.footer-logo .logo-accent {
    color: var(--primary-color);
}

.footer-tagline {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 500px;
    line-height: 1.5;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0.5rem 0;
}

.footer-link {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    padding: 0.5rem 0;
}

.footer-link:hover {
    color: var(--primary-color);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 400px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 2.5rem 1.5rem 1rem;
    }
    
    .footer-logo {
        font-size: 1.8rem;
    }
    
    .footer-tagline {
        font-size: 1rem;
    }
    
    .footer-links {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 1rem 1rem;
    }
    
    .footer-logo {
        font-size: 1.6rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-link {
        font-size: 0.9rem;
    }
}

/* ==============================================================
   MOBILE SIDEBAR REDESIGN - SLEEK & PROFESSIONAL
   ============================================================== */

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 98;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Sidebar - Sleek Design */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: linear-gradient(180deg, #0a0e17 0%, #1a2332 100%);
    border-left: 1px solid rgba(141, 185, 2, 0.2);
    z-index: 99;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
}

.mobile-nav.active {
    right: 0;
}

/* Sidebar Header */
.sidebar-header {
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(10, 14, 23, 0.9);
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-light);
}

.sidebar-logo .logo-accent {
    color: var(--primary-color);
}

.close-sidebar {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 0.3rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-sidebar:hover {
    color: var(--primary-color);
    background: rgba(141, 185, 2, 0.1);
}

/* Navigation Links */
.sidebar-content {
    flex: 1;
    padding: 1rem 0;
    overflow-y: auto;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0 1rem;
}

.mobile-nav-links a {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav-links a i {
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.mobile-nav-links a:hover {
    background: rgba(141, 185, 2, 0.1);
    color: var(--primary-color);
    transform: translateX(5px);
}

.mobile-nav-links a:hover i {
    color: var(--primary-color);
}

.mobile-nav-links a.active {
    background: rgba(141, 185, 2, 0.15);
    color: var(--primary-color);
    border-left: 3px solid var(--primary-color);
}

.mobile-nav-links a.active i {
    color: var(--primary-color);
}

/* Sidebar Footer */
.sidebar-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(10, 14, 23, 0.8);
}

.mobile-watch-btn {
    width: 100%;
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.mobile-watch-btn:hover {
    background: #7aa302;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(141, 185, 2, 0.3);
}

.sidebar-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link {
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 6px;
}

.social-link:hover {
    color: var(--primary-color);
    background: rgba(141, 185, 2, 0.1);
    transform: translateY(-2px);
}

/* Scrollbar Styling */
.sidebar-content::-webkit-scrollbar {
    width: 3px;
}

.sidebar-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.sidebar-content::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.sidebar-content::-webkit-scrollbar-thumb:hover {
    background: #7aa302;
}

/* Enhanced Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 100;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
}

/* ==============================================================
   RESPONSIVE ENHANCEMENTS
   ============================================================== */

/* Tablet */
@media (max-width: 1024px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links, .rolex {
        display: none;
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    .mobile-nav {
        width: 80%;
        max-width: 300px;
    }
    
    .sidebar-header {
        padding: 1.2rem 1.2rem 0.8rem;
    }
    
    .sidebar-logo {
        font-size: 2rem;
    }
    
    .mobile-nav-links a {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .mobile-watch-btn {
        padding: 0.9rem;
        font-size: 0.9rem;
    }
    .scroll-indicator {
    opacity: 0.0;
}
}

/* Mobile Medium */
@media (max-width: 480px) {
    .mobile-nav {
        width: 85%;
        max-width: 280px;
    }
    
    .sidebar-header {
        padding: 1rem 1rem 0.8rem;
    }
    
    .sidebar-logo {
        font-size: 1.2rem;
    }
    
    .close-sidebar {
        top: 0.8rem;
        right: 1rem;
        font-size: 1.2rem;
    }
    
    .mobile-nav-links {
        padding: 0 0.8rem;
    }
    
    .mobile-nav-links a {
        padding: 0.7rem 0.8rem;
        font-size: 0.85rem;
        gap: 0.7rem;
    }
    
    .mobile-nav-links a i {
        font-size: 1rem;
    }
    
    .sidebar-footer {
        padding: 1rem;
    }
    
    .mobile-watch-btn {
        padding: 0.8rem;
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }
    
    .sidebar-social {
        gap: 0.8rem;
        padding-top: 0.8rem;
    }
    
    .social-link {
        font-size: 1rem;
        padding: 0.4rem;
    }
    .scroll-indicator {
    display: none;
}
}

/* Mobile Small */
@media (max-width: 360px) {
    .mobile-nav {
        width: 90%;
        max-width: 260px;
    }
    
    .sidebar-header {
        padding: 0.8rem 0.8rem 0.6rem;
    }
    
    .sidebar-logo {
        font-size: 1.1rem;
    }
    
    .mobile-nav-links a {
        padding: 0.6rem 0.7rem;
        font-size: 0.8rem;
        gap: 0.6rem;
    }
    
    .mobile-nav-links a i {
        font-size: 0.9rem;
    }
    
    .sidebar-footer {
        padding: 0.8rem;
    }
    
    .mobile-watch-btn {
        padding: 0.7rem;
        font-size: 0.8rem;
        margin-bottom: 0.7rem;
    }
    .scroll-indicator {
    display: none;
}
}

/* Extra Small Devices */
@media (max-width: 320px) {
    .mobile-nav {
        width: 95%;
        max-width: 240px;
    }
    
    .sidebar-header {
        padding: 0.7rem 0.7rem 0.5rem;
    }
    
    .mobile-nav-links {
        padding: 0 0.5rem;
    }
    
    .mobile-nav-links a {
        padding: 0.5rem 0.6rem;
        font-size: 0.78rem;
    }
    .scroll-indicator {
    display: none;
}
}

/* ==============================================================
   ANIMATION ENHANCEMENTS
   ============================================================== */

/* Smooth page transition when sidebar opens */
body.sidebar-open {
    overflow: hidden;

}

/* Staggered animation for menu items */
.mobile-nav-links li {
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.mobile-nav.active .mobile-nav-links li {
    opacity: 1;
    transform: translateX(0);
}

/* Delay for each menu item */
.mobile-nav-links li:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-links li:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav-links li:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav-links li:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav-links li:nth-child(5) { transition-delay: 0.3s; }

/* Active state indicator */
.mobile-nav-links a::after {
    content: '';
    position: absolute;
    right: 1rem;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-nav-links a.active::after {
    opacity: 1;
}
/* ==============================================================
   MOBILE LANDING SECTION FIXES
   ============================================================== */

/* Fix mobile landing section height */
@media (max-width: 768px) {
    .landing-section {
        min-height: 100vh;
        max-height: 100vh;
        overflow: hidden;
    }
    
    .hero-content {
        padding-bottom: 10vh;
    }
    .scroll-indicator {
    display: none;
}
}

/* Fix scroll indicator z-index */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    z-index: 50; /* Lower than sidebar but higher than background */
    transform: translateX(-50%);
    color: white;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bounce 2s infinite;
}


/* Fix topbar z-index when scrolling */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 100; /* Higher than everything except mobile menu */
    transition: var(--transition);
}

/* Fix mobile sidebar z-index stacking */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: linear-gradient(180deg, #0a0e17 0%, #1a2332 100%);
    border-left: 1px solid rgba(141, 185, 2, 0.2);
    z-index: 1000; /* Highest z-index */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 999; /* Just below mobile nav */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

/* Fix sticky header behavior */
@media (max-width: 768px) {
    .top-bar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(10, 14, 23, 0.95);
        backdrop-filter: blur(10px);
        z-index: 100;
    }
    
    .landing-section {
    }
    
    .hero-content {
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .top-bar {
    }
    
    .landing-section {
    }
    
    .hero-content {
    }
    
    .scroll-indicator {
        bottom: 1.5rem;
        font-size: 0.8rem;
    }
}

/* Fix body scroll when sidebar is open */
body.sidebar-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* Ensure sidebar content doesn't get overlapped */
.sidebar-content {
    flex: 1;
    padding: 1rem 0;
    overflow-y: auto;
    position: relative;
    z-index: 1001;
}

/* Fix floating elements z-index */
.floating-match-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: var(--primary-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 500; /* Below sidebar but above content */
    box-shadow: 0 6px 20px rgba(141, 185, 2, 0.3);
    transition: all 0.3s ease;
    border: none;
}

.live-match-counts {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: rgba(10, 14, 23, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(141, 185, 2, 0.3);
    border-radius: 16px;
    padding: 1.2rem;
    width: 400px;
    max-height: 400px;
    overflow-y: auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    z-index: 501; /* Above toggle button */
    display: none;
    animation: slideInUp 0.3s ease-out;
}

/* Fix mobile menu button z-index */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 101; /* Above topbar */
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

@media (max-width: 1024px) {
    .mobile-menu-btn {
        display: block;
    }
}
/* ------------------------------------------------------------- */
/* Live Pulse Dot - Clean, Icon-Adjacent Style                    */
/* ------------------------------------------------------------- */

/* The actual dot element */
.live-pulse {
    position: absolute; /* Allows for precise placement */
    top: 6px;
    right: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ff4d4f; /* Bright Red/Primary Live Color */
    z-index: 5;
}

/* The pulse animation around the dot */
.live-pulse::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background-color: #ff4d4f;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.8;
    animation: focused-pulse 1.5s infinite;
}

/* The animation keyframes */
@keyframes focused-pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.5); /* Expands a bit more */
        opacity: 0;
    }
}

/* Ensure the main button is positioned for the dot */
.floating-match-toggle {
    /* Keep all your existing styles (position: fixed, width, height, background, etc.) */
    position: fixed; /* (or relative/absolute depending on your layout need) */
    /* Add this line if not already present: */
    overflow: visible; 
    /* The dot will be positioned relative to this button */
}