:root {
            --primary-color: #1e3a8a;
            --secondary-color: #dc2626;
            --accent-color: #fbbf24;
            --text-dark: #1f2937;
            --text-light: #6b7280;
            --bg-light: #f9fafb;
            --bg-white: #ffffff;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --border-radius: 12px;
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--bg-light);
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--bg-white);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary-color);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--secondary-color);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            padding: 8px 12px;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }
        .desktop-nav a:hover {
            background-color: var(--primary-color);
            color: white;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: var(--primary-color);
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: var(--bg-white);
            box-shadow: var(--shadow);
            padding: 20px;
            flex-direction: column;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .mobile-nav a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            display: block;
            padding: 12px;
            border-bottom: 1px solid #eee;
        }
        .breadcrumb {
            background-color: var(--bg-white);
            padding: 15px 0;
            margin-bottom: 20px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            gap: 10px;
            flex-wrap: wrap;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-light);
        }
        .breadcrumb a {
            color: var(--primary-color);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb i {
            font-size: 0.8rem;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 30px;
            margin: 30px 0;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: var(--bg-white);
            padding: 40px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .article-header {
            margin-bottom: 30px;
            border-bottom: 3px solid var(--accent-color);
            padding-bottom: 20px;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            gap: 20px;
            color: var(--text-light);
            font-size: 0.95rem;
            flex-wrap: wrap;
        }
        .article-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        h2, h3, h4 {
            color: var(--primary-color);
            margin: 30px 0 15px;
        }
        h2 {
            font-size: 2rem;
            border-left: 5px solid var(--secondary-color);
            padding-left: 15px;
        }
        h3 {
            font-size: 1.6rem;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--primary-color);
            background-color: #e0f2fe;
            padding: 20px;
            border-radius: var(--border-radius);
            border-left: 4px solid var(--primary-color);
        }
        .highlight-box {
            background-color: #fef3c7;
            border: 2px solid var(--accent-color);
            border-radius: var(--border-radius);
            padding: 25px;
            margin: 25px 0;
        }
        .highlight-box h3 {
            margin-top: 0;
            color: #92400e;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: var(--border-radius);
            margin: 25px 0;
            box-shadow: var(--shadow);
            display: block;
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-light);
            margin-top: -15px;
            margin-bottom: 25px;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background: linear-gradient(135deg, var(--primary-color), #1e40af);
            color: white;
            padding: 25px;
            border-radius: var(--border-radius);
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .stat-card:hover {
            transform: translateY(-5px);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 10px;
        }
        .stat-label {
            font-size: 1.1rem;
        }
        blockquote {
            border-left: 5px solid var(--secondary-color);
            padding-left: 25px;
            margin: 30px 0;
            font-style: italic;
            color: var(--text-dark);
            background-color: #fef2f2;
            padding: 25px;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        blockquote::before {
            content: "“";
            font-size: 4rem;
            color: var(--secondary-color);
            line-height: 0;
            vertical-align: -0.4em;
            margin-right: 10px;
        }
        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, var(--secondary-color), #b91c1c);
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            margin: 20px 0;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
        }
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background-color: var(--bg-white);
            padding: 25px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .widget-title {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent-color);
        }
        .match-card {
            background: linear-gradient(135deg, #1e3a8a, #1e40af);
            color: white;
            padding: 20px;
            border-radius: var(--border-radius);
            margin-bottom: 15px;
        }
        .match-teams {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            font-weight: 600;
            font-size: 1.1rem;
        }
        .match-time {
            text-align: center;
            font-size: 1.8rem;
            font-weight: 800;
            margin: 10px 0;
        }
        .match-venue {
            text-align: center;
            font-size: 0.9rem;
            opacity: 0.9;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        label {
            font-weight: 600;
            color: var(--text-dark);
        }
        input, textarea, select {
            padding: 12px 15px;
            border: 2px solid #d1d5db;
            border-radius: var(--border-radius);
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
        }
        .rating-stars {
            display: flex;
            gap: 5px;
            margin: 10px 0;
        }
        .star {
            font-size: 1.8rem;
            color: #d1d5db;
            cursor: pointer;
            transition: var(--transition);
        }
        .star.active {
            color: var(--accent-color);
        }
        .star:hover {
            color: var(--accent-color);
        }
        button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 15px;
            border-radius: var(--border-radius);
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
        }
        button:hover {
            background-color: #1e40af;
            transform: translateY(-2px);
        }
        .web-links-section {
            background-color: var(--bg-white);
            padding: 40px 0;
            margin-top: 40px;
            border-radius: var(--border-radius) var(--border-radius) 0 0;
            box-shadow: var(--shadow);
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background-color: var(--bg-light);
            padding: 15px;
            border-radius: var(--border-radius);
            border-left: 4px solid var(--primary-color);
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateX(5px);
            background-color: #e0f2fe;
        }
        .web-link a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            display: block;
        }
        .web-link a:hover {
            text-decoration: underline;
        }
        footer {
            background-color: var(--primary-color);
            color: white;
            padding: 40px 0 20px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 15px;
        }
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .footer-links a {
            color: #dbeafe;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid #374151;
            color: #d1d5db;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            .article-content {
                padding: 25px;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .breadcrumb ol {
                font-size: 0.9rem;
            }
        }
