        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #00529F;
            --secondary: #DC4405;
            --accent: #6CACE4;
            --dark: #1A1A2E;
            --light: #F8F9FA;
            --gray: #6C757D;
            --success: #28A745;
            --border-radius: 8px;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: var(--light);
            overflow-x: hidden;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        .site-header {
            background-color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--secondary);
        }
        .logo a {
            color: inherit;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .desktop-nav a {
            font-weight: 600;
            padding: 8px 5px;
            position: relative;
        }
        .desktop-nav a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--secondary);
            transition: var(--transition);
        }
        .desktop-nav a:hover:after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary);
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            background: white;
            padding: 20px;
            border-top: 1px solid #eee;
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin-bottom: 15px;
        }
        .mobile-nav a {
            display: block;
            padding: 10px;
            background: #f9f9f9;
            border-radius: var(--border-radius);
            font-weight: 600;
        }
        .breadcrumb {
            padding: 15px 0;
            background: #f1f5f9;
            font-size: 0.9rem;
        }
        .breadcrumb ul {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child):after {
            content: '/';
            margin-left: 10px;
            color: var(--gray);
        }
        .hero {
            background: linear-gradient(135deg, var(--primary), #003366);
            color: white;
            padding: 40px 0;
            text-align: center;
            margin-bottom: 30px;
            border-radius: var(--border-radius);
        }
        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        .search-form {
            max-width: 600px;
            margin: 30px auto 0;
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 15px 20px;
            border: none;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            font-size: 1rem;
        }
        .search-form button {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
        }
        .search-form button:hover {
            background: #c03a04;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 40px 0;
        }
        .article-content {
            background: white;
            padding: 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .article-content h2, .article-content h3 {
            color: var(--dark);
            margin: 1.5em 0 0.8em;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--accent);
        }
        .article-content p {
            margin-bottom: 1.2em;
            text-align: justify;
        }
        .article-content strong {
            color: var(--primary);
        }
        .highlight-box {
            background: #e8f4ff;
            border-left: 5px solid var(--primary);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .match-card {
            background: #f8f9fa;
            border: 1px solid #dee2e6;
            border-radius: var(--border-radius);
            padding: 20px;
            margin: 25px 0;
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            text-align: center;
            gap: 20px;
        }
        .team {
            font-weight: bold;
            font-size: 1.1rem;
        }
        .vs {
            font-weight: 900;
            color: var(--secondary);
            font-size: 1.5rem;
        }
        .featured-img {
            margin: 30px auto;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        .featured-img figcaption {
            text-align: center;
            font-style: italic;
            padding: 10px;
            background: #f8f9fa;
            color: var(--gray);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background: white;
            padding: 25px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .widget h3 {
            color: var(--primary);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent);
        }
        .live-score {
            list-style: none;
        }
        .live-score li {
            padding: 12px 0;
            border-bottom: 1px dashed #dee2e6;
            display: flex;
            justify-content: space-between;
        }
        .live-score li:last-child {
            border-bottom: none;
        }
        .user-interaction {
            margin-top: 40px;
            padding-top: 30px;
            border-top: 2px solid #eee;
        }
        .rating-section, .comment-section {
            background: white;
            padding: 25px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin-bottom: 30px;
        }
        .star-rating {
            display: flex;
            gap: 10px;
            margin: 15px 0;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
        }
        .star-rating .star:hover,
        .star-rating .star.active {
            color: #FFC107;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }
        .form-group input, .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ced4da;
            border-radius: var(--border-radius);
            font-family: inherit;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: var(--border-radius);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .submit-btn:hover {
            background: #003d82;
        }
        .web-links-section {
            background: #f1f5f9;
            padding: 40px 0;
            margin-top: 50px;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
        }
        .web-link {
            background: white;
            padding: 15px;
            border-radius: var(--border-radius);
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            text-align: center;
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .site-footer {
            background: var(--dark);
            color: white;
            padding: 50px 0 20px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-column h4 {
            color: var(--accent);
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        .footer-column ul {
            list-style: none;
        }
        .footer-column li {
            margin-bottom: 10px;
        }
        .footer-column a {
            color: #b0b7c3;
        }
        .footer-column a:hover {
            color: white;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #2d3748;
            color: #b0b7c3;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            .web-links-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .match-card {
                grid-template-columns: 1fr;
                grid-template-rows: auto auto auto;
                gap: 10px;
            }
            .web-links-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 576px) {
            .search-form {
                flex-direction: column;
            }
            .search-form input, .search-form button {
                width: 100%;
                border-radius: var(--border-radius);
                margin-bottom: 10px;
            }
            .web-links-grid, .footer-content {
                grid-template-columns: 1fr;
            }
        }
