        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #1a472a 0%, #0d2818 100%);
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #7cff7c;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #b6ffb6;
            text-shadow: 0 0 8px rgba(124, 255, 124, 0.6);
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(13, 40, 24, 0.95);
            border-bottom: 3px solid #2e8b57;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            text-transform: uppercase;
            color: #7cff7c;
            text-shadow: 0 0 10px #2e8b57;
            letter-spacing: 1px;
        }
        .logo a {
            color: inherit;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        nav a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
        }
        nav a:hover {
            background: rgba(124, 255, 124, 0.1);
        }
        .breadcrumb {
            margin: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #7cff7c;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #7cff7c;
        }
        main {
            padding: 30px 0;
            background: rgba(26, 71, 42, 0.7);
            border-radius: 15px;
            margin: 20px auto;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        article {
            padding: 0 20px;
        }
        h1 {
            font-size: 2.8rem;
            color: #7cff7c;
            margin-bottom: 20px;
            text-align: center;
            border-bottom: 2px dashed #2e8b57;
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2rem;
            color: #9cff9c;
            margin: 30px 0 15px;
            border-left: 5px solid #2e8b57;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.5rem;
            color: #c1ffc1;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(46, 139, 87, 0.3);
            border-left: 4px solid #7cff7c;
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 10px 10px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .search-box {
            max-width: 600px;
            margin: 30px auto;
            text-align: center;
        }
        .search-box form {
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 15px;
            border: 2px solid #2e8b57;
            border-radius: 30px 0 0 30px;
            background: rgba(255,255,255,0.1);
            color: #fff;
            font-size: 1rem;
        }
        .search-box button {
            padding: 15px 25px;
            background: #2e8b57;
            color: white;
            border: none;
            border-radius: 0 30px 30px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #3cb371;
        }
        .comment-section, .rating-section {
            background: rgba(13, 40, 24, 0.8);
            padding: 25px;
            border-radius: 15px;
            margin: 40px 0;
        }
        .comment-section h2, .rating-section h2 {
            border-left: none;
            text-align: center;
            color: #7cff7c;
        }
        .comment-form, .rating-form {
            display: grid;
            gap: 15px;
            max-width: 800px;
            margin: 0 auto;
        }
        .comment-form textarea, .comment-form input, .rating-form select {
            width: 100%;
            padding: 12px;
            border-radius: 8px;
            border: 1px solid #2e8b57;
            background: rgba(255,255,255,0.1);
            color: #fff;
        }
        .comment-form button, .rating-form button {
            padding: 12px 30px;
            background: #2e8b57;
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1.1rem;
            justify-self: start;
            transition: background 0.3s;
        }
        .comment-form button:hover, .rating-form button:hover {
            background: #3cb371;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
            justify-content: center;
        }
        .stars i {
            color: #ffd700;
            font-size: 1.8rem;
            cursor: pointer;
            transition: transform 0.2s;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        footer {
            background: #0d2818;
            padding: 40px 0 20px;
            border-top: 3px solid #2e8b57;
            margin-top: 50px;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        .web-link {
            background: rgba(46, 139, 87, 0.2);
            padding: 15px;
            border-radius: 10px;
            border: 1px dashed #2e8b57;
        }
        .web-link a {
            color: #c1ffc1;
            display: block;
            padding: 5px 0;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #2e8b57;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(13, 40, 24, 0.98);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 20px;
                border-top: 2px solid #2e8b57;
            }
            nav.active ul {
                display: flex;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .footer-links {
                grid-template-columns: 1fr;
            }
        }
