        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-green: #1a5d1a;
            --secondary-red: #d62828;
            --festive-gold: #ffd700;
            --light-bg: #f8f9fa;
            --dark-text: #2c3e50;
            --light-text: #ecf0f1;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #fff;
            color: var(--dark-text);
            line-height: 1.7;
            max-width: 100%;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul {
            list-style: none;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: var(--primary-green);
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            text-align: center;
        }
        .btn:hover {
            background: var(--secondary-red);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        .section-padding {
            padding: 60px 0;
        }
        .section-title {
            font-size: 2.2rem;
            margin-bottom: 2rem;
            color: var(--primary-green);
            position: relative;
            padding-bottom: 10px;
            text-align: center;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--festive-gold);
        }
        .site-header {
            background: linear-gradient(135deg, var(--primary-green), #0f3c0f);
            color: var(--light-text);
            padding: 15px 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;
            color: var(--festive-gold);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            font-size: 2rem;
        }
        .nav-desktop ul {
            display: flex;
            gap: 30px;
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 4px;
        }
        .nav-desktop a:hover {
            background: rgba(255, 215, 0, 0.2);
            color: var(--festive-gold);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--festive-gold);
        }
        .nav-mobile {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background: var(--primary-green);
            padding: 20px;
            transform: translateY(-150%);
            transition: transform 0.5s ease;
            z-index: 999;
            box-shadow: 0 10px 15px rgba(0,0,0,0.2);
        }
        .nav-mobile.active {
            transform: translateY(0);
        }
        .nav-mobile ul {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .nav-mobile a {
            display: block;
            padding: 15px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            font-weight: 600;
        }
        .nav-mobile a:hover {
            background: rgba(255, 215, 0, 0.1);
            padding-left: 25px;
        }
        .breadcrumb {
            background: var(--light-bg);
            padding: 15px 0;
            font-size: 0.9rem;
            margin-bottom: 30px;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin-left: 10px;
            color: #777;
        }
        .breadcrumb a:hover {
            color: var(--secondary-red);
            text-decoration: underline;
        }
        .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1600679472829-0578bc4966ea?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 80px 20px;
            border-radius: 0 0 20px 20px;
            margin-bottom: 40px;
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--festive-gold);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        .search-box {
            max-width: 600px;
            margin: 40px auto;
            padding: 20px;
            background: white;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        .search-box h3 {
            margin-bottom: 15px;
            color: var(--primary-green);
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 15px;
            border: 2px solid #ddd;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
        }
        .search-form button {
            background: var(--primary-green);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: var(--secondary-red);
        }
        .content-area {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .main-article {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
            font-size: 0.9rem;
            color: #666;
        }
        .article-meta i {
            margin-right: 8px;
            color: var(--primary-green);
        }
        .article-content h2 {
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
            color: var(--primary-green);
            border-left: 5px solid var(--festive-gold);
            padding-left: 15px;
        }
        .article-content h3 {
            font-size: 1.5rem;
            margin: 1.8rem 0 1rem;
            color: #2c3e50;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.05rem;
        }
        .article-content strong {
            color: var(--secondary-red);
            font-weight: 700;
        }
        .article-content em {
            background: linear-gradient(transparent 60%, rgba(255, 215, 0, 0.3) 60%);
            font-style: normal;
            font-weight: 600;
        }
        .feature-img {
            width: 100%;
            margin: 30px 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        .feature-img img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }
        .feature-img:hover img {
            transform: scale(1.03);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: 10px;
            font-size: 0.9rem;
        }
        .internal-link {
            color: var(--primary-green);
            font-weight: 600;
            border-bottom: 2px dotted var(--primary-green);
        }
        .internal-link:hover {
            color: var(--secondary-red);
            border-bottom-style: solid;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        .sidebar-title {
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: var(--primary-green);
            padding-bottom: 10px;
            border-bottom: 3px solid var(--festive-gold);
        }
        .match-list li {
            padding: 15px;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .match-list li:hover {
            background: #f9f9f9;
        }
        .match-time {
            font-weight: 600;
            color: var(--secondary-red);
        }
        .interactive-section {
            background: var(--light-bg);
            padding: 40px;
            border-radius: 12px;
            margin-top: 50px;
        }
        .rating-box, .comment-box {
            margin-bottom: 40px;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
        }
        .star {
            font-size: 2rem;
            color: #ccc;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: var(--festive-gold);
        }
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            margin-bottom: 15px;
            min-height: 150px;
            resize: vertical;
        }
        .comment-form input {
            width: 100%;
            padding: 15px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            margin-bottom: 15px;
        }
        .footer-links {
            background: #2c3e50;
            padding: 50px 0 30px;
            color: white;
        }
        .web-link {
            display: inline-block;
            background: rgba(255,255,255,0.1);
            padding: 12px 25px;
            margin: 8px;
            border-radius: 30px;
            transition: var(--transition);
        }
        .web-link:hover {
            background: var(--festive-gold);
            color: var(--dark-text);
            transform: translateY(-5px);
        }
        .links-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            margin-bottom: 30px;
        }
        .site-footer {
            background: #1a252f;
            color: #bbb;
            text-align: center;
            padding: 30px 0;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }
        .social-links {
            display: flex;
            gap: 20px;
            font-size: 1.5rem;
        }
        .social-links a:hover {
            color: var(--festive-gold);
            transform: scale(1.2);
        }
        .copyright {
            font-size: 0.9rem;
            color: #888;
        }
        @media (max-width: 992px) {
            .content-area {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .section-title {
                font-size: 1.9rem;
            }
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .header-container {
                padding: 0 15px;
            }
            .hero {
                padding: 60px 20px;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input {
                border-radius: 8px;
                margin-bottom: 10px;
            }
            .search-form button {
                border-radius: 8px;
                padding: 15px;
            }
            .article-content h2 {
                font-size: 1.6rem;
            }
            .interactive-section {
                padding: 25px;
            }
        }
        @media (max-width: 576px) {
            .section-padding {
                padding: 40px 0;
            }
            .main-article, .sidebar-widget {
                padding: 20px;
            }
            .article-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            .stars {
                justify-content: center;
            }
            .star {
                font-size: 1.7rem;
            }
        }
