:root {
            --primary-green: #1e7e34;
            --secondary-gold: #ffd700;
            --dark-bg: #0a290a;
            --light-bg: #f8f9fa;
            --text-dark: #212529;
            --text-light: #f8f9fa;
            --accent-blue: #0066cc;
            --border-color: #dee2e6;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background-color: #fff;
            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: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(to right, var(--dark-bg), var(--primary-green));
            color: var(--text-light);
            padding: 1rem 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(--secondary-gold);
            text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
        }
        .logo span {
            color: white;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .main-nav a:hover, .main-nav a.active {
            background-color: rgba(255, 255, 255, 0.15);
            color: var(--secondary-gold);
        }
        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: var(--light-bg);
            padding: 1rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb .container {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        .breadcrumb a {
            color: var(--primary-green);
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #6c757d;
        }
        .search-section {
            background-color: var(--light-bg);
            padding: 2rem 0;
            text-align: center;
            border-bottom: 1px solid var(--border-color);
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            box-shadow: var(--shadow);
            border-radius: 50px;
            overflow: hidden;
        }
        .search-input {
            flex-grow: 1;
            padding: 1rem 1.5rem;
            border: none;
            font-size: 1rem;
        }
        .search-button {
            background-color: var(--primary-green);
            color: white;
            border: none;
            padding: 0 1.8rem;
            cursor: pointer;
            font-size: 1.2rem;
        }
        .search-button:hover {
            background-color: #155724;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 3rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            font-size: 1.1rem;
        }
        article h1 {
            font-size: 2.8rem;
            color: var(--dark-bg);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        article .meta {
            color: #6c757d;
            margin-bottom: 2rem;
            font-style: italic;
            border-bottom: 2px solid var(--border-color);
            padding-bottom: 1rem;
        }
        article h2 {
            font-size: 2rem;
            color: var(--primary-green);
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed var(--border-color);
        }
        article h3 {
            font-size: 1.6rem;
            color: var(--accent-blue);
            margin: 2rem 0 1rem;
        }
        article p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        article emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        article strong {
            color: var(--primary-green);
            font-weight: 700;
        }
        .featured-image {
            margin: 2.5rem 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .featured-image figcaption {
            padding: 1rem;
            background-color: var(--light-bg);
            font-size: 0.9rem;
            color: #6c757d;
            text-align: center;
        }
        .internal-link {
            color: var(--accent-blue);
            font-weight: 600;
            border-bottom: 1px dotted var(--accent-blue);
        }
        .internal-link:hover {
            color: var(--primary-green);
            border-bottom-style: solid;
        }
        .sidebar-widget {
            background-color: var(--light-bg);
            padding: 1.8rem;
            border-radius: 10px;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            color: var(--primary-green);
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--border-color);
        }
        .match-list {
            list-style: none;
        }
        .match-list li {
            padding: 1rem;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .match-list li:last-child {
            border-bottom: none;
        }
        .match-list li:hover {
            background-color: rgba(30, 126, 52, 0.05);
        }
        .score {
            font-weight: bold;
            color: var(--primary-green);
        }
        .user-interaction {
            margin-top: 4rem;
            border-top: 3px solid var(--border-color);
            padding-top: 2rem;
        }
        .rating-widget {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            margin-bottom: 3rem;
        }
        .stars {
            font-size: 2.5rem;
            color: #ccc;
            margin: 1rem 0;
            cursor: pointer;
        }
        .stars .star {
            display: inline-block;
            padding: 0 0.2rem;
        }
        .stars .star:hover,
        .stars .star.active {
            color: var(--secondary-gold);
        }
        .rating-form button {
            background-color: var(--primary-green);
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            cursor: pointer;
            font-weight: bold;
            margin-top: 1rem;
        }
        .rating-form button:hover {
            background-color: #155724;
        }
        .comments-section h2 {
            color: var(--dark-bg);
        }
        .comment-form {
            background-color: var(--light-bg);
            padding: 2rem;
            border-radius: 10px;
            margin-bottom: 2rem;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid var(--border-color);
            border-radius: 5px;
            font-family: inherit;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .comment-form button {
            background-color: var(--accent-blue);
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: bold;
        }
        .comment-form button:hover {
            background-color: #004080;
        }
        .comment-list {
            margin-top: 2rem;
        }
        .comment {
            padding: 1.5rem;
            border-bottom: 1px solid var(--border-color);
            background-color: #fff;
            border-radius: 5px;
            margin-bottom: 1rem;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.8rem;
            font-size: 0.9rem;
            color: #6c757d;
        }
        .comment-author {
            font-weight: bold;
            color: var(--primary-green);
        }
        .footer-links {
            background-color: #f1f8e9;
            padding: 3rem 0;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }
        .footer-links .container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background-color: white;
            padding: 1.2rem;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .web-link a {
            color: var(--accent-blue);
            font-weight: 600;
        }
        .web-link a:hover {
            color: var(--primary-green);
            text-decoration: underline;
        }
        .site-footer {
            background-color: var(--dark-bg);
            color: var(--text-light);
            padding: 2.5rem 0 1.5rem;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .copyright {
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            width: 100%;
            font-size: 0.9rem;
            color: #adb5bd;
        }
        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }
            .main-nav {
                position: fixed;
                top: 70px;
                right: -100%;
                background-color: var(--dark-bg);
                width: 80%;
                height: calc(100vh - 70px);
                transition: right 0.5s ease;
                padding: 2rem;
                box-shadow: -5px 0 15px rgba(0,0,0,0.2);
            }
            .main-nav.active {
                right: 0;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 1.5rem;
            }
            article h1 {
                font-size: 2.2rem;
            }
            article h2 {
                font-size: 1.8rem;
            }
        }
