        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-color: #1a365d;
            --secondary-color: #e53e3e;
            --accent-color: #38b2ac;
            --text-color: #2d3748;
            --light-bg: #f7fafc;
            --dark-bg: #1a202c;
            --border-color: #e2e8f0;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-color);
            background-color: #fff;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary-color);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 6px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
        }
        .btn:hover {
            background-color: var(--secondary-color);
            transform: translateY(-2px);
        }
        .section-padding {
            padding: 60px 0;
        }
        .site-header {
            background-color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        .my-logo {
            font-size: 28px;
            font-weight: 800;
            color: var(--primary-color);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i {
            color: var(--secondary-color);
        }
        .my-logo:hover {
            color: var(--primary-color);
        }
        .breadcrumb {
            background-color: var(--light-bg);
            padding: 15px 0;
            font-size: 0.9rem;
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 10px;
            color: #718096;
        }
        .main-nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-links a {
            font-weight: 600;
            font-size: 1rem;
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary-color);
            transition: var(--transition);
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 24px;
            background: none;
            border: none;
            cursor: pointer;
            color: var(--primary-color);
        }
        .search-form {
            display: flex;
            margin-left: 30px;
        }
        .search-input {
            padding: 10px 15px;
            border: 2px solid var(--border-color);
            border-radius: 6px 0 0 6px;
            width: 250px;
            outline: none;
        }
        .search-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
        }
        .hero {
            background: linear-gradient(135deg, var(--primary-color), #2d3748);
            color: white;
            padding: 80px 0;
            text-align: center;
            margin-bottom: 40px;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 40px;
            margin-bottom: 60px;
        }
        .article-content h1 {
            font-size: 2.8rem;
            color: var(--primary-color);
            margin-bottom: 25px;
            line-height: 1.2;
        }
        .article-content h2 {
            font-size: 2.2rem;
            color: var(--primary-color);
            margin: 45px 0 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid var(--accent-color);
        }
        .article-content h3 {
            font-size: 1.8rem;
            color: var(--text-color);
            margin: 35px 0 15px;
        }
        .article-content h4 {
            font-size: 1.4rem;
            color: var(--text-color);
            margin: 25px 0 10px;
        }
        .article-content p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .article-content strong {
            color: var(--primary-color);
            font-weight: 700;
        }
        .highlight-box {
            background-color: var(--light-bg);
            border-left: 5px solid var(--accent-color);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .match-schedule {
            background-color: white;
            border: 2px solid var(--border-color);
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: var(--shadow);
        }
        .schedule-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        .schedule-table th {
            background-color: var(--primary-color);
            color: white;
            padding: 15px;
            text-align: left;
        }
        .schedule-table td {
            padding: 15px;
            border-bottom: 1px solid var(--border-color);
        }
        .schedule-table tr:hover {
            background-color: var(--light-bg);
        }
        .info-card {
            background: linear-gradient(to right, #f0f9ff, #e6f7ff);
            border-radius: 12px;
            padding: 25px;
            margin: 30px 0;
            border: 2px solid #bae6fd;
        }
        .featured-image {
            margin: 40px 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .featured-image figcaption {
            padding: 15px;
            background-color: var(--light-bg);
            font-style: italic;
            color: #4a5568;
            text-align: center;
        }
        .sidebar {
            background-color: var(--light-bg);
            padding: 25px;
            border-radius: 12px;
            height: fit-content;
            position: sticky;
            top: 100px;
        }
        .sidebar-widget {
            margin-bottom: 35px;
        }
        .sidebar-widget h3 {
            color: var(--primary-color);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--border-color);
        }
        .related-links ul {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--border-color);
        }
        .related-links li:last-child {
            border-bottom: none;
        }
        .interactive-section {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            box-shadow: var(--shadow);
            border: 2px solid var(--border-color);
        }
        .rating-system {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 20px;
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 28px;
            color: #e2e8f0;
            cursor: pointer;
        }
        .stars i:hover,
        .stars i.active {
            color: #f6ad55;
        }
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            min-height: 150px;
            margin-bottom: 15px;
            font-family: inherit;
            resize: vertical;
        }
        .site-footer {
            background-color: var(--dark-bg);
            color: white;
            padding: 60px 0 30px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 20px;
            color: white;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 20px 0;
        }
        friend-link {
            display: inline-block;
            background-color: rgba(255, 255, 255, 0.1);
            padding: 8px 16px;
            border-radius: 6px;
            transition: var(--transition);
        }
        friend-link:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }
        friend-link a {
            color: white;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #a0aec0;
        }
        .last-updated {
            background-color: var(--light-bg);
            padding: 15px;
            border-radius: 8px;
            margin: 30px 0;
            display: flex;
            align-items: center;
            gap: 10px;
            font-style: italic;
        }
        @media (max-width: 1024px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            .article-content h1 {
                font-size: 2.2rem;
            }
            .article-content h2 {
                font-size: 1.8rem;
            }
            .nav-links {
                position: fixed;
                top: 80px;
                left: 0;
                background-color: white;
                width: 100%;
                flex-direction: column;
                padding: 20px;
                box-shadow: var(--shadow);
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: var(--transition);
                z-index: 999;
            }
            .nav-links.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            .hamburger {
                display: block;
            }
            .search-form {
                margin-left: 0;
                margin-top: 20px;
                width: 100%;
            }
            .search-input {
                width: 100%;
            }
            .header-top {
                flex-wrap: wrap;
            }
        }
        @media (max-width: 480px) {
            .hero {
                padding: 50px 0;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .section-padding {
                padding: 40px 0;
            }
            .interactive-section {
                padding: 20px;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
        @media print {
            .site-header, .sidebar, .interactive-section, .site-footer {
                display: none;
            }
            .article-content {
                width: 100%;
            }
        }
