        *,
        *::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, 'Helvetica Neue', Arial, sans-serif;
            background: #FFF9F2;
            color: #2D3436;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #E17055;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #D35400;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin-bottom: 1.2rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #1A1A2E;
            margin-top: 0;
        }
        h1 {
            font-size: 2.4rem;
            margin-bottom: 1rem;
        }
        h2 {
            font-size: 1.8rem;
            margin-top: 2.8rem;
            margin-bottom: 0.8rem;
            border-bottom: 3px solid #FF6B6B;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.35rem;
            margin-top: 2rem;
            margin-bottom: 0.6rem;
            color: #2D3436;
        }
        h4 {
            font-size: 1.1rem;
            margin-top: 1.4rem;
            margin-bottom: 0.4rem;
            color: #636E72;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
            padding: 0.6rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.6rem;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            color: #FF6B6B;
            letter-spacing: -0.5px;
            transition: transform 0.2s ease;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo i {
            font-size: 1.8rem;
            color: #FFD93D;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #FF8E53;
        }
        .my-logo span {
            color: #FFFFFF;
            font-weight: 300;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 0.2rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #F0F0F0;
            padding: 0.5rem 0.9rem;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: background 0.25s, color 0.25s;
            white-space: nowrap;
        }
        .main-nav a:hover {
            background: rgba(255, 107, 107, 0.25);
            color: #FFD93D;
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 0.3rem;
            font-size: 0.85rem;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #FFFFFF;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.6rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .breadcrumb {
            background: #F0E6DC;
            padding: 0.6rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #E0D5C8;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.5rem;
            color: #B2BEC3;
            font-weight: 600;
        }
        .breadcrumb a {
            color: #E17055;
        }
        .breadcrumb .current {
            color: #636E72;
            font-weight: 500;
        }
        .hero {
            background: linear-gradient(135deg, #FFE8D6 0%, #FFD6A5 100%);
            padding: 2.8rem 0 2.4rem;
            border-bottom: 4px solid #FF6B6B;
        }
        .hero h1 {
            font-size: 2.6rem;
            color: #1A1A2E;
            margin-bottom: 0.6rem;
        }
        .hero h1 i {
            color: #FF6B6B;
            margin-right: 0.4rem;
        }
        .hero .subtitle {
            font-size: 1.15rem;
            color: #2D3436;
            max-width: 780px;
            margin-bottom: 1.2rem;
        }
        .hero .meta-info {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem 2rem;
            font-size: 0.9rem;
            color: #636E72;
        }
        .hero .meta-info i {
            margin-right: 0.3rem;
            color: #E17055;
        }
        .search-bar {
            margin-top: 1.4rem;
            display: flex;
            max-width: 520px;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
            background: #FFFFFF;
        }
        .search-bar input {
            flex: 1;
            border: none;
            padding: 0.8rem 1.2rem;
            font-size: 1rem;
            outline: none;
            background: transparent;
            color: #2D3436;
        }
        .search-bar input::placeholder {
            color: #B2BEC3;
        }
        .search-bar button {
            background: #FF6B6B;
            border: none;
            color: #FFF;
            padding: 0 1.6rem;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.25s;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-bar button:hover {
            background: #E05555;
        }
        .content-wrap {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.4rem;
            padding: 2.4rem 0;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 5rem;
            align-self: start;
        }
        .sidebar-card {
            background: #FFFFFF;
            border-radius: 16px;
            padding: 1.4rem;
            margin-bottom: 1.6rem;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
            border: 1px solid #F0E6DC;
        }
        .sidebar-card h4 {
            font-size: 1.1rem;
            color: #1A1A2E;
            border-bottom: 2px solid #FF6B6B;
            padding-bottom: 0.4rem;
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar-card li {
            margin-bottom: 0.4rem;
        }
        .sidebar-card a {
            display: block;
            padding: 0.4rem 0.6rem;
            border-radius: 8px;
            transition: background 0.2s;
            font-size: 0.92rem;
        }
        .sidebar-card a:hover {
            background: #FFF0E6;
            text-decoration: none;
        }
        .featured-image {
            margin: 1.8rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
            background: #F0E6DC;
        }
        .featured-image img {
            width: 100%;
            aspect-ratio: 16/9;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 0.8rem 1.2rem;
            font-size: 0.85rem;
            color: #636E72;
            background: #FFF9F2;
            border-top: 1px solid #F0E6DC;
        }
        .value-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.4rem 0;
            font-size: 0.92rem;
            background: #FFFFFF;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
        }
        .value-table thead {
            background: #1A1A2E;
            color: #FFFFFF;
        }
        .value-table th {
            padding: 0.8rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        .value-table td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid #F0E6DC;
        }
        .value-table tbody tr:hover {
            background: #FFF5EE;
        }
        .value-table .rarity-legend {
            display: inline-block;
            padding: 0.15rem 0.6rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            color: #FFFFFF;
        }
        .rarity-legend.leg {
            background: #FF6B6B;
        }
        .rarity-legend.ultra {
            background: #A29BFE;
        }
        .rarity-legend.rare {
            background: #55EFC4;
            color: #1A1A2E;
        }
        .rarity-legend.uncommon {
            background: #FDCB6E;
            color: #1A1A2E;
        }
        .rarity-legend.common {
            background: #DFE6E9;
            color: #1A1A2E;
        }
        .feedback-section {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 3px solid #F0E6DC;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.6rem;
            margin-top: 1.2rem;
        }
        .feedback-card {
            background: #FFFFFF;
            border-radius: 16px;
            padding: 1.6rem;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
            border: 1px solid #F0E6DC;
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-top: 0.6rem;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 1.5px solid #E0D5C8;
            border-radius: 10px;
            font-size: 0.95rem;
            font-family: inherit;
            background: #FFFBF7;
            transition: border 0.2s;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: #FF6B6B;
            outline: none;
            background: #FFFFFF;
        }
        .feedback-card textarea {
            min-height: 90px;
            resize: vertical;
        }
        .feedback-card .btn-submit {
            background: #FF6B6B;
            color: #FFFFFF;
            border: none;
            padding: 0.7rem 1.4rem;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            width: fit-content;
        }
        .feedback-card .btn-submit:hover {
            background: #E05555;
            transform: translateY(-1px);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.6rem;
            color: #DFE6E9;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #FFD93D;
        }
        .site-footer {
            background: #1A1A2E;
            color: #E0D5C8;
            padding: 2.4rem 0 1.6rem;
            margin-top: 3rem;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        .site-footer h4 {
            color: #FFD93D;
            margin-bottom: 0.8rem;
            font-size: 1.05rem;
        }
        .site-footer a {
            color: #B2BEC3;
        }
        .site-footer a:hover {
            color: #FFD93D;
        }
        friend-link {
            display: block;
            margin-top: 1.2rem;
            padding-top: 1.2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        friend-link a {
            display: inline-block;
            margin-right: 1.2rem;
            margin-bottom: 0.4rem;
        }
        .copyright {
            margin-top: 1.6rem;
            text-align: center;
            font-size: 0.85rem;
            color: #B2BEC3;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 1.2rem;
        }
        @media (max-width: 860px) {
            .content-wrap {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                order: 2;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .main-nav a {
                font-size: 0.82rem;
                padding: 0.4rem 0.7rem;
            }
        }
        @media (max-width: 640px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: rgba(22, 33, 62, 0.98);
                padding: 0.8rem 0;
                border-radius: 0 0 16px 16px;
                gap: 0.1rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.6rem 1.2rem;
                border-radius: 0;
                width: 100%;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            }
            .main-nav a:last-child {
                border-bottom: none;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .hero .subtitle {
                font-size: 1rem;
            }
            .footer-inner {
                grid-template-columns: 1fr;
            }
            .value-table {
                font-size: 0.8rem;
            }
            .value-table th,
            .value-table td {
                padding: 0.5rem 0.6rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
        }
        .text-highlight {
            background: linear-gradient(120deg, #FFD93D 0%, #FFD93D 40%, transparent 80%);
            padding: 0 0.3rem;
            font-weight: 600;
        }
        .badge {
            display: inline-block;
            background: #FF6B6B;
            color: #FFF;
            padding: 0.15rem 0.7rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
        }
        .emoji-lg {
            font-size: 1.4rem;
        }
        .mt-2 {
            margin-top: 1.2rem;
        }
        .mb-1 {
            margin-bottom: 0.6rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            flex-wrap: wrap;
        }
        .gap-1 {
            gap: 0.6rem;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #F0E6DC;
        }
        ::-webkit-scrollbar-thumb {
            background: #B2BEC3;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #A0AAB5;
        }
