        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-green: #A6D389;
            --matcha-dark: #6B8E4E;
            --matcha-light: #D4E8C9;
            --accent-pink: #FFB8C6;
            --text-dark: #2C3E2D;
            --text-light: #5A725B;
            --bg-cream: #FFFBF0;
            --bg-white: #FFFFFF;
            --shadow: 0 4px 12px rgba(107, 142, 78, 0.1);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--bg-cream);
            color: var(--text-dark);
            line-height: 1.7;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            color: var(--matcha-dark);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-pink);
            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; }
        .emoji { margin-right: 5px; }
        .section-spacing {
            padding: 60px 0;
        }
        .site-header {
            background: linear-gradient(135deg, var(--matcha-light) 0%, var(--bg-white) 100%);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            color: var(--matcha-dark);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo:hover {
            text-decoration: none;
            color: var(--text-dark);
        }
        .my-logo i {
            color: var(--primary-green);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--matcha-dark);
            cursor: pointer;
        }
        .nav-menu {
            display: flex;
            gap: 30px;
            list-style: none;
        }
        .nav-menu a {
            font-weight: 600;
            padding: 5px 10px;
            border-radius: 4px;
        }
        .nav-menu a:hover {
            background-color: var(--matcha-light);
            text-decoration: none;
        }
        .breadcrumb {
            padding: 15px 20px;
            background-color: var(--bg-white);
            border-bottom: 1px solid var(--matcha-light);
            font-size: 0.9rem;
        }
        .breadcrumb a:not(:last-child)::after {
            content: " › ";
            margin: 0 8px;
            color: var(--text-light);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 30px 20px;
        }
        article {
            background-color: var(--bg-white);
            border-radius: 16px;
            padding: 40px;
            box-shadow: var(--shadow);
        }
        h1 {
            font-size: 2.8rem;
            color: var(--matcha-dark);
            margin-bottom: 25px;
            line-height: 1.2;
            border-bottom: 3px solid var(--primary-green);
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2rem;
            color: var(--text-dark);
            margin: 45px 0 20px;
            padding-left: 15px;
            border-left: 5px solid var(--accent-pink);
        }
        h3 {
            font-size: 1.6rem;
            color: var(--text-light);
            margin: 35px 0 15px;
        }
        h4 {
            font-size: 1.3rem;
            color: var(--matcha-dark);
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 1.5em;
            font-size: 1.1rem;
            text-align: justify;
        }
        .intro {
            font-size: 1.2rem;
            background-color: var(--matcha-light);
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 35px;
            border-left: 5px solid var(--matcha-dark);
        }
        .highlight-box {
            background: linear-gradient(to right, #f8fff8, #ffffff);
            border: 2px dashed var(--primary-green);
            padding: 25px;
            border-radius: 12px;
            margin: 30px 0;
        }
        .image-with-caption {
            margin: 40px auto;
            max-width: 800px;
            text-align: center;
        }
        .image-with-caption img {
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.1);
            border: 5px solid white;
        }
        .caption {
            font-style: italic;
            color: var(--text-light);
            margin-top: 10px;
            font-size: 0.95rem;
        }
        aside {
            background-color: var(--bg-white);
            border-radius: 16px;
            padding: 25px;
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 140px;
        }
        .widget {
            margin-bottom: 35px;
        }
        .widget h3 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: var(--matcha-dark);
            padding-bottom: 10px;
            border-bottom: 2px solid var(--matcha-light);
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        label {
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--text-dark);
        }
        input, textarea, select {
            padding: 12px 15px;
            border: 1px solid var(--matcha-light);
            border-radius: 8px;
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--matcha-dark);
            box-shadow: 0 0 0 3px rgba(166, 211, 137, 0.3);
        }
        button, .btn {
            background-color: var(--matcha-dark);
            color: white;
            border: none;
            padding: 14px 25px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }
        button:hover, .btn:hover {
            background-color: var(--primary-green);
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(107, 142, 78, 0.2);
            text-decoration: none;
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: #FFD700;
            margin: 10px 0;
        }
        .stars i {
            cursor: pointer;
            transition: var(--transition);
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        footer {
            background-color: var(--text-dark);
            color: var(--bg-cream);
            padding: 50px 20px 30px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--primary-green);
        }
        friend-link {
            display: block;
            margin-bottom: 8px;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid var(--text-light);
            font-size: 0.9rem;
            color: #aaa;
        }
        .update-time {
            background-color: var(--matcha-light);
            padding: 10px 20px;
            border-radius: 20px;
            display: inline-block;
            margin: 20px 0;
            font-weight: 600;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
            h1 {
                font-size: 2.3rem;
            }
            h2 {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--bg-white);
                padding: 20px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            }
            .nav-menu.active {
                display: flex;
            }
            .header-container {
                flex-wrap: wrap;
            }
            .main-content, article {
                padding: 20px;
            }
        }
