        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-blue: #003366;
            --ucl-blue: #0066cc;
            --gold: #d4af37;
            --silver: #c0c0c0;
            --dark-bg: #0a1a2d;
            --light-bg: #f5f7fa;
            --text-dark: #333333;
            --text-light: #ffffff;
            --accent-red: #cc0000;
            --accent-green: #00a859;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --border-radius: 8px;
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background: linear-gradient(135deg, var(--light-bg) 0%, #e6eef7 100%);
            min-height: 100vh;
        }
        h1, h2, h3, h4 {
            color: var(--primary-blue);
            margin-bottom: 1rem;
            font-weight: 700;
            line-height: 1.2;
        }
        h1 {
            font-size: 2.8rem;
            background: linear-gradient(90deg, var(--primary-blue), var(--ucl-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-align: center;
            margin: 2rem 0;
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid var(--gold);
            padding-left: 1rem;
            margin: 3rem 0 1.5rem;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--ucl-blue);
            margin: 2.5rem 0 1rem;
        }
        h4 {
            font-size: 1.4rem;
            color: var(--accent-red);
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        a {
            color: var(--ucl-blue);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-red);
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        .site-header {
            background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-blue) 100%);
            color: var(--text-light);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo a {
            color: var(--text-light);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--gold);
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            color: var(--text-light);
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }
        .nav-desktop a:hover,
        .nav-desktop a.active {
            background: rgba(255, 255, 255, 0.15);
            text-decoration: none;
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--text-light);
            cursor: pointer;
            padding: 0.5rem;
        }
        .nav-mobile {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: var(--dark-bg);
            padding: 1rem;
            flex-direction: column;
            gap: 1rem;
            box-shadow: var(--shadow);
        }
        .nav-mobile.active {
            display: flex;
        }
        .breadcrumb {
            background: var(--light-bg);
            padding: 1rem 2rem;
            margin-bottom: 2rem;
            border-bottom: 1px solid #ddd;
        }
        .breadcrumb ul {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin-left: 0.5rem;
            color: var(--ucl-blue);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 1024px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: var(--text-light);
            padding: 3rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .search-section {
            background: linear-gradient(135deg, var(--ucl-blue), var(--primary-blue));
            padding: 2rem;
            border-radius: var(--border-radius);
            color: var(--text-light);
            margin-bottom: 3rem;
        }
        .search-form {
            display: flex;
            gap: 1rem;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            background: rgba(255, 255, 255, 0.9);
        }
        .search-btn {
            padding: 1rem 2rem;
            background: var(--gold);
            color: var(--dark-bg);
            border: none;
            border-radius: 50px;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-btn:hover {
            background: #ffd700;
            transform: scale(1.05);
        }
        .featured-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: var(--border-radius);
            margin: 2rem 0;
            box-shadow: var(--shadow);
        }
        .highlight-box {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            border-left: 4px solid var(--gold);
            padding: 2rem;
            margin: 2.5rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .stat-card {
            background: var(--text-light);
            border-radius: var(--border-radius);
            padding: 1.5rem;
            margin: 1.5rem 0;
            box-shadow: var(--shadow);
            border-top: 4px solid var(--ucl-blue);
            transition: var(--transition);
        }
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        .table-section {
            overflow-x: auto;
            margin: 3rem 0;
        }
        .league-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--text-light);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .league-table th {
            background: linear-gradient(135deg, var(--primary-blue), var(--dark-bg));
            color: var(--text-light);
            padding: 1.2rem;
            text-align: left;
            font-weight: 700;
        }
        .league-table tr:nth-child(even) {
            background: #f8f9fa;
        }
        .league-table td {
            padding: 1rem 1.2rem;
            border-bottom: 1px solid #eee;
        }
        .league-table tr:hover {
            background: #e3f2fd;
        }
        .fixtures-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .fixture-card {
            background: var(--text-light);
            border-radius: var(--border-radius);
            padding: 1.5rem;
            box-shadow: var(--shadow);
            border: 1px solid #e0e0e0;
            transition: var(--transition);
        }
        .fixture-card:hover {
            border-color: var(--ucl-blue);
            transform: translateY(-3px);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: var(--text-light);
            padding: 2rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-input, .form-textarea {
            padding: 1rem;
            border: 2px solid #ddd;
            border-radius: var(--border-radius);
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: var(--ucl-blue);
            box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(135deg, var(--ucl-blue), var(--primary-blue));
            color: var(--text-light);
            padding: 1rem 2rem;
            border: none;
            border-radius: var(--border-radius);
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
        }
        .submit-btn:hover {
            opacity: 0.9;
            transform: translateY(-2px);
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
        }
        .star-rating .star:hover,
        .star-rating .star.active {
            color: var(--gold);
        }
        .footer-links {
            background: var(--light-bg);
            padding: 3rem 2rem;
            border-top: 2px solid var(--ucl-blue);
            border-bottom: 1px solid #ddd;
        }
        .web-link {
            display: inline-block;
            margin: 0.5rem 1rem;
            padding: 0.5rem 1rem;
            background: var(--text-light);
            border-radius: 20px;
            border: 1px solid #ddd;
            transition: var(--transition);
        }
        .web-link:hover {
            background: var(--ucl-blue);
            color: var(--text-light);
            border-color: var(--ucl-blue);
            transform: translateY(-2px);
        }
        .site-footer {
            background: var(--dark-bg);
            color: var(--text-light);
            padding: 3rem 2rem;
            text-align: center;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .copyright {
            color: var(--silver);
            font-size: 0.9rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        @media (max-width: 768px) {
            .container {
                padding: 0 1rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .header-container {
                flex-wrap: wrap;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .article-content {
                padding: 2rem 1.5rem;
            }
            .search-form {
                flex-direction: column;
            }
            .fixtures-grid {
                grid-template-columns: 1fr;
            }
            .league-table {
                font-size: 0.9rem;
            }
            .featured-image {
                height: 250px;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .widget {
                padding: 1.5rem;
            }
            .web-link {
                display: block;
                margin: 0.5rem 0;
                text-align: center;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 0.6s ease-out;
        }
        .text-center { text-align: center; }
        .text-bold { font-weight: 700; }
        .text-gold { color: var(--gold); }
        .text-blue { color: var(--ucl-blue); }
        .mb-2 { margin-bottom: 2rem; }
        .mb-3 { margin-bottom: 3rem; }
        .mt-2 { margin-top: 2rem; }
        .mt-3 { margin-top: 3rem; }
        .emoji { font-size: 1.2em; margin-right: 5px; }
