:root {
            --primary-blue: #1e3a8a;
            --accent-gold: #d4af37;
            --light-bg: #f8fafc;
            --dark-text: #1e293b;
            --gray-border: #cbd5e1;
            --success-green: #10b981;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }
        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 ease;
        }
        a:hover {
            color: var(--accent-gold);
        }
        .header {
            background: linear-gradient(135deg, var(--primary-blue) 0%, #0f172a 100%);
            color: white;
            padding: 1rem 5%;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .logo a {
            color: white;
            font-size: 1.8rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--accent-gold);
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-desktop a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            transition: width 0.3s ease;
        }
        .nav-desktop a:hover:after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: var(--primary-blue);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: var(--shadow);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: white;
            padding: 0.75rem 1rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            background: #e2e8f0;
            padding: 0.75rem 5%;
            font-size: 0.9rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        .breadcrumb a {
            color: #475569;
        }
        .breadcrumb span {
            color: #64748b;
        }
        .container {
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 5%;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 1024px) {
            .container {
                grid-template-columns: 1fr;
            }
        }
        .main-content {
            background: white;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: var(--shadow);
        }
        .article-header {
            border-bottom: 3px solid var(--accent-gold);
            padding-bottom: 1.5rem;
            margin-bottom: 2.5rem;
        }
        h1 {
            color: var(--primary-blue);
            font-size: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
        }
        .article-meta {
            display: flex;
            gap: 1rem;
            color: #64748b;
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
        }
        .article-meta i {
            margin-right: 0.5rem;
        }
        .featured-image {
            width: 100%;
            border-radius: 10px;
            overflow: hidden;
            margin: 2rem 0;
            position: relative;
        }
        .featured-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        .featured-image:hover img {
            transform: scale(1.03);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #64748b;
            padding: 0.5rem;
            font-size: 0.9rem;
        }
        h2, h3, h4 {
            color: var(--primary-blue);
            margin: 2rem 0 1rem;
            line-height: 1.3;
        }
        h2 {
            font-size: 1.8rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e2e8f0;
        }
        h3 {
            font-size: 1.5rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
            border-left: 4px solid var(--accent-gold);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .schedule-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            box-shadow: var(--shadow);
        }
        .schedule-table th {
            background: var(--primary-blue);
            color: white;
            padding: 1rem;
            text-align: left;
        }
        .schedule-table td {
            padding: 1rem;
            border-bottom: 1px solid var(--gray-border);
        }
        .schedule-table tr:hover {
            background: #f1f5f9;
        }
        .match-card {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            gap: 2rem;
            padding: 1.5rem;
            background: #f8fafc;
            border-radius: 10px;
            margin: 1.5rem 0;
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }
        .match-card:hover {
            border-color: var(--accent-gold);
            transform: translateY(-3px);
        }
        .team {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .team.logo {
            font-size: 2rem;
        }
        .vs {
            font-weight: 900;
            color: var(--accent-gold);
            font-size: 1.5rem;
        }
        .related-links {
            list-style: none;
            margin: 2rem 0;
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .related-links li {
            background: #e2e8f0;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .related-links li:hover {
            background: var(--primary-blue);
        }
        .related-links li:hover a {
            color: white;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: var(--shadow);
        }
        .widget h3 {
            margin-top: 0;
            color: var(--primary-blue);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .search-box {
            display: flex;
            margin-top: 1rem;
        }
        .search-box input {
            flex: 1;
            padding: 0.85rem;
            border: 2px solid var(--gray-border);
            border-right: none;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
        }
        .search-box button {
            background: var(--primary-blue);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .search-box button:hover {
            background: #0f172a;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: #e2e8f0;
            cursor: pointer;
        }
        .stars i:hover,
        .stars i.active {
            color: var(--accent-gold);
        }
        .score-btn {
            background: var(--success-green);
            color: white;
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s ease;
            width: 100%;
        }
        .score-btn:hover {
            background: #0da271;
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid var(--gray-border);
            border-radius: 8px;
            resize: vertical;
            min-height: 120px;
            margin: 1rem 0;
            font-size: 1rem;
        }
        .comment-form button {
            background: var(--primary-blue);
            color: white;
            border: none;
            padding: 0.85rem 2rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s ease;
            width: 100%;
        }
        .comment-form button:hover {
            background: #0f172a;
        }
        .footer {
            background: #0f172a;
            color: white;
            padding: 3rem 5% 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 2rem;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: white;
        }
        .footer-links h4 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.75rem;
        }
        .footer-links a {
            color: #cbd5e1;
        }
        .footer-links a:hover {
            color: var(--accent-gold);
        }
        friend-link {
            display: block;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #334155;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #334155;
            color: #94a3b8;
            font-size: 0.9rem;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        .bold {
            font-weight: 800;
            color: var(--primary-blue);
        }
        .text-center {
            text-align: center;
        }
        .mb-3 {
            margin-bottom: 3rem;
        }
