:root {
            --primary-green: #6aab58;
            --secondary-green: #8bc34a;
            --accent-blue: #4fc3f7;
            --warm-brown: #a1887f;
            --light-beige: #f5f1e6;
            --text-dark: #333333;
            --text-light: #5a5a5a;
            --shadow: rgba(106, 171, 88, 0.15);
            --transition: all 0.3s ease;
        }
        * {
            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: var(--text-dark);
            background-color: #fff;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        ul { list-style: none; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: white;
            box-shadow: 0 4px 12px var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-family: 'Comic Sans MS', cursive, sans-serif;
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary-green);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i { color: var(--accent-blue); }
        .desktop-nav ul {
            display: flex;
            gap: 30px;
        }
        .desktop-nav a {
            font-weight: 600;
            padding: 8px 5px;
            border-bottom: 2px solid transparent;
        }
        .desktop-nav a:hover {
            color: var(--primary-green);
            border-bottom-color: var(--primary-green);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: var(--primary-green);
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: white;
            box-shadow: 0 10px 20px var(--shadow);
            flex-direction: column;
            padding: 20px;
        }
        .mobile-nav.active { display: flex; }
        .mobile-nav a {
            padding: 15px 0;
            border-bottom: 1px solid #eee;
            font-weight: 600;
        }
        .mobile-nav a:hover { color: var(--primary-green); }
        .breadcrumb {
            padding: 15px 0;
            background-color: var(--light-beige);
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 10px;
            color: var(--text-light);
        }
        .breadcrumb a:hover { text-decoration: underline; }
        .hero {
            text-align: center;
            padding: 40px 0 30px;
            background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
            border-radius: 0 0 20px 20px;
            margin-bottom: 40px;
        }
        .hero h1 {
            font-size: 2.8rem;
            color: var(--text-dark);
            margin-bottom: 15px;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 800px;
            margin: 0 auto 30px;
        }
        .search-box {
            max-width: 600px;
            margin: 0 auto;
            position: relative;
        }
        .search-box input {
            width: 100%;
            padding: 18px 25px;
            border: 2px solid var(--primary-green);
            border-radius: 50px;
            font-size: 1.1rem;
            outline: none;
            transition: var(--transition);
        }
        .search-box input:focus { box-shadow: 0 0 0 3px var(--shadow); }
        .search-box button {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background-color: var(--primary-green);
            color: white;
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            cursor: pointer;
            font-size: 1.2rem;
            transition: var(--transition);
        }
        .search-box button:hover { background-color: #5a9a4a; }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 20px 0 50px;
        }
        @media (max-width: 992px) {
            .content-grid { grid-template-columns: 1fr; }
        }
        main article { margin-bottom: 50px; }
        h2 {
            font-size: 2.2rem;
            color: var(--primary-green);
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid var(--light-beige);
        }
        h3 {
            font-size: 1.7rem;
            color: var(--warm-brown);
            margin: 30px 0 15px;
        }
        h4 {
            font-size: 1.3rem;
            margin: 25px 0 10px;
            color: var(--text-dark);
        }
        p {
            margin-bottom: 1.5em;
            color: var(--text-light);
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: var(--text-dark);
            background-color: #f9f9f9;
            padding: 20px;
            border-left: 5px solid var(--accent-blue);
            border-radius: 5px;
            margin-bottom: 30px;
        }
        .highlight {
            background-color: #fff9c4;
            padding: 3px 6px;
            border-radius: 3px;
            font-weight: 600;
        }
        .emoji { font-size: 1.2em; }
        .feature-img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 15px;
            margin: 25px 0;
            box-shadow: 0 10px 25px var(--shadow);
            border: 5px solid white;
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-light);
            margin-top: -15px;
            margin-bottom: 25px;
            font-size: 0.95rem;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            box-shadow: 0 5px 15px var(--shadow);
            border-radius: 10px;
            overflow: hidden;
        }
        .data-table th {
            background-color: var(--primary-green);
            color: white;
            text-align: left;
            padding: 18px 15px;
            font-weight: 600;
        }
        .data-table td {
            padding: 15px;
            border-bottom: 1px solid #eee;
        }
        .data-table tr:nth-child(even) { background-color: #f9f9f9; }
        .data-table tr:hover { background-color: #e8f5e9; }
        .tip-box {
            background-color: #e3f2fd;
            border-left: 5px solid var(--accent-blue);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .tip-box strong { color: #1565c0; }
        .sidebar-widget {
            background-color: var(--light-beige);
            padding: 25px;
            border-radius: 15px;
            margin-bottom: 30px;
            box-shadow: 0 8px 20px var(--shadow);
        }
        .sidebar-widget h3 {
            font-size: 1.5rem;
            color: var(--primary-green);
            margin-top: 0;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .villager-list li {
            padding: 12px 0;
            border-bottom: 1px dashed #ddd;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .villager-list li:last-child { border-bottom: none; }
        .villager-list img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--secondary-green);
        }
        .popularity-meter {
            height: 10px;
            background-color: #e0e0e0;
            border-radius: 5px;
            margin-top: 5px;
            overflow: hidden;
        }
        .meter-fill { height: 100%; background-color: var(--primary-green); }
        .interactive-section {
            background-color: white;
            border: 2px solid var(--light-beige);
            border-radius: 15px;
            padding: 30px;
            margin: 40px 0;
            box-shadow: 0 10px 30px var(--shadow);
        }
        .interactive-section h3 { margin-top: 0; }
        .rating-widget, .comment-widget {
            margin-top: 25px;
        }
        .star-rating {
            display: flex;
            gap: 10px;
            margin: 15px 0;
            font-size: 2rem;
            color: #ddd;
        }
        .star-rating i {
            cursor: pointer;
            transition: var(--transition);
        }
        .star-rating i:hover,
        .star-rating i.active { color: #ffc107; }
        form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .form-group { display: flex; flex-direction: column; }
        label {
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--text-dark);
        }
        input, textarea, select {
            padding: 15px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary-green);
            box-shadow: 0 0 0 3px var(--shadow);
        }
        textarea { min-height: 150px; resize: vertical; }
        .btn {
            padding: 16px 30px;
            background-color: var(--primary-green);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            align-self: flex-start;
        }
        .btn:hover {
            background-color: #5a9a4a;
            transform: translateY(-3px);
            box-shadow: 0 7px 15px var(--shadow);
        }
        .longtail-links {
            background-color: #2e7d32;
            color: white;
            padding: 40px 0;
            margin-top: 50px;
        }
        .web-link {
            display: inline-block;
            margin: 10px 20px 10px 0;
            padding: 12px 25px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50px;
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-3px);
        }
        .web-link a { color: white; }
        .site-footer {
            background-color: #1b5e20;
            color: white;
            padding: 40px 0 20px;
        }
        .footer-container {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
        }
        .footer-col { flex: 1; min-width: 250px; }
        .footer-col h4 {
            color: var(--secondary-green);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-col ul li { margin-bottom: 12px; }
        .footer-col a:hover { color: var(--accent-blue); text-decoration: underline; }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #ccc;
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .mobile-menu-btn { display: block; }
            .hero h1 { font-size: 2.2rem; }
            h2 { font-size: 1.9rem; }
            h3 { font-size: 1.5rem; }
            .content-grid { gap: 30px; }
            .interactive-section { padding: 20px; }
            .star-rating { font-size: 1.7rem; }
        }
