        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #0d0d0d;
            color: #e8e0d0;
            line-height: 1.75;
            min-height: 100vh;
            padding: 0;
            margin: 0;
        }
        a {
            color: #f0c040;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #ffd866;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin: 0.75rem 0;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #f5e6c8;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
            letter-spacing: 0.01em;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 3px solid #c9a84c;
            padding-bottom: 0.6rem;
            margin-top: 0.2rem;
        }
        h2 {
            font-size: 1.9rem;
            border-left: 5px solid #c9a84c;
            padding-left: 1rem;
            margin-top: 2.4rem;
        }
        h3 {
            font-size: 1.5rem;
            color: #e8d5a8;
            margin-top: 1.8rem;
        }
        h4 {
            font-size: 1.2rem;
            color: #dcc89e;
            margin-top: 1.2rem;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.1rem;
            color: #d9d0c0;
            font-size: 1.02rem;
        }
        strong,
        b {
            color: #f5e6c8;
            font-weight: 700;
        }
        em {
            color: #e8d5a8;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #1a1612 0%, #0d0a07 100%);
            border-bottom: 2px solid #c9a84c;
            padding: 0.6rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(8px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .my-logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: #f5e6c8;
            letter-spacing: 2px;
            text-transform: uppercase;
            background: linear-gradient(135deg, #c9a84c, #f5e6c8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            padding: 0.2rem 0;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            -webkit-text-fill-color: #c9a84c;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none;
        }
        .nav-wrap {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        .main-nav {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .main-nav li a {
            display: block;
            padding: 0.5rem 1rem;
            font-size: 0.9rem;
            font-weight: 500;
            color: #d9d0c0;
            border-radius: 6px;
            transition: background 0.25s, color 0.25s;
        }
        .main-nav li a:hover,
        .main-nav li a.active {
            background: rgba(201, 168, 76, 0.18);
            color: #f5e6c8;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: 2px solid #c9a84c;
            border-radius: 8px;
            color: #f5e6c8;
            font-size: 1.5rem;
            padding: 0.3rem 0.6rem;
            cursor: pointer;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(201, 168, 76, 0.2);
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            background: rgba(26, 22, 18, 0.7);
            padding: 0.7rem 0;
            border-bottom: 1px solid #2a241e;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "/";
            margin-right: 0.6rem;
            color: #7a6e5e;
        }
        .breadcrumb a {
            color: #b8a88a;
        }
        .breadcrumb a:hover {
            color: #f0c040;
        }
        .breadcrumb .current {
            color: #e8d5a8;
            font-weight: 500;
        }
        .search-section {
            background: #1a1612;
            border-radius: 16px;
            padding: 2rem 1.8rem;
            margin: 2rem 0;
            border: 1px solid #2f281f;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
        }
        .search-section h3 {
            margin-top: 0;
            color: #f5e6c8;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin-top: 0.8rem;
        }
        .search-form input[type="text"] {
            flex: 1 1 280px;
            padding: 0.8rem 1.2rem;
            border-radius: 40px;
            border: 2px solid #3a3026;
            background: #0d0d0d;
            color: #e8e0d0;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-form input[type="text"]:focus {
            border-color: #c9a84c;
        }
        .search-form button {
            padding: 0.8rem 2rem;
            border-radius: 40px;
            border: none;
            background: linear-gradient(135deg, #c9a84c, #a8872e);
            color: #0d0d0d;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            transform: scale(1.03);
            box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35);
        }
        .content-area {
            background: #12100e;
            border-radius: 20px;
            padding: 2.2rem 2rem;
            margin: 1.8rem 0;
            border: 1px solid #2a241e;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.6);
        }
        .content-area p {
            text-align: justify;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid #3a3026;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.6);
        }
        .featured-image figcaption {
            padding: 0.8rem 1.2rem;
            background: #1a1612;
            font-size: 0.9rem;
            color: #b8a88a;
            border-top: 1px solid #2f281f;
        }
        .highlight-box {
            background: linear-gradient(145deg, #1f1a15, #16120e);
            border-left: 6px solid #c9a84c;
            padding: 1.4rem 1.8rem;
            border-radius: 12px;
            margin: 1.8rem 0;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            background: #1a1612;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid #2f281f;
        }
        .data-table th,
        .data-table td {
            padding: 0.9rem 1.2rem;
            text-align: left;
            border-bottom: 1px solid #2a241e;
        }
        .data-table th {
            background: #c9a84c;
            color: #0d0d0d;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .data-table td {
            color: #d9d0c0;
        }
        .data-table tr:hover td {
            background: rgba(201, 168, 76, 0.06);
        }
        .stat-badge {
            display: inline-block;
            background: #c9a84c;
            color: #0d0d0d;
            padding: 0.2rem 1rem;
            border-radius: 40px;
            font-weight: 700;
            font-size: 0.85rem;
        }
        .interaction-area {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
            margin: 2.5rem 0;
        }
        @media (max-width:780px) {
            .interaction-area {
                grid-template-columns: 1fr;
            }
        }
        .rating-box,
        .comment-box {
            background: #1a1612;
            border-radius: 16px;
            padding: 1.8rem;
            border: 1px solid #2f281f;
        }
        .rating-box h3,
        .comment-box h3 {
            margin-top: 0;
            font-size: 1.2rem;
            color: #f5e6c8;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .star-group {
            display: flex;
            gap: 0.2rem;
            font-size: 1.8rem;
            color: #5a4e3e;
            margin: 0.6rem 0;
            cursor: pointer;
            flex-wrap: wrap;
        }
        .star-group i {
            transition: color 0.2s, transform 0.15s;
        }
        .star-group i:hover,
        .star-group i.active {
            color: #f0c040;
            transform: scale(1.1);
        }
        .rating-form select,
        .rating-form button,
        .comment-form textarea,
        .comment-form input,
        .comment-form button {
            width: 100%;
            padding: 0.7rem 1rem;
            border-radius: 8px;
            border: 2px solid #3a3026;
            background: #0d0d0d;
            color: #e8e0d0;
            font-size: 0.95rem;
            margin-top: 0.5rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .rating-form select:focus,
        .comment-form textarea:focus,
        .comment-form input:focus {
            border-color: #c9a84c;
        }
        .rating-form button,
        .comment-form button {
            background: linear-gradient(135deg, #c9a84c, #a8872e);
            color: #0d0d0d;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            margin-top: 0.8rem;
        }
        .rating-form button:hover,
        .comment-form button:hover {
            transform: scale(1.02);
            box-shadow: 0 6px 20px rgba(201, 168, 76, 0.3);
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .site-footer {
            background: #0a0806;
            border-top: 2px solid #2a241e;
            padding: 2.5rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        @media (max-width:720px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }
        .footer-col h4 {
            color: #f5e6c8;
            margin-top: 0;
            font-size: 1.1rem;
            border-bottom: 2px solid #c9a84c;
            padding-bottom: 0.4rem;
            display: inline-block;
        }
        .footer-col p,
        .footer-col a {
            font-size: 0.95rem;
            color: #b8a88a;
        }
        .footer-col a:hover {
            color: #f0c040;
        }
        friend-link {
            display: block;
            margin-top: 0.6rem;
            font-style: normal;
        }
        friend-link a {
            display: inline-block;
            padding: 0.2rem 0;
            margin-right: 1.2rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.8rem;
            margin-top: 1.8rem;
            border-top: 1px solid #1f1a15;
            font-size: 0.85rem;
            color: #7a6e5e;
        }
        .copyright strong {
            color: #b8a88a;
        }
        .last-updated {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #1a1612;
            padding: 0.4rem 1.2rem;
            border-radius: 40px;
            font-size: 0.85rem;
            color: #b8a88a;
            border: 1px solid #2f281f;
            margin-bottom: 1.5rem;
        }
        @media (max-width:820px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a1612;
                border-radius: 12px;
                padding: 0.6rem;
                margin-top: 0.6rem;
                border: 1px solid #2f281f;
            }
            #nav-toggle:checked~.main-nav {
                display: flex;
            }
            .main-nav li a {
                padding: 0.6rem 1rem;
                border-radius: 6px;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-wrap {
                width: 100%;
                flex-direction: column;
                align-items: stretch;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .content-area {
                padding: 1.2rem 1rem;
            }
            .search-section {
                padding: 1.2rem;
            }
            .data-table {
                font-size: 0.85rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.5rem 0.7rem;
            }
        }
        @media (max-width:480px) {
            html {
                font-size: 15px;
            }
            .container {
                padding: 0 12px;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .breadcrumb {
                font-size: 0.78rem;
            }
            .search-form input[type="text"] {
                flex: 1 1 100%;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
            background: #0d0d0d;
        }
        ::-webkit-scrollbar-track {
            background: #1a1612;
        }
        ::-webkit-scrollbar-thumb {
            background: #c9a84c;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #dbb95a;
        }
        @media print {
            .site-header {
                position: static;
                backdrop-filter: none;
            }
            .search-section,
            .interaction-area {
                break-inside: avoid;
            }
            body {
                background: #fff;
                color: #222;
            }
            a {
                color: #0055aa;
            }
        }
