*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #f8f7f4;
            color: #1e1e1e;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #1a6d4a;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #b85c1a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(145deg, #1a3c34 0%, #0f2b24 100%);
            color: #fff;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #f5d98a;
            text-shadow: 2px 2px 0 #1a1a1a;
            transition: transform 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            font-size: 2rem;
            color: #f5d98a;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #ffe39a;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-menu {
            display: flex;
            gap: 6px;
            list-style: none;
            flex-wrap: wrap;
        }
        .nav-menu li a {
            color: #f0eee6;
            padding: 8px 14px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: background 0.25s, color 0.25s;
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .nav-menu li a:hover {
            background: rgba(245, 217, 138, 0.2);
            color: #f5d98a;
            text-decoration: none;
        }
        .nav-menu li a.active {
            background: #f5d98a;
            color: #1a3c34;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f5d98a;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        .breadcrumb {
            background: #ecebe6;
            padding: 12px 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #ddd8cf;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #8a7f72;
            font-weight: 600;
        }
        .breadcrumb a {
            color: #1a6d4a;
        }
        .breadcrumb .current {
            color: #5a4e42;
            font-weight: 600;
        }
        main {
            padding: 40px 0 60px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                order: 2;
            }
        }
        article {
            background: #fff;
            border-radius: 24px;
            padding: 36px 32px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
        }
        article h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            color: #1a3c34;
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }
        article h1 i {
            color: #b85c1a;
            margin-right: 10px;
        }
        .meta {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            color: #6b5f52;
            font-size: 0.95rem;
            margin-bottom: 28px;
            border-bottom: 1px solid #e8e3da;
            padding-bottom: 18px;
        }
        .meta i {
            margin-right: 6px;
            color: #b85c1a;
        }
        article h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: #1a3c34;
            margin-top: 48px;
            margin-bottom: 16px;
            padding-bottom: 6px;
            border-bottom: 3px solid #f5d98a;
            display: inline-block;
        }
        article h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #0f2b24;
            margin-top: 32px;
            margin-bottom: 12px;
        }
        article h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #2d4a42;
            margin-top: 24px;
            margin-bottom: 8px;
        }
        article p {
            margin-bottom: 18px;
            color: #2d2a26;
        }
        article ul,
        article ol {
            margin: 12px 0 20px 28px;
            color: #2d2a26;
        }
        article li {
            margin-bottom: 8px;
        }
        .highlight-box {
            background: #f4f1ea;
            border-left: 6px solid #f5d98a;
            padding: 20px 24px;
            border-radius: 0 16px 16px 0;
            margin: 24px 0;
        }
        .stat-badge {
            display: inline-block;
            background: #1a3c34;
            color: #f5d98a;
            padding: 4px 16px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-right: 6px;
        }
        .featured-image {
            margin: 32px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
        }
        .featured-image img {
            width: 100%;
            object-fit: cover;
        }
        .featured-image figcaption {
            background: #f4f1ea;
            padding: 10px 16px;
            font-size: 0.9rem;
            color: #4a4036;
            text-align: center;
            font-style: italic;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 20px;
            padding: 24px 20px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #1a3c34;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
            border-bottom: 2px solid #f5d98a;
            padding-bottom: 10px;
        }
        .link-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .link-list li {
            padding: 8px 0;
            border-bottom: 1px solid #f0ede6;
        }
        .link-list li:last-child {
            border-bottom: none;
        }
        .link-list a {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
            color: #1a6d4a;
        }
        .link-list a i {
            color: #b85c1a;
            font-size: 0.85rem;
            width: 18px;
            text-align: center;
        }
        .link-list a:hover {
            color: #b85c1a;
        }
        .search-form {
            display: flex;
            gap: 8px;
            margin-top: 6px;
        }
        .search-form input {
            flex: 1;
            padding: 12px 16px;
            border: 2px solid #ddd8cf;
            border-radius: 40px;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.25s;
            background: #faf9f6;
        }
        .search-form input:focus {
            border-color: #1a6d4a;
        }
        .search-form button {
            background: #1a6d4a;
            color: #fff;
            border: none;
            border-radius: 40px;
            padding: 0 20px;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .search-form button:hover {
            background: #b85c1a;
        }
        .comment-section,
        .rating-section {
            margin-top: 10px;
        }
        .comment-section textarea {
            width: 100%;
            padding: 14px 16px;
            border: 2px solid #ddd8cf;
            border-radius: 16px;
            font-size: 0.95rem;
            resize: vertical;
            min-height: 90px;
            background: #faf9f6;
            transition: border 0.25s;
            font-family: inherit;
        }
        .comment-section textarea:focus {
            border-color: #1a6d4a;
            outline: none;
        }
        .comment-section .btn,
        .rating-section .btn {
            margin-top: 10px;
            background: #1a3c34;
            color: #f5d98a;
            border: none;
            padding: 10px 28px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .comment-section .btn:hover,
        .rating-section .btn:hover {
            background: #b85c1a;
            color: #fff;
            transform: translateY(-1px);
        }
        .stars {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ddd8cf;
            transition: color 0.2s;
            margin: 8px 0;
        }
        .stars i.active,
        .stars i:hover,
        .stars i:hover~i {
            color: #f5b342;
        }
        .stars i {
            transition: color 0.15s;
        }
        .stars i.active {
            color: #f5b342;
        }
        friend-link {
            display: block;
            background: #1a3c34;
            color: #f0eee6;
            padding: 32px 0 24px;
            margin-top: 10px;
        }
        friend-link .container {
            display: flex;
            flex-wrap: wrap;
            gap: 16px 32px;
            justify-content: center;
        }
        friend-link a {
            color: #f5d98a;
            font-weight: 500;
            padding: 4px 8px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        friend-link a:hover {
            background: rgba(245, 217, 138, 0.12);
            color: #fff;
            text-decoration: none;
        }
        friend-link .fl-label {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #bfb5a6;
            width: 100%;
            text-align: center;
            margin-bottom: 4px;
        }
        footer {
            background: #0a1d18;
            color: #cdc6ba;
            padding: 28px 0;
            font-size: 0.9rem;
        }
        footer .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
        }
        footer .copyright {
            opacity: 0.8;
        }
        footer a {
            color: #f5d98a;
        }
        footer a:hover {
            color: #fff;
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #0f2b24;
                padding: 16px 12px;
                border-radius: 16px;
                margin-top: 8px;
                gap: 4px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                padding: 12px 16px;
                border-radius: 12px;
            }
            .hamburger {
                display: block;
            }
            article {
                padding: 24px 16px;
            }
            article h1 {
                font-size: 1.9rem;
            }
            article h2 {
                font-size: 1.5rem;
            }
            article h3 {
                font-size: 1.2rem;
            }
            .content-grid {
                gap: 24px;
            }
            .breadcrumb ol {
                font-size: 0.8rem;
                gap: 4px 8px;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .stars {
                font-size: 1.5rem;
            }
            footer .container {
                flex-direction: column;
                text-align: center;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            article h1 {
                font-size: 1.6rem;
            }
            .meta {
                font-size: 0.8rem;
                gap: 8px;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                padding: 12px;
                justify-content: center;
            }
        }
        .mt-1 {
            margin-top: 12px;
        }
        .mb-1 {
            margin-bottom: 12px;
        }
        .flex {
            display: flex;
        }
        .gap-2 {
            gap: 8px;
        }
        .text-center {
            text-align: center;
        }
        .rating-display {
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 8px 0;
        }
        .rating-display .avg {
            font-weight: 700;
            font-size: 1.3rem;
            color: #1a3c34;
        }
        .rating-display .stars-display i {
            color: #f5b342;
        }
        .rating-display .count {
            color: #6b5f52;
            font-size: 0.9rem;
        }
