        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #f8f9fc;
            color: #1e2a3a;
            line-height: 1.7;
        }
        a {
            color: #c8962e;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #a5781f;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin: 1rem 0;
        }
        li {
            margin-bottom: 0.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.25;
            color: #0b1a2e;
            font-weight: 700;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
        }
        h1 {
            font-size: 2.25rem;
            margin-top: 0.5rem;
        }
        h2 {
            font-size: 1.75rem;
            border-bottom: 3px solid #c8962e;
            padding-bottom: 0.3rem;
        }
        h3 {
            font-size: 1.35rem;
            color: #2c3e50;
        }
        h4 {
            font-size: 1.1rem;
            color: #34495e;
            font-weight: 600;
        }
        p {
            margin-bottom: 1rem;
            font-size: 1rem;
            color: #2d3f4f;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .site-header {
            background: linear-gradient(135deg, #0b1a2e 0%, #1a2f44 100%);
            color: #fff;
            padding: 0.75rem 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: 0.75rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #f7d77b;
            text-shadow: 0 2px 8px rgba(247, 215, 123, 0.2);
            transition: transform 0.2s;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #f7d77b;
        }
        .my-logo i {
            font-size: 1.6rem;
            color: #f7d77b;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 0.25rem;
            padding: 0;
            margin: 0;
        }
        .nav-list a {
            color: #e6eef5;
            padding: 0.5rem 0.9rem;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: background 0.25s, color 0.25s;
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        .nav-list a:hover {
            background: rgba(247, 215, 123, 0.18);
            color: #f7d77b;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: 2px solid #f7d77b;
            color: #f7d77b;
            font-size: 1.5rem;
            padding: 0.35rem 0.7rem;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(247, 215, 123, 0.12);
        }
        .breadcrumb {
            background: #eef2f7;
            padding: 0.65rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #dce3ec;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.2rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin: 0 0.4rem;
            color: #8a9aa8;
            font-weight: 600;
        }
        .breadcrumb a {
            color: #2c5f8a;
        }
        .breadcrumb .current {
            color: #6c7a89;
            font-weight: 500;
        }
        .search-section {
            background: #fff;
            padding: 2rem 0;
            border-bottom: 1px solid #e2e8f0;
        }
        .search-form {
            display: flex;
            gap: 0.75rem;
            max-width: 600px;
            margin: 0 auto;
            flex-wrap: wrap;
            justify-content: center;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 0.8rem 1.2rem;
            border: 2px solid #dce3ec;
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-form input[type="text"]:focus {
            border-color: #c8962e;
        }
        .search-form button {
            background: #c8962e;
            color: #fff;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #a5781f;
            transform: scale(1.02);
        }
        .content-area {
            padding: 2.5rem 0;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        .main-article {
            background: #fff;
            padding: 2rem 2.2rem;
            border-radius: 20px;
            box-shadow: 0 6px 30px rgba(0, 0, 0, 0.04);
        }
        .sidebar {
            background: #fff;
            padding: 1.8rem 1.5rem;
            border-radius: 20px;
            box-shadow: 0 6px 30px rgba(0, 0, 0, 0.04);
            align-self: start;
            position: sticky;
            top: 95px;
        }
        .sidebar h3 {
            font-size: 1.2rem;
            margin-top: 0;
            border-bottom: 2px solid #eef2f7;
            padding-bottom: 0.6rem;
            margin-bottom: 1rem;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar li {
            margin-bottom: 0.6rem;
        }
        .sidebar a {
            padding: 0.3rem 0;
            display: block;
            border-bottom: 1px solid #f0f3f8;
            font-size: 0.95rem;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 14px;
            overflow: hidden;
            background: #f0f4fa;
            text-align: center;
        }
        .featured-image img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 0.6rem 1rem;
            font-size: 0.85rem;
            color: #5a6e7e;
            background: #f7f9fc;
            font-style: italic;
        }
        .stat-box {
            background: #f0f6fe;
            border-left: 5px solid #c8962e;
            padding: 1.2rem 1.8rem;
            border-radius: 0 12px 12px 0;
            margin: 1.8rem 0;
        }
        .stat-box p {
            margin-bottom: 0.3rem;
        }
        .stat-box strong {
            color: #0b1a2e;
        }
        .interaction-section {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 2px solid #eef2f7;
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 2px solid #dce3ec;
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            transition: border-color 0.3s;
            margin-bottom: 0.75rem;
        }
        .comment-form textarea:focus,
        .comment-form input:focus {
            border-color: #c8962e;
            outline: none;
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            background: #c8962e;
            color: #fff;
            border: none;
            padding: 0.7rem 1.8rem;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn:hover {
            background: #a5781f;
            transform: scale(1.02);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #c8962e;
            color: #c8962e;
        }
        .btn-outline:hover {
            background: #c8962e;
            color: #fff;
        }
        .rating-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #dce3ec;
            cursor: pointer;
            margin: 0.5rem 0 1rem;
        }
        .rating-stars i.active {
            color: #f7c948;
        }
        .rating-stars i:hover {
            color: #f7c948;
        }
        friend-link {
            display: block;
            background: #f0f4fa;
            padding: 1.5rem 2rem;
            border-radius: 16px;
            margin-top: 2.5rem;
            border: 1px solid #e2e8f0;
        }
        friend-link h3 {
            margin-top: 0;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        friend-link ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.5rem;
            margin: 0.8rem 0 0;
        }
        friend-link a {
            color: #2c5f8a;
            font-weight: 500;
        }
        .site-footer {
            background: #0b1a2e;
            color: #cad5e0;
            padding: 2rem 0;
            text-align: center;
            margin-top: 2rem;
        }
        .site-footer p {
            color: #b0c3d4;
            font-size: 0.9rem;
            margin-bottom: 0.3rem;
        }
        .site-footer a {
            color: #f7d77b;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                order: 2;
            }
            .main-article {
                order: 1;
            }
            .interaction-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #0f253a;
                border-radius: 14px;
                padding: 0.75rem 0.5rem;
                margin-top: 0.5rem;
                gap: 0.15rem;
            }
            .nav-list.open {
                display: flex;
            }
            .nav-list a {
                padding: 0.6rem 1rem;
                border-radius: 10px;
            }
            .hamburger {
                display: inline-flex;
                align-items: center;
                justify-content: center;
            }
            .main-article {
                padding: 1.25rem;
            }
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .search-form input[type="text"] {
                min-width: 150px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.9rem;
            }
            .main-article {
                padding: 0.9rem;
                border-radius: 12px;
            }
            .stat-box {
                padding: 0.9rem 1.1rem;
            }
            .rating-stars {
                font-size: 1.4rem;
            }
            .btn {
                padding: 0.6rem 1.2rem;
                font-size: 0.9rem;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .my-logo i {
                font-size: 1.2rem;
            }
        }
        .text-gold {
            color: #c8962e;
        }
        .fw-700 {
            font-weight: 700;
        }
        .mt-2 {
            margin-top: 1.5rem;
        }
        .mb-1 {
            margin-bottom: 0.75rem;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.75rem;
        }
        .gap-1 {
            gap: 0.75rem;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #7a8e9e;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            margin-bottom: 1.2rem;
        }
