        * { 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.8;
            color: #2c3e50;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4efe9 100%);
            min-height: 100vh;
        }
        img { max-width: 100%; height: auto; display: block; }
        h1, h2, h3, h4 { color: #2a5c3d; margin-bottom: 1rem; font-weight: 700; }
        h1 { font-size: clamp(2.5rem, 5vw, 4rem); text-align: center; margin-top: 1rem; }
        h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); border-bottom: 3px solid #4CAF50; padding-bottom: 0.5rem; }
        h3 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); color: #388E3C; }
        h4 { font-size: 1.4rem; color: #555; }
        p { margin-bottom: 1.5rem; text-align: justify; }
        a { color: #2E7D32; text-decoration: none; transition: color 0.3s, background 0.3s; }
        a:hover { color: #1B5E20; background-color: rgba(76, 175, 80, 0.1); }
        strong { color: #1a237e; }
        em { font-style: italic; color: #5d4037; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(90deg, #1b5e20, #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-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-family: 'Comic Sans MS', cursive, sans-serif;
            font-size: 2.5rem;
            font-weight: bold;
            color: #FFEB3B;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            text-decoration: none;
        }
        .my-logo:hover {
            color: #FFF59D;
            background-color: transparent;
        }
        .breadcrumb {
            padding: 10px 0;
            background-color: #e8f5e9;
            font-size: 0.9rem;
            margin-bottom: 20px;
        }
        .breadcrumb a { color: #2e7d32; }
        .breadcrumb a:hover { text-decoration: underline; }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: white;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .main-nav a:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 30px 0;
        }
        .article-content {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .widget h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #1b5e20;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        input, textarea, select {
            padding: 12px 15px;
            border: 1px solid #c8e6c9;
            border-radius: 8px;
            font-size: 1rem;
            width: 100%;
        }
        button, .btn {
            background: linear-gradient(to right, #4CAF50, #2E7D32);
            color: white;
            border: none;
            padding: 14px 20px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1rem;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        button:hover, .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(46, 125, 50, 0.4);
            background: linear-gradient(to right, #66BB6A, #388E3C);
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: #FFD700;
            justify-content: center;
            cursor: pointer;
        }
        .stars span:hover { transform: scale(1.2); }
        .featured-image {
            margin: 30px 0;
            text-align: center;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }
        .featured-image img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
        }
        .link-list {
            list-style: none;
            padding: 20px;
            background: #f1f8e9;
            border-radius: 10px;
            margin: 30px 0;
        }
        .link-list li {
            margin-bottom: 12px;
            padding-left: 20px;
            position: relative;
        }
        .link-list li:before {
            content: '🐾';
            position: absolute;
            left: 0;
        }
        .update-info {
            background-color: #e3f2fd;
            padding: 15px;
            border-radius: 10px;
            margin-top: 40px;
            font-style: italic;
            text-align: center;
            border-left: 5px solid #2196F3;
        }
        .site-footer {
            background: #1b5e20;
            color: #e8f5e9;
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 30px;
        }
        .footer-section { flex: 1; min-width: 250px; }
        .footer-section h4 {
            color: #FFEB3B;
            margin-bottom: 20px;
            border-bottom: 2px solid #4CAF50;
            padding-bottom: 10px;
        }
        friend-link {
            display: block;
            padding: 8px 0;
            border-bottom: 1px dashed #81c784;
        }
        friend-link a { color: #c8e6c9; }
        friend-link a:hover { color: #FFEB3B; }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #388e3c;
            font-size: 0.9rem;
            color: #a5d6a7;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #2e7d32;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 20px;
                border-radius: 0 0 15px 15px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            }
            .main-nav.active ul { display: flex; }
            .header-inner { flex-wrap: nowrap; }
            .article-content { padding: 20px; }
        }
