* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-green: #4CAF50;
            --dark-green: #2E7D32;
            --zombie-green: #8BC34A;
            --accent-yellow: #FFC107;
            --accent-orange: #FF9800;
            --dark-bg: #121212;
            --light-bg: #f9f9f9;
            --text-dark: #333;
            --text-light: #f5f5f5;
            --card-bg: #ffffff;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        body {
            background-color: var(--light-bg);
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        .site-header {
            background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
            color: var(--text-light);
            padding: 1rem 2rem;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .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: 800;
            color: var(--accent-yellow);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            font-family: 'Arial Black', sans-serif;
        }
        .logo a span {
            color: var(--text-light);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .desktop-nav a:hover,
        .desktop-nav a.active {
            background-color: var(--accent-yellow);
            color: var(--text-dark);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: var(--dark-green);
            padding: 1rem;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            box-shadow: var(--shadow);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: white;
            text-decoration: none;
            padding: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            font-weight: 600;
        }
        .mobile-nav a:hover {
            background-color: var(--primary-green);
        }
        .breadcrumb {
            background-color: #e9f5e9;
            padding: 0.8rem 2rem;
            font-size: 0.95rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        .breadcrumb a {
            color: var(--dark-green);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .main-container {
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 1024px) {
            .main-container {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: var(--card-bg);
            border-radius: 12px;
            padding: 3rem;
            box-shadow: var(--shadow);
        }
        article h1 {
            color: var(--dark-green);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 4px solid var(--accent-yellow);
            padding-bottom: 0.5rem;
        }
        article h2 {
            color: var(--primary-green);
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem;
            padding-top: 1rem;
        }
        article h3 {
            color: var(--zombie-green);
            font-size: 1.6rem;
            margin: 2rem 0 1rem;
        }
        article p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: var(--dark-bg);
            font-weight: 600;
            background-color: #f0f9f0;
            padding: 1.5rem;
            border-left: 5px solid var(--accent-yellow);
            border-radius: 0 8px 8px 0;
            margin-bottom: 2.5rem;
        }
        .highlight {
            background-color: #fff8e1;
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 5px solid var(--accent-orange);
            margin: 2rem 0;
        }
        .highlight strong {
            color: var(--accent-orange);
        }
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 10px;
            margin: 2rem 0;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: -1.5rem;
            margin-bottom: 2.5rem;
        }
        .content-link {
            color: var(--dark-green);
            text-decoration: none;
            font-weight: 600;
            border-bottom: 2px dotted var(--primary-green);
            transition: all 0.2s;
        }
        .content-link:hover {
            color: var(--accent-orange);
            border-bottom-style: solid;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background-color: var(--card-bg);
            border-radius: 12px;
            padding: 2rem;
            box-shadow: var(--shadow);
        }
        .widget h3 {
            color: var(--dark-green);
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid var(--accent-yellow);
            font-size: 1.5rem;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.9rem 1rem;
            border: 2px solid var(--primary-green);
            border-radius: 6px 0 0 6px;
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--primary-green);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            font-size: 1.2rem;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background-color: var(--dark-green);
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            font-size: 2rem;
            color: #ddd;
            margin: 1rem 0;
        }
        .stars .star {
            cursor: pointer;
            transition: color 0.2s;
        }
        .stars .star:hover,
        .stars .star.active {
            color: var(--accent-yellow);
        }
        .rating-widget input,
        .rating-widget textarea,
        .comment-form input,
        .comment-form textarea {
            width: 100%;
            padding: 0.9rem;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 1rem;
        }
        .rating-widget button,
        .comment-form button {
            background-color: var(--primary-green);
            color: white;
            border: none;
            padding: 1rem;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            font-size: 1.1rem;
        }
        .rating-widget button:hover,
        .comment-form button:hover {
            background-color: var(--dark-green);
        }
        .web-links {
            max-width: 1400px;
            margin: 3rem auto 0;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1rem;
        }
        @media (max-width: 1024px) {
            .web-links {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            .web-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .web-links {
                grid-template-columns: 1fr;
            }
        }
        .web-link {
            background-color: var(--card-bg);
            padding: 1.2rem;
            border-radius: 8px;
            box-shadow: var(--shadow);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        }
        .web-link a {
            color: var(--dark-green);
            text-decoration: none;
            font-weight: 600;
            display: block;
            font-size: 1rem;
            line-height: 1.4;
        }
        .web-link a:hover {
            color: var(--accent-orange);
            text-decoration: underline;
        }
        .site-footer {
            background-color: var(--dark-bg);
            color: var(--text-light);
            padding: 3rem 2rem 1.5rem;
            margin-top: 4rem;
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
        }
        .footer-copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.95rem;
        }
        @media (max-width: 768px) {
            .header-container {
                padding: 0.5rem 1rem;
            }
            .logo a {
                font-size: 1.8rem;
            }
            .desktop-nav {
                display: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            .main-container {
                padding: 0 1rem;
                gap: 2rem;
            }
            article {
                padding: 2rem 1.5rem;
            }
            article h1 {
                font-size: 2.2rem;
            }
            article h2 {
                font-size: 1.8rem;
            }
            .breadcrumb {
                padding: 0.8rem 1rem;
            }
            .widget {
                padding: 1.5rem;
            }
        }
