        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #faf9f6;
            color: #1e1e2a;
            line-height: 1.7;
            padding: 0 1rem;
        }
        a {
            color: #b45309;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #7b2d8e;
            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;
        }
        .container {
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 0.75rem;
        }
        .site-header {
            background: linear-gradient(145deg, #2d1b4e, #1a0f2e);
            color: #fff;
            padding: 1rem 0;
            border-radius: 0 0 28px 28px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 0.75rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            text-shadow: 0 0 20px rgba(251, 191, 36, 0.25);
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo i {
            -webkit-text-fill-color: #fbbf24;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            opacity: 0.88;
            text-decoration: none;
        }
        .nav-bar {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            flex-wrap: wrap;
        }
        .nav-bar a {
            color: #f0e9ff;
            padding: 0.5rem 0.9rem;
            border-radius: 40px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: background 0.25s, color 0.25s;
            white-space: nowrap;
        }
        .nav-bar a:hover {
            background: rgba(251, 191, 36, 0.18);
            color: #fbbf24;
            text-decoration: none;
        }
        .nav-bar a i {
            margin-right: 6px;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fbbf24;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.5rem;
            transition: transform 0.2s;
        }
        .hamburger:active {
            transform: scale(0.92);
        }
        .breadcrumb {
            padding: 0.85rem 0 0.3rem 0;
            font-size: 0.85rem;
            color: #6b7280;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            list-style: none;
        }
        .breadcrumb li {
            display: inline;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #a78bfa;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #7c3aed;
        }
        .breadcrumb a:hover {
            color: #b45309;
        }
        .breadcrumb .current {
            color: #374151;
            font-weight: 600;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin: 2rem 0 3rem;
        }
        @media(max-width:860px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
        }
        .sidebar {
            background: #f3f0fa;
            border-radius: 24px;
            padding: 1.8rem 1.5rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            height: fit-content;
            position: sticky;
            top: 100px;
        }
        .sidebar h3 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: #2d1b4e;
            border-left: 5px solid #fbbf24;
            padding-left: 0.75rem;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
        }
        .sidebar ul li {
            padding: 0.4rem 0;
            border-bottom: 1px solid #e0d9f0;
        }
        .sidebar ul li a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 500;
        }
        .sidebar ul li a i {
            color: #b45309;
            width: 1.2rem;
        }
        .content-article h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #1a0f2e;
            line-height: 1.2;
            margin-bottom: 0.25rem;
        }
        .content-article h1 i {
            color: #fbbf24;
            margin-right: 0.4rem;
        }
        .content-article .subhead {
            font-size: 1.1rem;
            color: #6b7280;
            margin-bottom: 1.5rem;
            border-bottom: 2px solid #f3e8ff;
            padding-bottom: 0.75rem;
        }
        .content-article h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: #2d1b4e;
            margin-top: 2.8rem;
            margin-bottom: 0.8rem;
            border-left: 6px solid #fbbf24;
            padding-left: 1rem;
        }
        .content-article h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #3b2b5e;
            margin-top: 2rem;
            margin-bottom: 0.6rem;
        }
        .content-article h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #5b4a7a;
            margin-top: 1.5rem;
            margin-bottom: 0.4rem;
        }
        .content-article p {
            margin-bottom: 1.1rem;
            font-size: 1.05rem;
        }
        .content-article .highlight-box {
            background: #fef9e7;
            border-left: 6px solid #f59e0b;
            border-radius: 0 16px 16px 0;
            padding: 1.2rem 1.8rem;
            margin: 1.8rem 0;
        }
        .content-article .highlight-box i {
            color: #b45309;
            margin-right: 8px;
        }
        .content-article .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .content-article .stat-card {
            background: #fff;
            border-radius: 16px;
            padding: 1.2rem 1rem;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            border: 1px solid #ede9fe;
        }
        .content-article .stat-card i {
            font-size: 2rem;
            color: #7c3aed;
            margin-bottom: 0.5rem;
        }
        .content-article .stat-card .num {
            font-size: 1.8rem;
            font-weight: 800;
            color: #2d1b4e;
        }
        .content-article .stat-card .label {
            font-size: 0.9rem;
            color: #6b7280;
        }
        .hero-img-wrap {
            margin: 2rem 0 1.5rem;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
        }
        .hero-img-wrap img {
            width: 100%;
            display: block;
        }
        .img-caption {
            font-size: 0.85rem;
            color: #6b7280;
            text-align: center;
            margin-top: 0.5rem;
            font-style: italic;
        }
        .search-section {
            background: #ede9fe;
            border-radius: 24px;
            padding: 1.8rem 2rem;
            margin: 2.5rem 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1rem;
            justify-content: center;
        }
        .search-section input {
            flex: 2 1 280px;
            padding: 0.85rem 1.2rem;
            border: none;
            border-radius: 60px;
            font-size: 1rem;
            background: #fff;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            outline: 2px solid transparent;
            transition: outline 0.2s;
        }
        .search-section input:focus {
            outline-color: #7c3aed;
        }
        .search-section button {
            background: #2d1b4e;
            color: #fff;
            border: none;
            padding: 0.85rem 2.2rem;
            border-radius: 60px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
        }
        .search-section button:hover {
            background: #b45309;
            transform: scale(1.02);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 2.5rem 0;
        }
        @media(max-width:700px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .feedback-card {
            background: #fff;
            border-radius: 24px;
            padding: 1.8rem 2rem;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
            border: 1px solid #ede9fe;
        }
        .feedback-card h3 {
            font-size: 1.3rem;
            color: #2d1b4e;
            margin-bottom: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .feedback-card textarea,
        .feedback-card input[type="number"] {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid #e0d9f0;
            border-radius: 16px;
            font-size: 1rem;
            font-family: inherit;
            transition: border 0.2s;
            resize: vertical;
            background: #faf9f6;
        }
        .feedback-card textarea:focus,
        .feedback-card input[type="number"]:focus {
            border-color: #7c3aed;
            outline: none;
        }
        .feedback-card textarea {
            min-height: 100px;
        }
        .feedback-card .row {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
            align-items: center;
            margin-top: 0.8rem;
        }
        .feedback-card .star-display {
            display: flex;
            gap: 0.2rem;
            font-size: 1.6rem;
            color: #fbbf24;
        }
        .feedback-card .star-display i {
            cursor: pointer;
            transition: transform 0.15s;
        }
        .feedback-card .star-display i:hover {
            transform: scale(1.2);
        }
        .feedback-card .btn-submit {
            background: #7c3aed;
            color: #fff;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 60px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .feedback-card .btn-submit:hover {
            background: #b45309;
            transform: scale(1.02);
        }
        .site-footer {
            background: #1a0f2e;
            color: #d1c6e8;
            border-radius: 32px 32px 0 0;
            padding: 2.5rem 1.5rem 1.8rem;
            margin-top: 3rem;
        }
        .footer-inner {
            max-width: 1180px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        @media(max-width:700px) {
            .footer-inner {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }
        .footer-inner h4 {
            color: #fbbf24;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }
        .footer-inner a {
            color: #c4b5e3;
        }
        .footer-inner a:hover {
            color: #fbbf24;
        }
        .footer-inner ul {
            list-style: none;
            padding: 0;
        }
        .footer-inner ul li {
            padding: 0.25rem 0;
        }
        friend-link {
            display: block;
            background: rgba(251, 191, 36, 0.06);
            padding: 1.5rem 1.8rem;
            border-radius: 20px;
            margin-top: 1.5rem;
            border: 1px solid rgba(251, 191, 36, 0.15);
            font-size: 0.95rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 0.6rem 0.2rem 0;
            padding: 0.25rem 0.8rem;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 40px;
            font-weight: 500;
        }
        friend-link a:hover {
            background: rgba(251, 191, 36, 0.15);
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding-top: 1.8rem;
            margin-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            font-size: 0.85rem;
            color: #9b8bb8;
        }
        .copyright i {
            margin: 0 4px;
        }
        @media(max-width:720px) {
            .hamburger {
                display: block;
            }
            .nav-bar {
                display: none;
                width: 100%;
                flex-direction: column;
                background: rgba(26, 15, 46, 0.95);
                padding: 1rem 0.5rem;
                border-radius: 20px;
                margin-top: 0.6rem;
                gap: 0.15rem;
            }
            .nav-bar.open {
                display: flex;
            }
            .nav-bar a {
                padding: 0.7rem 1rem;
                width: 100%;
                text-align: center;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            }
            .content-article h1 {
                font-size: 2rem;
            }
            .content-article h2 {
                font-size: 1.5rem;
            }
            .content-article h3 {
                font-size: 1.2rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .sidebar {
                position: static;
            }
            .search-section {
                padding: 1.2rem 1rem;
            }
            .feedback-card {
                padding: 1.2rem 1.2rem;
            }
        }
        @media(max-width:480px) {
            body {
                padding: 0 0.5rem;
            }
            .content-article p {
                font-size: 0.98rem;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        .last-updated {
            display: inline-block;
            background: #f3f0fa;
            padding: 0.3rem 1rem;
            border-radius: 40px;
            font-size: 0.85rem;
            color: #5b4a7a;
            margin-bottom: 1.2rem;
        }
        .last-updated i {
            margin-right: 6px;
            color: #7c3aed;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        th,
        td {
            padding: 0.75rem 1rem;
            text-align: left;
            border-bottom: 1px solid #ede9fe;
        }
        th {
            background: #2d1b4e;
            color: #fff;
            font-weight: 600;
        }
        tr:last-child td {
            border-bottom: none;
        }
        .tag {
            display: inline-block;
            background: #ede9fe;
            padding: 0.15rem 0.8rem;
            border-radius: 40px;
            font-size: 0.8rem;
            color: #2d1b4e;
            font-weight: 600;
        }
        .tag.legendary {
            background: #fef3c7;
            color: #b45309;
        }
        .tag.rare {
            background: #dbeafe;
            color: #1e40af;
        }
        .tag.common {
            background: #e0e7ff;
            color: #3730a3;
        }
