        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f9f7f2;
            background-image: radial-gradient(#e0dcc9 1px, transparent 1px);
            background-size: 20px 20px;
        }
        img { max-width: 100%; height: auto; display: block; }
        a { color: #4a7c59; text-decoration: none; transition: color 0.3s ease; }
        a:hover { color: #2d5a3d; text-decoration: underline; }
        ul, ol { padding-left: 1.5em; margin-bottom: 1em; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        h1, h2, h3, h4 { font-family: 'Comic Sans MS', 'Chalkboard SE', cursive; color: #5a8c6d; margin-bottom: 0.75em; line-height: 1.3; }
        h1 { font-size: 2.8rem; margin-top: 1em; text-align: center; }
        h2 { font-size: 2.2rem; border-bottom: 3px dashed #c1d8b9; padding-bottom: 0.3em; margin-top: 2em; }
        h3 { font-size: 1.8rem; margin-top: 1.5em; }
        h4 { font-size: 1.4rem; margin-top: 1.2em; color: #7a9c7a; }
        p { margin-bottom: 1.2em; text-align: justify; }
        .lead { font-size: 1.3rem; color: #666; font-weight: 300; text-align: center; max-width: 800px; margin: 0 auto 2em; }
        .highlight { background-color: #fff9c4; padding: 0.2em 0.4em; border-radius: 3px; }
        .emoji { font-size: 1.2em; margin-right: 0.3em; }
        .site-header {
            background: linear-gradient(135deg, #8bc34a, #5a8c6d);
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Comic Sans MS', cursive;
            font-size: 2.5rem;
            font-weight: bold;
            color: white;
            text-shadow: 3px 3px 0 #3d6b4f;
            letter-spacing: 1px;
        }
        .my-logo a { color: inherit; text-decoration: none; }
        .my-logo a:hover { text-decoration: none; opacity: 0.9; }
        .my-logo span { color: #ffeb3b; }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }
        .main-nav a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 20px;
            text-decoration: none;
        }
        .main-nav a:hover {
            background-color: rgba(255, 255, 255, 0.2);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #f0eee4;
            border-bottom: 1px solid #ddd;
            font-size: 0.9rem;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin: 0 10px;
            color: #999;
        }
        .breadcrumb a { color: #666; }
        .content-area {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .content-area { grid-template-columns: 1fr; }
        }
        main { min-height: 2000px; }
        .article-image {
            width: 100%;
            margin: 2em auto;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            border: 8px solid white;
        }
        .article-image figcaption {
            text-align: center;
            font-style: italic;
            color: #777;
            padding: 0.5em;
            background: #f5f5f5;
        }
        .sidebar {
            background: white;
            border-radius: 15px;
            padding: 1.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 2rem;
        }
        .widget-title {
            font-size: 1.3rem;
            color: #5a8c6d;
            border-bottom: 2px solid #e0e0e0;
            padding-bottom: 0.5rem;
            margin-bottom: 1rem;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.3rem;
            font-weight: 600;
            color: #555;
        }
        input, select, textarea {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, select:focus, textarea:focus {
            outline: none;
            border-color: #8bc34a;
        }
        button, .button {
            background: linear-gradient(to right, #8bc34a, #5a8c6d);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        button:hover, .button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 10px rgba(139, 195, 74, 0.4);
        }
        .stars { display: flex; gap: 5px; margin: 0.5rem 0; }
        .star { color: #ddd; font-size: 1.5rem; cursor: pointer; }
        .star:hover, .star.active { color: #ffc107; }
        .related-links { background: #f1f8e9; padding: 1rem; border-radius: 10px; }
        .related-links ul { list-style: none; padding-left: 0; }
        .related-links li { margin-bottom: 0.8rem; padding-left: 1.2rem; position: relative; }
        .related-links li::before {
            content: '🌿';
            position: absolute;
            left: 0;
        }
        .site-footer {
            background: #3d6b4f;
            color: #e0f7e9;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
        }
        .footer-section { flex: 1; min-width: 250px; }
        .footer-section h3 {
            color: #ffeb3b;
            border-bottom: none;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        friend-link {
            display: block;
            padding: 0.5rem 0;
            border-bottom: 1px dashed rgba(255,255,255,0.2);
            color: #c8e6c9;
        }
        friend-link a { color: inherit; }
        friend-link a:hover { color: white; }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #aaa;
            grid-column: 1 / -1;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .my-logo { font-size: 2rem; }
            .hamburger { display: block; }
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: #5a8c6d;
                padding: 1rem;
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
                border-radius: 0 0 15px 15px;
            }
            .main-nav.active ul { display: flex; }
            .main-nav a { display: block; padding: 0.8rem; }
        }
        .text-center { text-align: center; }
        .last-updated { font-style: italic; color: #888; margin-bottom: 2em; }
        .info-box {
            background: #e8f5e9;
            border-left: 5px solid #4caf50;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .flex { display: flex; }
        .grid { display: grid; }
