        * {
            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(#e0d8c5 1px, transparent 1px);
            background-size: 20px 20px;
        }
        a {
            color: #4a7c59;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #2d5a3d;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: #fff;
            border-bottom: 3px solid #e0d8c5;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-family: 'Comic Sans MS', cursive, sans-serif;
            font-size: 2.2rem;
            font-weight: bold;
            color: #4a7c59;
            text-shadow: 2px 2px 0 #e0d8c5;
            letter-spacing: -1px;
        }
        .logo a:hover {
            color: #2d5a3d;
            text-shadow: 2px 2px 0 #c9bda5;
        }
        .logo span {
            color: #ff9a8b;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: #ff9a8b;
            transition: width 0.3s ease;
        }
        .main-nav a:hover:after {
            width: 100%;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: #4a7c59;
            border-radius: 2px;
            transition: 0.3s;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }
        .search-container {
            margin: 2rem auto;
            max-width: 600px;
            padding: 0 20px;
        }
        .search-form {
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border: 2px solid #4a7c59;
        }
        .search-form input {
            flex-grow: 1;
            padding: 15px 25px;
            border: none;
            font-size: 1.1rem;
            outline: none;
        }
        .search-form button {
            background-color: #4a7c59;
            color: white;
            border: none;
            padding: 0 30px;
            cursor: pointer;
            font-size: 1.2rem;
            transition: background-color 0.3s;
        }
        .search-form button:hover {
            background-color: #2d5a3d;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.95rem;
            color: #666;
        }
        .breadcrumb a {
            color: #666;
        }
        .breadcrumb a:hover {
            color: #4a7c59;
        }
        .breadcrumb span {
            margin: 0 10px;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: #fff;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            border: 1px solid #e0d8c5;
        }
        h1 {
            font-size: 2.8rem;
            color: #2d5a3d;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px dashed #ff9a8b;
            padding-bottom: 1rem;
        }
        h2 {
            font-size: 2rem;
            color: #4a7c59;
            margin: 2.5rem 0 1.5rem;
            padding-left: 1rem;
            border-left: 6px solid #ff9a8b;
        }
        h3 {
            font-size: 1.5rem;
            color: #6a9c7d;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .intro {
            font-size: 1.3rem;
            color: #555;
            background-color: #f5f2eb;
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 2.5rem;
            border-left: 5px solid #4a7c59;
        }
        .highlight {
            background-color: #fff9c4;
            padding: 0.2rem 0.5rem;
            border-radius: 3px;
            font-weight: 600;
        }
        b, strong {
            color: #2d5a3d;
        }
        em {
            color: #ff9a8b;
            font-style: italic;
        }
        .villager-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .villager-card {
            background: linear-gradient(145deg, #ffffff, #f0ece1);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            border: 2px solid transparent;
        }
        .villager-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
            border-color: #ff9a8b;
        }
        .villager-img {
            height: 200px;
            width: 100%;
            object-fit: cover;
            background-color: #e0d8c5;
        }
        .villager-info {
            padding: 1.5rem;
        }
        .villager-name {
            font-size: 1.5rem;
            color: #2d5a3d;
            margin-bottom: 0.5rem;
        }
        .villager-personality {
            display: inline-block;
            background-color: #4a7c59;
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }
        .sidebar {
            background-color: #fff;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            border: 1px solid #e0d8c5;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-title {
            font-size: 1.5rem;
            color: #2d5a3d;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #ff9a8b;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .stars {
            display: flex;
            gap: 5px;
            direction: rtl;
        }
        .stars input {
            display: none;
        }
        .stars label {
            font-size: 2rem;
            color: #e0d8c5;
            cursor: pointer;
            transition: color 0.3s;
        }
        .stars input:checked ~ label,
        .stars label:hover,
        .stars label:hover ~ label {
            color: #ffc107;
        }
        textarea, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e0d8c5;
            border-radius: 10px;
            font-size: 1rem;
            transition: border-color 0.3s;
            font-family: inherit;
        }
        textarea:focus, input[type="text"]:focus, input[type="email"]:focus {
            outline: none;
            border-color: #4a7c59;
        }
        button[type="submit"] {
            background-color: #4a7c59;
            color: white;
            border: none;
            padding: 15px;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        button[type="submit"]:hover {
            background-color: #2d5a3d;
        }
        .featured-image {
            margin: 3rem auto;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
            max-width: 800px;
        }
        .featured-image figcaption {
            text-align: center;
            padding: 1rem;
            font-style: italic;
            color: #666;
            background-color: #f5f2eb;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 4rem 0 2rem;
            padding: 2rem;
            background-color: #fff;
            border-radius: 15px;
            border: 2px dashed #4a7c59;
        }
        .web-link {
            background-color: #f5f2eb;
            padding: 1rem 1.5rem;
            border-radius: 10px;
            transition: transform 0.3s, background-color 0.3s;
        }
        .web-link:hover {
            transform: translateX(5px);
            background-color: #e8e2d1;
        }
        .web-link a {
            font-weight: 600;
            color: #2d5a3d;
            display: block;
        }
        .site-footer {
            background-color: #2d5a3d;
            color: #fff;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-title {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            color: #ff9a8b;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #e0d8c5;
        }
        .footer-links a:hover {
            color: #ff9a8b;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #4a7c59;
            font-size: 0.9rem;
            color: #b0d0b9;
        }
        @media (max-width: 768px) {
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: #fff;
                padding: 1rem;
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
                border-top: 2px solid #e0d8c5;
            }
            .main-nav.active ul {
                display: flex;
            }
            .hamburger {
                display: flex;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .article-content {
                padding: 1.5rem;
            }
            .sidebar {
                position: static;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
