:root {
            --primary-blue: #003366;
            --secondary-red: #d22730;
            --accent-gold: #ffcc00;
            --light-bg: #f8f9fa;
            --dark-text: #222222;
            --gray-border: #dee2e6;
            --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: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--dark-text);
            background-color: #fff;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0,0,0,0);
            border: 0;
        }
        .site-header {
            background: linear-gradient(135deg, var(--primary-blue) 0%, #002244 100%);
            color: white;
            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 a {
            font-size: 1.8rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo-icon {
            color: var(--accent-gold);
        }
        .logo-text {
            background: linear-gradient(to right, #fff, var(--accent-gold));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            font-weight: 600;
            padding: 0.5rem 0;
            border-bottom: 2px solid transparent;
        }
        .main-nav a:hover,
        .main-nav a:focus {
            color: var(--accent-gold);
            border-bottom-color: var(--accent-gold);
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .search-box {
            display: flex;
            margin-left: 2rem;
        }
        .search-box input {
            padding: 0.5rem 1rem;
            border: none;
            border-radius: 4px 0 0 4px;
            width: 200px;
        }
        .search-box button {
            background-color: var(--secondary-red);
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
        }
        .search-box button:hover {
            background-color: #b02028;
        }
        .breadcrumb {
            background-color: var(--light-bg);
            padding: 1rem 0;
            border-bottom: 1px solid var(--gray-border);
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '/';
            margin-left: 0.5rem;
            color: #666;
        }
        .breadcrumb a:hover {
            color: var(--secondary-red);
        }
        main {
            padding: 2rem 0 4rem;
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 3px solid var(--accent-gold);
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 2rem;
            color: #666;
            font-size: 0.95rem;
        }
        .article-meta span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .article-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        .content-main {
            font-size: 1.1rem;
        }
        .content-sidebar {
            border-left: 1px solid var(--gray-border);
            padding-left: 2rem;
        }
        .content-main h2 {
            color: var(--primary-blue);
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent-gold);
            font-size: 1.8rem;
        }
        .content-main h3 {
            color: #333;
            margin: 2rem 0 1rem;
            font-size: 1.4rem;
        }
        .content-main p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .content-main emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        .highlight-box {
            background-color: #e9f7fe;
            border-left: 4px solid var(--primary-blue);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-card {
            background: white;
            border: 1px solid var(--gray-border);
            border-radius: 8px;
            padding: 1.5rem;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--secondary-red);
            display: block;
        }
        .figure-img {
            margin: 2.5rem auto;
            max-width: 800px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .figure-img img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }
        .figure-img:hover img {
            transform: scale(1.03);
        }
        .figcaption {
            text-align: center;
            font-style: italic;
            color: #666;
            padding: 0.8rem;
            background-color: var(--light-bg);
        }
        .link-list {
            list-style: none;
            margin: 2rem 0;
            padding-left: 0;
        }
        .link-list li {
            margin-bottom: 0.8rem;
            padding-left: 1.5rem;
            position: relative;
        }
        .link-list li::before {
            content: '⚽';
            position: absolute;
            left: 0;
        }
        .link-list a {
            color: var(--secondary-red);
            font-weight: 600;
        }
        .link-list a:hover {
            text-decoration: underline;
        }
        .sidebar-widget {
            background: var(--light-bg);
            border-radius: 8px;
            padding: 1.5rem;
            margin-bottom: 2rem;
            border: 1px solid var(--gray-border);
        }
        .sidebar-widget h3 {
            color: var(--primary-blue);
            margin-bottom: 1.2rem;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .ticket-alert {
            background: linear-gradient(135deg, #ffcc00, #ff9900);
            color: #222;
            padding: 1.2rem;
            border-radius: 8px;
            text-align: center;
            margin-bottom: 1.5rem;
        }
        .ticket-alert h4 {
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
        }
        .interaction-section {
            margin-top: 4rem;
            border-top: 2px solid var(--accent-gold);
            padding-top: 2rem;
        }
        .interaction-section h2 {
            text-align: center;
            margin-bottom: 2rem;
        }
        .rating-widget {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            margin-bottom: 3rem;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
        }
        .stars .active {
            color: var(--accent-gold);
        }
        .comment-form, .rating-form {
            background: var(--light-bg);
            padding: 2rem;
            border-radius: 8px;
            margin-bottom: 2rem;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-control {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid var(--gray-border);
            border-radius: 4px;
            font-family: inherit;
            font-size: 1rem;
        }
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        .btn {
            background-color: var(--secondary-red);
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: inline-block;
        }
        .btn:hover {
            background-color: #b02028;
            transform: translateY(-2px);
        }
        .btn-block {
            width: 100%;
        }
        .footer-links {
            background-color: #f1f5f9;
            padding: 3rem 0;
            border-top: 1px solid var(--gray-border);
            border-bottom: 1px solid var(--gray-border);
        }
        .web-link {
            background: white;
            padding: 1.2rem;
            margin-bottom: 1rem;
            border-radius: 6px;
            border-left: 4px solid var(--primary-blue);
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateX(5px);
            box-shadow: var(--shadow);
        }
        .web-link a {
            color: var(--dark-text);
            font-weight: 600;
        }
        .web-link a:hover {
            color: var(--secondary-red);
        }
        .site-footer {
            background-color: var(--primary-blue);
            color: white;
            padding: 3rem 0 1.5rem;
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
        }
        .footer-logo {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }
        .footer-nav ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        .footer-nav a:hover {
            color: var(--accent-gold);
        }
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #ccc;
            font-size: 0.9rem;
        }
        .schema-data {
            display: none;
        }
        @media (max-width: 992px) {
            .article-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .content-sidebar {
                border-left: none;
                border-top: 1px solid var(--gray-border);
                padding-left: 0;
                padding-top: 2rem;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .main-nav {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 80%;
                height: calc(100vh - 70px);
                background: var(--primary-blue);
                flex-direction: column;
                padding: 2rem;
                transition: left 0.4s ease;
                box-shadow: 2px 0 10px rgba(0,0,0,0.2);
            }
            .main-nav.active {
                left: 0;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 1.5rem;
            }
            .hamburger {
                display: block;
            }
            .search-box {
                margin-left: 0;
                margin-top: 1.5rem;
                width: 100%;
            }
            .search-box input {
                width: 100%;
            }
            .header-container {
                flex-wrap: wrap;
            }
            .footer-container {
                flex-direction: column;
            }
            .footer-nav ul {
                flex-direction: column;
                gap: 1rem;
            }
            .article-meta {
                flex-direction: column;
                gap: 0.5rem;
                align-items: center;
            }
        }
