        *,
        *::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: #f4f7fc;
            color: #1e293b;
            line-height: 1.72;
            padding: 0;
            margin: 0;
        }
        a {
            color: #b22234;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #8b1a1a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #0f172a;
            margin-top: 0;
        }
        h1 {
            font-size: 2.4rem;
            margin-bottom: 0.75rem;
        }
        h2 {
            font-size: 1.8rem;
            margin-top: 2.8rem;
            margin-bottom: 0.6rem;
            border-bottom: 3px solid #e2e8f0;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.35rem;
            margin-top: 2rem;
            margin-bottom: 0.4rem;
            color: #1e293b;
        }
        h4 {
            font-size: 1.1rem;
            margin-top: 1.4rem;
            margin-bottom: 0.3rem;
            color: #334155;
        }
        p {
            margin-bottom: 1rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .badge {
            display: inline-block;
            background: #b22234;
            color: #fff;
            font-size: 0.7rem;
            font-weight: 600;
            padding: 0.15rem 0.7rem;
            border-radius: 20px;
            letter-spacing: 0.3px;
            text-transform: uppercase;
        }
        .badge-gold {
            background: #d4a017;
        }
        .badge-silver {
            background: #6b7280;
        }
        .badge-legendary {
            background: #7c3aed;
        }
        .emoji-lg {
            font-size: 1.6rem;
            vertical-align: middle;
            margin-right: 0.3rem;
        }
        .site-header {
            background: linear-gradient(135deg, #0f172a 0%, #1a1a2e 100%);
            color: #f1f5f9;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #facc15;
            text-shadow: 0 2px 8px rgba(250, 204, 21, 0.25);
            transition: transform 0.2s ease;
        }
        .my-logo:hover {
            transform: scale(1.02);
            color: #fbbf24;
            text-decoration: none;
        }
        .my-logo i {
            color: #b22234;
            margin-right: 0.3rem;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #facc15;
            color: #facc15;
            font-size: 1.6rem;
            padding: 0.3rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(250, 204, 21, 0.15);
        }
        .main-nav {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #e2e8f0;
            padding: 0.4rem 0.9rem;
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
        }
        .main-nav a:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #facc15;
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 0.3rem;
        }
        .breadcrumb {
            background: #ffffff;
            padding: 0.6rem 0;
            border-bottom: 1px solid #e2e8f0;
            font-size: 0.85rem;
            color: #64748b;
        }
        .breadcrumb-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.3rem;
        }
        .breadcrumb a {
            color: #b22234;
        }
        .breadcrumb a:hover {
            color: #8b1a1a;
            text-decoration: underline;
        }
        .breadcrumb .sep {
            color: #94a3b8;
            margin: 0 0.2rem;
        }
        .search-section {
            background: #ffffff;
            padding: 1.6rem 0 1.2rem;
            border-bottom: 1px solid #e2e8f0;
        }
        .search-form {
            display: flex;
            max-width: 640px;
            margin: 0 auto;
            gap: 0.4rem;
            border-radius: 40px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        }
        .search-form input[type="text"] {
            flex: 1;
            border: 2px solid #e2e8f0;
            border-right: none;
            padding: 0.75rem 1.2rem;
            font-size: 1rem;
            border-radius: 40px 0 0 40px;
            outline: none;
            background: #f8fafc;
            transition: border-color 0.2s;
        }
        .search-form input[type="text"]:focus {
            border-color: #b22234;
        }
        .search-form button {
            background: #b22234;
            color: #fff;
            border: none;
            padding: 0.75rem 1.8rem;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 0 40px 40px 0;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-form button:hover {
            background: #8b1a1a;
        }
        .search-form button:active {
            transform: scale(0.97);
        }
        .main-content {
            background: #ffffff;
            padding: 2rem 0 3rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.4rem;
        }
        .content-body {
            min-width: 0;
        }
        .content-body .update-info {
            font-size: 0.85rem;
            color: #64748b;
            margin-bottom: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            flex-wrap: wrap;
        }
        .content-body .update-info i {
            color: #b22234;
        }
        .featured-image-wrap {
            margin: 1.6rem 0 2rem;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 6px 28px rgba(0, 0, 0, 0.08);
        }
        .featured-image-wrap img {
            width: 100%;
            height: auto;
            display: block;
        }
        .featured-image-wrap figcaption {
            padding: 0.6rem 1rem;
            background: #f8fafc;
            font-size: 0.85rem;
            color: #475569;
            border-top: 1px solid #e2e8f0;
        }
        .costume-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.4rem 0 2rem;
            font-size: 0.9rem;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
        }
        .costume-table thead {
            background: #0f172a;
            color: #f1f5f9;
        }
        .costume-table th {
            padding: 0.7rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        .costume-table td {
            padding: 0.65rem 1rem;
            border-bottom: 1px solid #e2e8f0;
            vertical-align: top;
        }
        .costume-table tbody tr:hover {
            background: #f8fafc;
        }
        .sidebar {
            position: sticky;
            top: 5.6rem;
            align-self: start;
        }
        .sidebar-card {
            background: #f8fafc;
            border-radius: 12px;
            padding: 1.4rem;
            margin-bottom: 1.6rem;
            border: 1px solid #e2e8f0;
        }
        .sidebar-card h3 {
            font-size: 1.1rem;
            margin-top: 0;
            margin-bottom: 0.8rem;
            border-bottom: 2px solid #e2e8f0;
            padding-bottom: 0.4rem;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card ul li {
            padding: 0.3rem 0;
            border-bottom: 1px dashed #e2e8f0;
        }
        .sidebar-card ul li:last-child {
            border-bottom: none;
        }
        .sidebar-card ul li a {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            color: #1e293b;
            font-size: 0.9rem;
        }
        .sidebar-card ul li a:hover {
            color: #b22234;
            text-decoration: none;
        }
        .interaction-area {
            margin-top: 3rem;
            padding-top: 1.6rem;
            border-top: 2px solid #e2e8f0;
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.6rem;
        }
        .interaction-card {
            background: #f8fafc;
            border-radius: 12px;
            padding: 1.4rem 1.6rem;
            border: 1px solid #e2e8f0;
        }
        .interaction-card h3 {
            margin-top: 0;
            font-size: 1.15rem;
            border-bottom: 2px solid #e2e8f0;
            padding-bottom: 0.4rem;
            margin-bottom: 1rem;
        }
        .interaction-card label {
            display: block;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 0.2rem;
            color: #334155;
        }
        .interaction-card input,
        .interaction-card textarea,
        .interaction-card select {
            width: 100%;
            padding: 0.6rem 0.9rem;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            font-size: 0.9rem;
            background: #fff;
            outline: none;
            transition: border-color 0.2s;
            margin-bottom: 0.8rem;
            font-family: inherit;
        }
        .interaction-card input:focus,
        .interaction-card textarea:focus,
        .interaction-card select:focus {
            border-color: #b22234;
        }
        .interaction-card textarea {
            resize: vertical;
            min-height: 80px;
        }
        .interaction-card .btn-submit {
            background: #b22234;
            color: #fff;
            border: none;
            padding: 0.65rem 1.6rem;
            border-radius: 6px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .interaction-card .btn-submit:hover {
            background: #8b1a1a;
        }
        .interaction-card .btn-submit:active {
            transform: scale(0.97);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.15rem;
            margin-bottom: 0.8rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #cbd5e1;
            cursor: pointer;
            transition: color 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #facc15;
        }
        .friend-links-section {
            background: #ffffff;
            border-top: 2px solid #e2e8f0;
            padding: 2rem 0 1.4rem;
        }
        friend-link {
            display: block;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
            font-size: 0.9rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 0.6rem 0.2rem 0;
            padding: 0.2rem 0.8rem;
            background: #f1f5f9;
            border-radius: 20px;
            color: #1e293b;
            font-weight: 500;
            transition: background 0.2s, color 0.2s;
        }
        friend-link a:hover {
            background: #b22234;
            color: #fff;
            text-decoration: none;
        }
        friend-link .fl-title {
            font-weight: 700;
            color: #0f172a;
            margin-right: 0.6rem;
            font-size: 1rem;
        }
        .site-footer {
            background: #0f172a;
            color: #94a3b8;
            padding: 1.8rem 0;
            font-size: 0.85rem;
            text-align: center;
        }
        .site-footer a {
            color: #facc15;
        }
        .site-footer a:hover {
            color: #fbbf24;
        }
        .site-footer .copyright {
            margin-top: 0.6rem;
            letter-spacing: 0.3px;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                margin-top: 2rem;
            }
            .interaction-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #1a1a2e;
                padding: 1rem 0 0.6rem;
                border-top: 1px solid rgba(255, 255, 255, 0.08);
                margin-top: 0.6rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.6rem 1rem;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
                width: 100%;
            }
            .header-inner {
                align-items: center;
            }
            .search-form {
                flex-direction: column;
                border-radius: 12px;
            }
            .search-form input[type="text"] {
                border-radius: 12px 12px 0 0;
                border-right: 2px solid #e2e8f0;
            }
            .search-form button {
                border-radius: 0 0 12px 12px;
                justify-content: center;
            }
            .costume-table {
                font-size: 0.78rem;
            }
            .costume-table th,
            .costume-table td {
                padding: 0.4rem 0.5rem;
            }
            .sidebar-card ul li a {
                font-size: 0.85rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.8rem;
            }
            h1 {
                font-size: 1.5rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .interaction-card {
                padding: 1rem;
            }
            .star-rating label {
                font-size: 1.5rem;
            }
        }
        .highlight-box {
            background: #fef9e7;
            border-left: 5px solid #facc15;
            padding: 1rem 1.4rem;
            border-radius: 6px;
            margin: 1.2rem 0;
        }
        .highlight-box.info {
            background: #eef2ff;
            border-left-color: #4f46e5;
        }
        .highlight-box.tip {
            background: #f0fdf4;
            border-left-color: #16a34a;
        }
        .text-muted {
            color: #64748b;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            align-items: center;
        }
        .gap-1 {
            gap: 0.5rem;
        }
        .mt-1 {
            margin-top: 0.5rem;
        }
        .mt-2 {
            margin-top: 1.2rem;
        }
        .mb-1 {
            margin-bottom: 0.5rem;
        }
        .mb-2 {
            margin-bottom: 1.2rem;
        }
