        /* Transparent Header */
        .header {
            background: transparent;
            padding: 1.5rem 3rem;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            transition: var(--transition);
        }

        .header.scrolled {
            background: rgba(10, 14, 23, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 3rem;
            border-bottom: 1px solid rgba(141, 185, 2, 0.2);
        }

        .header-hidden {
            transform: translateY(-100%);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 1.8rem;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .logo-text {
            color: var(--text-light);
        }

        .logo-accent {
            color: var(--primary-color);
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            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: var(--secondary-color);
            border: none;
            padding: 0.7rem 1.5rem;
            border-radius: var(--border-radius);
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(141, 185, 2, 0.3);
        }

        .watch-now-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(141, 185, 2, 0.4);
        }

        /* Live Hero Section */
        .live-hero {
            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('BG.jpg') no-repeat center center/cover;
            padding: 12rem 2rem 6rem;
            text-align: center;
            position: relative;
        }
        .live-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 2rem;
            display: block;
        }

        .live-hero h1 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            background: linear-gradient(to right, #ffffff, var(--primary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: var(--text-muted);
            margin-bottom: 3rem;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .tab-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-top: 2rem;
        }

        .tab-btn {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-light);
            padding: 0.8rem 2rem;
            border-radius: var(--border-radius);
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
        }

        .tab-btn.active {
            background: var(--primary-color);
            color: var(--secondary-color);
            border-color: var(--primary-color);
        }

        .tab-btn:hover:not(.active) {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.2);
        }

        /* Matches Section */
        .matches-section {
            padding: 2rem 1rem;
            background: 
                linear-gradient(45deg, transparent 0%, rgba(141, 185, 2, 0.03) 50%, transparent 100%);
            position: relative;
        }

        /* Creative Title - Simplified */
        .creative-title {
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .creative-title h2 {
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--text-light);
            margin-bottom: 0.5rem;
        }

        .creative-title .subtitle {
            font-size: 1rem;
            color: var(--text-muted);
            max-width: 500px;
            margin: 0 auto;
        }

        /* Matches Container - Flexbox Layout */
        .matches-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            max-width: 1200px;
            margin: 0 auto;
            justify-content: center;
        }

        /* Match Card - Compact and Clean */
        .match-card {
            position: relative;
            overflow: visible;
            display: flex;
            flex-direction: column;
            width: 100%;
            max-width: 320px; /* Adjusted for 4 per row on larger screens */
            background: 
                linear-gradient(45deg, transparent 0%, rgba(141, 185, 2, 0.03) 50%, transparent 100%);
            border-radius: 10px;
            border: 3px solid var(--primary-color);
            padding: 1.5rem 1rem 1rem;
            transition: transform 0.2s ease;
            cursor: pointer;
            overflow: hidden;
            min-height: 180px; /* Minimum height for better mobile appearance */
        }

        .match-card:hover {
            transform: translateY(-2px);
        }

        .live-tag {
            position: absolute;
            top: -55px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary-color);
            color: var(--secondary-color);
            padding: 4px 12px;
            border-radius: 15px;
            font-size: 1.5rem;
            font-weight: 600;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }

        /* Teams Container - Compact Flex Layout */
        .teams-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
            padding: 0.5rem;
            background: none;
            border: none;
            flex-grow: 1;
        }

        .team {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            width: 30%;
        }

        .team-badge-container {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .team-logo {
            width: 75px;
            height: 75px;
            object-fit: contain;
        }

        .team-placeholder {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            color: var(--text-muted);
        }

        .team-abbr {
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--text-light);
            text-align: center;
        }

        .match-center {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.3rem;
            width: 40%;
            justify-content: center;
        }

        .vs-line {
            width: 120px;
            height: 1px;
            background-color: var(--text-muted);
            margin: 0.5rem 0;
        }

        .date {
            font-size: 0.1rem;
            color: var(--text-light);
        }

        .time {
            font-size: 0.9rem;
            color: var(--primary-color);
        }

        .competition {
            font-size: 0.7rem;
            color: var(--text-muted);
            text-transform: uppercase;
        }

        /* Loading and Error States */
        .loading-message,
        .error-message,
        .no-matches {
            text-align: center;
            padding: 2rem;
            color: var(--text-muted);
            font-size: 1rem;
            width: 100%;
        }

        .error-message {
            color: #d4201a;
        }

        .social-link:hover {
            background: var(--primary-color);
            color: var(--secondary-color);
            transform: translateY(-3px);
        }

        /* Responsive Design */
        @media (min-width: 1200px) {
            .matches-grid {
                gap: 1rem;
            }
            .match-card {
                max-width: 280px; /* 4 cards per row, assuming 1200px / 4 = 300px with margins */
            }
        }

        @media (min-width: 992px) and (max-width: 1199px) {
            .matches-grid {
                gap: 0.8rem;
            }
            .match-card {
                max-width: 23%; /* Approximately 3 cards per row */
                min-height: 220px;
            }
        }

        @media (min-width: 768px) and (max-width: 991px) {
            .matches-grid {
                gap: 0.6rem;
            }
            .match-card {
                max-width: 30%; /* Approximately 2-3 cards per row */
                min-height: 200px;
            }
        }

        @media (max-width: 767px) {
            .header {
                padding: 1rem 1.5rem;
            }
            
            .header.scrolled {
                padding: 0.8rem 1.5rem;
            }
            
            .nav-links {
                display: none;
            }
            
            .live-hero {
                padding: 10rem 1.5rem 4rem;
            }
            
            .live-hero h1 {
                font-size: 2rem;
            }
            
            .tab-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .tab-btn {
                width: 200px;
            }
            
            .matches-grid {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }
            
            .match-card {
                max-width: 100%;
                min-height: 250px; /* Increased height for better mobile appearance */
                padding: 1.5rem 0.8rem 0.8rem;
            }
            
            .team-badge-container {
                width: 50px;
                height: 50px;
            }
            
            .team-logo {
                width: 40px;
                height: 40px;
            }
            
            .team-abbr {
                font-size: 0.7rem;
            }
            
            .vs-line {
                width: 80px;
            }
            
            .date {
                font-size: 0.9rem;
            }
            
            .time {
                font-size: 0.8rem;
            }
            
            .footer-main {
                flex-direction: column;
                gap: 2.5rem;
            }
            
            .footer-links {
                width: 100%;
                justify-content: space-between;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .live-hero h1 {
                font-size: 1.8rem;
            }
            
            .creative-title h2 {
                font-size: 1.5rem;
            }
            
            .creative-title .subtitle {
                font-size: 0.9rem;
            }
            
            .team {
                width: 35%;
            }
            
            .match-center {
                width: 30%;
            }
            
            .team-badge-container {
                width: 80px;
                height: 80px;
            }
            
            .team-logo {
                width: 80px;
                height: 80px;
            }
            
            .team-abbr {
                font-size: 0.6rem;
            }
            
            .vs-line {
                width: 60px;
            }
            
            .match-card {
                min-height: 220px; /* Adjusted for smaller screens */
            }
            
            .footer-links {
                flex-direction: column;
                gap: 2rem;
            }
            
            .footer-legal-links {
                flex-wrap: wrap;
                justify-content: center;
            }
        }
        @media (max-width: 320px) {
            .header {
                padding: 1rem 1rem;
            }

            .header.scrolled {
                padding: 0.5rem 0.4rem;
            }

            .logo {
                font-size: 1rem;
            }

            .watch-now-btn {
                padding: 0.3rem 0.6rem;
                font-size: 0.6rem;
            }

            .watch-now-btn {
                border-radius: 5px;
            }

            .live-hero {
                padding: 5rem 0.6rem 2rem;
            }

            .live-hero h1 {
                font-size: 1.2rem;
            }

            .hero-subtitle {
                font-size: 0.7rem;
                max-width: 250px;
            }

            .live-icon {
                font-size: 1.5rem;
            }

            .creative-title h2 {
                font-size: 1rem;
            }

            .creative-title .subtitle {
                font-size: 0.6rem;
            }

            .matches-section {
                padding: 0.8rem 0.4rem;
            }

            .matches-grid {
                gap: 0.4rem;
            }

            .match-card {
                max-width: 90%;
                padding: 0.3rem;
                min-height: 140px;
                padding-top: 10px;
                border-width: 1px;
                margin-bottom: 10px;
                border: 2px solid var(--primary-color);
            }

            .teams-container {
                gap: 0.15rem;
                padding: 0.15rem;
            }

            .team-badge-container,
            .team-logo {
                width: 45px;
                height: 45px;
            }

            .live-tag {

                border-radius: 7px;

            }

            .team-placeholder {
                width: 18px;
                height: 18px;
                font-size: 0.5rem;
            }

            .team-abbr {
                font-size: 0.5rem;
                max-width: 60px;
            }

            .match-center {
                width: 30%;
            }

            .vs-line {
                width: 30px;
            }

            .date {
                font-size: 0.6rem;
            }

            .time {
                font-size: 0.5rem;
            }

            .competition {
                font-size: 0.45rem;
            }

            .live-tag {
                top: -25px;
                font-size: 1rem;
            }

            .loading-message,
            .error-message,
            .no-matches {
                font-size: 0.6rem;
                padding: 0.6rem;
            }

            .footer {
                padding: 1rem 0 0.6rem;
            }

            .footer-content {
                padding: 0 0.6rem;
                gap: 0.8rem;
            }

            .footer-logo {
                font-size: 1.2rem;
            }

            .footer-tagline {
                font-size: 0.6rem;
            }

            .footer-heading {
                font-size: 0.7rem;
            }

            .footer-link {
                font-size: 0.6rem;
            }

            .legal-notice {
                padding: 0.6rem;
            }

            .legal-text {
                font-size: 0.6rem;
            }

            .footer-bottom {
                padding-top: 0.6rem;
            }

            .footer-legal-link {
                font-size: 0.6rem;
            }
        }

    /* Ensure sidebar and overlay have proper z-index */
.mobile-nav {
    z-index: 1000 !important;
}

.overlay {
    z-index: 999 !important;
}

.mobile-menu-btn {
    z-index: 1001 !important;
}

/* Prevent body scroll when sidebar is open */
body.sidebar-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* Smooth transitions */
.mobile-nav,
.overlay {
    transition: all 0.3s ease;
}
/* KEEP YOUR STYLE - JUST MAKE IT DENSER */
.match-card {
    /* REDUCE padding */
    padding: 0.8rem 0.5rem;
    /* REDUCE min-height */
    min-height: 140px;
    /* KEEP your green border */
    border: 2px solid var(--primary-color);
}

.team-logo {
    /* SMALLER but still visible logos */
    width: 50px;
    height: 50px;
}

.teams-container {
    /* TIGHTER spacing */
    gap: 0.3rem;
    margin-bottom: 0.3rem;
}

.team-abbr {
    /* SMALLER but readable text */
    font-size: 0.75rem;
}

.vs-line {
    /* THINNER line */
    width: 40px;
    height: 1px;
}

.match-center {
    /* COMPACT center section */
    gap: 0.2rem;
}

.date {
    font-size: 0.85rem;
}

.time {
    font-size: 0.8rem;
}

.competition {
    font-size: 0.65rem;
}
.date {
    font-size: 0.7rem;
    color: var(--text-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 80px;
    text-align: center;
}

/* Update responsive sizes to maintain single line */
@media (min-width: 1200px) {
    .date {
        font-size: 0.75rem;
    }
}

@media (max-width: 767px) {
    .date {
        font-size: 0.65rem;
        max-width: 70px;
    }
}

@media (max-width: 480px) {
    .date {
        font-size: 0.6rem;
        max-width: 60px;
    }
}

@media (max-width: 320px) {
    .date {
        font-size: 0.55rem;
        max-width: 50px;
    }
}
.time {
    font-size: 0.7rem;
    color: var(--primary-color);
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 80px;
    text-align: center;
}

/* Update responsive sizes to maintain single line */
@media (min-width: 1200px) {
    .time {
        font-size: 0.75rem;
    }
}

@media (max-width: 767px) {
    .time {
        font-size: 0.65rem;
        max-width: 70px;
    }
}

@media (max-width: 480px) {
    .time {
        font-size: 0.6rem;
        max-width: 60px;
    }
}

@media (max-width: 320px) {
    .time {
        font-size: 0.55rem;
        max-width: 50px;
    }
}
@media (max-width: 767px) {
    .match-card {
        max-height: 90vh;
        overflow-y: auto;
    }
}

@media (max-width: 480px) {
    .match-card {
        max-height: 90vh;
    }
}

@media (max-width: 320px) {
    .match-card {
        max-height: 90vh;
    }
}