:root {
            --primary: #1a73e8;
            --secondary: #e8f0fe;
            --accent: #34a853;
            --dark: #202124;
            --light: #f8f9fa;
            --gray: #5f6368;
            --shadow: 0 4px 12px rgba(0,0,0,0.08);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }
        body {
            background-color: #fff;
            color: var(--dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 0;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo .ball {
            width: 28px;
            height: 28px;
            background: linear-gradient(45deg, var(--primary), var(--accent));
            border-radius: 50%;
            display: inline-block;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            font-size: 1.05rem;
            transition: var(--transition);
            padding: 8px 5px;
            border-bottom: 3px solid transparent;
        }
        nav a:hover, nav a.active {
            color: var(--primary);
            border-bottom-color: var(--primary);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--dark);
        }
        .breadcrumb {
            background: var(--secondary);
            padding: 14px 0;
            font-size: 0.95rem;
            color: var(--gray);
        }
        .breadcrumb a {
            color: var(--primary);
            text-decoration: none;
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        .search-section {
            background: linear-gradient(135deg, var(--primary), #0d47a1);
            color: white;
            padding: 40px 0;
            text-align: center;
            margin: 25px 0;
            border-radius: 12px;
        }
        .search-section h2 {
            margin-bottom: 20px;
            font-size: 2.2rem;
        }
        .search-box {
            max-width: 700px;
            margin: 0 auto;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        }
        .search-box input {
            flex: 1;
            padding: 18px 25px;
            border: none;
            font-size: 1.1rem;
            outline: none;
        }
        .search-box button {
            background: var(--accent);
            color: white;
            border: none;
            padding: 0 35px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: var(--transition);
        }
        .search-box button:hover {
            background: #2e8b47;
        }
        main {
            padding: 40px 0;
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 50px;
        }
        article {
            background: white;
            padding: 0;
        }
        .article-header {
            margin-bottom: 35px;
            border-bottom: 1px solid #eee;
            padding-bottom: 25px;
        }
        .article-header h1 {
            font-size: 2.8rem;
            line-height: 1.2;
            color: var(--dark);
            margin-bottom: 15px;
        }
        .meta {
            display: flex;
            gap: 20px;
            color: var(--gray);
            font-size: 0.95rem;
        }
        .meta i {
            margin-right: 7px;
        }
        .featured-img {
            width: 100%;
            border-radius: 12px;
            overflow: hidden;
            margin: 30px 0 40px;
            box-shadow: var(--shadow);
        }
        .featured-img img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        .featured-img:hover img {
            transform: scale(1.03);
        }
        .content h2 {
            font-size: 2rem;
            margin: 45px 0 20px;
            color: var(--dark);
            padding-bottom: 10px;
            border-bottom: 2px solid var(--secondary);
        }
        .content h3 {
            font-size: 1.6rem;
            margin: 35px 0 15px;
            color: #333;
        }
        .content p {
            margin-bottom: 22px;
            font-size: 1.1rem;
            color: #444;
        }
        .content strong {
            color: var(--dark);
            font-weight: 700;
        }
        .highlight-box {
            background: var(--secondary);
            border-left: 5px solid var(--primary);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .time-table {
            background: white;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: var(--shadow);
            border: 1px solid #e0e0e0;
        }
        .time-table h3 {
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .time-table ul {
            list-style: none;
            margin-top: 15px;
        }
        .time-table li {
            padding: 15px;
            border-bottom: 1px dashed #eee;
            display: flex;
            justify-content: space-between;
        }
        .time-table li:last-child {
            border-bottom: none;
        }
        .league {
            font-weight: bold;
            color: var(--dark);
        }
        .match {
            flex-grow: 1;
            margin: 0 20px;
        }
        .time {
            background: var(--accent);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: 600;
        }
        .interactive-section {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            border: 1px solid #e0e0e0;
        }
        .interactive-section h3 {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--primary);
        }
        .rating {
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 20px 0;
        }
        .stars {
            color: #ffc107;
            font-size: 1.5rem;
        }
        .btn {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 12px 28px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
        }
        .btn:hover {
            background: #0d62d9;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(26, 115, 232, 0.3);
        }
        form {
            margin-top: 25px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }
        input, textarea, select {
            width: 100%;
            padding: 14px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
        }
        aside {
            position: sticky;
            top: 120px;
            height: fit-content;
        }
        .sidebar-widget {
            background: white;
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: var(--shadow);
            border: 1px solid #eee;
        }
        .sidebar-widget h3 {
            color: var(--primary);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--secondary);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .quick-links a {
            display: block;
            padding: 12px 15px;
            margin-bottom: 10px;
            background: var(--light);
            border-radius: 8px;
            text-decoration: none;
            color: var(--dark);
            transition: var(--transition);
            border-left: 4px solid transparent;
        }
        .quick-links a:hover {
            background: var(--secondary);
            border-left-color: var(--primary);
            padding-left: 20px;
        }
        .todays-highlight {
            background: linear-gradient(135deg, #1a73e8, #0d47a1);
            color: white;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
        }
        .todays-highlight .time {
            font-size: 2.5rem;
            font-weight: 900;
            margin: 15px 0;
        }
        .footer-links {
            background: var(--dark);
            padding: 50px 0 30px;
            margin-top: 60px;
        }
        .web-link {
            display: inline-block;
            background: rgba(255,255,255,0.05);
            margin: 10px 15px 10px 0;
            padding: 12px 25px;
            border-radius: 30px;
            transition: var(--transition);
        }
        .web-link a {
            color: #e8f0fe;
            text-decoration: none;
            font-size: 1rem;
        }
        .web-link:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-3px);
        }
        footer {
            background: #0f1419;
            color: #bdc1c6;
            padding: 40px 0 30px;
            text-align: center;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h4 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        .footer-section a {
            color: #bdc1c6;
            text-decoration: none;
            display: block;
            margin-bottom: 12px;
            transition: var(--transition);
        }
        .footer-section a:hover {
            color: white;
            padding-left: 5px;
        }
        .copyright {
            border-top: 1px solid #3c4043;
            padding-top: 25px;
            font-size: 0.95rem;
            color: #9aa0a6;
        }
        @media (max-width: 1024px) {
            main {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            aside {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
            }
            nav {
                display: none;
                width: 100%;
                order: 3;
                margin-top: 20px;
            }
            nav.active {
                display: block;
            }
            nav ul {
                flex-direction: column;
                gap: 0;
            }
            nav li {
                border-bottom: 1px solid #eee;
            }
            nav a {
                display: block;
                padding: 15px 0;
            }
            .hamburger {
                display: block;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
            .search-box {
                flex-direction: column;
                border-radius: 12px;
            }
            .search-box input, .search-box button {
                width: 100%;
                border-radius: 0;
                padding: 18px;
            }
            .time-table li {
                flex-direction: column;
                gap: 10px;
            }
            .match {
                margin: 10px 0;
            }
            .footer-content {
                flex-direction: column;
                text-align: left;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            .article-header h1 {
                font-size: 1.9rem;
            }
            .content h2 {
                font-size: 1.7rem;
            }
            .meta {
                flex-direction: column;
                gap: 10px;
            }
        }
