        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
            -webkit-text-size-adjust: 100%;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
            background: #f9f7f4;
            color: #1e1e1e;
            line-height: 1.75;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #b8860b;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #8b6508;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            margin-top: 0;
            color: #1a1a2e;
        }
        h1 {
            font-size: clamp(2rem, 5vw, 3.2rem);
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }
        h2 {
            font-size: clamp(1.5rem, 3.5vw, 2.2rem);
            margin-bottom: 0.75rem;
            border-bottom: 3px solid #b8860b;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: clamp(1.2rem, 2.5vw, 1.6rem);
            margin-bottom: 0.5rem;
        }
        h4 {
            font-size: clamp(1rem, 2vw, 1.25rem);
            margin-bottom: 0.4rem;
            color: #b8860b;
        }
        p {
            margin-bottom: 1.25rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .section-padding {
            padding: 3rem 0;
        }
        .site-header {
            background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3e 100%);
            color: #fff;
            padding: 0.75rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.75rem;
        }
        .my-logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            background: linear-gradient(135deg, #b8860b, #f0d68a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none;
        }
        .my-logo i {
            -webkit-text-fill-color: #b8860b;
            font-size: 1.8rem;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #ddd;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: background 0.25s, color 0.25s;
            text-decoration: none;
            white-space: nowrap;
        }
        .main-nav a:hover,
        .main-nav a:focus {
            background: rgba(184, 134, 11, 0.25);
            color: #f0d68a;
            text-decoration: none;
        }
        .main-nav a.active {
            background: #b8860b;
            color: #fff;
        }
        .breadcrumb {
            background: #f0ede8;
            padding: 0.6rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #ddd;
        }
        .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: #888;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb a:hover {
            color: #b8860b;
        }
        .breadcrumb .current {
            color: #1a1a2e;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #1a1a3e 0%, #2a2a5e 40%, #0a0a1a 100%);
            color: #fff;
            padding: 4rem 0 3rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "🏟️";
            position: absolute;
            right: -2rem;
            bottom: -2rem;
            font-size: 18rem;
            opacity: 0.06;
            pointer-events: none;
        }
        .hero h1 {
            color: #fff;
            font-size: clamp(2.2rem, 6vw, 3.8rem);
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
        }
        .hero h1 span {
            background: linear-gradient(135deg, #f0d68a, #b8860b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero p {
            font-size: clamp(1rem, 2vw, 1.3rem);
            max-width: 800px;
            margin: 1rem auto 0;
            opacity: 0.85;
        }
        .hero-meta {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin-top: 1.5rem;
            font-size: 0.95rem;
            opacity: 0.75;
        }
        .hero-meta i {
            margin-right: 0.4rem;
        }
        .search-section {
            background: #fff;
            padding: 1.5rem 0;
            border-bottom: 1px solid #e0ddd8;
        }
        .search-form {
            display: flex;
            gap: 0.75rem;
            max-width: 640px;
            margin: 0 auto;
        }
        .search-form input {
            flex: 1;
            padding: 0.75rem 1.2rem;
            border: 2px solid #ddd;
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
            background: #fafafa;
        }
        .search-form input:focus {
            border-color: #b8860b;
        }
        .search-form button {
            background: #b8860b;
            color: #fff;
            border: none;
            border-radius: 40px;
            padding: 0.75rem 2rem;
            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: #8b6508;
            transform: scale(1.02);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 3rem 0;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 5.5rem;
            align-self: start;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
            border: 1px solid #eee;
        }
        .sidebar-card h3 {
            font-size: 1.1rem;
            border-bottom: 2px solid #b8860b;
            padding-bottom: 0.4rem;
            margin-bottom: 1rem;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card li {
            margin-bottom: 0.6rem;
        }
        .sidebar-card li a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.4rem 0;
            color: #333;
            font-size: 0.92rem;
            border-bottom: 1px solid #f0f0f0;
            transition: color 0.2s, padding-left 0.2s;
        }
        .sidebar-card li a:hover {
            color: #b8860b;
            padding-left: 0.3rem;
            text-decoration: none;
        }
        .sidebar-card li a i {
            color: #b8860b;
            font-size: 0.75rem;
            width: 1rem;
        }
        .featured-image {
            border-radius: 16px;
            overflow: hidden;
            margin: 2rem 0;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
            background: #e8e5e0;
        }
        .featured-image img {
            width: 100%;
            min-height: 280px;
            object-fit: cover;
            background: #d0ccc8;
        }
        .featured-image figcaption {
            padding: 0.75rem 1.25rem;
            font-size: 0.85rem;
            color: #555;
            background: #fff;
            border-top: 1px solid #eee;
        }
        .info-box {
            background: #f0ede8;
            border-left: 5px solid #b8860b;
            padding: 1.25rem 1.5rem;
            border-radius: 0 12px 12px 0;
            margin: 1.5rem 0;
        }
        .info-box strong {
            color: #1a1a2e;
        }
        .highlight {
            background: #fdf6e3;
            padding: 0.1rem 0.3rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.25rem;
            margin: 2rem 0;
        }
        .stat-item {
            background: #fff;
            padding: 1.5rem;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
            border: 1px solid #eee;
            transition: transform 0.2s;
        }
        .stat-item:hover {
            transform: translateY(-4px);
        }
        .stat-item .num {
            font-size: 2.4rem;
            font-weight: 800;
            color: #b8860b;
            line-height: 1.2;
        }
        .stat-item .label {
            font-size: 0.9rem;
            color: #666;
            margin-top: 0.3rem;
        }
        .review-card {
            background: #fff;
            border-radius: 12px;
            padding: 1.5rem;
            margin: 1.25rem 0;
            border: 1px solid #eee;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }
        .review-card .stars {
            color: #f5a623;
            font-size: 1.1rem;
            letter-spacing: 2px;
        }
        .review-card .author {
            font-weight: 600;
            color: #1a1a2e;
        }
        .review-card .date {
            font-size: 0.8rem;
            color: #999;
        }
        .comment-form,
        .rating-form {
            background: #fff;
            border-radius: 12px;
            padding: 1.75rem;
            margin: 1.5rem 0;
            border: 1px solid #eee;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .comment-form h3,
        .rating-form h3 {
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.3rem;
            font-size: 0.9rem;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 0.95rem;
            font-family: inherit;
            transition: border-color 0.3s;
            background: #fafafa;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #b8860b;
            outline: none;
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .btn-primary {
            background: #b8860b;
            color: #fff;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 40px;
            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-primary:hover {
            background: #8b6508;
            transform: scale(1.02);
        }
        .toc {
            background: #fff;
            border-radius: 12px;
            padding: 1.5rem 2rem;
            border: 1px solid #eee;
            margin: 2rem 0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }
        .toc h3 {
            margin-bottom: 0.75rem;
        }
        .toc ol {
            columns: 2;
            column-gap: 2rem;
            padding-left: 1.2rem;
        }
        .toc li {
            margin-bottom: 0.4rem;
            break-inside: avoid;
        }
        .toc a {
            color: #333;
            font-weight: 500;
        }
        .toc a:hover {
            color: #b8860b;
        }
        .site-footer {
            background: #0a0a1a;
            color: #ccc;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-grid h4 {
            color: #f0d68a;
            margin-bottom: 0.75rem;
            font-size: 1.1rem;
        }
        .footer-grid ul {
            list-style: none;
            padding: 0;
        }
        .footer-grid li {
            margin-bottom: 0.4rem;
        }
        .footer-grid a {
            color: #aaa;
            font-size: 0.9rem;
        }
        .footer-grid a:hover {
            color: #f0d68a;
        }
        .footer-bottom {
            border-top: 1px solid #333;
            padding-top: 1.5rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            font-size: 0.85rem;
        }
        .footer-bottom .copyright {
            opacity: 0.7;
        }
        friend-link {
            display: block;
            padding: 1.5rem 0;
            border-top: 1px solid #222;
            margin-top: 1.5rem;
            font-size: 0.9rem;
        }
        friend-link a {
            color: #aaa;
            margin: 0 0.5rem;
        }
        friend-link a:hover {
            color: #f0d68a;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 1rem;
            }
            .sidebar .sidebar-card {
                margin-bottom: 0;
            }
            .toc ol {
                columns: 1;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #0f0f2a;
                border-radius: 12px;
                padding: 0.75rem;
                margin-top: 0.5rem;
                box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.6rem 1rem;
                border-radius: 6px;
                width: 100%;
            }
            .header-inner {
                align-items: center;
            }
            .hero {
                padding: 2.5rem 0 2rem;
            }
            .hero-meta {
                flex-direction: column;
                gap: 0.5rem;
                align-items: center;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                justify-content: center;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
            .section-padding {
                padding: 2rem 0;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 480px) {
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .my-logo i {
                font-size: 1.4rem;
            }
            .toc {
                padding: 1rem 1.25rem;
            }
            .comment-form,
            .rating-form {
                padding: 1.25rem;
            }
        }
        .text-center {
            text-align: center;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .gap-1 {
            gap: 1rem;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #888;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .last-updated i {
            color: #b8860b;
        }
