        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-green: #1e7e34;
            --secondary-blue: #0056b3;
            --accent-orange: #fd7e14;
            --dark-bg: #0a290a;
            --light-bg: #f8f9fa;
            --text-dark: #212529;
            --text-light: #f8f9fa;
            --border-color: #dee2e6;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background-color: var(--light-bg);
            overflow-x: hidden;
        }
        h1, h2, h3, h4 {
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 1rem;
            color: var(--dark-bg);
        }
        h1 {
            font-size: 2.5rem;
            background: linear-gradient(90deg, var(--primary-green), var(--secondary-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        h2 {
            font-size: 2rem;
            border-left: 5px solid var(--accent-orange);
            padding-left: 1rem;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.5rem;
            color: var(--secondary-blue);
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        a {
            color: var(--secondary-blue);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary-green);
            text-decoration: underline;
        }
        .highlight {
            background-color: rgba(30, 126, 52, 0.1);
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        .section {
            padding: 3rem 0;
        }
        header {
            background-color: var(--dark-bg);
            color: var(--text-light);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .logo a:hover {
            text-decoration: none;
            color: var(--accent-orange);
        }
        .logo i {
            color: var(--accent-orange);
        }
        .nav-desktop ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-desktop a {
            color: var(--text-light);
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .nav-desktop a:hover,
        .nav-desktop a.active {
            background-color: var(--primary-green);
            text-decoration: none;
        }
        .nav-mobile {
            display: none;
        }
        .hamburger {
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            display: none;
        }
        .mobile-menu {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background-color: var(--dark-bg);
            padding: 1rem;
            transform: translateY(-100%);
            opacity: 0;
            transition: var(--transition);
            z-index: 999;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        .mobile-menu.active {
            transform: translateY(0);
            opacity: 1;
        }
        .mobile-menu ul {
            list-style: none;
        }
        .mobile-menu li {
            margin-bottom: 1rem;
        }
        .mobile-menu a {
            color: white;
            font-size: 1.2rem;
            display: block;
            padding: 0.8rem;
            border-radius: 4px;
        }
        .mobile-menu a:hover {
            background-color: var(--primary-green);
            text-decoration: none;
        }
        .breadcrumb {
            background-color: #e9f5e9;
            padding: 1rem 0;
            margin-bottom: 2rem;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '/';
            margin-left: 0.5rem;
            color: #6c757d;
        }
        .search-container {
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-blue));
            padding: 2rem;
            border-radius: 12px;
            margin: 2rem 0;
            color: white;
            text-align: center;
        }
        .search-container h3 {
            color: white;
            margin-bottom: 1rem;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
            gap: 0.5rem;
        }
        .search-input {
            flex: 1;
            padding: 0.9rem 1.2rem;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            box-shadow: var(--shadow);
        }
        .search-btn {
            background-color: var(--accent-orange);
            color: white;
            border: none;
            padding: 0 1.8rem;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-btn:hover {
            background-color: #e06c00;
            transform: translateY(-2px);
        }
        .hero-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 12px;
            margin: 2rem 0;
            box-shadow: var(--shadow);
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            align-items: start;
        }
        .article-content {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        .intro {
            font-size: 1.2rem;
            font-weight: 500;
            color: var(--secondary-blue);
            border-left: 4px solid var(--accent-orange);
            padding-left: 1.5rem;
            margin-bottom: 2.5rem;
        }
        .match-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2.5rem 0;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
            border-radius: 10px;
            overflow: hidden;
        }
        .match-table th {
            background-color: var(--primary-green);
            color: white;
            padding: 1.2rem;
            text-align: left;
        }
        .match-table td {
            padding: 1.2rem;
            border-bottom: 1px solid var(--border-color);
        }
        .match-table tr:hover {
            background-color: #f1f9f1;
        }
        .match-table .league {
            font-weight: 600;
            color: var(--secondary-blue);
        }
        .match-table .time {
            font-weight: 600;
            color: var(--accent-orange);
        }
        .sidebar {
            position: sticky;
            top: 100px;
        }
        .sidebar-widget {
            background: white;
            padding: 1.8rem;
            border-radius: 12px;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            font-size: 1.3rem;
            margin-bottom: 1.2rem;
            padding-bottom: 0.8rem;
            border-bottom: 2px solid var(--border-color);
        }
        .interactive-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .comment-box, .rating-box {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: #ffc107;
        }
        .star {
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover {
            transform: scale(1.2);
        }
        textarea, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 1rem;
            margin-bottom: 1rem;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
        }
        textarea:focus, input:focus {
            outline: none;
            border-color: var(--primary-green);
            box-shadow: 0 0 0 3px rgba(30, 126, 52, 0.2);
        }
        .submit-btn {
            background: linear-gradient(to right, var(--primary-green), var(--secondary-blue));
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(0, 86, 179, 0.3);
        }
        .footer-links {
            background-color: #eef5ee;
            padding: 3rem 0;
            margin-top: 3rem;
        }
        .web-link-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: white;
            padding: 1.2rem;
            border-radius: 8px;
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
        }
        footer {
            background-color: var(--dark-bg);
            color: var(--text-light);
            padding: 3rem 0 1.5rem;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #adb5bd;
        }
        @media (max-width: 992px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                padding: 0 1rem;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .mobile-menu {
                display: block;
            }
            .search-form {
                flex-direction: column;
            }
            .search-btn {
                justify-content: center;
                padding: 0.9rem;
            }
            .article-content {
                padding: 1.5rem;
            }
            .interactive-container {
                grid-template-columns: 1fr;
            }
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
        }
        @media (max-width: 576px) {
            .container {
                padding: 0 1rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .hero-image {
                height: 250px;
            }
            .match-table {
                display: block;
                overflow-x: auto;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
        .pulse {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        .text-center {
            text-align: center;
        }
        .mt-1 { margin-top: 1rem; }
        .mt-2 { margin-top: 2rem; }
        .mt-3 { margin-top: 3rem; }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .mb-3 { margin-bottom: 3rem; }
        .flex {
            display: flex;
            align-items: center;
        }
        .gap-1 { gap: 1rem; }
