        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: #0b0e14;
            color: #e8e6e0;
            line-height: 1.8;
            font-size: 16px;
            padding: 0 16px;
        }
        a {
            color: #f5b342;
            text-decoration: none;
            transition: color 0.25s, border-color 0.25s;
        }
        a:hover,
        a:focus {
            color: #ffd966;
            border-bottom: 1px solid #f5b342;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 600;
            line-height: 1.3;
            letter-spacing: -0.01em;
            color: #f5f3ef;
        }
        h1 {
            font-size: 2.4rem;
            margin-bottom: 0.6rem;
        }
        h2 {
            font-size: 1.9rem;
            margin-top: 2.4rem;
            margin-bottom: 0.8rem;
            border-left: 5px solid #f5b342;
            padding-left: 18px;
        }
        h3 {
            font-size: 1.5rem;
            margin-top: 1.8rem;
            margin-bottom: 0.5rem;
        }
        h4 {
            font-size: 1.2rem;
            margin-top: 1.2rem;
            margin-bottom: 0.3rem;
            color: #d4d0c8;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
            color: #d8d4cc;
        }
        ul,
        ol {
            margin: 0.8rem 0 1.4rem 1.8rem;
            color: #d8d4cc;
        }
        li {
            margin-bottom: 0.4rem;
        }
        strong {
            color: #f5f3ef;
            font-weight: 600;
        }
        .container {
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 12px;
        }
        .site-header {
            padding: 20px 0 10px;
            border-bottom: 1px solid #2a2e36;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            position: relative;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 700;
            letter-spacing: 1px;
            color: #f5b342;
            text-transform: uppercase;
            border: none;
            background: transparent;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: opacity 0.2s;
        }
        .my-logo:hover {
            opacity: 0.85;
            border: none;
        }
        .my-logo i {
            font-size: 2rem;
            color: #e8d5b0;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 300;
            color: #a09888;
            letter-spacing: 2px;
            display: block;
            margin-left: 4px;
        }
        .hamburger {
            display: none;
            background: transparent;
            border: none;
            font-size: 2rem;
            color: #f5b342;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #1f232b;
        }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
            align-items: center;
        }
        .nav-menu a {
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 0.95rem;
            font-weight: 500;
            color: #c8c4bc;
            border: 1px solid transparent;
            transition: background 0.2s, color 0.2s, border-color 0.2s;
        }
        .nav-menu a:hover {
            background: #1f232b;
            color: #f5b342;
            border-color: #f5b342;
            border-bottom: 1px solid #f5b342;
        }
        .nav-menu a.active {
            color: #f5b342;
            border-bottom: 2px solid #f5b342;
        }
        .breadcrumb {
            padding: 14px 0 6px;
            font-size: 0.85rem;
            color: #8a847c;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            list-style: none;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin: 0 8px;
            color: #5a544c;
        }
        .breadcrumb a {
            color: #b8b0a4;
            border: none;
        }
        .breadcrumb a:hover {
            color: #f5b342;
            border: none;
        }
        .breadcrumb .current {
            color: #f5b342;
        }
        .hero-figure {
            margin: 24px 0 28px;
            border-radius: 16px;
            overflow: hidden;
            background: #14181f;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
        }
        .hero-figure img {
            width: 100%;
            min-height: 200px;
            object-fit: cover;
        }
        .hero-caption {
            padding: 14px 20px;
            font-size: 0.9rem;
            color: #a09888;
            background: #14181f;
            border-top: 1px solid #2a2e36;
        }
        .search-box {
            display: flex;
            max-width: 560px;
            margin: 18px 0 24px;
            border-radius: 40px;
            overflow: hidden;
            border: 1px solid #2a2e36;
            background: #0f1219;
            transition: border-color 0.2s;
        }
        .search-box:focus-within {
            border-color: #f5b342;
        }
        .search-box input {
            flex: 1;
            padding: 14px 20px;
            border: none;
            background: transparent;
            color: #e8e6e0;
            font-size: 1rem;
            outline: none;
        }
        .search-box input::placeholder {
            color: #6a645c;
        }
        .search-box button {
            padding: 14px 26px;
            background: #f5b342;
            border: none;
            color: #0b0e14;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-box button:hover {
            background: #e8a232;
        }
        .rating-area {
            display: flex;
            flex-wrap: wrap;
            gap: 24px 40px;
            align-items: center;
            padding: 18px 0 10px;
        }
        .star-group {
            display: flex;
            gap: 6px;
            align-items: center;
        }
        .star-group i {
            font-size: 1.6rem;
            color: #3a3e46;
            cursor: pointer;
            transition: color 0.2s, transform 0.1s;
        }
        .star-group i.active,
        .star-group i:hover {
            color: #f5b342;
            transform: scale(1.1);
        }
        .rating-form {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px;
        }
        .rating-form input[type="number"] {
            width: 80px;
            padding: 8px 10px;
            border-radius: 8px;
            border: 1px solid #2a2e36;
            background: #0f1219;
            color: #e8e6e0;
            font-size: 1rem;
            outline: none;
        }
        .rating-form input[type="number"]:focus {
            border-color: #f5b342;
        }
        .rating-form button {
            padding: 8px 20px;
            border-radius: 30px;
            border: none;
            background: #f5b342;
            color: #0b0e14;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }
        .rating-form button:hover {
            background: #e8a232;
        }
        .comment-section {
            margin: 40px 0 30px;
            padding: 24px 28px;
            background: #11151c;
            border-radius: 16px;
            border: 1px solid #2a2e36;
        }
        .comment-section h2 {
            margin-top: 0;
            border-left-color: #e8d5b0;
        }
        .comment-list {
            margin: 18px 0 20px;
            max-height: 420px;
            overflow-y: auto;
            padding-right: 8px;
        }
        .comment-item {
            padding: 14px 0;
            border-bottom: 1px solid #1f232b;
        }
        .comment-item:last-child {
            border-bottom: none;
        }
        .comment-meta {
            display: flex;
            gap: 12px;
            font-size: 0.85rem;
            color: #8a847c;
        }
        .comment-meta strong {
            color: #e8d5b0;
        }
        .comment-text {
            margin-top: 6px;
            color: #d8d4cc;
        }
        .comment-form {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-top: 12px;
        }
        .comment-form input,
        .comment-form textarea {
            flex: 1 1 200px;
            padding: 12px 16px;
            border-radius: 10px;
            border: 1px solid #2a2e36;
            background: #0f1219;
            color: #e8e6e0;
            font-size: 0.95rem;
            outline: none;
            font-family: inherit;
        }
        .comment-form textarea {
            flex-basis: 100%;
            min-height: 90px;
            resize: vertical;
        }
        .comment-form input:focus,
        .comment-form textarea:focus {
            border-color: #f5b342;
        }
        .comment-form button {
            padding: 12px 32px;
            border-radius: 30px;
            border: none;
            background: #f5b342;
            color: #0b0e14;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s;
        }
        .comment-form button:hover {
            background: #e8a232;
        }
        friend-link {
            display: block;
            padding: 16px 0 8px;
            border-top: 1px solid #2a2e36;
            margin-top: 32px;
            font-size: 0.95rem;
            color: #b8b0a4;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 4px 8px;
            border-radius: 4px;
            background: #1a1e26;
            transition: background 0.2s, color 0.2s;
        }
        friend-link a:hover {
            background: #2a2e36;
            color: #f5b342;
            border: none;
        }
        friend-link .friend-label {
            font-weight: 600;
            color: #e8d5b0;
            margin-right: 10px;
        }
        .site-footer {
            padding: 28px 0 20px;
            border-top: 1px solid #2a2e36;
            margin-top: 20px;
            font-size: 0.9rem;
            color: #7a746c;
            text-align: center;
        }
        .site-footer p {
            margin-bottom: 6px;
            font-size: 0.9rem;
        }
        .site-footer .copyright {
            color: #5a544c;
        }
        @media (max-width: 820px) {
            .hamburger {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding: 16px 0 8px;
                gap: 4px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 12px 16px;
                border-radius: 8px;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .rating-area {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }
            .comment-form input,
            .comment-form textarea {
                flex-basis: 100%;
            }
            .search-box {
                max-width: 100%;
            }
            .hero-figure {
                margin: 16px 0 20px;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 8px;
                font-size: 15px;
            }
            .site-header {
                padding: 12px 0 6px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.3rem;
                padding-left: 12px;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .comment-section {
                padding: 16px;
            }
            .star-group i {
                font-size: 1.3rem;
            }
            .search-box button {
                padding: 12px 18px;
                font-size: 0.9rem;
            }
            .search-box input {
                padding: 12px 14px;
                font-size: 0.9rem;
            }
        }
        ::-webkit-scrollbar {
            width: 6px;
            height: 6px;
        }
        ::-webkit-scrollbar-track {
            background: #0b0e14;
        }
        ::-webkit-scrollbar-thumb {
            background: #3a3e46;
            border-radius: 8px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #5a5e66;
        }
        .update-badge {
            display: inline-block;
            background: #1f232b;
            padding: 4px 16px;
            border-radius: 30px;
            font-size: 0.8rem;
            color: #b8b0a4;
            margin-bottom: 16px;
            border: 1px solid #2a2e36;
        }
        .highlight-box {
            background: #14181f;
            border-left: 4px solid #f5b342;
            padding: 18px 24px;
            border-radius: 8px;
            margin: 20px 0;
        }
        .two-col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 20px 0;
        }
        @media (max-width: 660px) {
            .two-col {
                grid-template-columns: 1fr;
                gap: 16px;
            }
        }
        .emoji-big {
            font-size: 1.8rem;
            vertical-align: middle;
            margin-right: 6px;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 16px;
            margin: 20px 0;
        }
        .stat-card {
            background: #11151c;
            padding: 18px 16px;
            border-radius: 12px;
            border: 1px solid #2a2e36;
            text-align: center;
        }
        .stat-card .num {
            font-size: 2rem;
            font-weight: 700;
            color: #f5b342;
        }
        .stat-card .label {
            font-size: 0.85rem;
            color: #8a847c;
            margin-top: 2px;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 20px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #11151c;
            border-radius: 12px;
            overflow: hidden;
        }
        th,
        td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid #1f232b;
        }
        th {
            background: #1a1e26;
            color: #f5b342;
            font-weight: 600;
        }
        td {
            color: #d8d4cc;
        }
        tr:last-child td {
            border-bottom: none;
        }
