        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            min-height: 100vh;
            padding-bottom: 60px;
        }
        h1, h2, h3, h4 { color: #2a5c3d; margin-bottom: 1rem; font-weight: 700; }
        h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); line-height: 1.2; }
        h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); border-bottom: 3px solid #ffb347; padding-bottom: 0.5rem; }
        h3 { font-size: clamp(1.4rem, 3vw, 1.8rem); color: #388e3c; }
        p { margin-bottom: 1.5rem; text-align: justify; }
        a { color: #1a73e8; text-decoration: none; transition: color 0.3s; }
        a:hover { color: #0d47a1; text-decoration: underline; }
        strong { color: #d84315; }
        em { font-style: italic; color: #555; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(to right, #1b5e20, #2e7d32, #388e3c);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-family: 'Comic Sans MS', cursive, sans-serif;
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 900;
            color: #ffeb3b;
            text-shadow: 2px 2px 0 #bf360c;
            letter-spacing: 1px;
        }
        .logo a:hover { text-decoration: none; color: #ffd54f; }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: background 0.3s;
        }
        nav a:hover, nav a.active {
            background: rgba(255, 255, 255, 0.2);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #2e7d32;
                padding: 1rem;
                box-shadow: 0 5px 10px rgba(0,0,0,0.2);
            }
            nav ul.active { display: flex; }
            nav li { width: 100%; }
            nav a { display: block; padding: 0.8rem; border-bottom: 1px solid #4caf50; }
        }
        .breadcrumb {
            padding: 1rem 0;
            background: #e8f5e9;
            font-size: 0.9rem;
            color: #555;
        }
        .breadcrumb a { color: #2e7d32; }
        .breadcrumb i { margin: 0 8px; }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin-top: 2rem;
        }
        @media (max-width: 992px) {
            main { grid-template-columns: 1fr; }
        }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 2px dashed #ccc;
            color: #666;
            font-size: 0.95rem;
        }
        .author { display: flex; align-items: center; gap: 10px; }
        .author img { width: 40px; height: 40px; border-radius: 50%; }
        .featured-image {
            width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 2rem 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .content-section { margin-bottom: 3rem; }
        .tip-box {
            background: #e3f2fd;
            border-left: 5px solid #2196f3;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .highlight {
            background: linear-gradient(120deg, #ffecb3 0%, #ffccbc 100%);
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
            border: 2px solid #ff9800;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        .sidebar-widget h3 {
            margin-bottom: 1.2rem;
            color: #1b5e20;
            font-size: 1.3rem;
        }
        .search-form { display: flex; }
        .search-form input {
            flex: 1;
            padding: 0.8rem;
            border: 2px solid #4caf50;
            border-radius: 6px 0 0 6px;
            font-size: 1rem;
        }
        .search-form button {
            background: #4caf50;
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover { background: #388e3c; }
        .rating-widget { text-align: center; }
        .stars {
            font-size: 2rem;
            color: #ffc107;
            margin-bottom: 1rem;
            cursor: pointer;
        }
        .stars i:hover { transform: scale(1.2); }
        .rating-form button {
            background: #ff9800;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .rating-form button:hover { background: #f57c00; }
        .comment-form textarea, .comment-form input {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-family: inherit;
        }
        .comment-form button {
            background: #1a73e8;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .comment-form button:hover { background: #0d47a1; }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
            padding: 2rem;
            background: #e8f5e9;
            border-radius: 10px;
        }
        .web-link {
            background: white;
            padding: 1rem;
            border-radius: 8px;
            box-shadow: 0 3px 8px rgba(0,0,0,0.05);
        }
        .web-link a {
            color: #2e7d32;
            font-weight: 600;
        }
        footer {
            text-align: center;
            padding: 2rem;
            background: #1b5e20;
            color: white;
            margin-top: 3rem;
            border-radius: 12px 12px 0 0;
        }
        .copyright { font-size: 0.9rem; opacity: 0.9; }
        .btn {
            display: inline-block;
            background: linear-gradient(to right, #ff7e5f, #feb47b);
            color: white;
            padding: 0.8rem 1.8rem;
            border-radius: 30px;
            font-weight: bold;
            border: none;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(255, 126, 95, 0.4);
            text-decoration: none;
            color: white;
        }
        .tag {
            display: inline-block;
            background: #e0f2f1;
            color: #00695c;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.85rem;
            margin-right: 0.5rem;
            margin-bottom: 0.5rem;
        }
