        * {
            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-color: #f9f7f2;
            background-image: radial-gradient(#e0dcc9 1px, transparent 1px);
            background-size: 20px 20px;
        }
        a {
            color: #4a7c54;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #2d5a3c;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .main-header {
            background-color: #fff;
            border-bottom: 3px solid #8bc34a;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-family: 'Comic Sans MS', cursive, sans-serif;
            font-size: 2.2rem;
            font-weight: bold;
            color: #5a8c5a;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: #ff9a76;
        }
        .logo a {
            color: inherit;
            text-decoration: none;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .main-nav a {
            font-weight: 600;
            padding: 8px 5px;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #8bc34a;
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #5a8c5a;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: #edf5e9;
            padding: 12px 0;
            font-size: 0.9rem;
            margin-bottom: 25px;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li {
            margin-right: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 10px;
            color: #888;
        }
        .article-hero {
            text-align: center;
            margin-bottom: 40px;
            padding: 30px;
            background: linear-gradient(135deg, #d4edda, #c3e6cb);
            border-radius: 15px;
            border: 2px dashed #5a8c5a;
        }
        .article-hero h1 {
            font-size: 2.8rem;
            color: #2d5a3c;
            margin-bottom: 15px;
            line-height: 1.2;
        }
        .hero-subtitle {
            font-size: 1.2rem;
            color: #555;
            max-width: 800px;
            margin: 0 auto 20px;
        }
        .search-container {
            max-width: 600px;
            margin: 25px auto;
            padding: 15px;
            background-color: white;
            border-radius: 50px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            display: flex;
        }
        .search-input {
            flex-grow: 1;
            padding: 15px 20px;
            border: none;
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
            outline: none;
        }
        .search-btn {
            background-color: #5a8c5a;
            color: white;
            border: none;
            border-radius: 0 50px 50px 0;
            padding: 0 25px;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .search-btn:hover {
            background-color: #2d5a3c;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 40px 0;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        .main-content {
            background-color: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
        h1, h2, h3, h4 {
            color: #3a6b3a;
            margin-top: 1.8em;
            margin-bottom: 0.7em;
            line-height: 1.3;
        }
        h2 {
            font-size: 2rem;
            border-bottom: 2px solid #c3e6cb;
            padding-bottom: 10px;
        }
        h3 {
            font-size: 1.6rem;
            color: #5a8c5a;
        }
        p {
            margin-bottom: 1.5em;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: #444;
            font-weight: 500;
            background-color: #f0f9eb;
            padding: 20px;
            border-left: 5px solid #8bc34a;
            border-radius: 0 10px 10px 0;
            margin-bottom: 2em;
        }
        .highlight {
            background-color: #fff9c4;
            padding: 2px 5px;
            border-radius: 3px;
            font-weight: 600;
        }
        .villager-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .villager-card {
            background: #f9f9f9;
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #e0e0e0;
        }
        .villager-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 25px rgba(0,0,0,0.1);
        }
        .villager-img {
            height: 180px;
            background-color: #c3e6cb;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #555;
            font-size: 4rem;
        }
        .villager-info {
            padding: 15px;
        }
        .villager-name {
            font-weight: bold;
            font-size: 1.2rem;
            color: #2d5a3c;
            margin-bottom: 5px;
        }
        .villager-species, .villager-personality {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 3px;
        }
        .sidebar {
            background-color: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 30px;
        }
        .sidebar-title {
            font-size: 1.3rem;
            color: #3a6b3a;
            padding-bottom: 10px;
            border-bottom: 2px solid #e0f2e0;
            margin-bottom: 15px;
        }
        .widget-list {
            list-style: none;
        }
        .widget-list li {
            padding: 10px 0;
            border-bottom: 1px dashed #eee;
        }
        .widget-list li:last-child {
            border-bottom: none;
        }
        .interactive-section {
            background-color: #f0f7ff;
            padding: 30px;
            border-radius: 15px;
            margin: 40px 0;
            border: 1px solid #c3d9ff;
        }
        .interactive-title {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #2c5282;
        }
        .comment-form, .rating-form, .search-form {
            display: grid;
            gap: 20px;
            margin-top: 20px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-label {
            font-weight: 600;
            margin-bottom: 8px;
            color: #444;
        }
        .form-input, .form-textarea, .form-select {
            padding: 12px 15px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            transition: border-color 0.3s;
        }
        .form-input:focus, .form-textarea:focus, .form-select:focus {
            outline: none;
            border-color: #5a8c5a;
            box-shadow: 0 0 0 3px rgba(90, 140, 90, 0.2);
        }
        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }
        .star-rating {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
        }
        .star-rating .star:hover,
        .star-rating .star.active {
            color: #ffc107;
        }
        .submit-btn {
            background-color: #5a8c5a;
            color: white;
            border: none;
            padding: 15px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .submit-btn:hover {
            background-color: #2d5a3c;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin: 50px 0 30px;
        }
        @media (max-width: 768px) {
            .footer-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .web-link {
            background-color: #edf5e9;
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            transition: background-color 0.3s;
        }
        .web-link:hover {
            background-color: #d4edda;
        }
        .main-footer {
            background-color: #2d5a3c;
            color: #e0f2e0;
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 30px;
        }
        .copyright {
            font-size: 0.9rem;
            color: #b8d4b8;
        }
        .footer-nav ul {
            display: flex;
            list-style: none;
            gap: 20px;
        }
        .footer-nav a {
            color: #c3e6cb;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: white;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
                border-top: 2px solid #8bc34a;
            }
            .main-nav.active ul {
                display: flex;
            }
            .article-hero h1 {
                font-size: 2rem;
            }
            .main-content, .sidebar {
                padding: 25px;
            }
            .villager-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
                gap: 15px;
            }
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .info-box {
            background-color: #e8f4fc;
            border-left: 5px solid #2196f3;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .tip-box {
            background-color: #fff8e1;
            border-left: 5px solid #ffc107;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
