        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.8;
            color: #1e1e2a;
            background: #faf9f6;
            padding: 0;
            margin: 0;
        }
        a {
            color: #c8960a;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus {
            color: #a07608;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 700;
            line-height: 1.3;
            color: #1a1a2e;
            margin-top: 1.6em;
            margin-bottom: 0.5em;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.4em;
            border-bottom: 4px solid #e8b840;
            display: inline-block;
            padding-bottom: 0.15em;
        }
        h2 {
            font-size: 1.9rem;
            border-left: 6px solid #e8b840;
            padding-left: 18px;
            margin-top: 2.2em;
        }
        h3 {
            font-size: 1.5rem;
            margin-top: 1.8em;
        }
        h4 {
            font-size: 1.25rem;
            margin-top: 1.4em;
        }
        p {
            margin-bottom: 1.2em;
            color: #2d2d3a;
        }
        .lead {
            font-size: 1.2rem;
            color: #3a3a4e;
            font-weight: 400;
        }
        .text-muted {
            color: #6b6b7a;
        }
        strong,
        b {
            color: #1a1a2e;
        }
        :root {
            --primary: #1a1a2e;
            --accent: #e8b840;
            --accent-dark: #c8960a;
            --bg-light: #faf9f6;
            --bg-card: #ffffff;
            --shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
            --radius: 14px;
            --border: #e8e6e0;
        }
        .site-header {
            background: var(--primary);
            color: #fff;
            padding: 14px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            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: 12px;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #e8b840, #f5d06a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none !important;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none !important;
        }
        .my-logo span {
            font-weight: 300;
            color: rgba(255, 255, 255, 0.7);
            -webkit-text-fill-color: rgba(255, 255, 255, 0.7);
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: #fff;
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            border-color: var(--accent);
        }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 18px;
            align-items: center;
        }
        .nav-menu a {
            color: rgba(255, 255, 255, 0.85);
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 4px;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .nav-menu a:hover,
        .nav-menu a.active {
            color: var(--accent);
            border-bottom-color: var(--accent);
            text-decoration: none;
        }
        .breadcrumb {
            background: #f0ede8;
            padding: 10px 0;
            font-size: 0.9rem;
            border-bottom: 1px solid var(--border);
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 12px;
            color: #999;
        }
        .breadcrumb a {
            color: #6b6b7a;
        }
        .breadcrumb a:hover {
            color: var(--accent-dark);
        }
        .breadcrumb .current {
            color: var(--primary);
            font-weight: 600;
        }
        .card {
            background: var(--bg-card);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 28px 30px;
            margin-bottom: 28px;
            border: 1px solid var(--border);
        }
        .card-img {
            border-radius: 12px;
            margin-bottom: 18px;
            width: 100%;
            object-fit: cover;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 24px;
        }
        .btn {
            display: inline-block;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            border: none;
            cursor: pointer;
            transition: all 0.25s;
            background: var(--accent);
            color: var(--primary);
            text-align: center;
        }
        .btn:hover {
            background: var(--accent-dark);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(232, 184, 64, 0.35);
            text-decoration: none;
        }
        .btn-outline {
            background: transparent;
            border: 2px solid var(--accent);
            color: var(--accent);
        }
        .btn-outline:hover {
            background: var(--accent);
            color: var(--primary);
        }
        .btn-sm {
            padding: 8px 20px;
            font-size: 0.85rem;
        }
        .form-group {
            margin-bottom: 18px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 5px;
            color: #1e1e2a;
        }
        .form-control {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #ddd;
            border-radius: 10px;
            font-size: 1rem;
            transition: border 0.2s;
            background: #fff;
            font-family: inherit;
        }
        .form-control:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 4px rgba(232, 184, 64, 0.15);
        }
        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            gap: 4px;
            font-size: 2rem;
            cursor: pointer;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #ccc;
            transition: color 0.15s;
            cursor: pointer;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5b342;
        }
        .comment-item {
            padding: 18px 0;
            border-bottom: 1px solid #ecece6;
        }
        .comment-item:last-child {
            border-bottom: none;
        }
        .comment-author {
            font-weight: 700;
            color: var(--primary);
        }
        .comment-date {
            font-size: 0.85rem;
            color: #999;
        }
        .comment-text {
            margin-top: 6px;
        }
        .site-footer {
            background: var(--primary);
            color: rgba(255, 255, 255, 0.85);
            padding: 40px 0 24px;
            margin-top: 60px;
        }
        .site-footer a {
            color: var(--accent);
        }
        .site-footer a:hover {
            color: #f5d06a;
        }
        friend-link {
            display: block;
            padding: 14px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            margin-bottom: 14px;
            font-size: 0.95rem;
        }
        friend-link a {
            margin: 0 12px 0 4px;
        }
        .copyright {
            text-align: center;
            padding-top: 18px;
            font-size: 0.9rem;
            opacity: 0.7;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }
        @media (max-width: 900px) {
            .grid-2,
            .grid-3 {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .card {
                padding: 20px;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding-top: 14px;
                gap: 4px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 10px 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.06);
                width: 100%;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .star-rating {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
                padding-left: 12px;
            }
            .card {
                padding: 16px;
            }
        }
        .mt-1 {
            margin-top: 0.8rem;
        }
        .mt-2 {
            margin-top: 1.6rem;
        }
        .mt-3 {
            margin-top: 2.4rem;
        }
        .mb-1 {
            margin-bottom: 0.8rem;
        }
        .mb-2 {
            margin-bottom: 1.6rem;
        }
        .text-center {
            text-align: center;
        }
        .flex-center {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }
        .gap-2 {
            gap: 20px;
        }
        .badge {
            display: inline-block;
            background: var(--accent);
            color: var(--primary);
            padding: 2px 14px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        .last-updated {
            background: #f0ede8;
            padding: 6px 18px;
            border-radius: 50px;
            display: inline-block;
            font-size: 0.85rem;
            color: #6b6b7a;
        }
        hr {
            border: none;
            border-top: 2px solid var(--border);
            margin: 32px 0;
        }
        .search-box {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        .search-box input {
            flex: 1;
            min-width: 180px;
        }
        .table-wrap {
            overflow-x: auto;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        th,
        td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid #ecece6;
        }
        th {
            background: #f0ede8;
            font-weight: 700;
            color: var(--primary);
        }
        tr:hover td {
            background: #faf7f0;
        }
        .fade-in {
            animation: fadeUp 0.6s ease forwards;
        }
        @keyframes fadeUp {
            0% {
                opacity: 0;
                transform: translateY(20px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
