        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0b0e1a;
            color: #e8edf5;
            line-height: 1.7;
            padding: 0 1rem;
        }
        a {
            color: #f7c948;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: #ffdd77;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        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.25;
            margin-top: 0;
            color: #f0f4ff;
        }
        h1 {
            font-size: 2.4rem;
            margin-bottom: 1.2rem;
            letter-spacing: -0.02em;
            border-bottom: 3px solid #f7c948;
            padding-bottom: 0.6rem;
        }
        h2 {
            font-size: 1.9rem;
            margin: 2.8rem 0 1rem 0;
            border-left: 6px solid #f7c948;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.5rem;
            margin: 2rem 0 0.75rem 0;
            color: #f7d89a;
        }
        h4 {
            font-size: 1.2rem;
            margin: 1.5rem 0 0.5rem 0;
            color: #cbd5e6;
        }
        p {
            margin: 0 0 1.2rem 0;
            word-break: break-word;
        }
        strong,
        b {
            color: #ffd966;
            font-weight: 700;
        }
        em,
        i {
            color: #b8c7e0;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 0.5rem;
        }
        .site-header {
            padding: 1.2rem 0 0.6rem 0;
            border-bottom: 1px solid #2a3045;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            position: relative;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.03em;
            background: linear-gradient(135deg, #f7c948, #e9a825);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 20px rgba(247, 201, 72, 0.25);
            display: inline-block;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: #8899bb;
            color: #8899bb;
            display: block;
            font-weight: 400;
            letter-spacing: 0.06em;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f7c948;
            color: #f7c948;
            font-size: 1.6rem;
            padding: 0.3rem 0.8rem;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #f7c94822;
        }
        .main-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 0.2rem 0.6rem;
            align-items: center;
        }
        .main-nav a {
            color: #c8d4e8;
            font-weight: 500;
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            font-size: 0.95rem;
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
        }
        .main-nav a:hover {
            background: #f7c9481a;
            color: #f7c948;
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 0.3rem;
            font-size: 0.85rem;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0.7rem 0 0.2rem 0;
            margin: 0 0 1.2rem 0;
            font-size: 0.9rem;
            color: #8899bb;
            border-bottom: 1px solid #1e2538;
        }
        .breadcrumb li {
            margin-right: 0.4rem;
            margin-bottom: 0.2rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.5rem;
            color: #556688;
        }
        .breadcrumb a {
            color: #aabbdd;
        }
        .breadcrumb a:hover {
            color: #f7c948;
        }
        .breadcrumb .active {
            color: #f7c948;
            font-weight: 600;
        }
        .hero-image-wrap {
            margin: 1.5rem 0 2.5rem 0;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
            background: #141b2b;
            position: relative;
        }
        .hero-image-wrap img {
            width: 100%;
            height: auto;
            max-height: 480px;
            object-fit: cover;
            display: block;
        }
        .hero-image-wrap figcaption {
            padding: 0.8rem 1.2rem;
            background: #0f1422dd;
            font-size: 0.9rem;
            color: #b0c4e0;
            border-top: 1px solid #2a3045;
        }
        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            margin: 1.8rem 0 1.2rem 0;
            padding: 1.2rem 1.5rem;
            background: #141b2b;
            border-radius: 14px;
            border: 1px solid #2a3045;
        }
        .search-form label {
            font-weight: 600;
            color: #f0f4ff;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            width: 100%;
        }
        .search-form input[type="text"] {
            flex: 1 1 240px;
            padding: 0.7rem 1rem;
            border-radius: 30px;
            border: 1px solid #334466;
            background: #0b0e1a;
            color: #e8edf5;
            font-size: 1rem;
            outline: none;
            transition: border 0.25s;
        }
        .search-form input[type="text"]:focus {
            border-color: #f7c948;
        }
        .search-form button {
            padding: 0.7rem 1.8rem;
            border-radius: 30px;
            border: none;
            background: #f7c948;
            color: #0b0e1a;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #ffdd77;
            transform: scale(1.02);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .feedback-card {
            background: #141b2b;
            padding: 1.5rem 1.8rem;
            border-radius: 16px;
            border: 1px solid #2a3045;
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.3rem;
            border-left: 4px solid #f7c948;
            padding-left: 0.8rem;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-top: 0.8rem;
        }
        .feedback-card textarea,
        .feedback-card input,
        .feedback-card select {
            padding: 0.7rem 1rem;
            border-radius: 10px;
            border: 1px solid #334466;
            background: #0b0e1a;
            color: #e8edf5;
            font-size: 0.95rem;
            outline: none;
            resize: vertical;
            font-family: inherit;
            transition: border 0.25s;
        }
        .feedback-card textarea:focus,
        .feedback-card input:focus,
        .feedback-card select:focus {
            border-color: #f7c948;
        }
        .feedback-card button {
            align-self: flex-start;
            padding: 0.6rem 1.8rem;
            border-radius: 30px;
            border: none;
            background: #f7c948;
            color: #0b0e1a;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .feedback-card button:hover {
            background: #ffdd77;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.6rem;
            color: #445577;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating i {
            transition: color 0.2s;
        }
        .star-rating i:hover,
        .star-rating i:hover~i {
            color: #f7c948;
        }
        .star-rating input {
            display: none;
        }
        .star-rating input:checked~i {
            color: #f7c948;
        }
        .wiki-content {
            background: #111724;
            padding: 2rem 2rem 2.8rem 2rem;
            border-radius: 20px;
            border: 1px solid #1e2538;
            margin: 1.8rem 0;
        }
        .wiki-content p {
            text-align: justify;
        }
        .wiki-content .highlight-box {
            background: #1a2340;
            border-left: 6px solid #f7c948;
            padding: 1.2rem 1.8rem;
            margin: 1.6rem 0;
            border-radius: 0 12px 12px 0;
        }
        .wiki-content .stat-block {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 1rem;
            margin: 1.4rem 0;
        }
        .wiki-content .stat-item {
            background: #0f1422;
            padding: 1rem;
            border-radius: 12px;
            text-align: center;
            border: 1px solid #2a3045;
        }
        .wiki-content .stat-item i {
            font-size: 2rem;
            color: #f7c948;
            margin-bottom: 0.4rem;
        }
        .wiki-content .stat-item span {
            display: block;
            font-weight: 700;
            font-size: 1.1rem;
        }
        .wiki-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.6rem 0;
            font-size: 0.95rem;
            background: #0f1422;
            border-radius: 12px;
            overflow: hidden;
        }
        .wiki-table th {
            background: #1e2538;
            color: #f7c948;
            font-weight: 700;
            padding: 0.8rem 1rem;
            text-align: left;
            border-bottom: 2px solid #2a3045;
        }
        .wiki-table td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid #1e2538;
        }
        .wiki-table tr:last-child td {
            border-bottom: none;
        }
        .wiki-table tr:hover td {
            background: #1a2340;
        }
        .site-footer {
            margin-top: 3rem;
            padding: 2rem 0 1.5rem 0;
            border-top: 1px solid #2a3045;
            font-size: 0.9rem;
            color: #8899bb;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.5rem;
            margin-bottom: 1.8rem;
        }
        .footer-grid h4 {
            color: #f0f4ff;
            font-size: 1.1rem;
            margin-bottom: 0.6rem;
            border-left: 3px solid #f7c948;
            padding-left: 0.6rem;
        }
        .footer-grid a {
            display: block;
            padding: 0.2rem 0;
            color: #aabbdd;
        }
        .footer-grid a:hover {
            color: #f7c948;
        }
        friend-link {
            display: block;
            padding: 0.8rem 0;
            border-top: 1px solid #1e2538;
            margin-top: 1rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 0.6rem 0.2rem 0;
            padding: 0.2rem 1rem 0.2rem 0;
            border-right: 1px solid #334466;
            color: #aabbdd;
        }
        friend-link a:last-child {
            border-right: none;
        }
        friend-link a:hover {
            color: #f7c948;
        }
        .copyright {
            text-align: center;
            padding-top: 1.2rem;
            border-top: 1px solid #1e2538;
            font-size: 0.85rem;
            color: #667799;
        }
        .copyright strong {
            color: #aabbdd;
        }
        @media (max-width: 820px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .wiki-content {
                padding: 1.2rem 1rem;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                background: #0f1422;
                padding: 1rem 0.8rem;
                border-radius: 12px;
                margin-top: 0.6rem;
                border: 1px solid #2a3045;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                width: 100%;
                padding: 0.5rem 0.8rem;
                border-radius: 8px;
            }
            .nav-toggle {
                display: inline-block;
            }
            .site-header {
                align-items: center;
            }
            .my-logo {
                font-size: 1.6rem;
            }
            .breadcrumb {
                font-size: 0.8rem;
                flex-wrap: wrap;
            }
            .search-form {
                padding: 1rem;
            }
            .search-form input[type="text"] {
                flex: 1 1 100%;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 0.5rem;
            }
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.25rem;
            }
            h3 {
                font-size: 1.1rem;
            }
            .wiki-content {
                padding: 0.8rem 0.6rem;
            }
            .feedback-card {
                padding: 1rem;
            }
            .star-rating {
                font-size: 1.3rem;
            }
            .hero-image-wrap {
                margin: 0.8rem 0 1.5rem 0;
            }
            .stat-block {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }
        .text-highlight {
            color: #f7c948;
        }
        .badge {
            display: inline-block;
            background: #f7c948;
            color: #0b0e1a;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 0.15rem 0.6rem;
            border-radius: 20px;
            letter-spacing: 0.04em;
            vertical-align: middle;
        }
        .divider {
            border: none;
            height: 1px;
            background: linear-gradient(to right, transparent, #2a3045, transparent);
            margin: 2rem 0;
        }
        .back-to-top {
            position: fixed;
            bottom: 1.8rem;
            right: 1.8rem;
            background: #f7c948;
            color: #0b0e1a;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            box-shadow: 0 4px 16px rgba(247, 201, 72, 0.3);
            transition: transform 0.2s, box-shadow 0.2s;
            z-index: 99;
            border: none;
            cursor: pointer;
        }
        .back-to-top:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 28px rgba(247, 201, 72, 0.45);
        }
        @media (max-width: 480px) {
            .back-to-top {
                bottom: 1rem;
                right: 1rem;
                width: 38px;
                height: 38px;
                font-size: 1rem;
            }
        }
