        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: #333;
            background-color: #f8f5f0;
            background-image: radial-gradient(#e0d6c9 1px, transparent 1px);
            background-size: 20px 20px;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        h1, h2, h3, h4 {
            font-family: Georgia, 'Times New Roman', Times, serif;
            color: #2a4d2a;
            margin-top: 1.5em;
            margin-bottom: 0.5em;
            font-weight: 700;
            line-height: 1.3;
        }
        h1 {
            font-size: clamp(2.5rem, 5vw, 3.8rem);
            text-align: center;
            border-bottom: 3px double #8a7356;
            padding-bottom: 20px;
            margin-top: 0.5em;
        }
        h2 {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            border-left: 5px solid #8a7356;
            padding-left: 15px;
            margin-top: 2em;
        }
        h3 {
            font-size: clamp(1.5rem, 3vw, 1.9rem);
            color: #4a6b4a;
        }
        h4 {
            font-size: 1.4rem;
            color: #6b8a6b;
        }
        p {
            margin-bottom: 1.5em;
            text-align: justify;
            hyphens: auto;
        }
        a {
            color: #5a7d5a;
            text-decoration: none;
            transition: color 0.3s ease, text-decoration 0.3s ease;
        }
        a:hover {
            color: #2a4d2a;
            text-decoration: underline;
        }
        strong {
            color: #2a4d2a;
            font-weight: 700;
        }
        em {
            font-style: italic;
            color: #666;
        }
        blockquote {
            border-left: 4px solid #8a7356;
            padding-left: 20px;
            margin: 2em 0;
            font-style: italic;
            background-color: #f1ede5;
            padding: 20px;
            border-radius: 0 8px 8px 0;
        }
        .container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }
        header {
            background-color: #2a4d2a;
            color: #f8f5f0;
            padding: 1.5em 0;
            border-radius: 0 0 12px 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            margin-bottom: 30px;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        .my-logo {
            font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
            font-size: 2.2rem;
            font-weight: 700;
            color: #e6d6b8;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo:hover {
            text-decoration: none;
            color: #fff;
        }
        .my-logo i {
            font-size: 1.8rem;
        }
        .search-form {
            display: flex;
            flex-grow: 1;
            max-width: 500px;
        }
        .search-form input {
            flex-grow: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 25px 0 0 25px;
            font-size: 1rem;
        }
        .search-form button {
            background-color: #8a7356;
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 25px 25px 0;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .search-form button:hover {
            background-color: #a38b6e;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #c9c0b0;
        }
        .breadcrumb a {
            color: #e6d6b8;
        }
        .breadcrumb a:hover {
            color: white;
        }
        .breadcrumb span {
            margin: 0 5px;
        }
        nav {
            position: relative;
        }
        .nav-desktop {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
            list-style: none;
            background-color: #3a5d3a;
            border-radius: 8px;
            padding: 10px;
            margin-top: 10px;
        }
        .nav-desktop li {
            flex: 1;
            min-width: 150px;
        }
        .nav-desktop a {
            display: block;
            color: #f8f5f0;
            padding: 12px 15px;
            border-radius: 5px;
            text-align: center;
            transition: all 0.3s;
        }
        .nav-desktop a:hover {
            background-color: #4a6d4a;
            text-decoration: none;
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #e6d6b8;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        .nav-mobile {
            display: none;
            list-style: none;
            background-color: #3a5d3a;
            border-radius: 8px;
            padding: 10px;
            margin-top: 10px;
            flex-direction: column;
        }
        .nav-mobile.active {
            display: flex;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .content {
            background-color: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        aside {
            background-color: #f1ede5;
            padding: 25px;
            border-radius: 12px;
            height: fit-content;
            box-shadow: 0 5px 10px rgba(0,0,0,0.05);
        }
        .widget {
            margin-bottom: 30px;
        }
        .widget h3 {
            font-size: 1.3rem;
            border-bottom: 2px solid #8a7356;
            padding-bottom: 8px;
            margin-bottom: 15px;
        }
        .comment-form, .rating-form {
            background-color: #f9f7f3;
            padding: 25px;
            border-radius: 8px;
            margin: 30px 0;
            border: 1px solid #e0d6c9;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #2a4d2a;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-family: inherit;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: #ccc;
            cursor: pointer;
        }
        .stars i:hover,
        .stars i.active {
            color: #ffc107;
        }
        button[type="submit"] {
            background-color: #2a4d2a;
            color: white;
            padding: 14px 30px;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        button[type="submit"]:hover {
            background-color: #3a5d3a;
        }
        .featured-img {
            margin: 30px 0;
            position: relative;
        }
        .featured-img figcaption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: 10px;
        }
        .link-list {
            list-style: none;
            padding-left: 0;
        }
        .link-list li {
            margin-bottom: 12px;
            padding-left: 20px;
            position: relative;
        }
        .link-list li:before {
            content: '➤';
            position: absolute;
            left: 0;
            color: #8a7356;
        }
        footer {
            background-color: #2a4d2a;
            color: #f8f5f0;
            padding: 40px 20px;
            border-radius: 12px 12px 0 0;
            margin-top: 50px;
            text-align: center;
        }
        friend-link {
            display: block;
            margin: 20px 0;
        }
        friend-link a {
            color: #e6d6b8;
            margin: 0 15px;
            font-size: 1.1rem;
        }
        friend-link a:hover {
            color: white;
            text-decoration: underline;
        }
        .copyright {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #3a5d3a;
            font-size: 0.9rem;
            color: #c9c0b0;
        }
        .update-time {
            font-size: 0.9rem;
            color: #8a7356;
            text-align: right;
            margin-bottom: 20px;
            font-style: italic;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .highlight-box {
            background: linear-gradient(135deg, #f1ede5, #e6d6b8);
            border-left: 5px solid #8a7356;
            padding: 25px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        @media (max-width: 1024px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            body {
                padding: 0 15px;
            }
            .header-top {
                flex-direction: column;
                align-items: stretch;
            }
            .search-form {
                max-width: 100%;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
                align-self: flex-end;
                margin-top: -50px;
            }
            .nav-mobile {
                display: none;
            }
            .content {
                padding: 25px;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
        }
