        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
            background: #0f0f12;
            color: #e0e0e0;
            line-height: 1.75;
            padding: 0 16px;
        }
        a {
            color: #c8a96e;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #f5d98c;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        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;
            margin-top: 2rem;
            margin-bottom: 1rem;
            color: #f0e6d3;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.5rem;
            border-bottom: 2px solid #2a2a30;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 4px solid #c8a96e;
            padding-left: 0.75rem;
        }
        h3 {
            font-size: 1.35rem;
            color: #d4c5a9;
        }
        h4 {
            font-size: 1.1rem;
            color: #bfb09a;
        }
        p {
            margin: 0.9rem 0;
            word-spacing: 0.5px;
        }
        strong {
            color: #f5d98c;
            font-weight: 700;
        }
        em {
            color: #c8a96e;
            font-style: italic;
        }
        hr {
            border: 0;
            height: 1px;
            background: #2a2a30;
            margin: 2rem 0;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 12px;
        }
        .site-header {
            padding: 1rem 0;
            border-bottom: 1px solid #2a2a30;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 0.5rem 1rem;
            position: relative;
            background: #0f0f12;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #c8a96e, #f5d98c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            letter-spacing: 1px;
            color: #888;
            -webkit-text-fill-color: #888;
            display: block;
        }
        .my-logo a {
            color: inherit;
            text-decoration: none;
        }
        .my-logo a:hover {
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 1px solid #3a3a42;
            color: #e0e0e0;
            font-size: 1.6rem;
            padding: 0.3rem 0.8rem;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #1e1e24;
        }
        .main-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 1.2rem;
            align-items: center;
        }
        .main-nav a {
            font-size: 0.92rem;
            font-weight: 500;
            color: #ccc;
            padding: 0.3rem 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s, color 0.2s;
        }
        .main-nav a:hover {
            color: #f5d98c;
            border-bottom-color: #c8a96e;
            text-decoration: none;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0.6rem 0;
            margin: 0.5rem 0 1rem;
            font-size: 0.85rem;
            color: #999;
            gap: 0.3rem 0.6rem;
            border-bottom: 1px solid #1e1e24;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #555;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #f5d98c;
        }
        .breadcrumb .current {
            color: #c8a96e;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #888;
            margin: 0.5rem 0 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .last-updated i {
            color: #c8a96e;
        }
        .search-section {
            background: #18181d;
            border-radius: 10px;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border: 1px solid #2a2a30;
        }
        .search-section h3 {
            margin-top: 0;
            font-size: 1.2rem;
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 0.7rem 1rem;
            border: 1px solid #3a3a42;
            border-radius: 6px;
            background: #0f0f12;
            color: #e0e0e0;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.2s;
        }
        .search-form input[type="text"]:focus {
            border-color: #c8a96e;
        }
        .search-form button {
            padding: 0.7rem 1.5rem;
            background: #c8a96e;
            border: none;
            border-radius: 6px;
            color: #0f0f12;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .search-form button:hover {
            background: #f5d98c;
            transform: scale(1.02);
        }
        .featured-figure {
            margin: 1.8rem 0;
            border-radius: 10px;
            overflow: hidden;
            background: #18181d;
            border: 1px solid #2a2a30;
        }
        .featured-figure img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
        }
        .featured-figure figcaption {
            padding: 0.6rem 1rem;
            font-size: 0.85rem;
            color: #999;
            font-style: italic;
        }
        .rating-section {
            background: #18181d;
            border-radius: 10px;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border: 1px solid #2a2a30;
        }
        .rating-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
            flex-wrap: wrap;
        }
        .rating-stars .star {
            transition: color 0.2s, transform 0.1s;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: #f5c542;
            transform: scale(1.1);
        }
        .rating-form button {
            margin-top: 0.6rem;
            padding: 0.5rem 1.4rem;
            background: #c8a96e;
            border: none;
            border-radius: 6px;
            color: #0f0f12;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }
        .rating-form button:hover {
            background: #f5d98c;
        }
        .comments-section {
            background: #18181d;
            border-radius: 10px;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border: 1px solid #2a2a30;
        }
        .comments-section h3 {
            margin-top: 0;
        }
        .comment-form textarea {
            width: 100%;
            min-height: 100px;
            padding: 0.7rem 1rem;
            border: 1px solid #3a3a42;
            border-radius: 6px;
            background: #0f0f12;
            color: #e0e0e0;
            font-size: 0.95rem;
            font-family: inherit;
            resize: vertical;
            outline: none;
            transition: border-color 0.2s;
        }
        .comment-form textarea:focus {
            border-color: #c8a96e;
        }
        .comment-form .form-row {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
            margin: 0.6rem 0;
        }
        .comment-form .form-row input {
            flex: 1;
            min-width: 150px;
            padding: 0.6rem 1rem;
            border: 1px solid #3a3a42;
            border-radius: 6px;
            background: #0f0f12;
            color: #e0e0e0;
            font-size: 0.9rem;
            outline: none;
        }
        .comment-form .form-row input:focus {
            border-color: #c8a96e;
        }
        .comment-form button {
            padding: 0.6rem 1.8rem;
            background: #c8a96e;
            border: none;
            border-radius: 6px;
            color: #0f0f12;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.2s;
        }
        .comment-form button:hover {
            background: #f5d98c;
        }
        friend-link {
            display: block;
            padding: 1.5rem 0;
            margin-top: 1rem;
            border-top: 1px solid #2a2a30;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 0.6rem 0.2rem 0;
            padding: 0.2rem 0.8rem;
            background: #1e1e24;
            border-radius: 4px;
            font-size: 0.88rem;
            color: #bbb;
            transition: background 0.2s, color 0.2s;
        }
        friend-link a:hover {
            background: #2a2a32;
            color: #f5d98c;
            text-decoration: none;
        }
        friend-link .label {
            font-weight: 600;
            color: #aaa;
            margin-right: 0.5rem;
            font-size: 0.9rem;
        }
        .site-footer {
            padding: 1.8rem 0 1.2rem;
            border-top: 1px solid #2a2a30;
            margin-top: 2rem;
            text-align: center;
            font-size: 0.85rem;
            color: #777;
        }
        .site-footer .copyright {
            margin-top: 0.6rem;
            letter-spacing: 0.3px;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                padding: 0.8rem 0 0.4rem;
                gap: 0.6rem;
                border-top: 1px solid #2a2a30;
                margin-top: 0.5rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.4rem 0.5rem;
                border-bottom: 1px solid #1e1e24;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            body {
                padding: 0 10px;
            }
            .search-form input[type="text"] {
                min-width: 140px;
            }
            .rating-stars {
                font-size: 1.5rem;
            }
        }
        @media (min-width: 769px) {
            .nav-toggle {
                display: none !important;
            }
            .main-nav {
                display: flex !important;
            }
        }
        .text-gold {
            color: #c8a96e;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            flex-wrap: wrap;
        }
        .badge {
            display: inline-block;
            background: #2a2a32;
            padding: 0.1rem 0.7rem;
            border-radius: 20px;
            font-size: 0.75rem;
            color: #aaa;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.2rem;
            margin: 1.5rem 0;
        }
        .card {
            background: #18181d;
            border: 1px solid #2a2a30;
            border-radius: 10px;
            padding: 1.2rem 1.2rem 1.5rem;
            transition: border-color 0.2s, transform 0.15s;
        }
        .card:hover {
            border-color: #3a3a48;
            transform: translateY(-2px);
        }
        .card h4 {
            margin-top: 0;
        }
        .card .card-icon {
            font-size: 1.8rem;
            color: #c8a96e;
            margin-bottom: 0.4rem;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.2rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.92rem;
            background: #18181d;
            border-radius: 8px;
            overflow: hidden;
        }
        th,
        td {
            padding: 0.65rem 0.8rem;
            text-align: left;
            border-bottom: 1px solid #2a2a30;
        }
        th {
            background: #1e1e26;
            color: #f0e6d3;
            font-weight: 600;
        }
        tr:hover td {
            background: #1e1e26;
        }
        .main-nav {
            transition: all 0.25s ease;
        }
        .star-input {
            display: none;
        }
        .star-label {
            cursor: pointer;
            font-size: 1.8rem;
            color: #555;
            transition: color 0.15s;
        }
        .star-label:hover,
        .star-label:hover~.star-label,
        .star-input:checked~.star-label {
            color: #f5c542;
        }
        .rating-stars {
            direction: rtl;
            display: flex;
            justify-content: flex-end;
            gap: 0.2rem;
        }
        .rating-stars .star-label {
            display: inline-block;
        }
        .rating-stars .star-label::before {
            content: "\f005";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
        }
