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

        :root {
            --primary-green: #10b981;
            --primary-dark: #020617;
            --surface-dark: #0a1224;
            --text-primary: #f1f5f9;
            --text-secondary: rgba(241, 245, 249, 0.7);
            --border-light: rgba(255, 255, 255, 0.1);
            --accent-green: #34d399;
            --primary-red: #ef4444;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: var(--primary-dark);
            color: var(--text-primary);
            transition: background 0.3s ease;
            overscroll-behavior-y: contain;
        }

        body.light-mode {
            --primary-dark: #f8fafc;
            --surface-dark: rgba(248, 250, 252, 0.95);
            --text-primary: #0f172a;
            --text-secondary: rgba(15, 23, 42, 0.7);
            --border-light: rgba(0, 0, 0, 0.1);
        }

        /* Accessibility: Focus States */
        a:focus-visible, button:focus-visible {
            outline: 2px solid var(--primary-green);
            outline-offset: 4px;
        }

        /* ===== HEADER STYLES ===== */
        .main-header {
            background: var(--surface-dark);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 15px;
            z-index: 2000;
            padding: 12px 20px;
            width: calc(100% - 40px);
            margin: 0 auto;
            border-radius: 50px;
            border: 1px solid var(--border-light);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .navbar-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }

        /* Logo */
        .logo {
            flex-shrink: 0;
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 50px;
            width: auto;
            transition: transform 0.3s ease;
        }

        .logo img:hover {
            transform: scale(1.05);
        }

        /* Nav Menu */
        .nav-menu {
            display: flex;
            gap: 30px;
            flex: 1;
            justify-content: center;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--text-secondary);
            font-size: 15px;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
            letter-spacing: 0.3px;
            padding: 8px 0;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-green);
            transition: width 0.3s ease;
        }

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

        .nav-menu a:hover::after,
        .nav-menu a.active::after {
            width: 100%;
        }

        /* Header Right */
        .header-right {
            display: flex;
            align-items: center;
            gap: 25px;
            flex-shrink: 0;
        }

        /* Social Icons */
        .social-icons {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .social-icons a {
            color: var(--text-secondary);
            font-size: 18px;
            transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
        }

        .social-icons a:hover {
            color: var(--primary-green);
            background: rgba(16, 185, 129, 0.1);
            transform: translateY(-3px);
        }

        /* Theme Toggle */
        .theme-toggle {
            color: var(--text-secondary);
            cursor: pointer;
            font-size: 20px;
            transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
        }

        .theme-toggle:hover {
            color: var(--accent-green);
            background: rgba(16, 185, 129, 0.1);
            transform: rotate(20deg);
        }

        /* Menu Icon (Mobile) */
        .menu-icon {
            display: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--text-primary);
            transition: color 0.3s ease;
        }

        .menu-icon:hover {
            color: var(--primary-green);
        }

        /* ===== MOBILE RESPONSIVE ===== */
        @media (max-width: 768px) {
            .main-header {
                padding: 10px 15px;
                width: calc(100% - 30px);
                top: 10px;
            }

            .navbar-container {
                gap: 15px;
            }

            .logo img {
                height: 40px;
            }

            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                flex-direction: column;
                gap: 0;
                background: var(--surface-dark);
                border-radius: 20px;
                padding: 15px 0;
                margin-top: 10px;
                border: 1px solid var(--border-light);
            }

            .nav-menu.active {
                display: flex;
            }

            .nav-menu a {
                padding: 12px 25px;
                border-left: 3px solid transparent;
                transition: padding-left 0.3s ease, border-color 0.3s ease, background 0.3s ease;
            }

            .nav-menu a:hover,
            .nav-menu a.active {
                padding-left: 30px;
                border-left-color: var(--primary-green);
                background: rgba(16, 185, 129, 0.05);
            }

            .nav-menu a::after {
                display: none;
            }

            .menu-icon {
                display: block;
                order: 2;
            }

            .header-right {
                gap: 15px;
            }

            .social-icons {
                gap: 10px;
            }

            .social-icons a {
                width: 32px;
                height: 32px;
                font-size: 16px;
            }

            .theme-toggle {
                width: 32px;
                height: 32px;
                font-size: 18px;
            }
        }

        @media (max-width: 480px) {
            .main-header {
                width: calc(100% - 20px);
                padding: 8px 12px;
                top: 8px;
            }

            .logo img {
                height: 35px;
            }

            .header-right {
                gap: 10px;
            }

            .social-icons {
                gap: 8px;
            }

            .social-icons a {
                width: 28px;
                height: 28px;
                font-size: 14px;
            }

            .theme-toggle {
                width: 28px;
                height: 28px;
                font-size: 16px;
            }
        }

        /* ===== DEMO CONTENT ===== */
        main {
            padding: 10px 20px 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        p {
            color: var(--text-secondary);
            line-height: 1.6;
            max-width: 600px;
        }

        /* ===== LEAGUE SCROLLER STYLES ===== */
        .league-scroller {
            max-width: 1200px;
            margin: 20px auto 0;
            overflow-x: auto;
            padding: 15px 20px;
            white-space: nowrap;
            scrollbar-width: none;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            position: relative;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .league-scroller::-webkit-scrollbar {
            display: none;
        }

        .scroller-wrapper {
            display: flex;
            gap: 12px;
            padding: 4px 20px;
            width: max-content;
        }

        .league-chip {
            scroll-snap-align: start;
            flex-shrink: 0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: var(--surface-dark);
            padding: 10px 20px;
            border-radius: 50px;
            color: var(--text-primary);
            font-weight: 600;
            font-size: 14px;
            border: 1px solid var(--border-light);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
            user-select: none;
            cursor: pointer;
            text-decoration: none;
            white-space: nowrap;
        }

        .league-chip img {
            width: 20px;
            height: 20px;
            object-fit: contain;
            background: white;
            border-radius: 4px;
            padding: 1px;
            transition: transform 0.3s ease;
        }

        .league-chip:hover {
            background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
            color: white;
            border-color: var(--primary-green);
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
        }

        .league-chip:hover img {
            transform: scale(1.1) rotate(5deg);
        }

        body.light-mode .league-chip {
            background: #ffffff;
            color: var(--text-primary);
            border-color: rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }

        body.light-mode .league-chip:hover {
            background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
            box-shadow: 0 8px 20px rgba(16, 185, 129, 0.25);
        }

        /* ===== MATCHES & LAYOUT STYLES ===== */
        .main-layout-container {
            max-width: 1400px;
            margin: 10px auto 40px;
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 30px;
            padding: 0 20px;
        }

        .content-left {
            display: flex;
            flex-direction: column;
            gap: 30px;
            order: 1;
            grid-column: 1;
        }

        .content-middle {
            display: flex;
            flex-direction: column;
            gap: 30px;
            order: 2;
            grid-column: 1;
        }

        .section-block {
            margin-bottom: 30px;
            border-left: 4px solid transparent;
            border-image: linear-gradient(to bottom, var(--primary-green), var(--accent-green)) 1;
        }

        .fixtures-container {
            background: var(--surface-dark);
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            border: 1px solid var(--border-light);
        }

        .fixtures-header {
            font-size: 22px;
            font-weight: 800;
            color: var(--text-primary);
            padding: 12px 16px;
            background: rgba(16, 185, 129, 0.08);
            border-radius: 12px;
            margin-bottom: 24px;
            border: 1px solid rgba(16, 185, 129, 0.2);
            text-align: center;
        }

        body.light-mode .fixtures-header {
            background: rgba(16, 185, 129, 0.08);
            border-color: rgba(16, 185, 129, 0.15);
            color: var(--text-primary);
        }

        .nav-tabs {
            display: flex;
            background: rgba(255, 255, 255, 0.05);
            padding: 6px;
            border-radius: 12px;
            gap: 6px;
            margin-bottom: 28px;
            border: 1px solid var(--border-light);
        }

        .nav-item {
            flex: 1;
            padding: 10px 12px;
            border: none;
            background: transparent;
            border-radius: 10px;
            font-weight: 700;
            font-size: 13px;
            cursor: pointer;
            color: var(--text-secondary);
            transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
        }

        .nav-item.active {
            background: var(--primary-green);
            color: white;
            box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
        }

        .nav-item:hover:not(.active) {
            background: rgba(16, 185, 129, 0.1);
            color: var(--text-primary);
        }

        .match-link-wrapper {
            text-decoration: none;
            color: inherit;
            display: block;
            margin-bottom: 16px;
        }

        .match-card {
            border: 1px solid var(--border-light);
            border-radius: 14px;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.02);
            position: relative;
            transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
            cursor: pointer;
        }

        .match-card:hover {
            transform: translateY(-4px);
            border-color: var(--primary-green);
            box-shadow: 0 12px 30px rgba(16, 185, 129, 0.2);
            background: rgba(16, 185, 129, 0.04);
        }

        .league-header {
            background: rgba(16, 185, 129, 0.15);
            padding: 10px 16px;
            border-bottom: 1px solid var(--border-light);
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 700;
            font-size: 11px;
            color: var(--text-secondary);
            letter-spacing: 0.5px;
        }

        .league-logo {
            font-size: 14px;
        }

        .match-row {
            display: flex;
            padding: 16px;
            align-items: center;
            position: relative;
            gap: 12px;
        }

        .teams {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 10px;
            min-width: 0;
        }

        .team {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-primary);
            font-size: 14px;
        }

        .team-logo {
            width: 24px;
            height: 24px;
            object-fit: contain;
            flex-shrink: 0;
            border-radius: 4px;
        }

        .team-name {
            font-weight: 700;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            flex: 1;
        }

        .score {
            font-weight: 900;
            font-size: 18px;
            padding: 0 8px;
            flex-shrink: 0;
            font-variant-numeric: tabular-nums;
            color: var(--accent-green);
        }

        .status-box {
            min-width: 100px;
            border-left: 1px solid var(--border-light);
            padding-left: 12px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 4px;
            flex-shrink: 0;
        }

        .time {
            font-size: 12px;
            font-weight: 800;
            color: var(--text-primary);
        }

        .status {
            font-size: 10px;
            font-weight: 900;
            display: flex;
            align-items: center;
            gap: 4px;
            letter-spacing: 0.5px;
        }

        .status::before {
            content: "";
            display: inline-block;
            width: 5px;
            height: 5px;
            background-color: currentColor;
            border-radius: 50%;
        }

        .status-upcoming {
            color: #b19424;
        }

        .status-live {
            color: #10b981;
        }

        .status-live::before {
            animation: blink-dot 1s infinite;
        }

        .status-finished {
            color: #ef4444;
        }

        @keyframes blink-dot {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.4; }
        }

        .play-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(4px);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 10px;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 10;
        }

        .match-card:hover .play-overlay {
            opacity: 1;
        }

        .play-overlay i {
            color: var(--primary-green);
            font-size: 36px;
            filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.4));
        }

        .watch-text {
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 1px;
            color: white;
            text-transform: uppercase;
            background: rgba(255, 255, 255, 0.1);
            padding: 6px 16px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        /* ===== SIDEBAR STYLES ===== */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 20px;
            animation: fadeInUp 1s ease-out 0.5s both;
            order: 3;
            grid-column: 2;
            grid-row: 1 / 3;
        }

        .sidebar-widget {
            background: var(--surface-dark);
            border-radius: 16px;
            padding: 22px;
            border: 1px solid var(--border-light);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
            position: relative;
            overflow: hidden;
            animation: slideInRight 0.6s ease-out backwards;
        }

        .sidebar-widget:nth-child(1) { animation-delay: 0.5s; }
        .sidebar-widget:nth-child(2) { animation-delay: 0.6s; }
        .sidebar-widget:nth-child(3) { animation-delay: 0.7s; }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .sidebar-widget::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.5), transparent);
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            transform: scaleX(0);
            transform-origin: left;
        }

        .sidebar-widget:hover {
            border-color: rgba(16, 185, 129, 0.4);
            box-shadow: 0 16px 48px rgba(16, 185, 129, 0.15);
            transform: translateY(-2px);
        }

        .sidebar-widget:hover::before {
            opacity: 1;
            transform: scaleX(1);
        }

        .sidebar-widget h3 {
            font-size: 16px;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 18px;
            padding-bottom: 14px;
            border-bottom: 2px solid var(--primary-green);
            letter-spacing: -0.3px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .news-item {
            margin-bottom: 14px;
            padding-bottom: 14px;
            border-bottom: 1px solid var(--border-light);
            transition: background 0.3s ease;
            cursor: pointer;
        }

        .news-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .news-item:hover .news-title {
            color: var(--primary-green);
        }

        .news-date {
            font-size: 10px;
            color: var(--text-secondary);
            font-weight: 700;
            letter-spacing: 0.5px;
            margin-bottom: 4px;
            text-transform: uppercase;
        }

        .news-title {
            font-size: 13px;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.4;
            transition: color 0.3s ease;
        }

        body.light-mode .fixtures-container,
        body.light-mode .sidebar-widget {
            background: #ffffff;
            border-color: rgba(0, 0, 0, 0.08);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
        }

        body.light-mode .match-card {
            background: rgba(0, 0, 0, 0.02);
            border-color: rgba(0, 0, 0, 0.08);
        }

        body.light-mode .match-card:hover {
            border-color: var(--primary-green);
            box-shadow: 0 12px 30px rgba(16, 185, 129, 0.15);
            background: rgba(16, 185, 129, 0.03);
        }

        body.light-mode .league-header {
            background: rgba(16, 185, 129, 0.05);
            border-bottom-color: rgba(0, 0, 0, 0.06);
        }

        body.light-mode .nav-tabs {
            background: rgba(0, 0, 0, 0.03);
            border-color: rgba(0, 0, 0, 0.06);
        }

        body.light-mode .status-box {
            border-left-color: rgba(0, 0, 0, 0.06);
        }

        /* ===== NEWS SECTION STYLES ===== */
        .section-title {
            font-size: 24px;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 24px;
            padding-bottom: 16px;
            border-bottom: 3px solid var(--primary-green);
            display: inline-block;
            letter-spacing: -0.5px;
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 28px;
            animation: fadeInUp 1s ease-out 0.7s both;
        }

        .news-card {
            background: var(--surface-dark);
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid var(--border-light);
            display: flex;
            flex-direction: column;
            height: 100%;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
            position: relative;
        }

        .news-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .news-card:hover {
            transform: translateY(-8px);
            border-color: var(--primary-green);
            box-shadow: 0 16px 40px rgba(16, 185, 129, 0.2);
        }

        .news-card:hover::before {
            opacity: 1;
        }

        .news-thumb {
            position: relative;
            height: 240px;
            overflow: hidden;
            background: rgba(16, 185, 129, 0.05);
        }

        .news-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            display: block;
        }

        .news-card:hover .news-thumb img {
            transform: scale(1.1) rotate(0.5deg);
        }

        .news-tag {
            position: absolute;
            top: 16px;
            left: 16px;
            background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
            color: white;
            padding: 6px 16px;
            font-size: 11px;
            font-weight: 800;
            border-radius: 8px;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .news-info {
            padding: 26px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .news-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 12px;
            color: var(--text-secondary);
            margin-bottom: 14px;
            font-weight: 700;
            letter-spacing: 0.3px;
        }

        .news-meta span {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .news-info h3 {
            font-size: 18px;
            line-height: 1.35;
            margin-bottom: 14px;
            color: var(--text-primary);
            font-weight: 800;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
            transition: color 0.3s ease;
            letter-spacing: -0.3px;
        }

        .news-card:hover .news-info h3 {
            color: var(--primary-green);
        }

        .news-info p {
            font-size: 13px;
            color: var(--text-secondary);
            margin-bottom: 20px;
            line-height: 1.6;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
        }

        .btn-read {
            margin-top: auto;
            font-size: 12px;
            font-weight: 800;
            color: var(--primary-green);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            transition: gap 0.3s ease, border-color 0.3s ease;
            text-decoration: none;
            width: fit-content;
            padding: 8px 0;
            border-bottom: 2px solid transparent;
        }

        .btn-read:hover {
            gap: 12px;
            border-bottom-color: var(--primary-green);
        }

        /* ===== LEAGUE LIST STYLES ===== */
        .league-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .league-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 14px;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 700;
            color: var(--text-primary);
            background: rgba(16, 185, 129, 0.12);
            border: 1px solid rgba(16, 185, 129, 0.15);
            transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .league-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            width: 3px;
            height: 0;
            background: linear-gradient(180deg, var(--primary-green), var(--accent-green));
            transform: translateY(-50%);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .league-list li:hover {
            background: rgba(16, 185, 129, 0.14);
            border-color: var(--primary-green);
            transform: translateX(6px);
            box-shadow: 0 6px 16px rgba(16, 185, 129, 0.18);
        }

        .league-list li:hover::before {
            height: 100%;
        }

        .league-list li img {
            width: 20px;
            height: 20px;
            object-fit: contain;
            flex-shrink: 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 4px;
            filter: brightness(0.95);
        }

        .league-list li:hover img {
            transform: scale(1.25) rotate(-8deg);
            filter: brightness(1.3) drop-shadow(0 0 6px rgba(16, 185, 129, 0.4));
        }

        body.light-mode .league-list li {
            background: rgba(16, 185, 129, 0.04);
            border-color: rgba(16, 185, 129, 0.12);
        }

        body.light-mode .league-list li:hover {
            background: rgba(16, 185, 129, 0.13);
            border-color: var(--primary-green);
            box-shadow: 0 6px 16px rgba(16, 185, 129, 0.12);
        }

        /* ===== SOCIAL PROMO STYLES ===== */
        .social-promo {
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(16, 185, 129, 0.06) 100%);
            border-color: rgba(16, 185, 129, 0.25);
            position: relative;
            overflow: hidden;
        }

        .social-promo::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            animation: pulseGlow 4s ease-in-out infinite;
        }

        @keyframes pulseGlow {
            0%, 100% {
                transform: scale(1);
                opacity: 0.6;
            }
            50% {
                transform: scale(1.2);
                opacity: 0.3;
            }
        }

        .social-promo > * {
            position: relative;
            z-index: 2;
        }

        .social-promo p {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 16px;
            line-height: 1.6;
            font-weight: 500;
        }

        .btn-social-tiktok {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 14px 22px;
            background: linear-gradient(135deg, #000000, #1a1a2e);
            color: white;
            font-weight: 800;
            font-size: 14px;
            border-radius: 12px;
            border: none;
            cursor: pointer;
            transition: background 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.6px;
            width: 100%;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
        }

        .btn-social-tiktok::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            opacity: 0;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .btn-social-tiktok::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.2), transparent);
            opacity: 0;
            animation: shimmerFlow 2.5s ease-in-out infinite;
        }

        @keyframes shimmerFlow {
            0% { 
                opacity: 0;
                transform: translateX(-100%);
            }
            50% { 
                opacity: 1;
            }
            100% { 
                opacity: 0;
                transform: translateX(100%);
            }
        }

        .btn-social-tiktok:hover::before {
            opacity: 1;
            animation: none;
        }

        .btn-social-tiktok:hover {
            background: linear-gradient(135deg, #1a1a2e, #0f0f1e);
            transform: translateY(-4px);
            box-shadow: 0 14px 36px rgba(0, 0, 0, 0.5), 0 0 20px rgba(16, 185, 129, 0.2);
        }

        .btn-social-tiktok:active {
            transform: translateY(-2px);
        }

        .btn-social-tiktok i {
            font-size: 18px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            z-index: 3;
        }

        .btn-social-tiktok:hover i {
            transform: scale(1.25) rotate(8deg);
        }

        body.light-mode .social-promo {
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.04) 100%);
            border-color: rgba(16, 185, 129, 0.2);
        }

        body.light-mode .btn-social-tiktok {
            background: linear-gradient(135deg, #ec4899, #db2777);
            box-shadow: 0 8px 20px rgba(236, 72, 153, 0.3);
        }

        body.light-mode .btn-social-tiktok:hover {
            background: linear-gradient(135deg, #db2777, #c2185b);
            box-shadow: 0 14px 36px rgba(236, 72, 153, 0.4), 0 0 20px rgba(236, 72, 153, 0.3);
        }

        body.light-mode .news-card {
            background: #ffffff;
            border-color: rgba(0, 0, 0, 0.08);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
        }

        body.light-mode .news-card:hover {
            border-color: var(--primary-green);
            box-shadow: 0 16px 40px rgba(16, 185, 129, 0.15);
            background: #fafafa;
        }

        body.light-mode .news-thumb {
            background: rgba(16, 185, 129, 0.03);
        }

        /* ===== NEW ABOUT CARD STYLES ===== */
        .about-card {
            background: var(--surface-dark);
            border-radius: 16px;
            padding: 30px;
            border: 1px solid rgba(16, 185, 129, 0.2);
            border-left: 4px solid var(--primary-green);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .about-content h2 {
            font-size: 24px;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }

        .about-content hr {
            width: 50px;
            height: 3px;
            background: var(--primary-green);
            border: none;
            margin-bottom: 20px;
            border-radius: 2px;
        }

        .about-content p {
            max-width: 100%;
        }

        body.light-mode .about-card {
            background: #ffffff;
            border-color: rgba(0, 0, 0, 0.1);
            border-left-color: var(--primary-green);
        }

        /* ===== ABOUT SECTION STYLES ===== */
        .about-container {
            animation: fadeInUp 1s ease-out 0.8s both;
        }

        .about-header {
            margin-bottom: 50px;
            text-align: center;
        }

        .about-header h2 {
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
            letter-spacing: -0.02em;
        }

        .about-divider {
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, transparent, var(--primary-green), transparent);
            margin: 0 auto;
            border-radius: 2px;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: start;
        }

        .about-intro {
            font-size: 1.1rem;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 35px;
            padding: 24px;
            background: rgba(16, 185, 129, 0.06);
            border-left: 4px solid var(--primary-green);
            border-radius: 8px;
            font-weight: 500;
        }

        .about-features {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .feature-item {
            display: flex;
            gap: 18px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--border-light);
            border-radius: 14px;
            transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
            cursor: default;
        }

        .feature-item:hover {
            background: rgba(16, 185, 129, 0.08);
            border-color: var(--primary-green);
            transform: translateX(8px);
            box-shadow: 0 8px 20px rgba(16, 185, 129, 0.15);
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            min-width: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(52, 211, 153, 0.1));
            border-radius: 12px;
            color: var(--primary-green);
            font-size: 24px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .feature-item:hover .feature-icon {
            transform: scale(1.15) rotate(5deg);
            background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
            color: white;
        }

        .feature-text h4 {
            font-size: 15px;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 6px;
            letter-spacing: -0.2px;
        }

        .feature-text p {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.5;
            margin: 0;
        }

        .about-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .stat-card {
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.04) 100%);
            border: 1px solid rgba(16, 185, 129, 0.2);
            border-radius: 16px;
            padding: 32px 24px;
            text-align: center;
            transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 50% 0%, rgba(16, 185, 129, 0.1), transparent 70%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .stat-card:hover {
            transform: translateY(-8px);
            border-color: var(--primary-green);
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.08) 100%);
            box-shadow: 0 12px 32px rgba(16, 185, 129, 0.2);
        }

        .stat-card:hover::before {
            opacity: 1;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 8px;
            letter-spacing: -0.02em;
            position: relative;
            z-index: 2;
        }

        .stat-label {
            font-size: 13px;
            font-weight: 700;
            color: var(--text-secondary);
            letter-spacing: 0.5px;
            text-transform: uppercase;
            position: relative;
            z-index: 2;
        }

        body.light-mode .about-intro {
            background: rgba(16, 185, 129, 0.04);
            border-color: rgba(16, 185, 129, 0.15);
        }

        body.light-mode .feature-item {
            background: rgba(0, 0, 0, 0.02);
            border-color: rgba(0, 0, 0, 0.08);
        }

        body.light-mode .feature-item:hover {
            background: rgba(16, 185, 129, 0.06);
            border-color: var(--primary-green);
            box-shadow: 0 8px 20px rgba(16, 185, 129, 0.1);
        }

        body.light-mode .stat-card {
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(16, 185, 129, 0.02) 100%);
            border-color: rgba(16, 185, 129, 0.15);
        }

        body.light-mode .stat-card:hover {
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(16, 185, 129, 0.06) 100%);
            border-color: var(--primary-green);
            box-shadow: 0 12px 32px rgba(16, 185, 129, 0.12);
        }

        /* ===== FOOTER STYLES ===== */
        .main-footer {
            background: var(--primary-dark);
            color: white;
            padding: 80px 20px 20px;
            margin-top: 60px;
            border-top: 4px solid var(--primary-green);
            position: relative;
            overflow: hidden;
        }

        .main-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--primary-green), transparent);
            opacity: 0.5;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1.2fr;
            gap: 40px;
            animation: fadeInUp 1s ease-out 0.9s both;
        }

        .footer-col {
            display: flex;
            flex-direction: column;
        }

        .footer-logo {
            height: auto;
            max-height: 70px;
            width: auto;
            max-width: 200px;
            object-fit: contain;
            display: block;
            margin-bottom: 20px;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .about-col:hover .footer-logo {
            transform: scale(1.05);
        }

        .footer-col h4 {
            margin-bottom: 20px;
            color: var(--primary-green);
            font-size: 14px;
            font-weight: 800;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

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

        .footer-col ul li {
            margin-bottom: 12px;
        }

        .footer-col ul li a {
            color: var(--text-secondary);
            font-size: 14px;
            transition: color 0.3s ease, padding-left 0.3s ease;
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .footer-col ul li a:hover {
            color: var(--text-primary);
            padding-left: 5px;
            color: var(--primary-green);
        }

        .about-col p {
            font-size: 14px;
            line-height: 1.6;
            color: var(--text-secondary);
        }

        .app-buttons {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .app-btn {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.08);
            color: white;
            padding: 12px 16px;
            border-radius: 12px;
            border: 1px solid rgba(16, 185, 129, 0.2);
            transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
            width: 100%;
            max-width: 180px;
            text-decoration: none;
            position: relative;
            overflow: hidden;
        }

        .app-btn::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .app-btn:hover {
            background: rgba(16, 185, 129, 0.12);
            border-color: var(--primary-green);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(16, 185, 129, 0.2);
        }

        .app-btn:hover::before {
            opacity: 1;
        }

        .app-btn i {
            font-size: 24px;
            margin-right: 12px;
            color: var(--primary-green);
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

        .app-btn:hover i {
            transform: scale(1.15);
        }

        .app-btn-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
            position: relative;
            z-index: 2;
        }

        .app-btn-text span {
            font-size: 10px;
            color: var(--text-secondary);
            font-weight: 500;
        }

        .app-btn-text strong {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-primary);
        }

        .footer-social-links {
            display: flex;
            gap: 12px;
            margin-bottom: 15px;
        }

        .footer-social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            text-decoration: none;
            transition: background 0.3s ease, color 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
            border: 1px solid rgba(16, 185, 129, 0.15);
        }

        .footer-social-links a:hover {
            background: var(--primary-green);
            color: white;
            transform: translateY(-4px) scale(1.1);
            box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
            border-color: var(--primary-green);
        }

        .footer-bottom {
            text-align: center;
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid var(--border-light);
            font-size: 13px;
            color: var(--text-secondary);
            font-weight: 500;
            letter-spacing: 0.3px;
        }

        body.light-mode .main-footer {
            background: #f8fafc;
            border-top-color: var(--primary-green);
            color: var(--text-primary);
        }

        body.light-mode .footer-col h4 {
            color: var(--primary-green);
        }

        body.light-mode .footer-col ul li a {
            color: rgba(15, 23, 42, 0.7);
        }

        body.light-mode .footer-col ul li a:hover {
            color: var(--primary-green);
        }

        body.light-mode .app-btn {
            background: rgba(0, 0, 0, 0.05);
            border-color: rgba(16, 185, 129, 0.15);
        }

        body.light-mode .app-btn:hover {
            background: rgba(16, 185, 129, 0.08);
            border-color: var(--primary-green);
            box-shadow: 0 8px 20px rgba(16, 185, 129, 0.15);
        }

        body.light-mode .footer-social-links a {
            background: rgba(0, 0, 0, 0.04);
            border-color: rgba(16, 185, 129, 0.1);
            color: rgba(15, 23, 42, 0.7);
        }

        body.light-mode .footer-social-links a:hover {
            background: var(--primary-green);
            color: white;
            box-shadow: 0 8px 20px rgba(16, 185, 129, 0.25);
        }

        body.light-mode .footer-bottom {
            border-top-color: rgba(0, 0, 0, 0.1);
            color: rgba(15, 23, 42, 0.7);
        }

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

        @media (max-width: 768px) {
            .main-footer {
                padding: 60px 20px 20px;
                margin-top: 40px;
            }

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

            .footer-col h4 {
                font-size: 13px;
            }

            .footer-col ul li a {
                font-size: 13px;
            }

            .app-btn {
                max-width: 100%;
            }

            .footer-social-links {
                gap: 10px;
            }

            .footer-social-links a {
                width: 36px;
                height: 36px;
                font-size: 16px;
            }

            .footer-bottom {
                font-size: 12px;
                margin-top: 40px;
            }
        }

        @media (max-width: 480px) {
            .main-footer {
                padding: 40px 15px 15px;
                margin-top: 30px;
            }

            .footer-container {
                gap: 30px;
            }

            .footer-logo {
                max-height: 50px;
                max-width: 150px;
                margin-bottom: 15px;
            }

            .about-col p {
                font-size: 13px;
                line-height: 1.5;
            }

            .footer-col h4 {
                font-size: 12px;
                margin-bottom: 15px;
            }

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

            .footer-col ul li a {
                font-size: 13px;
            }

            .app-buttons {
                gap: 10px;
            }

            .app-btn {
                padding: 10px 14px;
                font-size: 13px;
                max-width: 100%;
            }

            .app-btn i {
                font-size: 20px;
                margin-right: 10px;
            }

            .app-btn-text span {
                font-size: 9px;
            }

            .app-btn-text strong {
                font-size: 12px;
            }

            .footer-social-links {
                gap: 8px;
            }

            .footer-social-links a {
                width: 32px;
                height: 32px;
                font-size: 14px;
            }

            .footer-bottom {
                font-size: 11px;
                margin-top: 30px;
                padding-top: 15px;
            }
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 1024px) {
            .main-layout-container {
                grid-template-columns: 1fr;
                max-width: 1200px;
            }

            .content-middle {
                grid-column: 1;
            }

            .sidebar {
                grid-column: 1;
                grid-row: auto;
                flex-direction: column;
            }

            .sidebar-widget {
                flex: unset;
                min-width: unset;
            }
        }

        @media (max-width: 768px) {
            .main-layout-container {
                grid-template-columns: 1fr;
                gap: 20px;
                margin: 30px auto;
            }

            .content-left,
            .content-middle,
            .sidebar {
                order: initial;
            }

            .sidebar {
                flex-direction: column;
                gap: 20px;
            }

            .sidebar-widget {
                flex: unset;
                min-width: unset;
            }

            .fixtures-header {
                font-size: 18px;
            }

            .match-row {
                padding: 12px;
                gap: 8px;
            }

            .team {
                font-size: 13px;
            }

            .score {
                font-size: 16px;
            }

            .status-box {
                min-width: 80px;
                padding-left: 8px;
            }

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

            .about-header h2 {
                font-size: 2rem;
            }

            .about-stats {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 480px) {
            .main-layout-container {
                padding: 0 15px;
            }

            .fixtures-container {
                padding: 16px;
                border-radius: 12px;
            }

            .fixtures-header {
                font-size: 16px;
                padding: 10px 12px;
                margin-bottom: 16px;
            }

            .nav-tabs {
                margin-bottom: 20px;
            }

            .nav-item {
                font-size: 12px;
                padding: 8px 10px;
            }

            .match-row {
                padding: 12px;
                flex-direction: column;
                align-items: stretch;
                gap: 15px;
            }

            .teams {
                gap: 10px;
                width: 100%;
            }

            .team {
                font-size: 14px;
                justify-content: space-between;
            }
            
            .team-name { flex: 1; }

            .status-box {
                border-left: none;
                border-top: 1px solid var(--border-light);
                padding: 10px 0 0 0;
                flex-direction: row;
                justify-content: space-between;
                width: 100%;
                min-width: 0;
            }

            .sidebar-widget {
                padding: 16px;
            }

            .sidebar-widget h3 {
                font-size: 14px;
                margin-bottom: 12px;
            }

            .news-item {
                margin-bottom: 10px;
                padding-bottom: 10px;
            }

            .news-title {
                font-size: 12px;
            }

            .news-date {
                font-size: 9px;
            }

            .about-header h2 {
                font-size: 1.5rem;
            }

            .about-grid {
                gap: 30px;
            }

            .about-intro {
                font-size: 0.95rem;
                padding: 16px;
                margin-bottom: 24px;
            }

            .feature-item {
                padding: 16px;
                gap: 14px;
            }

            .feature-icon {
                width: 42px;
                height: 42px;
                font-size: 20px;
            }

            .feature-text h4 {
                font-size: 14px;
            }

            .feature-text p {
                font-size: 12px;
            }

            .about-stats {
                grid-template-columns: 1fr;
            }

            .stat-card {
                padding: 24px 16px;
            }

            .stat-number {
                font-size: 2rem;
            }
        }

        /* --- 2. Main Layout Wrapper --- */
.main-content-wrapper {
    display: flex;
    gap: 30px;
    max-width: 1300px;
    margin: 40px auto;
    padding: 0 20px;
}

.video-section {
    flex: 3; /* Video takes up 75% */
}

.content-sidebar {
    flex: 1; /* Ad takes up 25% */
    min-width: 300px;
}

/* --- 3. Professional Video Player --- */
.video-player-container {
    width: 100%;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#live-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

/* Overlay Labels */
.player-controls-hint {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    gap: 12px;
    z-index: 10;
    pointer-events: none;
}

.live-label {
    background: var(--primary-red);
    color: white;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: lowercase;
    box-shadow: 0 4px 15px rgba(255, 75, 92, 0.4);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
    animation: blink-live 1s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 1; }
    70% { transform: scale(1.6); opacity: 0; }
    100% { transform: scale(0.9); opacity: 0; }
}

.quality-label {
    background: var(--glass);
    backdrop-filter: blur(8px);
    color: #ffd700;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* --- 4. Match Info & Server Buttons --- */
.match-info-card {
    background: var(--surface-dark);
    margin-top: 25px;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--border-light);
}

.match-title-area h1 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.match-title-area .vs {
    color: var(--primary-green);
    font-style: italic;
}

.league-tag {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

.server-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.btn-group {
    display: flex;
    gap: 10px;
}

.server-btn {
    padding: 12px 20px;
    border: 2px solid var(--border-light);
    background: var(--surface-dark);
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    color: var(--text-primary);
}

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

.server-btn.active {
    background: var(--primary-green);
    color: #fff;
    border-color: var(--primary-green);
}

/* --- 5. Professional Sticky Ad Space --- */
.ad-container {
    position: sticky;
    top: 20px;
}

.ad-tag {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 1px;
    display: block;
    text-align: center;
    margin-bottom: 10px;
}

.ad-space {
    height: 550px;
    background: var(--surface-dark);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--border-light);
    color: var(--text-secondary);
    transition: 0.3s;
}

.ad-space:hover {
    border-color: var(--primary-green);
    background: rgba(16, 185, 129, 0.05);
}

/* --- 6. Footer --- */
.main-footer {
    background: var(--primary-dark);
    color: #fff;
    padding: 60px 20px 30px;
    margin-top: 80px;
    border-top: 4px solid var(--primary-green);
}

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

.footer-logo {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 15px;
}

.footer-logo span {
    color: var(--primary-green);
}

.footer-links {
    margin-bottom: 40px;
}

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

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

.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding-top: 30px;
    font-size: 13px;
    color: var(--text-secondary);
}

/* The base button style */
.server-btn {
    padding: 10px 20px;
    border: 2px solid var(--border-light);
    background: var(--surface-dark);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.2s ease; /* Makes the transition smooth */
    outline: none;
    color: var(--text-primary);
}

/* What happens when the button is clicked/active */
.server-btn.active {
    background: var(--primary-green) !important; /* Dark professional background */
    color: #ffffff !important;
    border-color: var(--primary-green) !important; /* Green border for the active server */
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.2);
    transform: translateY(-1px); /* Slight lift */
}


.score-display {
    font-variant-numeric: tabular-nums;
    font-weight: 900;
    color: var(--accent-green);
    margin: 0 5px;
    display: inline-block;
    transition: all 0.3s ease;
}

@keyframes scorePulse {
    0% { transform: scale(1); color: var(--accent-green); }
    50% { transform: scale(1.4); color: #fff; text-shadow: 0 0 15px var(--primary-green); }
    100% { transform: scale(1); color: var(--accent-green); }
}

.goal-flash {
    animation: scorePulse 2s ease-out;
}

/* League Table (Standings) Styles */
.standings-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
    margin-top: 5px;
}

.standings-table th {
    text-align: left;
    padding: 8px 4px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.standings-table td {
    padding: 10px 4px;
    border-bottom: 1px solid var(--border-light);
    vertical-align: middle;
}

.standings-table .team-cell {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.standings-table .team-cell img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.standings-table tr:hover {
    background: rgba(16, 185, 129, 0.05);
}

.standings-table strong {
    color: var(--primary-green);
    font-weight: 900;
}

/* Streaming Page Responsive Mobile Fit */
@media (max-width: 992px) {
    .main-content-wrapper {
        flex-direction: column;
        padding: 0 15px;
        gap: 20px;
        margin: 20px auto;
    }

    .content-sidebar {
        min-width: 100%;
    }

    .video-player-container {
        border-radius: 12px;
    }

    .match-info-card {
        flex-direction: column;
        gap: 25px;
        padding: 25px 20px;
        text-align: center;
    }

    .btn-group {
        justify-content: center;
    }

    .ad-space {
        height: 250px;
    }
}
