        *,
        *::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, sans-serif;
            background: #f7f5f0;
            color: #1e1e1e;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #b45309;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus {
            color: #78350f;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin-bottom: 1.2rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            margin-top: 2rem;
            margin-bottom: 0.8rem;
            color: #1e1e1e;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.5rem;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 2px solid #e7e2d7;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.35rem;
            color: #2d2d2d;
        }
        h4 {
            font-size: 1.1rem;
            color: #3d3d3d;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(135deg, #1e1e2f 0%, #2a2a40 100%);
            color: #fff;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.6rem 1rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #fbbf24;
            letter-spacing: -0.5px;
            text-shadow: 0 2px 8px rgba(251, 191, 36, 0.25);
            display: flex;
            align-items: center;
            gap: 0.3rem;
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-decoration: none;
            color: #fcd34d;
        }
        .my-logo i {
            font-size: 1.6rem;
            color: #f59e0b;
        }
        .my-logo span {
            font-size: 0.75rem;
            font-weight: 400;
            color: #a8a29e;
            display: block;
            letter-spacing: 0.3px;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 1.2rem;
        }
        .main-nav {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .main-nav li a {
            color: #e7e2d7;
            padding: 0.4rem 0.9rem;
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
        }
        .main-nav li a:hover,
        .main-nav li a:focus {
            background: rgba(251, 191, 36, 0.15);
            color: #fbbf24;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 0.2rem 0.5rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        .breadcrumb-wrap {
            background: #e7e2d7;
            padding: 0.5rem 0;
            font-size: 0.85rem;
        }
        .breadcrumb-wrap .container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.4rem;
        }
        .breadcrumb-wrap a {
            color: #6b5b4e;
        }
        .breadcrumb-wrap a:hover {
            color: #b45309;
        }
        .breadcrumb-wrap .sep {
            color: #9a8a7a;
            margin: 0 0.2rem;
        }
        .breadcrumb-wrap .current {
            color: #3d2e1e;
            font-weight: 600;
        }
        .hero-section {
            background: linear-gradient(145deg, #fefcf7 0%, #f3efe8 100%);
            padding: 2.8rem 0 2rem;
            border-bottom: 1px solid #e7e2d7;
        }
        .hero-section h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #1e1e2f;
            letter-spacing: -0.5px;
        }
        .hero-section h1 i {
            color: #f59e0b;
            margin-right: 0.4rem;
        }
        .hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem 2rem;
            margin: 1rem 0 1.4rem;
            font-size: 0.95rem;
            color: #5a4e40;
        }
        .hero-meta span {
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .hero-meta i {
            color: #b45309;
        }
        .last-updated {
            font-weight: 600;
            color: #3d2e1e;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin: 2.5rem 0;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 12px;
            padding: 1.6rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            margin-bottom: 1.8rem;
            border: 1px solid #e7e2d7;
        }
        .sidebar-card h3 {
            font-size: 1.1rem;
            margin-top: 0;
            border-bottom: 2px solid #fbbf24;
            padding-bottom: 0.4rem;
            display: inline-block;
        }
        .sidebar-links {
            list-style: none;
            padding: 0;
            margin: 0.8rem 0 0;
        }
        .sidebar-links li {
            padding: 0.3rem 0;
            border-bottom: 1px dashed #e7e2d7;
        }
        .sidebar-links li:last-child {
            border-bottom: none;
        }
        .sidebar-links a {
            font-size: 0.9rem;
            display: block;
            padding: 0.2rem 0;
        }
        .feature-image-wrap {
            margin: 2rem 0 2.5rem;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
            background: #e7e2d7;
        }
        .feature-image-wrap img {
            width: 100%;
            height: auto;
            max-height: 480px;
            object-fit: cover;
        }
        .feature-image-wrap figcaption {
            padding: 0.7rem 1.2rem;
            font-size: 0.85rem;
            color: #5a4e40;
            background: #f7f5f0;
            font-style: italic;
        }
        .highlight-card {
            background: #fff;
            border-radius: 12px;
            padding: 1.6rem 1.8rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            border-left: 4px solid #fbbf24;
            margin: 1.8rem 0;
        }
        .highlight-card h4 {
            margin-top: 0;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.4rem 0;
            font-size: 0.95rem;
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .data-table thead {
            background: #1e1e2f;
            color: #fff;
        }
        .data-table th,
        .data-table td {
            padding: 0.7rem 1rem;
            text-align: left;
            border-bottom: 1px solid #ede9e2;
        }
        .data-table tbody tr:hover {
            background: #fefcf7;
        }
        .comment-section,
        .rating-section,
        .search-section {
            background: #fff;
            border-radius: 14px;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            margin: 2.5rem 0;
            border: 1px solid #e7e2d7;
        }
        .comment-section h2,
        .rating-section h2,
        .search-section h2 {
            margin-top: 0;
            border-bottom: none;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.3rem;
            font-size: 0.95rem;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 1px solid #d6cec2;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            background: #fefcf7;
            transition: border 0.2s, box-shadow 0.2s;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #b45309;
            box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.1);
            outline: none;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: #b45309;
            color: #fff;
            padding: 0.7rem 2rem;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .btn:hover {
            background: #92400e;
            transform: translateY(-1px);
        }
        .btn:active {
            transform: translateY(0);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
            font-size: 1.8rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #d6cec2;
            transition: color 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f59e0b;
        }
        friend-link {
            display: block;
            background: #1e1e2f;
            color: #e7e2d7;
            padding: 2rem 0;
            margin-top: 3rem;
            border-top: 4px solid #fbbf24;
        }
        friend-link .container {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 2rem;
            justify-content: center;
        }
        friend-link a {
            color: #fbbf24;
            font-weight: 500;
            padding: 0.2rem 0.6rem;
            border-radius: 4px;
            transition: background 0.2s;
        }
        friend-link a:hover {
            background: rgba(251, 191, 36, 0.12);
            text-decoration: none;
        }
        .footer-copyright {
            background: #12121c;
            color: #a8a29e;
            text-align: center;
            padding: 1.2rem 0;
            font-size: 0.85rem;
        }
        .footer-copyright a {
            color: #fbbf24;
        }
        @media (max-width: 900px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                order: 2;
            }
            .main-content {
                order: 1;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .hero-section h1 {
                font-size: 2rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 700px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #2a2a40;
                border-radius: 10px;
                padding: 0.6rem 0.4rem;
                margin-top: 0.6rem;
                gap: 0.1rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav li a {
                padding: 0.6rem 1rem;
                display: block;
            }
            .header-inner {
                align-items: center;
            }
            .nav-wrapper {
                flex-wrap: wrap;
                width: 100%;
            }
            .nav-wrapper .main-nav {
                width: 100%;
            }
            .breadcrumb-wrap .container {
                font-size: 0.75rem;
            }
            .comment-section,
            .rating-section,
            .search-section {
                padding: 1.2rem;
            }
            .data-table {
                font-size: 0.8rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.4rem 0.6rem;
            }
            .star-rating {
                font-size: 1.4rem;
            }
            .hero-meta {
                font-size: 0.8rem;
                gap: 0.8rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.8rem;
            }
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.25rem;
            }
            .hero-section h1 {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .my-logo i {
                font-size: 1.2rem;
            }
            .btn {
                width: 100%;
                justify-content: center;
            }
        }
        .text-accent {
            color: #b45309;
        }
        .text-gold {
            color: #f59e0b;
        }
        .fw-700 {
            font-weight: 700;
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.6rem;
        }
        .gap-1 {
            gap: 1rem;
        }
        .emoji-big {
            font-size: 1.4em;
            display: inline-block;
        }
        .schema-hidden {
            display: none;
        }
