        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #1a3c1a 0%, #0d2619 100%);
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #4CAF50;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #8BC34A;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(13, 38, 25, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #2E7D32;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #8BC34A, #4CAF50);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .my-logo a {
            background: none;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: #CCFFCC;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .desktop-nav a:hover {
            background: rgba(76, 175, 80, 0.2);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #8BC34A;
            cursor: pointer;
            background: none;
            border: none;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: rgba(13, 38, 25, 0.98);
            padding: 1rem;
            border-top: 1px solid #2E7D32;
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin: 1rem 0;
        }
        .mobile-nav a {
            color: #CCFFCC;
            display: block;
            padding: 0.8rem;
            border-left: 4px solid #4CAF50;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #8BC34A;
        }
        main {
            padding: 2rem 0;
            background: rgba(30, 30, 30, 0.7);
            border-radius: 12px;
            margin-top: 1rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 3px dashed #4CAF50;
        }
        h1 {
            font-size: 2.8rem;
            color: #8BC34A;
            margin-bottom: 1rem;
            line-height: 1.2;
            text-shadow: 2px 2px 4px #000;
        }
        h2 {
            color: #66BB6A;
            margin: 2.5rem 0 1.2rem 0;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #388E3C;
        }
        h3 {
            color: #81C784;
            margin: 2rem 0 1rem 0;
        }
        h4 {
            color: #A5D6A7;
            margin: 1.5rem 0 0.8rem 0;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(139, 195, 74, 0.15);
            border-left: 5px solid #4CAF50;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .feature-img {
            margin: 2.5rem auto;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
            border: 3px solid #4CAF50;
        }
        .internal-links {
            background: rgba(40, 60, 40, 0.6);
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .internal-links ul {
            columns: 2;
            list-style: none;
        }
        .internal-links li {
            margin-bottom: 0.8rem;
            position: relative;
            padding-left: 1.5rem;
        }
        .internal-links li:before {
            content: "🌿";
            position: absolute;
            left: 0;
        }
        .interactive-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .interactive-box {
            background: rgba(40, 40, 40, 0.8);
            padding: 2rem;
            border-radius: 10px;
            border: 1px solid #555;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .interactive-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(76, 175, 80, 0.2);
        }
        .interactive-box h3 {
            color: #FF9800;
            margin-top: 0;
        }
        form input, form textarea, form select {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            background: #222;
            border: 1px solid #555;
            border-radius: 4px;
            color: #eee;
        }
        form button {
            background: linear-gradient(90deg, #FF9800, #FF5722);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            transition: opacity 0.3s;
        }
        form button:hover {
            opacity: 0.9;
        }
        .rating {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .rating i {
            color: #FFC107;
            cursor: pointer;
            font-size: 1.5rem;
            transition: transform 0.2s;
        }
        .rating i:hover {
            transform: scale(1.2);
        }
        footer {
            background: #0a160a;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
            border-top: 3px solid #2E7D32;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        friend-link {
            display: block;
            background: rgba(50, 70, 50, 0.5);
            padding: 1rem;
            margin: 0.5rem 0;
            border-radius: 6px;
            border-left: 4px solid #8BC34A;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #333;
            color: #888;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            .internal-links ul {
                columns: 1;
            }
            .header-content {
                flex-wrap: wrap;
            }
            .interactive-section {
                grid-template-columns: 1fr;
            }
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        .last-updated {
            background: #2E7D32;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            display: inline-block;
            margin: 1rem 0;
            font-size: 0.9rem;
        }
