        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-blue: #0037A1;
            --secondary-gold: #D4AF37;
            --dark-bg: #0A1428;
            --light-bg: #F5F7FA;
            --text-dark: #1A1A1A;
            --text-light: #F0F0F0;
            --accent-red: #E63946;
            --accent-green: #2A9D8F;
            --shadow: 0 4px 12px rgba(0, 55, 161, 0.1);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background-color: var(--light-bg);
            overflow-x: hidden;
        }
        a {
            color: inherit;
            text-decoration: none;
            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);
            white-space: nowrap;
            border: 0;
        }
        .site-header {
            background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-blue) 100%);
            color: var(--text-light);
            padding: 1rem 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: 1.8rem;
            font-weight: 800;
            background: linear-gradient(to right, var(--secondary-gold), #FFF);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .logo a:hover {
            opacity: 0.9;
        }
        .breadcrumb {
            font-size: 0.9rem;
            margin-top: 0.5rem;
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: var(--secondary-gold);
        }
        .breadcrumb span {
            margin: 0 5px;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            padding: 0.5rem 0;
            position: relative;
            font-weight: 600;
        }
        .nav-desktop a:hover {
            color: var(--secondary-gold);
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary-gold);
            transition: width 0.3s;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--text-light);
            border-radius: 2px;
            transition: var(--transition);
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: var(--dark-bg);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 10px 15px rgba(0,0,0,0.2);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 0.8rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .nav-mobile a:hover {
            background: rgba(255,255,255,0.05);
            color: var(--secondary-gold);
        }
        .search-container {
            margin: 2rem auto;
            max-width: 600px;
        }
        .search-form {
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .search-input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            font-size: 1rem;
        }
        .search-btn {
            background: var(--primary-blue);
            color: white;
            border: none;
            padding: 0 1.8rem;
            cursor: pointer;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        .search-btn:hover {
            background: var(--secondary-gold);
            color: var(--dark-bg);
        }
        main {
            padding: 2rem 0 4rem;
        }
        article {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            padding: 2.5rem;
        }
        .article-header {
            text-align: center;
            margin-bottom: 2.5rem;
            padding-bottom: 2rem;
            border-bottom: 3px solid var(--secondary-gold);
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .meta-info {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            color: #666;
            font-size: 0.95rem;
            flex-wrap: wrap;
        }
        .meta-info span i {
            margin-right: 0.5rem;
            color: var(--secondary-gold);
        }
        .content-section {
            margin-bottom: 3rem;
        }
        .content-section h2 {
            font-size: 2rem;
            color: var(--dark-bg);
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed var(--primary-blue);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .content-section h2 i {
            color: var(--secondary-gold);
        }
        .content-section h3 {
            font-size: 1.6rem;
            color: var(--primary-blue);
            margin: 1.8rem 0 1rem;
        }
        .content-section p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0) 100%);
            padding: 1.5rem;
            border-left: 4px solid var(--secondary-gold);
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .stats-grid {
            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;
            text-align: center;
            border-top: 4px solid var(--primary-blue);
            transition: var(--transition);
        }
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }
        .stat-card .number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-blue);
            line-height: 1;
        }
        .featured-image {
            margin: 2.5rem auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            max-width: 900px;
        }
        .featured-image figcaption {
            padding: 0.8rem;
            background: var(--light-bg);
            font-size: 0.9rem;
            color: #555;
            text-align: center;
        }
        .internal-links {
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .internal-links h4 {
            margin-bottom: 1rem;
            color: var(--dark-bg);
        }
        .internal-links ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .internal-links li a {
            background: white;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            border: 1px solid #ddd;
            font-size: 0.9rem;
            display: inline-block;
        }
        .internal-links li a:hover {
            background: var(--primary-blue);
            color: white;
            border-color: var(--primary-blue);
        }
        .quote {
            font-style: italic;
            font-size: 1.2rem;
            color: var(--dark-bg);
            text-align: center;
            padding: 2rem;
            border-top: 2px solid var(--secondary-gold);
            border-bottom: 2px solid var(--secondary-gold);
            margin: 2.5rem 0;
            position: relative;
        }
        .quote::before, .quote::after {
            content: '"';
            font-size: 4rem;
            color: var(--secondary-gold);
            opacity: 0.3;
            position: absolute;
        }
        .quote::before {
            top: 0;
            left: 20px;
        }
        .quote::after {
            bottom: -20px;
            right: 20px;
        }
        .key-player {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            background: linear-gradient(to right, #f8f9fa, white);
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
            border-left: 5px solid var(--accent-red);
        }
        .player-img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--secondary-gold);
        }
        .interactive-section {
            background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-blue) 100%);
            color: white;
            padding: 2.5rem;
            border-radius: 15px;
            margin: 3rem 0;
            text-align: center;
        }
        .rating-container {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1.5rem 0;
            flex-wrap: wrap;
        }
        .star {
            font-size: 2rem;
            cursor: pointer;
            color: #555;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: var(--secondary-gold);
            transform: scale(1.2);
        }
        .btn {
            display: inline-block;
            padding: 0.8rem 2rem;
            background: var(--secondary-gold);
            color: var(--dark-bg);
            border: none;
            border-radius: 50px;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            margin: 0.5rem;
        }
        .btn:hover {
            background: white;
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(0,0,0,0.2);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid var(--secondary-gold);
            color: var(--secondary-gold);
        }
        .btn-outline:hover {
            background: var(--secondary-gold);
            color: var(--dark-bg);
        }
        .comment-form textarea,
        .score-form select {
            width: 100%;
            padding: 1rem;
            border-radius: 10px;
            border: 1px solid #ccc;
            font-family: inherit;
            font-size: 1rem;
            margin: 1rem 0;
            resize: vertical;
        }
        .comments-section {
            margin-top: 3rem;
        }
        .comment {
            background: var(--light-bg);
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 1.5rem;
            border-left: 4px solid var(--primary-blue);
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.8rem;
            font-size: 0.9rem;
            color: #666;
        }
        .web-links-container {
            background: var(--dark-bg);
            color: white;
            padding: 3rem 0;
            margin-top: 4rem;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: rgba(255,255,255,0.05);
            padding: 1.2rem;
            border-radius: 8px;
            transition: var(--transition);
        }
        .web-link:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-3px);
        }
        .web-link a {
            color: var(--text-light);
            display: block;
        }
        .web-link a:hover {
            color: var(--secondary-gold);
        }
        .site-footer {
            background: #000;
            color: #aaa;
            text-align: center;
            padding: 2rem 0;
            font-size: 0.9rem;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        .footer-links {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            justify-content: center;
        }
        .footer-links a:hover {
            color: var(--secondary-gold);
        }
        @media (max-width: 992px) {
            .article-header h1 {
                font-size: 2.2rem;
            }
            .content-section h2 {
                font-size: 1.8rem;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .nav-desktop {
                display: none;
            }
            .header-container {
                flex-wrap: wrap;
            }
            .article-header h1 {
                font-size: 1.9rem;
            }
            .content-section h2 {
                font-size: 1.6rem;
            }
            article {
                padding: 1.5rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .key-player {
                flex-direction: column;
                text-align: center;
            }
            .internal-links ul {
                flex-direction: column;
                gap: 0.8rem;
            }
            .interactive-section {
                padding: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .article-header h1 {
                font-size: 1.7rem;
            }
            .meta-info {
                flex-direction: column;
                gap: 0.5rem;
                align-items: center;
            }
            .search-form {
                flex-direction: column;
                border-radius: 10px;
            }
            .search-btn {
                padding: 1rem;
            }
        }
