        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #faf8f5;
            color: #1e1e1e;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #b22222;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: #8b0000;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #1a0e0a 0%, #3d1c12 100%);
            padding: 16px 0;
            border-bottom: 4px solid #d4a017;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: 1px;
            color: #ffd700;
            text-shadow: 2px 2px 0 #8b0000, 4px 4px 0 rgba(0, 0, 0, 0.4);
            transition: transform 0.3s ease;
            display: inline-block;
            background: none;
            border: none;
            cursor: pointer;
            font-family: inherit;
        }
        .my-logo:hover {
            transform: scale(1.03);
            color: #ffe44d;
        }
        .my-logo i {
            margin-right: 6px;
            color: #ff6347;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #f0e6d3;
            padding: 8px 16px;
            border-radius: 40px;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.25s ease;
            position: relative;
        }
        .main-nav a:hover {
            background: rgba(212, 160, 23, 0.25);
            color: #ffd700;
            text-decoration: none;
            transform: translateY(-1px);
        }
        .main-nav a i {
            margin-right: 6px;
            font-size: 0.85rem;
            color: #d4a017;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #ffd700;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 8px;
            transition: transform 0.2s ease;
        }
        .hamburger:hover {
            transform: rotate(90deg);
        }
        .breadcrumb {
            background: #f5ede4;
            padding: 12px 0;
            border-bottom: 1px solid #e0d6c8;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            align-items: center;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 12px;
            color: #b22222;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #6b4c3b;
        }
        .breadcrumb a:hover {
            color: #b22222;
        }
        .breadcrumb .active {
            color: #3d1c12;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #2d130e 0%, #4a2418 50%, #1a0e0a 100%);
            padding: 50px 0 40px;
            color: #faf3ea;
            text-align: center;
            border-bottom: 3px solid #d4a017;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            line-height: 1.2;
            background: linear-gradient(to right, #ffd700, #ffb347, #ffd700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 16px;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 780px;
            margin: 0 auto 20px;
            color: #d9c8b8;
        }
        .hero .meta-badge {
            display: inline-block;
            background: rgba(212, 160, 23, 0.2);
            padding: 8px 24px;
            border-radius: 40px;
            border: 1px solid rgba(212, 160, 23, 0.4);
            font-size: 0.95rem;
            color: #ffd700;
        }
        .hero .meta-badge i {
            margin-right: 8px;
        }
        .search-wrap {
            background: #fff;
            border-radius: 60px;
            padding: 4px 4px 4px 24px;
            display: flex;
            align-items: center;
            max-width: 560px;
            margin: 24px auto 0;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
            border: 1px solid #d4a017;
        }
        .search-wrap input {
            flex: 1;
            border: none;
            outline: none;
            font-size: 1rem;
            padding: 14px 0;
            background: transparent;
            color: #1e1e1e;
            font-family: inherit;
        }
        .search-wrap input::placeholder {
            color: #8a7a6a;
        }
        .search-wrap button {
            background: #b22222;
            border: none;
            color: #fff;
            padding: 12px 32px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: inherit;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-wrap button:hover {
            background: #8b0000;
            transform: scale(1.02);
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0 60px;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            min-width: 0;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 48px 0 16px;
            padding-bottom: 10px;
            border-bottom: 3px solid #d4a017;
            color: #2d130e;
            position: relative;
        }
        h2::after {
            content: "";
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 80px;
            height: 3px;
            background: #b22222;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 36px 0 12px;
            color: #3d1c12;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 28px 0 10px;
            color: #5a3a2a;
        }
        p {
            margin-bottom: 18px;
            color: #2d2d2d;
        }
        .lead {
            font-size: 1.15rem;
            color: #3d2b1f;
            font-weight: 500;
        }
        .highlight-box {
            background: linear-gradient(135deg, #fdf6ed, #fcf1e0);
            border-left: 5px solid #d4a017;
            padding: 20px 28px;
            border-radius: 0 16px 16px 0;
            margin: 28px 0;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .highlight-box strong {
            color: #8b0000;
        }
        .emoji-big {
            font-size: 1.8rem;
            display: inline-block;
            margin-right: 6px;
        }
        .stat-badge {
            background: #2d130e;
            color: #ffd700;
            padding: 2px 14px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            display: inline-block;
        }
        .featured-image {
            margin: 32px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
            background: #e8ddd2;
        }
        .featured-image img {
            width: 100%;
            display: block;
        }
        .featured-image figcaption {
            padding: 12px 20px;
            background: #f5ede4;
            font-size: 0.9rem;
            color: #4a3a2a;
            font-style: italic;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
            border-radius: 12px;
            border: 1px solid #e0d6c8;
            background: #fffcf8;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        th {
            background: #3d1c12;
            color: #ffd700;
            padding: 14px 18px;
            text-align: left;
            font-weight: 600;
        }
        td {
            padding: 12px 18px;
            border-bottom: 1px solid #ede4d8;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #faf3ea;
        }
        .sidebar-card {
            background: #fffcf8;
            border-radius: 16px;
            padding: 24px;
            margin-bottom: 28px;
            border: 1px solid #e8ddd2;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            margin-top: 0;
            margin-bottom: 16px;
            color: #2d130e;
            border-bottom: 2px solid #d4a017;
            padding-bottom: 8px;
        }
        .sidebar-link-list {
            list-style: none;
        }
        .sidebar-link-list li {
            padding: 8px 0;
            border-bottom: 1px solid #f0e6d8;
        }
        .sidebar-link-list li:last-child {
            border-bottom: none;
        }
        .sidebar-link-list a {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #3d2b1f;
            font-weight: 500;
            font-size: 0.95rem;
        }
        .sidebar-link-list a:hover {
            color: #b22222;
        }
        .sidebar-link-list a i {
            color: #d4a017;
            width: 18px;
            text-align: center;
        }
        .rating-wrap {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
            margin: 12px 0;
        }
        .stars {
            display: flex;
            gap: 4px;
            font-size: 1.6rem;
            color: #d4a017;
            cursor: pointer;
        }
        .stars i {
            transition: transform 0.15s ease, color 0.15s ease;
        }
        .stars i:hover {
            transform: scale(1.25);
            color: #ffb347;
        }
        .stars .fa-solid.fa-star {
            color: #ffd700;
        }
        .stars .fa-regular.fa-star {
            color: #c4b49a;
        }
        .rating-form button {
            background: #b22222;
            color: #fff;
            border: none;
            padding: 8px 22px;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s ease;
            font-family: inherit;
        }
        .rating-form button:hover {
            background: #8b0000;
        }
        .comment-form textarea {
            width: 100%;
            border: 2px solid #e0d6c8;
            border-radius: 12px;
            padding: 14px 18px;
            font-size: 1rem;
            font-family: inherit;
            resize: vertical;
            min-height: 100px;
            background: #fffcf8;
            transition: border-color 0.25s ease;
        }
        .comment-form textarea:focus {
            outline: none;
            border-color: #d4a017;
        }
        .comment-form .form-row {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin: 12px 0;
        }
        .comment-form .form-row input {
            flex: 1;
            min-width: 180px;
            padding: 10px 16px;
            border: 2px solid #e0d6c8;
            border-radius: 40px;
            font-size: 0.95rem;
            font-family: inherit;
            background: #fffcf8;
        }
        .comment-form .form-row input:focus {
            outline: none;
            border-color: #d4a017;
        }
        .comment-form button {
            background: #b22222;
            color: #fff;
            border: none;
            padding: 10px 32px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.25s ease;
            font-family: inherit;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .comment-form button:hover {
            background: #8b0000;
            transform: translateY(-2px);
        }
        friend-link {
            display: block;
            background: #2d130e;
            color: #f0e6d3;
            padding: 28px 0;
            margin-top: 40px;
            border-top: 4px solid #d4a017;
        }
        friend-link .container {
            display: flex;
            flex-wrap: wrap;
            gap: 16px 32px;
            justify-content: center;
            align-items: center;
        }
        friend-link a {
            color: #ffd700;
            font-weight: 500;
            padding: 4px 12px;
            border-radius: 20px;
            transition: all 0.2s ease;
        }
        friend-link a:hover {
            background: rgba(212, 160, 23, 0.2);
            color: #ffe44d;
            text-decoration: none;
        }
        .site-footer {
            background: #1a0e0a;
            color: #c4b49a;
            padding: 32px 0 20px;
            font-size: 0.9rem;
        }
        .site-footer .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
        }
        .site-footer .copyright {
            color: #a08a78;
        }
        .site-footer a {
            color: #d4a017;
        }
        .site-footer a:hover {
            color: #ffd700;
        }
        @media (max-width: 992px) {
            .main-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding-top: 16px;
                gap: 4px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 12px 20px;
                border-radius: 8px;
                background: rgba(255, 255, 255, 0.04);
            }
            .main-nav a:hover {
                background: rgba(212, 160, 23, 0.15);
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .search-wrap {
                flex-direction: column;
                border-radius: 24px;
                padding: 12px;
                gap: 8px;
            }
            .search-wrap input {
                width: 100%;
                padding: 10px 16px;
                border-radius: 30px;
                background: #f5ede4;
            }
            .search-wrap button {
                width: 100%;
                justify-content: center;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .site-footer .container {
                flex-direction: column;
                text-align: center;
            }
            .breadcrumb ol {
                font-size: 0.8rem;
                gap: 4px 8px;
            }
            .rating-wrap {
                flex-direction: column;
                align-items: flex-start;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .hero {
                padding: 30px 0 28px;
            }
            .sidebar-card {
                padding: 16px;
            }
            .highlight-box {
                padding: 14px 18px;
            }
        }
        .text-gold {
            color: #d4a017;
        }
        .text-maroon {
            color: #8b0000;
        }
        .fw-700 {
            font-weight: 700;
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .gap-4 {
            gap: 4px;
        }
        .anchor-offset {
            scroll-margin-top: 100px;
        }
        .stars i {
            user-select: none;
        }
