        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --green-dark: #1a3c2e;
            --green-mid: #2a6b4e;
            --green-light: #3d9e72;
            --gold: #d4a843;
            --gold-light: #f0d68a;
            --cream: #faf6ed;
            --brown: #5a3e28;
            --text: #1e1e1e;
            --text-light: #4a4a4a;
            --white: #ffffff;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            --radius: 12px;
            --max-width: 1200px;
            --font: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font);
            background: var(--cream);
            color: var(--text);
            line-height: 1.7;
            padding-top: 70px;
        }
        a {
            color: var(--green-mid);
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: var(--gold);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: var(--green-dark);
        }
        h1 {
            font-size: 2.4rem;
            margin-bottom: 0.5rem;
        }
        h2 {
            font-size: 1.8rem;
            margin-top: 2.5rem;
            margin-bottom: 0.8rem;
            border-bottom: 3px solid var(--gold-light);
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.4rem;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
        }
        h4 {
            font-size: 1.15rem;
            margin-top: 1.2rem;
            margin-bottom: 0.4rem;
            color: var(--green-mid);
        }
        p {
            margin-bottom: 1.2rem;
            color: var(--text-light);
        }
        ul,
        ol {
            margin: 0.8rem 0 1.2rem 1.8rem;
            color: var(--text-light);
        }
        li {
            margin-bottom: 0.4rem;
        }
        strong {
            color: var(--green-dark);
            font-weight: 700;
        }
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: var(--green-dark);
            box-shadow: var(--shadow);
            padding: 0 20px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--gold);
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            font-size: 1.6rem;
            color: var(--gold-light);
        }
        .my-logo:hover {
            color: var(--gold-light);
        }
        .my-logo span {
            font-weight: 300;
            font-size: 0.8rem;
            color: var(--gold-light);
            display: none;
        }
        @media (min-width: 640px) {
            .my-logo span {
                display: inline;
            }
        }
        nav {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .nav-links {
            display: flex;
            gap: 8px;
            list-style: none;
            margin: 0;
        }
        .nav-links li a {
            color: var(--cream);
            font-size: 0.9rem;
            padding: 6px 14px;
            border-radius: 30px;
            transition: background 0.25s, color 0.25s;
            font-weight: 500;
        }
        .nav-links li a:hover {
            background: var(--gold);
            color: var(--green-dark);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: var(--gold);
            cursor: pointer;
            padding: 4px 8px;
        }
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 70px;
                left: 0;
                right: 0;
                background: var(--green-dark);
                flex-direction: column;
                padding: 20px 24px;
                gap: 12px;
                transform: translateY(-120%);
                transition: transform 0.35s ease;
                box-shadow: var(--shadow);
                border-top: 2px solid var(--gold);
                z-index: 999;
            }
            .nav-links.open {
                transform: translateY(0);
            }
            .nav-links li a {
                font-size: 1.1rem;
                padding: 10px 16px;
                display: block;
            }
            .hamburger {
                display: block;
            }
        }
        .breadcrumb {
            background: var(--cream);
            padding: 12px 0 6px;
            font-size: 0.85rem;
            color: var(--text-light);
            border-bottom: 1px solid #e8e0d0;
        }
        .breadcrumb a {
            color: var(--green-mid);
        }
        .breadcrumb a:hover {
            color: var(--gold);
        }
        .breadcrumb i {
            margin: 0 6px;
            font-size: 0.7rem;
            color: var(--green-light);
        }
        .hero {
            background: linear-gradient(145deg, var(--green-dark) 0%, var(--green-mid) 100%);
            color: var(--cream);
            padding: 50px 0 40px;
            border-radius: 0 0 var(--radius) var(--radius);
            margin-bottom: 30px;
        }
        .hero h1 {
            color: var(--gold);
            font-size: 2.6rem;
        }
        .hero p {
            color: var(--gold-light);
            font-size: 1.15rem;
            max-width: 700px;
        }
        .hero .meta-info {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 16px;
            font-size: 0.9rem;
            color: var(--gold-light);
        }
        .hero .meta-info i {
            margin-right: 6px;
        }
        .search-section {
            background: var(--white);
            padding: 24px 28px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            margin-bottom: 30px;
        }
        .search-section form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .search-section input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 14px 18px;
            border: 2px solid #ddd;
            border-radius: 30px;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
        }
        .search-section input[type="text"]:focus {
            border-color: var(--gold);
        }
        .search-section button {
            background: var(--gold);
            color: var(--green-dark);
            border: none;
            padding: 14px 32px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.15s;
        }
        .search-section button:hover {
            background: var(--gold-light);
            transform: scale(1.02);
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }
        @media (min-width: 992px) {
            .main-grid {
                grid-template-columns: 2fr 1fr;
            }
        }
        .content-area {
            background: var(--white);
            padding: 30px 28px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }
        .sidebar-card {
            background: var(--white);
            padding: 22px 20px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            margin-top: 0;
            border-bottom: 2px solid var(--gold-light);
            padding-bottom: 8px;
        }
        .sidebar-card ul {
            list-style: none;
            margin: 12px 0 0;
            padding: 0;
        }
        .sidebar-card ul li {
            margin-bottom: 8px;
        }
        .sidebar-card ul li a {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 6px 0;
            border-bottom: 1px solid #f0ebe0;
            font-weight: 500;
        }
        .sidebar-card ul li a i {
            color: var(--gold);
            width: 20px;
            text-align: center;
        }
        .featured-image {
            margin: 24px 0 30px;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            background: var(--cream);
        }
        .featured-image img {
            width: 100%;
            max-height: 420px;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 10px 16px;
            font-size: 0.85rem;
            color: var(--text-light);
            background: var(--cream);
            font-style: italic;
        }
        .comment-section,
        .score-section {
            background: var(--white);
            padding: 24px 28px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            margin-top: 30px;
        }
        .comment-section form,
        .score-section form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .comment-section textarea,
        .score-section input,
        .score-section select {
            padding: 12px 16px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            font-family: var(--font);
            outline: none;
            transition: border 0.3s;
        }
        .comment-section textarea:focus,
        .score-section input:focus,
        .score-section select:focus {
            border-color: var(--gold);
        }
        .comment-section textarea {
            min-height: 110px;
            resize: vertical;
        }
        .comment-section button,
        .score-section button {
            background: var(--green-mid);
            color: var(--cream);
            border: none;
            padding: 12px 28px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.15s;
            align-self: flex-start;
        }
        .comment-section button:hover,
        .score-section button:hover {
            background: var(--green-light);
            transform: scale(1.02);
        }
        footer {
            background: var(--green-dark);
            color: var(--cream);
            padding: 40px 20px 24px;
            margin-top: 50px;
            border-radius: var(--radius) var(--radius) 0 0;
        }
        footer .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 28px;
            max-width: var(--max-width);
            margin: 0 auto;
        }
        @media (min-width: 640px) {
            footer .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (min-width: 992px) {
            footer .footer-grid {
                grid-template-columns: 2fr 1fr 1fr;
            }
        }
        footer h4 {
            color: var(--gold);
            margin-top: 0;
            font-size: 1.1rem;
            border-bottom: 2px solid var(--green-mid);
            padding-bottom: 6px;
        }
        footer p,
        footer li {
            color: var(--gold-light);
            font-size: 0.9rem;
        }
        footer a {
            color: var(--gold-light);
        }
        footer a:hover {
            color: var(--gold);
        }
        footer ul {
            list-style: none;
            margin: 10px 0 0;
            padding: 0;
        }
        footer ul li {
            margin-bottom: 6px;
        }
        footer .copyright {
            text-align: center;
            padding-top: 24px;
            margin-top: 24px;
            border-top: 1px solid var(--green-mid);
            font-size: 0.85rem;
            color: var(--gold-light);
            max-width: var(--max-width);
            margin-left: auto;
            margin-right: auto;
        }
        friend-link {
            display: block;
            margin-top: 10px;
            font-size: 0.9rem;
        }
        friend-link a {
            display: inline-block;
            margin-right: 16px;
            color: var(--gold-light);
        }
        friend-link a:hover {
            color: var(--gold);
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .hero h1 {
                font-size: 1.9rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .content-area,
            .search-section,
            .comment-section,
            .score-section {
                padding: 18px 14px;
            }
            .search-section form {
                flex-direction: column;
            }
            .search-section input[type="text"] {
                min-width: auto;
            }
        }
        @media (max-width: 380px) {
            .my-logo {
                font-size: 1.3rem;
            }
            .my-logo i {
                font-size: 1.2rem;
            }
        }
        .text-gold {
            color: var(--gold);
        }
        .text-green {
            color: var(--green-mid);
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .emoji-big {
            font-size: 1.8rem;
            display: inline-block;
            margin-right: 6px;
        }
        .highlight-box {
            background: #f6f0e4;
            border-left: 5px solid var(--gold);
            padding: 16px 20px;
            border-radius: 0 8px 8px 0;
            margin: 18px 0;
        }
        .highlight-box p {
            margin-bottom: 0;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 18px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        table th,
        table td {
            padding: 10px 14px;
            border: 1px solid #e0d8c8;
            text-align: left;
        }
        table th {
            background: var(--green-dark);
            color: var(--gold);
            font-weight: 600;
        }
        table tr:nth-child(even) {
            background: #f8f4ec;
        }
        .btn-outline {
            display: inline-block;
            padding: 8px 20px;
            border: 2px solid var(--gold);
            border-radius: 30px;
            color: var(--green-dark);
            font-weight: 600;
            transition: all 0.25s;
        }
        .btn-outline:hover {
            background: var(--gold);
            color: var(--green-dark);
        }
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--gold);
            color: var(--green-dark);
            border: none;
            border-radius: 50%;
            font-size: 1.4rem;
            cursor: pointer;
            box-shadow: var(--shadow);
            transition: transform 0.2s, background 0.2s;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .scroll-top:hover {
            transform: scale(1.08);
            background: var(--gold-light);
        }
        @media (max-width: 480px) {
            .scroll-top {
                bottom: 16px;
                right: 16px;
                width: 42px;
                height: 42px;
                font-size: 1.1rem;
            }
        }
