* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-blue: #1e3a8a;
            --secondary-gold: #d4af37;
            --accent-green: #16a34a;
            --light-bg: #f8fafc;
            --dark-text: #1e293b;
            --gray-border: #cbd5e1;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }
        body {
            color: var(--dark-text);
            background-color: var(--light-bg);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-blue);
            text-decoration: none;
            transition: color 0.3s;
        }
        a:hover {
            color: var(--secondary-gold);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, var(--primary-blue), #0f2c6d);
            color: white;
            padding: 1.2rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo a:hover {
            color: var(--secondary-gold);
        }
        .logo-icon {
            color: var(--secondary-gold);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2.2rem;
        }
        .desktop-nav a {
            color: white;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 0.5rem 0.2rem;
            border-bottom: 2px solid transparent;
        }
        .desktop-nav a:hover,
        .desktop-nav a.active {
            color: var(--secondary-gold);
            border-bottom-color: var(--secondary-gold);
        }
        .mobile-toggle {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: var(--primary-blue);
            padding: 1.5rem;
            margin-top: 1rem;
            border-radius: 0 0 10px 10px;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }
        .mobile-nav a {
            color: white;
            font-weight: 600;
            padding: 0.6rem;
            display: block;
            border-left: 4px solid transparent;
        }
        .mobile-nav a:hover,
        .mobile-nav a.active {
            color: var(--secondary-gold);
            border-left-color: var(--secondary-gold);
            background: rgba(255, 255, 255, 0.05);
        }
        .breadcrumb {
            background: #e2e8f0;
            padding: 1rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 0.7rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin-left: 0.7rem;
            color: #64748b;
        }
        .breadcrumb a {
            color: var(--primary-blue);
        }
        .main-content {
            padding: 2.5rem 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: white;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: var(--shadow);
        }
        article h1 {
            font-size: 2.8rem;
            color: var(--primary-blue);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid var(--secondary-gold);
            padding-bottom: 0.8rem;
        }
        article h2 {
            font-size: 2rem;
            color: var(--primary-blue);
            margin: 2.5rem 0 1.2rem;
            padding-left: 0.8rem;
            border-left: 5px solid var(--accent-green);
        }
        article h3 {
            font-size: 1.5rem;
            color: #334155;
            margin: 2rem 0 1rem;
        }
        article p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background: linear-gradient(120deg, #fef3c7 0%, #fef3c7 100%);
            padding: 1.8rem;
            border-radius: 10px;
            border-left: 5px solid var(--secondary-gold);
            margin: 2rem 0;
            font-size: 1.15rem;
        }
        .stats-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-card {
            background: var(--light-bg);
            padding: 1.5rem;
            border-radius: 10px;
            border-top: 4px solid var(--primary-blue);
            text-align: center;
        }
        .stat-card h4 {
            color: var(--primary-blue);
            margin-bottom: 0.8rem;
        }
        .featured-image {
            margin: 2.5rem 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }
        .featured-image figcaption {
            text-align: center;
            font-style: italic;
            padding: 0.8rem;
            background: #f1f5f9;
            color: #475569;
        }
        .standings-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2.5rem 0;
            box-shadow: 0 0 0 1px var(--gray-border);
            border-radius: 10px;
            overflow: hidden;
        }
        .standings-table thead {
            background: var(--primary-blue);
            color: white;
        }
        .standings-table th {
            padding: 1.2rem 1rem;
            text-align: left;
            font-weight: 700;
        }
        .standings-table tbody tr {
            border-bottom: 1px solid var(--gray-border);
            transition: background 0.3s;
        }
        .standings-table tbody tr:hover {
            background: #f0f9ff;
        }
        .standings-table td {
            padding: 1.2rem 1rem;
        }
        .qualified {
            font-weight: bold;
            color: var(--accent-green);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: white;
            border-radius: 12px;
            padding: 1.8rem;
            box-shadow: var(--shadow);
        }
        .widget h3 {
            color: var(--primary-blue);
            margin-bottom: 1.5rem;
            padding-bottom: 0.7rem;
            border-bottom: 2px solid #e2e8f0;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 0.9rem 1.2rem;
            border: 2px solid var(--gray-border);
            border-right: none;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
        }
        .search-form button {
            background: var(--primary-blue);
            color: white;
            border: none;
            border-radius: 0 8px 8px 0;
            padding: 0 1.5rem;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #0f2c6d;
        }
        .comment-form,
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-group label {
            font-weight: 600;
            color: #475569;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 0.9rem;
            border: 2px solid var(--gray-border);
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary-blue);
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #cbd5e1;
            cursor: pointer;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: var(--secondary-gold);
        }
        .btn-submit {
            background: var(--accent-green);
            color: white;
            border: none;
            padding: 1rem 1.8rem;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            align-self: flex-start;
        }
        .btn-submit:hover {
            background: #15803d;
        }
        .footer-links {
            background: #1e293b;
            padding: 3rem 0;
            margin-top: 3rem;
        }
        .footer-links .container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }
        .web-link {
            background: #334155;
            padding: 1.5rem;
            border-radius: 8px;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background: #475569;
        }
        .web-link a {
            color: #e2e8f0;
            font-weight: 600;
            display: block;
            font-size: 1.05rem;
        }
        .site-footer {
            background: #0f172a;
            color: #cbd5e1;
            text-align: center;
            padding: 2.5rem 0;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        .social-links {
            display: flex;
            gap: 1.5rem;
            font-size: 1.5rem;
        }
        .social-links a {
            color: #cbd5e1;
            transition: color 0.3s;
        }
        .social-links a:hover {
            color: var(--secondary-gold);
        }
        .copyright {
            font-size: 0.95rem;
            color: #94a3b8;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-toggle {
                display: block;
            }
            article {
                padding: 1.8rem;
            }
            article h1 {
                font-size: 2.2rem;
            }
            article h2 {
                font-size: 1.7rem;
            }
            .main-content {
                padding: 1.5rem 0;
                gap: 1.5rem;
            }
            .standings-table {
                font-size: 0.9rem;
            }
            .standings-table th,
            .standings-table td {
                padding: 0.8rem 0.5rem;
            }
        }
