:root {
            --primary-green: #4CAF50;
            --secondary-green: #8BC34A;
            --accent-orange: #FF9800;
            --dark-bg: #2E2E2E;
            --light-bg: #FAFAFA;
            --text-dark: #333;
            --text-light: #F5F5F5;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
            --border-radius: 12px;
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: var(--light-bg);
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-green);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-orange);
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1a1a 100%);
            color: var(--text-light);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--secondary-green);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .my-logo span {
            color: var(--accent-orange);
        }
        .my-logo:hover {
            color: var(--accent-orange);
        }
        .my-logo:hover span {
            color: var(--secondary-green);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: var(--text-light);
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--accent-orange);
            transition: var(--transition);
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--text-light);
            border-radius: 2px;
            transition: var(--transition);
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: var(--dark-bg);
            padding: 1rem;
            box-shadow: var(--shadow);
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .mobile-nav a {
            color: var(--text-light);
            font-weight: 600;
            display: block;
            padding: 0.75rem;
            border-radius: var(--border-radius);
            background-color: rgba(255,255,255,0.05);
        }
        .mobile-nav a:hover {
            background-color: rgba(255,255,255,0.1);
            text-decoration: none;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #eee;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #666;
        }
        .breadcrumb a:hover {
            color: var(--primary-green);
        }
        .breadcrumb span {
            color: #999;
            margin: 0 5px;
        }
        main {
            padding: 2rem 0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 2px dashed var(--primary-green);
        }
        h1 {
            font-size: 2.8rem;
            color: var(--dark-bg);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-meta {
            color: #666;
            font-style: italic;
            margin-top: 1rem;
        }
        .content-section {
            margin-bottom: 3rem;
            padding: 2rem;
            background-color: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .content-section:hover {
            box-shadow: 0 6px 18px rgba(0,0,0,0.12);
        }
        h2 {
            color: var(--primary-green);
            font-size: 2rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--secondary-green);
        }
        h3 {
            color: var(--accent-orange);
            font-size: 1.6rem;
            margin: 1.8rem 0 1rem 0;
        }
        h4 {
            color: #555;
            font-size: 1.3rem;
            margin: 1.5rem 0 0.8rem 0;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .intro-emoji {
            font-size: 1.5rem;
            margin-right: 10px;
            vertical-align: middle;
        }
        .highlight {
            background-color: #FFF9C4;
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .featured-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: var(--border-radius);
            margin: 2rem auto;
            display: block;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: 0.5rem;
            margin-bottom: 2rem;
        }
        .interactive-module {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
            border-left: 5px solid var(--accent-orange);
            padding: 1.5rem;
            margin: 2.5rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .module-title {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--dark-bg);
            margin-bottom: 1rem;
        }
        .module-title i {
            color: var(--accent-orange);
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            max-width: 600px;
            margin: 2rem auto;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        label {
            font-weight: 600;
            color: var(--dark-bg);
        }
        input, textarea, select {
            padding: 0.8rem 1rem;
            border: 1px solid #ccc;
            border-radius: var(--border-radius);
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary-green);
            box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
        }
        button, .btn {
            background-color: var(--primary-green);
            color: white;
            border: none;
            padding: 0.9rem 1.8rem;
            border-radius: var(--border-radius);
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
            display: inline-block;
        }
        button:hover, .btn:hover {
            background-color: var(--secondary-green);
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
            text-decoration: none;
        }
        .user-comment {
            background-color: #f9f9f9;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            margin-bottom: 1.5rem;
            border-left: 4px solid var(--secondary-green);
        }
        .user-name {
            font-weight: bold;
            color: var(--dark-bg);
        }
        .comment-date {
            color: #888;
            font-size: 0.9rem;
            margin-left: 1rem;
        }
        .user-rating {
            color: var(--accent-orange);
            margin: 0.5rem 0;
        }
        footer {
            background-color: var(--dark-bg);
            color: var(--text-light);
            padding: 3rem 0 1.5rem 0;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            color: var(--secondary-green);
            border-bottom: 1px solid #444;
            padding-bottom: 0.5rem;
            margin-bottom: 1.5rem;
        }
        friend-link {
            display: block;
            margin-bottom: 0.8rem;
        }
        friend-link a {
            color: #ccc;
        }
        friend-link a:hover {
            color: var(--accent-orange);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: flex;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .header-container, .footer-content {
                flex-direction: column;
                text-align: center;
            }
            .content-section {
                padding: 1.5rem;
            }
        }
        @media print {
            header, footer, .interactive-module, .search-form, .comment-form, .rating-form {
                display: none;
            }
            body {
                background: white;
                color: black;
                font-size: 12pt;
            }
            a {
                color: black;
                text-decoration: underline;
            }
            .content-section {
                box-shadow: none;
                border: 1px solid #ddd;
            }
        }
