:root {
            --primary-color: #1a5fb4;
            --secondary-color: #e6a919;
            --dark-color: #0d2b5a;
            --light-color: #f8f9fa;
            --text-color: #333;
            --border-radius: 8px;
            --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.7;
            color: var(--text-color);
            background-color: #fff;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        ul, ol {
            list-style-position: inside;
            margin-left: 1rem;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, var(--dark-color), var(--primary-color));
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 10px;
            color: white;
        }
        .logo i {
            color: var(--secondary-color);
        }
        .logo span {
            background: linear-gradient(to right, #fff, var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .main-nav ul {
            display: flex;
            gap: 2rem;
        }
        .main-nav a {
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a:hover {
            color: var(--secondary-color);
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--secondary-color);
            transition: var(--transition);
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .search-form {
            display: flex;
            background: white;
            border-radius: 50px;
            overflow: hidden;
            padding: 5px;
        }
        .search-form input {
            border: none;
            padding: 0.7rem 1rem;
            outline: none;
            flex-grow: 1;
            min-width: 200px;
        }
        .search-form button {
            background: var(--secondary-color);
            color: var(--dark-color);
            border: none;
            padding: 0.7rem 1.5rem;
            cursor: pointer;
            border-radius: 50px;
            font-weight: 600;
        }
        .search-form button:hover {
            background: #ffc107;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: white;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: var(--light-color);
            border-bottom: 1px solid #eee;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            margin: 0;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '/';
            margin: 0 10px;
            color: #999;
        }
        .breadcrumb a:hover {
            color: var(--primary-color);
            text-decoration: underline;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 3rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content h1 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--dark-color);
            line-height: 1.3;
        }
        .article-meta {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
            color: #666;
            font-size: 0.95rem;
        }
        .article-meta span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .article-content h2 {
            font-size: 1.8rem;
            margin: 2.5rem 0 1rem;
            color: var(--primary-color);
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--secondary-color);
        }
        .article-content h3 {
            font-size: 1.4rem;
            margin: 2rem 0 1rem;
            color: var(--dark-color);
        }
        .article-content p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .highlight-box {
            background: linear-gradient(to right, #f0f7ff, #e3f2fd);
            border-left: 5px solid var(--primary-color);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
        }
        .schedule-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            box-shadow: var(--box-shadow);
            border-radius: var(--border-radius);
            overflow: hidden;
        }
        .schedule-table th {
            background: var(--primary-color);
            color: white;
            padding: 1rem;
            text-align: left;
        }
        .schedule-table td {
            padding: 1rem;
            border-bottom: 1px solid #eee;
        }
        .schedule-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        .schedule-table tr:hover {
            background-color: #f0f7ff;
        }
        .points-table-container {
            overflow-x: auto;
            margin: 2.5rem 0;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
        }
        .points-table {
            width: 100%;
            min-width: 700px;
        }
        .points-table th {
            background: var(--dark-color);
            color: white;
            padding: 1rem;
            text-align: center;
        }
        .points-table td {
            padding: 0.8rem 1rem;
            text-align: center;
            border: 1px solid #ddd;
        }
        .team-cell {
            display: flex;
            align-items: center;
            gap: 10px;
            text-align: left !important;
        }
        .team-flag {
            width: 30px;
            height: 20px;
            border-radius: 3px;
            object-fit: cover;
        }
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: var(--border-radius);
            margin: 2rem 0;
            box-shadow: var(--box-shadow);
            transition: transform 0.5s ease;
        }
        .featured-image:hover {
            transform: scale(1.01);
        }
        .related-links {
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            margin: 2.5rem 0;
        }
        .related-links h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        .related-links ul {
            list-style: none;
            margin: 0;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 0.8rem;
        }
        .related-links li {
            margin-bottom: 0.5rem;
        }
        .related-links a {
            color: var(--dark-color);
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 0.5rem;
            border-radius: 5px;
        }
        .related-links a:hover {
            background: white;
            color: var(--primary-color);
            padding-left: 1rem;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        .related-links i {
            color: var(--secondary-color);
        }
        .sidebar-widget {
            background: white;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            margin-bottom: 2rem;
        }
        .sidebar-widget h3 {
            color: var(--primary-color);
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #eee;
        }
        .user-rating {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .stars {
            display: flex;
            gap: 5px;
            font-size: 1.5rem;
            color: #ffc107;
            cursor: pointer;
        }
        .rating-form input, .rating-form textarea, .comment-form input, .comment-form textarea {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: inherit;
        }
        .rating-form button, .comment-form button {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            width: 100%;
        }
        .rating-form button:hover, .comment-form button:hover {
            background: var(--dark-color);
        }
        .comments-section {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 2px solid #eee;
        }
        .comment {
            background: white;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            margin-bottom: 1.5rem;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            border-left: 4px solid var(--primary-color);
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.8rem;
            color: #666;
            font-size: 0.9rem;
        }
        .site-footer {
            background: var(--dark-color);
            color: white;
            padding: 3rem 0 1.5rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2rem;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--secondary-color);
        }
        .footer-links h4 {
            color: var(--secondary-color);
            margin-bottom: 1.2rem;
            font-size: 1.2rem;
        }
        .footer-links ul {
            list-style: none;
            margin: 0;
        }
        .footer-links li {
            margin-bottom: 0.7rem;
        }
        .footer-links a:hover {
            color: var(--secondary-color);
            padding-left: 5px;
        }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.05);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            margin: 2rem 0;
        }
        friend-link h4 {
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }
        friend-link ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1rem;
        }
        friend-link a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 0.5rem;
            border-radius: 5px;
        }
        friend-link a:hover {
            background: rgba(255,255,255,0.1);
            color: var(--secondary-color);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--dark-color);
                padding: 1rem;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }
            .main-nav.active ul {
                display: flex;
            }
            .search-form {
                margin-top: 1rem;
                width: 100%;
            }
            .search-form input {
                min-width: auto;
            }
            .header-container {
                flex-wrap: wrap;
            }
            .article-content h1 {
                font-size: 2rem;
            }
            .article-content h2 {
                font-size: 1.6rem;
            }
        }
        .text-bold {
            font-weight: 700;
        }
        .text-highlight {
            color: var(--primary-color);
            font-weight: 700;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .text-center {
            text-align: center;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
