        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #0d0d1a;
            color: #e8e8f0;
            line-height: 1.75;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #f5b342;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #ffd966;
            text-decoration: underline;
            outline: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #1a1a2e;
        }
        ::-webkit-scrollbar-thumb {
            background: #f5b342;
            border-radius: 4px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
            width: 100%;
        }
        .site-header {
            background: linear-gradient(135deg, #0f0f1f 0%, #1a1a3e 100%);
            border-bottom: 3px solid #f5b342;
            padding: 0.75rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.75rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f5b342, #ff6b35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            transition: opacity 0.3s;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #f5b342;
            font-size: 1.6rem;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(245, 179, 66, 0.15);
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
        }
        .nav-menu li a {
            color: #e0e0f0;
            font-weight: 500;
            padding: 0.4rem 0.8rem;
            border-radius: 8px;
            transition: background 0.25s, color 0.25s;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .nav-menu li a:hover,
        .nav-menu li a:focus-visible {
            background: rgba(245, 179, 66, 0.15);
            color: #f5b342;
            text-decoration: none;
        }
        .nav-menu li a i {
            font-size: 0.9rem;
        }
        .breadcrumb {
            background: rgba(255, 255, 255, 0.04);
            padding: 0.6rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 0.85rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.6rem;
            padding: 0;
        }
        .breadcrumb ol li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #888;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #f5b342;
        }
        .breadcrumb .current {
            color: #f5b342;
            font-weight: 500;
        }
        main {
            flex: 1;
            padding: 2rem 0 3rem;
        }
        section {
            margin-bottom: 3.5rem;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            background: linear-gradient(135deg, #f5b342, #ff8c42);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.2rem;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #f5b342;
            border-left: 5px solid #f5b342;
            padding-left: 1rem;
            margin: 2.5rem 0 1.2rem;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #ffd966;
            margin: 2rem 0 0.8rem;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #e0c080;
            margin: 1.5rem 0 0.6rem;
        }
        p {
            margin-bottom: 1.2rem;
            color: #d0d0e0;
        }
        .content-card {
            background: rgba(255, 255, 255, 0.04);
            border-radius: 16px;
            padding: 1.8rem 2rem;
            border: 1px solid rgba(245, 179, 66, 0.12);
            margin-bottom: 2rem;
            transition: border-color 0.3s, box-shadow 0.3s;
        }
        .content-card:hover {
            border-color: rgba(245, 179, 66, 0.3);
            box-shadow: 0 8px 30px rgba(245, 179, 66, 0.05);
        }
        .highlight {
            background: linear-gradient(120deg, rgba(245, 179, 66, 0.12), rgba(255, 107, 53, 0.08));
            padding: 1.2rem 1.6rem;
            border-radius: 12px;
            border-left: 4px solid #f5b342;
            margin: 1.5rem 0;
        }
        .emoji-big {
            font-size: 1.4rem;
        }
        .badge {
            display: inline-block;
            background: #f5b342;
            color: #0d0d1a;
            font-weight: 700;
            padding: 0.2rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            letter-spacing: 0.3px;
            text-transform: uppercase;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
            background: #1a1a2e;
            padding: 0.5rem;
        }
        .featured-image img {
            width: 100%;
            border-radius: 12px;
        }
        .featured-image figcaption {
            text-align: center;
            padding: 0.8rem 0 0.3rem;
            font-size: 0.9rem;
            color: #aaa;
            font-style: italic;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .stat-item {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 1.2rem 1rem;
            text-align: center;
            border: 1px solid rgba(245, 179, 66, 0.1);
            transition: transform 0.3s, background 0.3s;
        }
        .stat-item:hover {
            transform: translateY(-4px);
            background: rgba(245, 179, 66, 0.08);
        }
        .stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: #f5b342;
            display: block;
        }
        .stat-label {
            font-size: 0.85rem;
            color: #aaa;
            margin-top: 0.3rem;
        }
        .char-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 1.2rem;
            margin: 1.5rem 0;
        }
        .char-card {
            background: rgba(255, 255, 255, 0.04);
            border-radius: 14px;
            padding: 1.2rem;
            border: 1px solid rgba(245, 179, 66, 0.08);
            transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
        }
        .char-card:hover {
            transform: translateY(-6px);
            border-color: #f5b342;
            box-shadow: 0 12px 30px rgba(245, 179, 66, 0.1);
        }
        .char-card h4 {
            margin-top: 0;
            font-size: 1.1rem;
        }
        .char-card .rarity {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #f5b342;
            font-weight: 600;
        }
        .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
            list-style: none;
            padding: 0;
            margin: 1.2rem 0;
        }
        .link-list-inline li a {
            background: rgba(245, 179, 66, 0.08);
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            border: 1px solid rgba(245, 179, 66, 0.15);
            transition: background 0.3s, border-color 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .link-list-inline li a:hover {
            background: rgba(245, 179, 66, 0.2);
            border-color: #f5b342;
            text-decoration: none;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: #ddd;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.7rem 1rem;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: rgba(0, 0, 0, 0.3);
            color: #fff;
            font-size: 1rem;
            transition: border-color 0.3s, box-shadow 0.3s;
            font-family: inherit;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #f5b342;
            box-shadow: 0 0 0 3px rgba(245, 179, 66, 0.15);
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, #f5b342, #e08a2a);
            color: #0d0d1a;
            font-weight: 700;
            padding: 0.7rem 2rem;
            border: none;
            border-radius: 30px;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.25s, box-shadow 0.25s, opacity 0.25s;
            font-family: inherit;
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(245, 179, 66, 0.3);
            opacity: 0.95;
            text-decoration: none;
            color: #0d0d1a;
        }
        .btn-secondary {
            background: rgba(255, 255, 255, 0.08);
            color: #f5b342;
            border: 1px solid rgba(245, 179, 66, 0.25);
        }
        .btn-secondary:hover {
            background: rgba(245, 179, 66, 0.15);
            color: #f5b342;
        }
        .rating-stars {
            display: flex;
            gap: 0.4rem;
            font-size: 2rem;
            direction: rtl;
            margin: 0.5rem 0;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            color: #444;
            cursor: pointer;
            transition: color 0.2s, transform 0.2s;
        }
        .rating-stars label:hover,
        .rating-stars label:hover~label,
        .rating-stars input:checked~label {
            color: #f5b342;
            transform: scale(1.1);
        }
        .site-footer {
            background: linear-gradient(135deg, #0a0a18, #12122a);
            border-top: 2px solid rgba(245, 179, 66, 0.15);
            padding: 2.5rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2rem;
        }
        .footer-col h4 {
            color: #f5b342;
            margin-top: 0;
            font-size: 1.1rem;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
        }
        .footer-col ul li {
            margin-bottom: 0.5rem;
        }
        .footer-col ul li a {
            font-size: 0.9rem;
            color: #bbb;
        }
        .footer-col ul li a:hover {
            color: #f5b342;
        }
        friend-link {
            display: block;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            padding: 1.2rem 1.5rem;
            border: 1px solid rgba(245, 179, 66, 0.1);
            margin: 1.5rem 0 0.5rem;
            font-size: 0.95rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 0.8rem 0.2rem 0;
            padding: 0.2rem 0.6rem;
            background: rgba(245, 179, 66, 0.06);
            border-radius: 6px;
            border: 1px solid rgba(245, 179, 66, 0.08);
        }
        friend-link a:hover {
            background: rgba(245, 179, 66, 0.12);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            margin-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 0.85rem;
            color: #888;
        }
        .copyright a {
            color: #f5b342;
        }
        .last-updated {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(245, 179, 66, 0.08);
            padding: 0.4rem 1.2rem;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #ccc;
            margin-bottom: 1.5rem;
        }
        .last-updated i {
            color: #f5b342;
        }
        @media (max-width: 900px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .content-card {
                padding: 1.2rem 1.2rem;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                padding: 1rem 0 0.5rem;
                gap: 0.3rem;
                border-top: 1px solid rgba(255, 255, 255, 0.06);
                margin-top: 0.75rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                padding: 0.6rem 1rem;
                width: 100%;
                border-radius: 8px;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo i {
                font-size: 1.2rem;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.3rem;
                padding-left: 0.7rem;
            }
            .container {
                padding: 0 1rem;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.7rem;
            }
            .stat-number {
                font-size: 1.5rem;
            }
            .char-grid {
                grid-template-columns: 1fr 1fr;
                gap: 0.8rem;
            }
            .rating-stars {
                font-size: 1.6rem;
            }
            .btn {
                padding: 0.6rem 1.4rem;
                font-size: 0.9rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
        }
        .fade-in {
            animation: fadeIn 0.6s ease forwards;
        }
        @keyframes fadeIn {
            0% {
                opacity: 0;
                transform: translateY(20px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #f5b342;
            color: #0d0d1a;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            box-shadow: 0 4px 20px rgba(245, 179, 66, 0.3);
            transition: transform 0.3s, opacity 0.3s;
            z-index: 999;
            border: none;
            cursor: pointer;
        }
        .back-to-top:hover {
            transform: translateY(-4px) scale(1.05);
            opacity: 0.9;
        }
        @media (max-width: 480px) {
            .back-to-top {
                bottom: 1.2rem;
                right: 1.2rem;
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
        }
