        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f9f7f2;
            color: #333;
            line-height: 1.8;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            color: #4a8c5a;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #2e5c3a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 700; }
        .italic { font-style: italic; }
        .highlight {
            background-color: #fff9c4;
            padding: 0 4px;
            border-radius: 3px;
        }
        .site-header {
            background: linear-gradient(135deg, #8bc34a 0%, #4caf50 100%);
            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, sans-serif;
            font-size: 2.5rem;
            font-weight: bold;
            color: #fff;
            text-shadow: 3px 3px 0 #2e7d32;
            letter-spacing: 1px;
        }
        .my-logo a {
            color: inherit;
            text-decoration: none;
        }
        .my-logo a:hover {
            text-decoration: none;
            color: #e8f5e9;
        }
        .desktop-nav {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
        }
        .desktop-nav a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 20px;
        }
        .desktop-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;
            padding: 0.5rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: #4caf50;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 5px 10px rgba(0,0,0,0.2);
            z-index: 999;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: white;
            padding: 0.8rem 1rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .mobile-nav a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #e8f5e9;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #388e3c;
        }
        .breadcrumb span {
            color: #666;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .article-meta {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px dashed #ddd;
        }
        .last-updated {
            color: #d32f2f;
            font-weight: bold;
        }
        h1 {
            color: #2e7d32;
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 6px solid #8bc34a;
            padding-left: 1rem;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
        }
        h2 {
            color: #388e3c;
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #c8e6c9;
        }
        h3 {
            color: #43a047;
            font-size: 1.6rem;
            margin: 2rem 0 1rem;
        }
        h4 {
            color: #4caf50;
            font-size: 1.3rem;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .intro {
            font-size: 1.2rem;
            color: #555;
            background: #f1f8e9;
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 2rem;
        }
        .villager-img {
            float: right;
            margin: 0 0 1.5rem 2rem;
            border-radius: 12px;
            border: 5px solid #c8e6c9;
            max-width: 400px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        }
        @media (max-width: 768px) {
            .villager-img {
                float: none;
                margin: 1.5rem auto;
                max-width: 100%;
            }
        }
        .link-list {
            background: #f1f8e9;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .link-list ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
        }
        .link-list li a {
            background: #4caf50;
            color: white;
            padding: 0.6rem 1.2rem;
            border-radius: 25px;
            font-weight: 600;
            display: inline-block;
        }
        .link-list li a:hover {
            background: #388e3c;
            text-decoration: none;
            transform: translateY(-3px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .sidebar {
            background: white;
            padding: 1.8rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget-title {
            color: #2e7d32;
            font-size: 1.4rem;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #c8e6c9;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .search-form input, .comment-form input, .comment-form textarea, .rating-form select {
            padding: 0.8rem 1rem;
            border: 2px solid #c8e6c9;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .search-form input:focus, .comment-form input:focus, .comment-form textarea:focus, .rating-form select:focus {
            outline: none;
            border-color: #4caf50;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        button, .btn {
            background: #4caf50;
            color: white;
            border: none;
            padding: 0.9rem 1.5rem;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            font-size: 1rem;
        }
        button:hover, .btn:hover {
            background: #388e3c;
            transform: translateY(-2px);
            text-decoration: none;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #ffc107;
            margin: 0.5rem 0;
        }
        .site-footer {
            background: #2e7d32;
            color: white;
            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-logo {
            font-family: 'Comic Sans MS', cursive;
            font-size: 2.2rem;
            color: #c8e6c9;
            margin-bottom: 1rem;
        }
        .footer-section h3 {
            color: #c8e6c9;
            font-size: 1.4rem;
            margin-bottom: 1.2rem;
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section ul li {
            margin-bottom: 0.7rem;
        }
        .footer-section a {
            color: #e8f5e9;
        }
        friend-link {
            display: block;
            margin: 0.5rem 0;
            padding: 0.5rem;
            background: rgba(255,255,255,0.1);
            border-radius: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.2);
            font-size: 0.9rem;
            color: #c8e6c9;
        }
