:root {
            --primary-green: #1e7e34;
            --dark-green: #0d5628;
            --accent-orange: #fd7e14;
            --light-bg: #f8f9fa;
            --dark-text: #212529;
            --light-text: #6c757d;
            --border-color: #dee2e6;
            --white: #ffffff;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--dark-text);
            background-color: var(--white);
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: var(--primary-green);
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-orange);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: var(--white);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--dark-green);
            display: flex;
            align-items: center;
        }
        .logo i {
            color: var(--accent-orange);
            margin-right: 10px;
        }
        .search-form {
            display: flex;
            flex: 0 1 400px;
        }
        .search-input {
            flex-grow: 1;
            padding: 10px 15px;
            border: 2px solid var(--border-color);
            border-radius: 4px 0 0 4px;
            font-size: 1rem;
        }
        .search-btn {
            background-color: var(--primary-green);
            color: var(--white);
            border: none;
            padding: 0 20px;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-btn:hover {
            background-color: var(--dark-green);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--dark-green);
            cursor: pointer;
        }
        .breadcrumb {
            padding: 0.8rem 0;
            background-color: var(--light-bg);
            font-size: 0.9rem;
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb a {
            color: var(--light-text);
        }
        .breadcrumb a:hover {
            color: var(--primary-green);
        }
        .breadcrumb span {
            color: var(--light-text);
            margin: 0 5px;
        }
        .main-nav {
            background-color: var(--dark-green);
        }
        .nav-list {
            display: flex;
            list-style: none;
        }
        .nav-list li {
            position: relative;
        }
        .nav-list a {
            display: block;
            color: var(--white);
            padding: 15px 20px;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
        }
        .nav-list a:hover {
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--white);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 30px;
            padding: 30px 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-header {
            margin-bottom: 2rem;
        }
        .article-header h1 {
            font-size: 2.5rem;
            color: var(--dark-green);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .meta-info {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
            color: var(--light-text);
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--border-color);
        }
        .meta-info span i {
            margin-right: 5px;
        }
        .featured-image {
            width: 100%;
            margin-bottom: 2rem;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        .featured-image:hover img {
            transform: scale(1.03);
        }
        .image-caption {
            padding: 10px;
            background-color: var(--light-bg);
            font-size: 0.9rem;
            color: var(--light-text);
            text-align: center;
        }
        .article-body {
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .article-body p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .article-body h2 {
            font-size: 1.8rem;
            color: var(--dark-green);
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary-green);
        }
        .article-body h3 {
            font-size: 1.5rem;
            color: var(--dark-text);
            margin: 2rem 0 1rem;
        }
        .article-body ul, .article-body ol {
            margin-bottom: 1.5rem;
            padding-left: 2rem;
        }
        .article-body li {
            margin-bottom: 0.5rem;
        }
        .article-body blockquote {
            border-left: 4px solid var(--accent-orange);
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: var(--light-text);
            background-color: var(--light-bg);
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
        }
        .highlight-box {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-left: 5px solid var(--primary-green);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
            box-shadow: var(--shadow);
        }
        .highlight-box h4 {
            color: var(--dark-green);
            margin-bottom: 0.5rem;
            font-size: 1.3rem;
        }
        .inline-link {
            font-weight: 700;
            border-bottom: 2px dotted var(--primary-green);
        }
        .inline-link:hover {
            border-bottom-style: solid;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .sidebar {
            background-color: var(--light-bg);
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 2rem;
        }
        .sidebar-widget:last-child {
            margin-bottom: 0;
        }
        .sidebar-widget h3 {
            font-size: 1.3rem;
            color: var(--dark-green);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--border-color);
        }
        .live-matches ul {
            list-style: none;
        }
        .live-matches li {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid var(--border-color);
        }
        .live-matches li:last-child {
            border-bottom: none;
        }
        .match-teams {
            font-weight: 600;
        }
        .match-score {
            color: var(--accent-orange);
            font-weight: 700;
        }
        .live-indicator {
            display: inline-block;
            width: 8px;
            height: 8px;
            background-color: #dc3545;
            border-radius: 50%;
            margin-right: 5px;
            animation: pulse 1.5s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.5; }
            100% { opacity: 1; }
        }
        .interactive-section {
            background-color: var(--white);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 2rem;
            margin: 3rem 0;
            box-shadow: var(--shadow);
        }
        .interactive-section h2 {
            color: var(--dark-green);
            margin-bottom: 1.5rem;
            text-align: center;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-control {
            padding: 12px;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-control:focus {
            outline: none;
            border-color: var(--primary-green);
            box-shadow: 0 0 0 3px rgba(30, 126, 52, 0.1);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            font-size: 1.8rem;
            gap: 5px;
            margin-bottom: 1rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label {
            color: #ffc107;
        }
        .btn {
            display: inline-block;
            background-color: var(--primary-green);
            color: var(--white);
            padding: 12px 24px;
            border: none;
            border-radius: 4px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }
        .btn:hover {
            background-color: var(--dark-green);
            color: var(--white);
        }
        .footer-links {
            background-color: var(--dark-green);
            padding: 2rem 0;
            margin-top: 3rem;
        }
        .web-link-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
        }
        .web-link {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 12px 15px;
            border-radius: 4px;
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }
        .web-link a {
            color: var(--white);
            display: block;
            font-weight: 600;
        }
        .web-link a:hover {
            color: var(--accent-orange);
        }
        .site-footer {
            background-color: var(--dark-text);
            color: var(--light-text);
            padding: 2rem 0;
            text-align: center;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        .social-links {
            display: flex;
            gap: 1rem;
        }
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--white);
            transition: var(--transition);
        }
        .social-links a:hover {
            background-color: var(--primary-green);
            transform: translateY(-3px);
        }
        .copyright {
            font-size: 0.9rem;
            line-height: 1.5;
        }
        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
            }
            .search-form {
                order: 3;
                flex: 1 1 100%;
                margin-top: 15px;
            }
            .mobile-menu-btn {
                display: block;
            }
            .main-nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                box-shadow: var(--shadow);
            }
            .main-nav.active {
                display: block;
            }
            .nav-list {
                flex-direction: column;
            }
            .nav-list a {
                padding: 15px 20px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            .article-header h1 {
                font-size: 2rem;
            }
            .article-body {
                font-size: 1rem;
            }
            .interactive-section {
                padding: 1.5rem;
            }
            .sidebar {
                position: static;
            }
        }
