        *,
        *::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', sans-serif;
            background: #0f0f1a;
            color: #e8e8f0;
            line-height: 1.75;
            padding: 0 1rem;
            max-width: 1280px;
            margin: 0 auto;
            min-height: 100vh;
        }
        a {
            color: #f0c040;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #ffd966;
            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.25;
            color: #f5f5ff;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.4rem;
            border-bottom: 3px solid #f0c040;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 5px solid #f0c040;
            padding-left: 0.75rem;
        }
        h3 {
            font-size: 1.35rem;
            color: #f0d080;
        }
        h4 {
            font-size: 1.1rem;
            color: #c8c8e0;
        }
        p {
            margin-bottom: 1.2rem;
            color: #d8d8ec;
        }
        strong,
        b {
            color: #ffd966;
            font-weight: 700;
        }
        em {
            color: #c8a8ff;
        }
        hr {
            border: 0;
            height: 2px;
            background: linear-gradient(90deg, #f0c04044, #f0c040, #f0c04044);
            margin: 2.5rem 0;
        }
        .container {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
            padding: 0.8rem 0 2rem 0;
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 0 0.6rem 0;
            border-bottom: 1px solid #2a2a3e;
            position: relative;
            background: #0f0f1a;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f0c040, #e69422);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 20px #f0c04033;
            display: inline-block;
        }
        .my-logo small {
            font-size: 0.5rem;
            display: block;
            -webkit-text-fill-color: #8888aa;
            color: #8888aa;
            letter-spacing: 1px;
            font-weight: 400;
        }
        .my-logo a {
            color: inherit;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f0c040;
            color: #f0c040;
            font-size: 1.6rem;
            padding: 0.3rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #f0c04022;
        }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 1.2rem;
            list-style: none;
            padding: 0;
            align-items: center;
        }
        .nav-menu li a {
            padding: 0.3rem 0.1rem;
            font-weight: 500;
            font-size: 0.95rem;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
            color: #c8c8e8;
        }
        .nav-menu li a:hover {
            border-bottom-color: #f0c040;
            color: #f0c040;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            font-size: 0.85rem;
            padding: 0.6rem 0 0.2rem 0;
            color: #8888aa;
            list-style: none;
            width: 100%;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #55557a;
        }
        .breadcrumb a {
            color: #aaaacc;
        }
        .breadcrumb a:hover {
            color: #f0c040;
        }
        .breadcrumb .current {
            color: #f0c040;
            font-weight: 600;
        }
        .search-section {
            background: #1a1a2e;
            padding: 1.2rem 1.5rem;
            border-radius: 16px;
            margin: 1.5rem 0;
            border: 1px solid #2a2a44;
        }
        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            align-items: center;
        }
        .search-form input[type="text"] {
            flex: 1 1 220px;
            padding: 0.7rem 1rem;
            border-radius: 40px;
            border: 2px solid #3a3a5a;
            background: #0f0f1a;
            color: #f0f0ff;
            font-size: 1rem;
            outline: none;
            transition: 0.3s;
        }
        .search-form input[type="text"]:focus {
            border-color: #f0c040;
            box-shadow: 0 0 0 3px #f0c04033;
        }
        .search-form button {
            padding: 0.7rem 1.8rem;
            border-radius: 40px;
            border: none;
            background: linear-gradient(135deg, #f0c040, #d48020);
            color: #0f0f1a;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.25s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            transform: scale(1.03);
            box-shadow: 0 0 20px #f0c04055;
        }
        .review-section {
            background: #1a1a2e;
            padding: 1.5rem;
            border-radius: 16px;
            margin: 1.8rem 0;
            border: 1px solid #2a2a44;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
        }
        .review-section .full-width {
            grid-column: 1 / -1;
        }
        .review-section h3 {
            margin-top: 0;
        }
        .review-form textarea,
        .review-form input {
            width: 100%;
            padding: 0.7rem 1rem;
            border-radius: 12px;
            border: 2px solid #3a3a5a;
            background: #0f0f1a;
            color: #f0f0ff;
            font-size: 0.95rem;
            font-family: inherit;
            outline: none;
            transition: 0.3s;
            margin-bottom: 0.8rem;
        }
        .review-form textarea:focus,
        .review-form input:focus {
            border-color: #f0c040;
            box-shadow: 0 0 0 3px #f0c04022;
        }
        .review-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .review-form button,
        .score-form button {
            padding: 0.6rem 1.6rem;
            border-radius: 40px;
            border: none;
            background: linear-gradient(135deg, #f0c040, #d48020);
            color: #0f0f1a;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: 0.25s;
        }
        .review-form button:hover,
        .score-form button:hover {
            transform: scale(1.02);
            box-shadow: 0 0 16px #f0c04044;
        }
        .score-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #55557a;
            cursor: pointer;
            flex-wrap: wrap;
        }
        .score-stars i {
            transition: 0.15s;
        }
        .score-stars i.active,
        .score-stars i:hover {
            color: #f0c040;
            transform: scale(1.1);
        }
        .score-form label {
            display: block;
            margin-bottom: 0.4rem;
            font-weight: 500;
            color: #c8c8e8;
        }
        .content-area {
            background: #12121f;
            padding: 1.2rem 1.5rem;
            border-radius: 20px;
            border: 1px solid #1e1e34;
        }
        .content-area p,
        .content-area li {
            font-size: 1.02rem;
        }
        .content-area .featured-image {
            margin: 1.5rem 0;
            border-radius: 16px;
            box-shadow: 0 8px 30px #00000066;
        }
        .content-area .caption {
            font-size: 0.85rem;
            color: #8888aa;
            text-align: center;
            margin-top: 0.3rem;
        }
        .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
            list-style: none;
            padding: 0.6rem 0;
            margin: 1rem 0;
        }
        .link-list-inline li a {
            background: #1a1a30;
            padding: 0.3rem 1rem;
            border-radius: 30px;
            border: 1px solid #2a2a4a;
            font-size: 0.9rem;
            transition: 0.2s;
        }
        .link-list-inline li a:hover {
            background: #2a2a4a;
            border-color: #f0c040;
        }
        .update-time {
            font-size: 0.85rem;
            color: #8888aa;
            text-align: right;
            padding-top: 0.5rem;
            border-top: 1px solid #1e1e34;
            margin-top: 2rem;
        }
        .site-footer {
            margin-top: 2.5rem;
            padding: 1.8rem 0 1.2rem 0;
            border-top: 1px solid #2a2a3e;
            font-size: 0.9rem;
            color: #8888aa;
        }
        .site-footer friend-link {
            display: block;
            margin-bottom: 1rem;
            padding: 0.8rem 1.2rem;
            background: #1a1a2e;
            border-radius: 12px;
            border: 1px solid #2a2a44;
        }
        .site-footer friend-link a {
            display: inline-block;
            margin: 0.2rem 1.2rem 0.2rem 0;
            padding: 0.2rem 0;
        }
        .site-footer .copyright {
            text-align: center;
            padding-top: 1rem;
            font-size: 0.82rem;
            color: #66668a;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 0.6rem;
            }
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.35rem;
            }
            h3 {
                font-size: 1.1rem;
            }
            .site-header {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: inline-block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                padding: 0.8rem 0 0.4rem 0;
                gap: 0.2rem;
                border-top: 1px solid #2a2a3e;
                margin-top: 0.6rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                display: block;
                padding: 0.5rem 0.3rem;
                border-bottom: 1px solid #1e1e32;
            }
            .review-section {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
            .search-form {
                flex-direction: column;
                align-items: stretch;
            }
            .search-form button {
                justify-content: center;
            }
            .content-area {
                padding: 0.8rem 1rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        @media (min-width: 769px) {
            .nav-toggle {
                display: none !important;
            }
            .nav-menu {
                display: flex !important;
            }
        }
        .highlight-box {
            background: linear-gradient(135deg, #1a1a30, #222244);
            border-left: 4px solid #f0c040;
            padding: 1rem 1.5rem;
            border-radius: 0 12px 12px 0;
            margin: 1.5rem 0;
        }
        .emoji-big {
            font-size: 1.4em;
            display: inline-block;
            margin-right: 0.2em;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 1rem;
            margin: 1.2rem 0;
        }
        .stat-card {
            background: #1a1a2e;
            padding: 1rem 0.8rem;
            border-radius: 12px;
            text-align: center;
            border: 1px solid #2a2a44;
        }
        .stat-card .num {
            font-size: 2rem;
            font-weight: 800;
            color: #f0c040;
            display: block;
        }
        .stat-card .label {
            font-size: 0.8rem;
            color: #8888aa;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.2rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #12121f;
            border-radius: 12px;
            overflow: hidden;
        }
        th,
        td {
            padding: 0.6rem 1rem;
            text-align: left;
            border-bottom: 1px solid #1e1e34;
        }
        th {
            background: #1a1a30;
            color: #f0c040;
            font-weight: 600;
        }
        tr:hover td {
            background: #1a1a2e;
        }
        .schema-hidden {
            display: none;
        }
        .fa-star,
        .fa-star-half-alt,
        .fa-star-o {
            color: #55557a;
        }
        .fa-star.active,
        .fa-star-half-alt.active {
            color: #f0c040;
        }
