* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #1a3c34;
            --primary-light: #2a5a4e;
            --secondary: #e8b830;
            --accent: #d94f30;
            --bg: #f7f4ef;
            --card-bg: #ffffff;
            --text: #1e1e1e;
            --text-light: #4a4a4a;
            --border: #d0cbc4;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            --radius: 12px;
            --font: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            --max-width: 1200px;
            --header-h: 72px;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font);
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            padding-top: var(--header-h);
        }
        a {
            color: var(--primary-light);
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: var(--accent);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
        }
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--header-h);
            background: var(--primary);
            color: #fff;
            z-index: 1000;
            display: flex;
            align-items: center;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 6px;
            text-decoration: none;
        }
        .my-logo i {
            color: var(--secondary);
            font-size: 1.4rem;
        }
        .my-logo span {
            background: var(--secondary);
            color: var(--primary);
            padding: 0 8px;
            border-radius: 6px;
            font-size: 0.75rem;
            margin-left: 4px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 4px 8px;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        nav a {
            color: #e0e0e0;
            font-size: 0.92rem;
            padding: 6px 12px;
            border-radius: 8px;
            transition: background 0.2s, color 0.2s;
            font-weight: 500;
        }
        nav a:hover {
            background: rgba(255, 255, 255, 0.12);
            color: #fff;
        }
        nav a.active {
            background: var(--secondary);
            color: var(--primary);
        }
        .breadcrumb {
            background: var(--card-bg);
            padding: 10px 0;
            border-bottom: 1px solid var(--border);
            font-size: 0.85rem;
            color: var(--text-light);
        }
        .breadcrumb .container {
            display: flex;
            flex-wrap: wrap;
            gap: 4px 8px;
        }
        .breadcrumb a {
            color: var(--primary-light);
        }
        .breadcrumb span {
            color: var(--text-light);
        }
        .page-wrap {
            padding: 30px 0 60px;
        }
        h1 {
            font-size: 2.4rem;
            font-weight: 800;
            line-height: 1.2;
            color: var(--primary);
            margin-bottom: 12px;
        }
        h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            margin-top: 48px;
            margin-bottom: 16px;
            padding-bottom: 6px;
            border-bottom: 3px solid var(--secondary);
        }
        h3 {
            font-size: 1.35rem;
            font-weight: 600;
            color: var(--primary-light);
            margin-top: 32px;
            margin-bottom: 10px;
        }
        h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text);
            margin-top: 20px;
            margin-bottom: 6px;
        }
        p {
            margin-bottom: 16px;
            color: var(--text-light);
        }
        .lead {
            font-size: 1.15rem;
            color: var(--text);
            font-weight: 500;
            margin-bottom: 24px;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 4px;
        }
        strong {
            color: var(--primary);
        }
        .card {
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 28px 30px;
            box-shadow: var(--shadow);
            margin-bottom: 28px;
        }
        .card-highlight {
            border-left: 5px solid var(--secondary);
        }
        .img-wrapper {
            margin: 24px 0 20px;
            border-radius: var(--radius);
            overflow: hidden;
            background: #e8e3dc;
            position: relative;
        }
        .img-wrapper img {
            width: 100%;
            object-fit: cover;
            min-height: 260px;
        }
        .img-caption {
            font-size: 0.85rem;
            color: var(--text-light);
            margin-top: 6px;
            font-style: italic;
        }
        .search-box {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin: 16px 0 8px;
        }
        .search-box input {
            flex: 1;
            min-width: 200px;
            padding: 14px 18px;
            border: 2px solid var(--border);
            border-radius: 10px;
            font-size: 1rem;
            outline: none;
            transition: border 0.2s;
            background: #fff;
        }
        .search-box input:focus {
            border-color: var(--primary-light);
        }
        .search-box button {
            padding: 14px 32px;
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .search-box button:hover {
            background: var(--primary-light);
            transform: translateY(-1px);
        }
        .search-box button:active {
            transform: translateY(0);
        }
        .comment-area {
            margin-top: 20px;
        }
        .comment-area textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid var(--border);
            border-radius: 10px;
            font-size: 1rem;
            font-family: var(--font);
            resize: vertical;
            min-height: 100px;
            outline: none;
            transition: border 0.2s;
            background: #fff;
        }
        .comment-area textarea:focus {
            border-color: var(--primary-light);
        }
        .comment-area .row {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 12px;
            align-items: center;
        }
        .comment-area .row input {
            flex: 1;
            min-width: 180px;
            padding: 12px 16px;
            border: 2px solid var(--border);
            border-radius: 10px;
            font-size: 0.95rem;
            outline: none;
            background: #fff;
        }
        .comment-area .row input:focus {
            border-color: var(--primary-light);
        }
        .comment-area button {
            padding: 12px 28px;
            background: var(--secondary);
            color: var(--primary);
            border: none;
            border-radius: 10px;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .comment-area button:hover {
            background: #d4a520;
            transform: translateY(-1px);
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #ccc;
            cursor: pointer;
            margin: 8px 0;
        }
        .rating-stars i {
            transition: color 0.2s, transform 0.1s;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: var(--secondary);
            transform: scale(1.1);
        }
        .link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
            list-style: none;
            padding: 0;
            margin: 12px 0;
        }
        .link-list li a {
            display: inline-block;
            padding: 4px 0;
            font-weight: 500;
        }
        .link-list li a::before {
            content: "▸ ";
            color: var(--secondary);
        }
        footer {
            background: var(--primary);
            color: #ddd;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        footer .container {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }
        footer h4 {
            color: var(--secondary);
            font-size: 1rem;
            margin-bottom: 8px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 4px;
        }
        footer a {
            color: #bbb;
        }
        footer a:hover {
            color: #fff;
        }
        friend-link {
            display: block;
            padding: 12px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            margin-top: 12px;
        }
        friend-link a {
            display: inline-block;
            margin: 0 12px 4px 0;
            font-size: 0.9rem;
        }
        .copyright {
            font-size: 0.85rem;
            color: #999;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 16px;
            margin-top: 8px;
            text-align: center;
        }
        .copyright strong {
            color: #ccc;
        }
        @media (max-width: 768px) {
            :root {
                --header-h: 62px;
            }
            body {
                padding-top: var(--header-h);
            }
            .header-inner {
                padding: 0 14px;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .nav-toggle {
                display: block;
            }
            nav {
                position: absolute;
                top: var(--header-h);
                left: 0;
                right: 0;
                background: var(--primary);
                flex-direction: column;
                padding: 12px 20px 20px;
                gap: 6px;
                box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
                transform: translateY(-120%);
                opacity: 0;
                pointer-events: none;
                transition: transform 0.3s ease, opacity 0.3s ease;
                border-radius: 0 0 16px 16px;
            }
            nav.open {
                transform: translateY(0);
                opacity: 1;
                pointer-events: auto;
            }
            nav a {
                font-size: 1rem;
                padding: 10px 14px;
                width: 100%;
                border-radius: 8px;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
                margin-top: 32px;
            }
            h3 {
                font-size: 1.15rem;
            }
            .card {
                padding: 18px 16px;
            }
            .search-box button {
                width: 100%;
                justify-content: center;
            }
            .comment-area .row {
                flex-direction: column;
            }
            .comment-area .row input {
                width: 100%;
                min-width: 0;
            }
            .img-wrapper img {
                min-height: 180px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            h1 {
                font-size: 1.5rem;
            }
            .rating-stars {
                font-size: 1.4rem;
            }
        }
        .mt-1 {
            margin-top: 8px;
        }
        .mt-2 {
            margin-top: 16px;
        }
        .mt-3 {
            margin-top: 28px;
        }
        .mb-1 {
            margin-bottom: 8px;
        }
        .mb-2 {
            margin-bottom: 16px;
        }
        .flex {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            align-items: center;
        }
        .text-center {
            text-align: center;
        }
        .tag {
            display: inline-block;
            background: var(--secondary);
            color: var(--primary);
            padding: 2px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        .last-update {
            font-size: 0.85rem;
            color: var(--text-light);
            background: #eee;
            display: inline-block;
            padding: 2px 14px;
            border-radius: 20px;
        }
