:root {
            --primary-green: #5CA935;
            --secondary-green: #8BC34A;
            --accent-yellow: #FFD700;
            --dark-gray: #2C3E50;
            --light-gray: #ECF0F1;
            --zombie-gray: #7F8C8D;
            --highlight-red: #E74C3C;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #1a2a1a 0%, #0d1a0d 100%);
            color: var(--light-gray);
            line-height: 1.8;
            min-height: 100vh;
            padding-top: 80px;
        }
        header {
            background: linear-gradient(to right, var(--dark-gray), #1a2a1a);
            padding: 1rem 2rem;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
            border-bottom: 3px solid var(--primary-green);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            text-decoration: none;
            color: var(--accent-yellow);
            text-shadow: 3px 3px 0 var(--highlight-red), 6px 6px 0 rgba(0, 0, 0, 0.5);
            letter-spacing: 2px;
            transition: all 0.3s ease;
        }
        .logo a:hover {
            text-shadow: 4px 4px 0 var(--highlight-red), 8px 8px 0 rgba(0,0,0,0.5);
            transform: translateY(-2px);
        }
        nav {
            display: flex;
            align-items: center;
            gap: 2rem;
        }
        .nav-links {
            display: flex;
            gap: 1.8rem;
            list-style: none;
        }
        .nav-links a {
            color: var(--light-gray);
            text-decoration: none;
            font-weight: 600;
            padding: 0.7rem 1.2rem;
            border-radius: 6px;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.05);
        }
        .nav-links a:hover {
            background: var(--primary-green);
            color: white;
            transform: translateY(-3px);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--accent-yellow);
        }
        .breadcrumb {
            max-width: 1400px;
            margin: 1.5rem auto;
            padding: 0 2rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        .breadcrumb a {
            color: var(--secondary-green);
            text-decoration: none;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 0.5rem;
            color: var(--accent-yellow);
        }
        .search-container {
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
        }
        .search-box {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-box input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: 2px solid var(--primary-green);
            border-right: none;
            border-radius: 50px 0 0 50px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1.1rem;
        }
        .search-box button {
            background: var(--primary-green);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s ease;
        }
        .search-box button:hover {
            background: var(--secondary-green);
        }
        main {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem 3rem;
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 3rem;
        }
        article {
            background: rgba(44, 62, 80, 0.85);
            border-radius: 15px;
            padding: 3rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
            border: 2px solid var(--primary-green);
        }
        h1 {
            color: var(--accent-yellow);
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
        }
        h2 {
            color: var(--secondary-green);
            font-size: 2.3rem;
            margin: 3rem 0 1.5rem;
            padding-bottom: 0.8rem;
            border-bottom: 2px dashed var(--primary-green);
        }
        h3 {
            color: var(--accent-yellow);
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.15rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(92, 169, 53, 0.2), transparent);
            padding: 1.5rem;
            border-left: 5px solid var(--primary-green);
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .feature-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 10px;
            border: 1px solid rgba(92, 169, 53, 0.3);
            transition: transform 0.3s ease, border-color 0.3s ease;
        }
        .feature-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary-green);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }
        .feature-card i {
            font-size: 2.5rem;
            color: var(--accent-yellow);
            margin-bottom: 1rem;
        }
        .article-image {
            width: 100%;
            margin: 3rem 0;
            border-radius: 15px;
            overflow: hidden;
            border: 3px solid var(--accent-yellow);
            box-shadow: 0 10px 30px rgba(0,0,0,0.7);
        }
        .article-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        .article-image:hover img {
            transform: scale(1.03);
        }
        aside {
            background: rgba(44, 62, 80, 0.85);
            border-radius: 15px;
            padding: 2rem;
            height: fit-content;
            border: 2px solid var(--accent-yellow);
        }
        .rating-widget, .comment-form {
            margin-bottom: 3rem;
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            margin: 1.5rem 0;
            font-size: 2rem;
            color: #ccc;
        }
        .rating-stars i {
            cursor: pointer;
            transition: color 0.2s ease, transform 0.2s ease;
        }
        .rating-stars i:hover {
            color: var(--accent-yellow);
            transform: scale(1.2);
        }
        .rating-stars i.active {
            color: var(--accent-yellow);
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        input, textarea, select {
            padding: 1rem;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid var(--primary-green);
            border-radius: 8px;
            color: white;
            font-size: 1rem;
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        button[type="submit"] {
            background: linear-gradient(to right, var(--primary-green), var(--secondary-green));
            color: white;
            border: none;
            padding: 1.2rem;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        button[type="submit"]:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(92, 169, 53, 0.4);
        }
        .footer-links {
            max-width: 1400px;
            margin: 3rem auto 0;
            padding: 0 2rem;
        }
        .web-link {
            display: inline-block;
            margin: 0.8rem 1rem 0.8rem 0;
            padding: 0.8rem 1.5rem;
            background: rgba(92, 169, 53, 0.15);
            border-radius: 6px;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background: rgba(92, 169, 53, 0.3);
            transform: translateY(-3px);
        }
        .web-link a {
            color: var(--secondary-green);
            text-decoration: none;
            font-weight: 600;
        }
        footer {
            background: linear-gradient(to right, #1a1a1a, #0d0d0d);
            padding: 3rem 2rem;
            margin-top: 4rem;
            border-top: 3px solid var(--accent-yellow);
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            text-align: center;
        }
        .copyright {
            color: #aaa;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #444;
            font-size: 0.95rem;
        }
        @media (max-width: 1100px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            body {
                padding-top: 70px;
            }
            .hamburger {
                display: block;
            }
            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                flex-direction: column;
                background: var(--dark-gray);
                width: 100%;
                padding: 2rem;
                transition: 0.3s ease;
                box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            }
            .nav-links.active {
                left: 0;
            }
            .header-container {
                padding: 0.5rem 1rem;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            article {
                padding: 2rem;
            }
            .feature-grid {
                grid-template-columns: 1fr;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article, aside {
            animation: fadeIn 0.8s ease-out;
        }
