* { 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.6;
            color: #333;
            background-color: #f8f9fa;
            max-width: 100%;
            overflow-x: hidden;
        }
        img { max-width: 100%; height: auto; display: block; }
        a { text-decoration: none; color: #0066cc; transition: color 0.3s; }
        a:hover { color: #004d99; }
        ul, ol { padding-left: 2em; margin: 1em 0; }
        h1, h2, h3, h4 { font-family: 'Arial Black', 'Arial Bold', Gadget, sans-serif; color: #0d3b66; margin-top: 1.5em; margin-bottom: 0.5em; line-height: 1.2; }
        h1 { font-size: clamp(2rem, 5vw, 3rem); border-bottom: 4px solid #e63946; padding-bottom: 0.3em; }
        h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); border-left: 5px solid #1d3557; padding-left: 15px; }
        h3 { font-size: clamp(1.2rem, 3vw, 1.8rem); color: #457b9d; }
        p { margin-bottom: 1.5em; text-align: justify; }
        .lead { font-size: 1.2em; font-weight: 600; color: #1d3557; }
        .highlight { background-color: #fffacd; padding: 0.2em 0.4em; border-radius: 3px; }
        strong, b { color: #1d3557; }
        em { font-style: italic; }
        blockquote {
            border-left: 4px solid #e63946;
            padding-left: 1.5em;
            margin: 2em 1em;
            font-style: italic;
            color: #555;
            background-color: #f1faee;
            padding: 1.5em;
            border-radius: 0 8px 8px 0;
        }
        hr { border: none; height: 2px; background: linear-gradient(to right, transparent, #1d3557, transparent); margin: 3em 0; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #0d3b66 0%, #1d3557 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 900;
            color: #f1faee;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo span { color: #e63946; }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: #f1faee;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .desktop-nav a:hover, .desktop-nav a.active {
            background-color: rgba(229, 57, 70, 0.8);
            color: white;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: #1d3557;
            flex-direction: column;
            padding: 1rem;
            box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        }
        .mobile-nav.active { display: flex; }
        .mobile-nav ul { list-style: none; width: 100%; }
        .mobile-nav li { margin: 0.8rem 0; }
        .mobile-nav a {
            color: white;
            display: block;
            padding: 0.8rem;
            border-bottom: 1px solid #457b9d;
        }
        .breadcrumb {
            background-color: #f1faee;
            padding: 1rem 0;
            margin-bottom: 2rem;
            border-bottom: 1px solid #a8dadc;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li { margin-right: 0.5rem; }
        .breadcrumb li:not(:last-child)::after { content: '›'; margin-left: 0.5rem; color: #666; }
        .breadcrumb a { color: #555; }
        .breadcrumb a:hover { color: #e63946; }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2rem 0;
        }
        @media (max-width: 768px) {
            .main-content { grid-template-columns: 1fr; }
        }
        article { background: white; padding: 2.5rem; border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
        .sidebar { background: white; padding: 1.5rem; border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); align-self: start; }
        .sidebar-widget { margin-bottom: 2rem; }
        .sidebar-widget h3 { font-size: 1.3rem; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid #a8dadc; }
        .search-form { display: flex; }
        .search-form input {
            flex-grow: 1;
            padding: 0.8rem;
            border: 2px solid #a8dadc;
            border-radius: 4px 0 0 4px;
            font-size: 1rem;
        }
        .search-form button {
            background-color: #1d3557;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover { background-color: #0d3b66; }
        .featured-image {
            margin: 2rem 0;
            text-align: center;
        }
        .featured-image img {
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            border: 5px solid white;
        }
        .img-caption {
            font-style: italic;
            color: #666;
            margin-top: 0.5rem;
            font-size: 0.9em;
        }
        .article-section { margin-bottom: 3rem; }
        .key-points {
            background-color: #f1faee;
            border-left: 5px solid #2a9d8f;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .key-points ul { list-style: none; padding-left: 0; }
        .key-points li { margin-bottom: 0.8rem; padding-left: 1.5em; position: relative; }
        .key-points li::before { content: '⚽'; position: absolute; left: 0; }
        .fixture-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        }
        .fixture-table th, .fixture-table td {
            border: 1px solid #ddd;
            padding: 0.8rem;
            text-align: left;
        }
        .fixture-table th {
            background-color: #1d3557;
            color: white;
            font-weight: 600;
        }
        .fixture-table tr:nth-child(even) { background-color: #f9f9f9; }
        .fixture-table tr:hover { background-color: #e9f7f9; }
        .interactive-section { margin-top: 4rem; padding-top: 2rem; border-top: 3px dashed #a8dadc; }
        .rating-widget, .comment-widget {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 10px;
            margin-bottom: 2rem;
        }
        .rating-widget h3, .comment-widget h3 { color: #0d3b66; }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 2rem;
            color: #ddd;
        }
        .star-rating .star {
            cursor: pointer;
            transition: color 0.2s, transform 0.2s;
        }
        .star-rating .star:hover { transform: scale(1.2); }
        .star-rating .star.active, .star-rating .star:hover, .star-rating .star.hover { color: #ffc107; }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1rem;
        }
        .rating-form input, .comment-form input, .comment-form textarea {
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-family: inherit;
            font-size: 1rem;
        }
        .comment-form textarea { min-height: 150px; resize: vertical; }
        .form-btn {
            background-color: #e63946;
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1.1rem;
            transition: background 0.3s;
            align-self: flex-start;
        }
        .form-btn:hover { background-color: #d00000; }
        .internal-links {
            background-color: #1d3557;
            color: white;
            padding: 3rem 0;
            margin-top: 4rem;
        }
        .internal-links h2 {
            color: #f1faee;
            border-left-color: #e63946;
            margin-bottom: 1.5rem;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 1.5rem;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.1);
            padding: 1.2rem;
            border-radius: 6px;
            transition: background 0.3s, transform 0.3s;
        }
        .web-link:hover {
            background: rgba(229, 57, 70, 0.2);
            transform: translateY(-5px);
        }
        .web-link a {
            color: #a8dadc;
            font-weight: 600;
            display: block;
        }
        .web-link a:hover { color: white; }
        footer {
            background-color: #0d3b66;
            color: #f1faee;
            text-align: center;
            padding: 2rem 0;
        }
        .copyright { margin-top: 1rem; font-size: 0.9em; color: #a8dadc; }
        @media (max-width: 1024px) {
            .main-content { gap: 2rem; }
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .hamburger { display: block; }
            .header-container { padding: 0 15px; }
            article, .sidebar { padding: 1.5rem; }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.6rem; }
        }
        @media (max-width: 480px) {
            .container { padding: 0 15px; }
            .web-links-grid { grid-template-columns: 1fr; }
            .fixture-table { font-size: 0.9em; }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in { animation: fadeIn 0.8s ease-out; }
