        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #1e3a8a;
            --secondary: #dc2626;
            --accent: #f59e0b;
            --light: #f8fafc;
            --dark: #0f172a;
            --gray: #64748b;
            --border: #e2e8f0;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        body {
            background-color: #fff;
            color: var(--dark);
            line-height: 1.7;
            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: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: var(--primary);
            color: white;
            border-radius: 6px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
        }
        .btn:hover {
            background: var(--secondary);
            transform: translateY(-3px);
        }
        .section-title {
            font-size: 2.2rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            padding-bottom: 0.75rem;
            border-bottom: 3px solid var(--accent);
            position: relative;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 100px;
            height: 3px;
            background: var(--secondary);
        }
        header {
            background-color: var(--light);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            padding: 1rem 0;
            border-bottom: 1px solid var(--border);
        }
        .header-top .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 900;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--secondary);
        }
        .search-form {
            flex-grow: 1;
            max-width: 500px;
            margin: 0 2rem;
            position: relative;
        }
        .search-form input {
            width: 100%;
            padding: 12px 20px;
            border: 2px solid var(--border);
            border-radius: 30px;
            font-size: 1rem;
            outline: none;
        }
        .search-form button {
            position: absolute;
            right: 8px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            cursor: pointer;
        }
        .mobile-toggle {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--primary);
        }
        nav {
            background-color: var(--dark);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            position: relative;
        }
        .nav-links a {
            display: block;
            padding: 1rem 1.5rem;
            color: white;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
        }
        .nav-links a:hover,
        .nav-links a.active {
            background-color: var(--secondary);
            color: white;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #f1f5f9;
            font-size: 0.9rem;
        }
        .breadcrumb .container {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb a {
            color: var(--primary);
        }
        .breadcrumb a:hover {
            color: var(--secondary);
        }
        .breadcrumb i {
            margin: 0 5px;
            color: var(--gray);
            font-size: 0.8rem;
        }
        .hero {
            padding: 3rem 0;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            text-align: center;
            border-bottom: 5px solid var(--primary);
        }
        .hero h1 {
            font-size: 3rem;
            color: var(--dark);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 800px;
            margin: 0 auto 2rem;
        }
        .highlight {
            background-color: #fff3cd;
            padding: 2rem;
            border-radius: 10px;
            border-left: 5px solid var(--accent);
            margin: 2rem 0;
        }
        .highlight h2 {
            color: var(--secondary);
            margin-bottom: 1rem;
        }
        main {
            padding: 3rem 0;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        .article-content {
            font-size: 1.1rem;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .article-content h2 {
            font-size: 1.8rem;
            color: var(--primary);
            margin: 2.5rem 0 1.5rem;
            padding-left: 10px;
            border-left: 5px solid var(--secondary);
        }
        .article-content h3 {
            font-size: 1.5rem;
            color: var(--dark);
            margin: 2rem 0 1rem;
        }
        .article-content ul, .article-content ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        .article-content li {
            margin-bottom: 0.5rem;
        }
        .info-box {
            background-color: var(--light);
            padding: 1.5rem;
            border-radius: 10px;
            border: 1px solid var(--border);
            margin: 2rem 0;
        }
        .match-card {
            background: white;
            border-radius: 10px;
            padding: 1.5rem;
            margin: 1.5rem 0;
            box-shadow: var(--shadow);
            border-top: 4px solid var(--primary);
        }
        .match-card h4 {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--secondary);
            margin-bottom: 1rem;
        }
        .teams {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.3rem;
            font-weight: bold;
            margin: 1rem 0;
        }
        .vs {
            background: var(--accent);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
        }
        .match-meta {
            display: flex;
            justify-content: space-between;
            color: var(--gray);
            font-size: 0.95rem;
            margin-top: 1rem;
        }
        .featured-image {
            margin: 2rem 0;
            text-align: center;
        }
        .featured-image figcaption {
            font-style: italic;
            color: var(--gray);
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        .internal-links {
            background-color: #f8fafc;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .internal-links h3 {
            color: var(--primary);
            margin-bottom: 1rem;
        }
        .internal-links ul {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 0.8rem;
            list-style: none;
            margin-left: 0;
        }
        .internal-links a {
            color: var(--dark);
            padding: 0.5rem;
            display: block;
            border-radius: 5px;
            border-left: 3px solid var(--primary);
            background: white;
        }
        .internal-links a:hover {
            background-color: #e0f2fe;
            border-left-color: var(--secondary);
        }
        .sidebar {
            position: sticky;
            top: 120px;
            height: fit-content;
        }
        .sidebar-widget {
            background: white;
            border-radius: 10px;
            padding: 1.5rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            color: var(--primary);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--border);
        }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--dark);
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 10px;
            border: 1px solid var(--border);
            border-radius: 5px;
            font-size: 1rem;
        }
        .stars {
            display: flex;
            gap: 5px;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            margin: 5px 0;
        }
        .stars .active {
            color: var(--accent);
        }
        .quick-links ul {
            list-style: none;
        }
        .quick-links li {
            margin-bottom: 0.8rem;
        }
        .quick-links a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 0.8rem;
            background: var(--light);
            border-radius: 5px;
        }
        .quick-links a:hover {
            background-color: #dbeafe;
            color: var(--primary);
        }
        .footer-links-section {
            background-color: var(--light);
            padding: 3rem 0;
            border-top: 1px solid var(--border);
        }
        .web-link {
            background: white;
            padding: 1.2rem;
            margin-bottom: 1rem;
            border-radius: 8px;
            border-left: 4px solid var(--primary);
            transition: var(--transition);
        }
        .web-link:hover {
            border-left-color: var(--secondary);
            transform: translateX(5px);
            box-shadow: var(--shadow);
        }
        .web-link a {
            font-weight: 600;
            color: var(--dark);
            display: block;
        }
        .web-link a:hover {
            color: var(--primary);
        }
        footer {
            background-color: var(--dark);
            color: white;
            padding: 3rem 0 1.5rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 900;
            margin-bottom: 1rem;
            color: white;
        }
        .footer-links h4 {
            color: var(--accent);
            margin-bottom: 1.2rem;
            font-size: 1.2rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.7rem;
        }
        .footer-links a {
            color: #cbd5e1;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #334155;
            color: #94a3b8;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
        }
        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }
            .nav-links {
                position: fixed;
                top: 100px;
                left: -100%;
                width: 280px;
                height: calc(100vh - 100px);
                background-color: var(--dark);
                flex-direction: column;
                transition: 0.5s;
                z-index: 999;
                padding-top: 1rem;
            }
            .nav-links.active {
                left: 0;
            }
            .nav-links a {
                padding: 1rem 2rem;
            }
            .search-form {
                margin: 1rem 0;
                max-width: 100%;
            }
            .header-top .container {
                flex-wrap: wrap;
            }
            .teams {
                flex-direction: column;
                gap: 1rem;
            }
            .match-meta {
                flex-direction: column;
                gap: 0.5rem;
            }
            .hero h1 {
                font-size: 2rem;
            }
        }
