        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0a2f0a;
            color: #e0e0e0;
            line-height: 1.7;
            background-image: linear-gradient(rgba(10, 47, 10, 0.95), rgba(5, 20, 5, 0.98)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%230a2f0a"/><path d="M20,20 Q50,10 80,20 T100,50 T80,80 T50,90 T20,80 T0,50 T20,20 Z" fill="none" stroke="%23156b15" stroke-width="0.5"/>');
        }
        a {
            color: #7bc47f;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #a3e7a5;
            text-shadow: 0 0 8px rgba(163, 231, 165, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a471a 0%, #0d2c0d 100%);
            border-bottom: 3px solid #7bc47f;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            text-transform: uppercase;
            background: linear-gradient(90deg, #7bc47f, #a3e7a5);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 1px;
        }
        .logo a:hover {
            background: linear-gradient(90deg, #a3e7a5, #c6f7c9);
            -webkit-background-clip: text;
            background-clip: text;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        .nav-links a {
            font-weight: 600;
            font-size: 1.05rem;
            padding: 0.5rem 0.8rem;
            border-radius: 5px;
        }
        .nav-links a:hover {
            background-color: rgba(123, 196, 127, 0.15);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #7bc47f;
            background: none;
            border: none;
        }
        .breadcrumb {
            padding: 1rem 0;
            color: #aaa;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #7bc47f;
        }
        main {
            padding: 2rem 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: rgba(20, 40, 20, 0.85);
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            border: 1px solid #2a5a2a;
        }
        h1 {
            color: #a3e7a5;
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid #7bc47f;
            padding-bottom: 0.7rem;
            text-shadow: 1px 1px 3px #000;
        }
        h2 {
            color: #8cd990;
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem;
            padding-left: 10px;
            border-left: 5px solid #7bc47f;
        }
        h3 {
            color: #b2e9b4;
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: #c6f7c9;
            background: rgba(123, 196, 127, 0.1);
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 2.5rem;
            border-left: 5px solid #7bc47f;
        }
        .highlight {
            background-color: rgba(255, 215, 0, 0.1);
            border-left: 4px solid gold;
            padding: 1.2rem;
            margin: 1.8rem 0;
            border-radius: 0 8px 8px 0;
        }
        .image-container {
            margin: 2.5rem auto;
            text-align: center;
            max-width: 800px;
        }
        .feature-img {
            border-radius: 10px;
            border: 3px solid #3a6a3a;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }
        .feature-img:hover {
            transform: scale(1.02);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.8);
        }
        .caption {
            font-style: italic;
            color: #aaa;
            margin-top: 0.8rem;
            font-size: 0.95rem;
        }
        .sidebar {
            background: rgba(25, 50, 25, 0.85);
            border-radius: 15px;
            padding: 1.8rem;
            align-self: start;
            border: 1px solid #2a5a2a;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget h3 {
            color: #8cd990;
            font-size: 1.4rem;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #3a6a3a;
        }
        .search-box input, .comment-form input, .comment-form textarea, .rating-form select {
            width: 100%;
            padding: 0.9rem;
            margin-bottom: 1rem;
            border-radius: 8px;
            border: 1px solid #3a6a3a;
            background-color: rgba(10, 30, 10, 0.8);
            color: #e0e0e0;
            font-size: 1rem;
        }
        .search-box button, .comment-form button, .rating-form button {
            width: 100%;
            padding: 0.9rem;
            background: linear-gradient(to right, #4c944f, #7bc47f);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1.05rem;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.2s ease;
        }
        .search-box button:hover, .comment-form button:hover, .rating-form button:hover {
            background: linear-gradient(to right, #5aa55d, #8cd990);
            transform: translateY(-2px);
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            font-size: 1.8rem;
            margin: 1rem 0;
            color: #ffd700;
        }
        .interactive {
            background: rgba(40, 70, 40, 0.7);
            border-radius: 10px;
            padding: 1.5rem;
            margin: 2rem 0;
            border: 2px dashed #7bc47f;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(to bottom, #5aa55d, #4c944f);
            color: white;
            padding: 0.8rem 1.8rem;
            border-radius: 50px;
            font-weight: bold;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0,0,0,0.3);
        }
        .btn:hover {
            background: linear-gradient(to bottom, #7bc47f, #5aa55d);
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.4);
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
            margin: 3rem 0;
            padding: 2rem;
            background: rgba(15, 35, 15, 0.9);
            border-radius: 10px;
            border-top: 3px solid #7bc47f;
            border-bottom: 3px solid #7bc47f;
        }
        @media (max-width: 768px) {
            .footer-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .web-link {
            background: rgba(30, 60, 30, 0.7);
            padding: 1rem;
            border-radius: 8px;
            transition: transform 0.3s ease, background 0.3s ease;
        }
        .web-link:hover {
            background: rgba(50, 90, 50, 0.9);
            transform: translateX(5px);
        }
        .web-link a {
            color: #b2e9b4;
            font-weight: 500;
        }
        footer {
            background: #0a200a;
            text-align: center;
            padding: 2.5rem 0;
            margin-top: 3rem;
            border-top: 2px solid #3a6a3a;
            color: #8a8a8a;
            font-size: 0.95rem;
        }
        .copyright {
            margin-top: 1rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-links {
                position: fixed;
                top: 80px;
                right: -100%;
                flex-direction: column;
                background: rgba(20, 40, 20, 0.98);
                width: 80%;
                max-width: 300px;
                height: calc(100vh - 80px);
                padding: 2rem;
                transition: right 0.5s ease;
                border-left: 3px solid #7bc47f;
                box-shadow: -5px 0 15px rgba(0,0,0,0.5);
                z-index: 999;
            }
            .nav-links.active {
                right: 0;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .article-content, .sidebar {
                padding: 1.5rem;
            }
            .header-content {
                flex-wrap: wrap;
            }
        }
