        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: #333;
            background-color: #f8f9fa;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 15px;
        }
        a {
            text-decoration: none;
            color: #0056b3;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #003d82;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            padding-right: 15px;
            padding-left: 15px;
            margin-right: auto;
            margin-left: auto;
        }
        .site-header {
            background: linear-gradient(135deg, #0d3c6a 0%, #1a6eb3 100%);
            color: white;
            padding: 1.5rem 0;
            margin-bottom: 2rem;
            border-radius: 0 0 10px 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            color: white;
            display: flex;
            align-items: center;
        }
        .logo i {
            margin-right: 10px;
            color: #ffd700;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .main-nav li {
            margin-left: 1.8rem;
        }
        .main-nav a {
            color: #e6f2ff;
            font-weight: 600;
            padding: 0.5rem 0;
            border-bottom: 2px solid transparent;
        }
        .main-nav a:hover,
        .main-nav a.active {
            color: #ffd700;
            border-bottom-color: #ffd700;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #666;
            background-color: #f1f1f1;
            border-radius: 5px;
            margin-bottom: 2rem;
            padding-left: 1rem;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .search-container {
            background-color: #e9ecef;
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 2.5rem;
            text-align: center;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex-grow: 1;
            padding: 0.8rem 1rem;
            border: 2px solid #ccc;
            border-radius: 5px 0 0 5px;
            font-size: 1rem;
        }
        .search-btn {
            background-color: #28a745;
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            font-size: 1rem;
            transition: background-color 0.3s;
        }
        .search-btn:hover {
            background-color: #218838;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        .article-content {
            background-color: white;
            padding: 2.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .sidebar {
            background-color: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        h1 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: #0d3c6a;
            line-height: 1.3;
            border-bottom: 3px solid #ffd700;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
            color: #1a6eb3;
            padding-left: 10px;
            border-left: 4px solid #1a6eb3;
        }
        h3 {
            font-size: 1.4rem;
            margin: 1.5rem 0 0.8rem;
            color: #333;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 500;
            color: #555;
            background-color: #f8f9fa;
            padding: 1rem;
            border-left: 4px solid #28a745;
            margin-bottom: 2rem;
        }
        .highlight {
            background-color: #fff3cd;
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 5px solid #ffc107;
            margin: 1.5rem 0;
        }
        .stats-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }
        .stat-card {
            background: linear-gradient(to bottom right, #e9ecef, #dee2e6);
            padding: 1.5rem;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 3px 6px rgba(0,0,0,0.1);
        }
        .stat-card h4 {
            color: #0d3c6a;
            margin-bottom: 0.5rem;
        }
        .stat-card p {
            font-size: 2rem;
            font-weight: bold;
            color: #1a6eb3;
            margin: 0;
        }
        .standings-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        .standings-table th {
            background-color: #1a6eb3;
            color: white;
            padding: 1rem;
            text-align: left;
            font-weight: 600;
        }
        .standings-table td {
            padding: 0.8rem 1rem;
            border-bottom: 1px solid #dee2e6;
        }
        .standings-table tr:nth-child(even) {
            background-color: #f8f9fa;
        }
        .standings-table tr:hover {
            background-color: #e9ecef;
        }
        .btn {
            display: inline-block;
            padding: 0.6rem 1.5rem;
            background-color: #1a6eb3;
            color: white;
            border-radius: 5px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }
        .btn:hover {
            background-color: #0d3c6a;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .comment-form, .rating-form {
            background-color: #f8f9fa;
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-control {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ced4da;
            border-radius: 5px;
            font-size: 1rem;
        }
        .stars {
            display: flex;
            gap: 5px;
            margin: 0.5rem 0;
        }
        .star {
            font-size: 1.5rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffc107;
        }
        .sidebar-widget {
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid #dee2e6;
        }
        .sidebar-widget:last-child {
            border-bottom: none;
        }
        .sidebar-widget h3 {
            font-size: 1.2rem;
            color: #1a6eb3;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #ffd700;
        }
        .related-links ul {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 0.8rem;
            padding-left: 1rem;
            position: relative;
        }
        .related-links li:before {
            content: "⚽";
            position: absolute;
            left: 0;
        }
        .site-footer {
            background-color: #212529;
            color: #adb5bd;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
            border-radius: 10px 10px 0 0;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-logo a {
            color: white;
            font-size: 1.8rem;
            font-weight: 900;
        }
        .footer-links h4 {
            color: white;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.5rem;
        }
        friend-link {
            display: block;
            margin: 1rem 0;
            padding: 1rem;
            background-color: #343a40;
            border-radius: 5px;
        }
        friend-link a {
            color: #adb5bd;
        }
        friend-link a:hover {
            color: white;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #495057;
            font-size: 0.9rem;
            color: #6c757d;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            .main-nav {
                width: 100%;
                margin-top: 1rem;
                display: none;
            }
            .main-nav.active {
                display: block;
            }
            .main-nav ul {
                flex-direction: column;
            }
            .main-nav li {
                margin: 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .main-nav a {
                display: block;
                padding: 0.8rem 0;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 1.5rem;
                right: 15px;
            }
            .logo {
                width: 100%;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .article-content {
                padding: 1.5rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-input {
                border-radius: 5px;
                margin-bottom: 10px;
            }
            .search-btn {
                border-radius: 5px;
                padding: 0.8rem;
            }
        }
