        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0d2912;
            color: #e8f5e9;
            line-height: 1.7;
            max-width: 100%;
            overflow-x: hidden;
            background-image: radial-gradient(#1a472a 1px, transparent 1px);
            background-size: 30px 30px;
        }
        a {
            color: #4caf93;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #80e8d6;
            text-shadow: 0 0 8px rgba(76, 175, 147, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .section-padding {
            padding: 60px 0;
        }
        header {
            background: linear-gradient(to bottom, #0a1f0f, #0d2912);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
            border-bottom: 2px solid #2e7d32;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: #4caf50;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 15px #4caf50;
        }
        .my-logo span {
            color: #ffeb3b;
        }
        .my-logo:hover {
            color: #80e8d6;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 30px;
        }
        .nav-links a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .nav-links a:hover {
            background-color: rgba(76, 175, 80, 0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #4caf50;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #102814;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #a5d6a7;
        }
        .breadcrumb .separator {
            margin: 0 8px;
            color: #4caf50;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding-top: 30px;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(13, 41, 18, 0.85);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
            border: 1px solid #2e7d32;
        }
        aside {
            background: rgba(13, 41, 18, 0.85);
            padding: 25px;
            border-radius: 15px;
            border: 1px solid #2e7d32;
            align-self: start;
            position: sticky;
            top: 100px;
        }
        h1, h2, h3, h4 {
            color: #c8e6c9;
            margin-top: 1.5em;
            margin-bottom: 0.7em;
            line-height: 1.3;
            font-weight: 700;
        }
        h1 {
            font-size: 2.8rem;
            color: #4caf50;
            text-align: center;
            border-bottom: 3px solid #4caf50;
            padding-bottom: 20px;
            margin-top: 0;
            text-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
        }
        h2 {
            font-size: 2.2rem;
            color: #80e8d6;
            padding-left: 15px;
            border-left: 5px solid #4caf50;
        }
        h3 {
            font-size: 1.8rem;
            color: #a5d6a7;
        }
        h4 {
            font-size: 1.4rem;
            color: #c8e6c9;
        }
        p {
            margin-bottom: 1.5em;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 300;
            color: #c8e6c9;
            background: rgba(46, 125, 50, 0.2);
            padding: 20px;
            border-radius: 10px;
            border-left: 5px solid #ffeb3b;
            margin-bottom: 2em;
        }
        .highlight {
            background-color: rgba(255, 235, 59, 0.15);
            padding: 3px 6px;
            border-radius: 4px;
            font-weight: 600;
            color: #ffeb3b;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .update-time {
            text-align: center;
            font-style: italic;
            color: #b0bec5;
            margin-bottom: 30px;
            font-size: 0.95rem;
        }
        .feature-img {
            width: 80%;
            margin: 30px auto;
            border: 3px solid #4caf50;
            box-shadow: 0 0 25px rgba(76, 175, 80, 0.4);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #b0bec5;
            margin-top: 10px;
            font-size: 0.9rem;
        }
        .module {
            margin-bottom: 30px;
            padding-bottom: 25px;
            border-bottom: 1px dashed #2e7d32;
        }
        .module:last-child {
            border-bottom: none;
        }
        .module h3 {
            font-size: 1.4rem;
            color: #4caf50;
            margin-top: 0;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #2e7d32;
        }
        .search-box input {
            width: 100%;
            padding: 12px 15px;
            border-radius: 8px;
            border: 1px solid #2e7d32;
            background-color: #102814;
            color: #e8f5e9;
            font-size: 1rem;
        }
        .search-box button {
            width: 100%;
            padding: 12px;
            margin-top: 10px;
            background: linear-gradient(to right, #2e7d32, #4caf50);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .search-box button:hover {
            background: linear-gradient(to right, #4caf50, #66bb6a);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(46, 125, 50, 0.4);
        }
        .rating-form .stars {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
        }
        .rating-form .stars i {
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-form .stars i.active,
        .rating-form .stars i:hover {
            color: #ffeb3b;
        }
        .rating-form input, .rating-form textarea {
            width: 100%;
            padding: 10px;
            margin-bottom: 15px;
            border-radius: 8px;
            border: 1px solid #2e7d32;
            background-color: #102814;
            color: #e8f5e9;
        }
        .rating-form button {
            background: linear-gradient(to right, #ff9800, #ffeb3b);
            color: #333;
            border: none;
            padding: 12px;
            width: 100%;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .rating-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 152, 0, 0.4);
        }
        footer {
            background: #0a1f0f;
            padding: 50px 0 20px;
            margin-top: 60px;
            border-top: 3px solid #2e7d32;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h4 {
            color: #4caf50;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        friend-link {
            display: block;
            margin: 10px 0;
            padding: 8px 15px;
            background: rgba(46, 125, 50, 0.2);
            border-radius: 5px;
            border-left: 4px solid #4caf50;
            transition: all 0.3s ease;
        }
        friend-link:hover {
            background: rgba(76, 175, 80, 0.3);
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #2e7d32;
            color: #b0bec5;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #0a1f0f;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 20px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.5);
                border-top: 1px solid #2e7d32;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 10px 0;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            article, aside {
                padding: 25px;
            }
            .main-content {
                gap: 25px;
            }
        }
