        *,
        *::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: #f5f3f0;
            color: #1e1a17;
            line-height: 1.75;
            padding: 0;
            margin: 0;
        }
        a {
            color: #b8860b;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus-visible {
            color: #8b6508;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #1a1a1a;
        }
        h1 {
            font-size: 2.2rem;
            margin: 0 0 1.2rem;
        }
        h2 {
            font-size: 1.75rem;
            margin: 2.5rem 0 1rem;
            border-bottom: 3px solid #d4af37;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.35rem;
            margin: 1.8rem 0 0.6rem;
        }
        h4 {
            font-size: 1.1rem;
            margin: 1.2rem 0 0.4rem;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.1rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #1a1a1a 0%, #2c2c2c 100%);
            color: #f5f0e6;
            padding: 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.7rem 20px;
            max-width: 1200px;
            margin: 0 auto;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            color: #d4af37;
            letter-spacing: 1px;
            text-transform: uppercase;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: opacity 0.2s;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
            color: #d4af37;
        }
        .my-logo i {
            font-size: 1.8rem;
            color: #f5e6c8;
        }
        .nav-wrap {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        .nav-list {
            list-style: none;
            display: flex;
            gap: 1.2rem;
            padding: 0;
            margin: 0;
            align-items: center;
        }
        .nav-list li a {
            color: #e8e0d0;
            font-weight: 500;
            font-size: 0.92rem;
            padding: 0.3rem 0;
            position: relative;
            transition: color 0.2s;
        }
        .nav-list li a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: #d4af37;
            transition: width 0.3s;
        }
        .nav-list li a:hover::after,
        .nav-list li a:focus-visible::after {
            width: 100%;
        }
        .nav-list li a:hover {
            color: #d4af37;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #d4af37;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.4rem;
            transition: transform 0.2s;
        }
        .hamburger:hover {
            transform: scale(1.1);
        }
        .breadcrumb {
            background: #e8e2d8;
            padding: 0.6rem 20px;
            font-size: 0.85rem;
            border-bottom: 1px solid #d4c8b8;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            padding: 0;
            margin: 0 auto;
            max-width: 1200px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #8a7a6a;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #7a6a5a;
        }
        .hero {
            background: linear-gradient(135deg, #2a241e 0%, #1e1a17 100%);
            color: #f5f0e6;
            padding: 3rem 20px 2.5rem;
            text-align: center;
            border-bottom: 4px solid #d4af37;
        }
        .hero h1 {
            color: #d4af37;
            font-size: 2.6rem;
            margin-bottom: 0.6rem;
            text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
        }
        .hero p {
            font-size: 1.15rem;
            max-width: 720px;
            margin: 0.6rem auto 0;
            opacity: 0.92;
        }
        .hero .last-updated {
            display: inline-block;
            margin-top: 1rem;
            font-size: 0.85rem;
            background: rgba(212, 175, 55, 0.18);
            padding: 0.3rem 1.2rem;
            border-radius: 40px;
            color: #d4af37;
            border: 1px solid rgba(212, 175, 55, 0.25);
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2.5rem 20px 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .content-area {
            min-width: 0;
        }
        .sidebar {
            min-width: 0;
        }
        .sidebar-card {
            background: #fffcf8;
            border-radius: 16px;
            padding: 1.4rem 1.2rem;
            margin-bottom: 1.8rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            border: 1px solid #e8e0d6;
        }
        .sidebar-card h3 {
            font-size: 1.1rem;
            margin-top: 0;
            margin-bottom: 0.8rem;
            color: #2c241e;
            border-left: 4px solid #d4af37;
            padding-left: 0.7rem;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar-card li {
            padding: 0.45rem 0;
            border-bottom: 1px solid #f0e8de;
            font-size: 0.92rem;
        }
        .sidebar-card li:last-child {
            border-bottom: none;
        }
        .sidebar-card li a {
            color: #5a4a3a;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .sidebar-card li a:hover {
            color: #b8860b;
        }
        .sidebar-card li a i {
            font-size: 0.7rem;
            color: #d4af37;
        }
        .featured-img-wrap {
            margin: 1.8rem 0 2.2rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
        }
        .featured-img-wrap img {
            width: 100%;
            object-fit: cover;
        }
        .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem 1rem;
            background: #faf5ee;
            padding: 1rem 1.2rem;
            border-radius: 12px;
            margin: 1.4rem 0;
            border-left: 4px solid #d4af37;
            list-style: none;
        }
        .link-list-inline li a {
            font-weight: 600;
            font-size: 0.92rem;
            color: #3a2a1a;
            background: #fff;
            padding: 0.2rem 0.9rem;
            border-radius: 40px;
            border: 1px solid #ddd0c0;
            transition: all 0.2s;
            display: inline-block;
        }
        .link-list-inline li a:hover {
            background: #d4af37;
            color: #1a1a1a;
            border-color: #d4af37;
            text-decoration: none;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            font-size: 0.95rem;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
        }
        .data-table th {
            background: #2c241e;
            color: #d4af37;
            padding: 0.7rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 0.65rem 1rem;
            border-bottom: 1px solid #ece4da;
            background: #fffcf8;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:hover td {
            background: #f8f0e6;
        }
        .interaction-panel {
            background: #fffcf8;
            border-radius: 16px;
            padding: 1.8rem 1.5rem 2rem;
            margin: 2.5rem 0 1.5rem;
            border: 1px solid #e8e0d6;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
        }
        .interaction-panel h3 {
            margin-top: 0;
            color: #2c241e;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            font-size: 0.92rem;
            margin-bottom: 0.3rem;
            color: #3a2a1a;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.65rem 0.9rem;
            border: 1.5px solid #ddd0c0;
            border-radius: 10px;
            font-size: 0.95rem;
            background: #fffdfa;
            transition: border 0.2s;
            font-family: inherit;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #d4af37;
            outline: none;
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
        }
        .form-group textarea {
            min-height: 90px;
            resize: vertical;
        }
        .btn {
            background: #d4af37;
            color: #1a1a1a;
            border: none;
            padding: 0.65rem 1.8rem;
            border-radius: 40px;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.25s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn:hover {
            background: #b8960f;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
        }
        .btn-secondary {
            background: #2c241e;
            color: #f5f0e6;
        }
        .btn-secondary:hover {
            background: #1e1a17;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 1.6rem;
            color: #ddd0c0;
            cursor: pointer;
            direction: rtl;
        }
        .rating-stars i {
            transition: color 0.2s, transform 0.15s;
        }
        .rating-stars i:hover,
        .rating-stars i:hover~i {
            color: #d4af37;
            transform: scale(1.12);
        }
        .rating-stars .active {
            color: #d4af37;
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
            margin: 1.2rem 0;
            flex-wrap: wrap;
        }
        .search-form input {
            flex: 1;
            min-width: 180px;
            padding: 0.65rem 1rem;
            border: 1.5px solid #ddd0c0;
            border-radius: 40px;
            font-size: 0.95rem;
            background: #fffdfa;
        }
        .search-form input:focus {
            border-color: #d4af37;
            outline: none;
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
        }
        .search-form button {
            border-radius: 40px;
            padding: 0.65rem 1.6rem;
        }
        .site-footer {
            background: #1a1a1a;
            color: #c8c0b0;
            padding: 2.5rem 20px 1.8rem;
            border-top: 4px solid #d4af37;
        }
        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        .footer-inner h4 {
            color: #d4af37;
            margin-bottom: 0.8rem;
            font-size: 1rem;
        }
        .footer-inner ul {
            list-style: none;
            padding: 0;
        }
        .footer-inner li {
            padding: 0.2rem 0;
        }
        .footer-inner li a {
            color: #b0a898;
            font-size: 0.9rem;
        }
        .footer-inner li a:hover {
            color: #d4af37;
        }
        .copyright {
            text-align: center;
            padding-top: 1.8rem;
            margin-top: 1.8rem;
            border-top: 1px solid #3a342e;
            font-size: 0.85rem;
            color: #8a8070;
        }
        .copyright strong {
            color: #d4af37;
        }
        friend-link {
            display: block;
            margin-top: 0.8rem;
            font-size: 0.9rem;
        }
        friend-link a {
            color: #d4af37;
            margin: 0 0.4rem;
        }
        friend-link a:hover {
            color: #f5e6c8;
        }
        @media (max-width: 1024px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 1.2rem;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #2c2c2c;
                padding: 1rem 0 1.4rem;
                gap: 0.3rem;
                border-top: 1px solid #3a3a3a;
                margin-top: 0.6rem;
            }
            .nav-list.open {
                display: flex;
            }
            .nav-list li a {
                padding: 0.6rem 1.2rem;
                display: block;
                font-size: 1rem;
            }
            .header-inner {
                position: relative;
            }
            .nav-wrap {
                width: 100%;
                flex-direction: column;
                align-items: stretch;
            }
            .nav-list li a::after {
                display: none;
            }
            h1 {
                font-size: 1.8rem;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .data-table {
                font-size: 0.82rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.5rem 0.6rem;
            }
            .interaction-panel {
                padding: 1.2rem 1rem;
            }
            .rating-stars {
                font-size: 1.3rem;
            }
            .link-list-inline {
                flex-direction: column;
                gap: 0.4rem;
            }
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 1.2rem;
            }
            .my-logo i {
                font-size: 1.3rem;
            }
            .container,
            .main-grid,
            .header-inner,
            .breadcrumb ol,
            .hero {
                padding-left: 14px;
                padding-right: 14px;
            }
            .btn {
                padding: 0.55rem 1.2rem;
                font-size: 0.85rem;
            }
        }
        .highlight {
            background: linear-gradient(to top, rgba(212, 175, 55, 0.15) 40%, transparent 40%);
            font-weight: 600;
        }
        .badge {
            display: inline-block;
            background: #d4af37;
            color: #1a1a1a;
            padding: 0.1rem 0.9rem;
            border-radius: 40px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.3px;
        }
        .emoji-lg {
            font-size: 1.4rem;
            margin-right: 0.3rem;
        }
        .mt-2 {
            margin-top: 1.2rem;
        }
        .mb-1 {
            margin-bottom: 0.6rem;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.6rem;
        }
