        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
            background: #0b0b0f;
            color: #e0e0e0;
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }
        a {
            color: #00e5ff;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: #ff2d95;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0b0b0f;
        }
        ::-webkit-scrollbar-thumb {
            background: #2a2a3a;
            border-radius: 12px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #ff2d95;
        }
        header {
            background: linear-gradient(135deg, #0d0d1a 0%, #1a0a2e 100%);
            border-bottom: 2px solid #ff2d9540;
            padding: 0 1.5rem;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(12px);
            box-shadow: 0 4px 30px rgba(255, 45, 149, 0.08);
        }
        .header-inner {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            padding: 0.75rem 0;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 900;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            background: linear-gradient(135deg, #ff2d95, #00e5ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        .my-logo a {
            color: inherit;
            background: none;
            -webkit-text-fill-color: transparent;
        }
        .my-logo a:hover {
            color: inherit;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #e0e0e0;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #1f1f3a;
        }
        nav ul {
            list-style: none;
            display: flex;
            gap: 1.8rem;
            align-items: center;
        }
        nav ul li a {
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.4rem 0.2rem;
            border-bottom: 2px solid transparent;
            transition: border-color 0.3s, color 0.3s;
            color: #c0c0d0;
        }
        nav ul li a:hover {
            border-bottom-color: #ff2d95;
            color: #fff;
        }
        .breadcrumb {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0.75rem 1.5rem;
            font-size: 0.85rem;
            color: #8888aa;
            background: transparent;
        }
        .breadcrumb a {
            color: #00e5ff;
        }
        .breadcrumb a:hover {
            color: #ff2d95;
        }
        .breadcrumb .sep {
            margin: 0 0.5rem;
            color: #555;
        }
        .breadcrumb .current {
            color: #ff2d95;
            font-weight: 600;
        }
        main {
            max-width: 1280px;
            margin: 0 auto;
            padding: 1.5rem 1.5rem 3rem;
        }
        .hero {
            text-align: center;
            padding: 2.5rem 0 2rem;
            border-bottom: 1px solid #1f1f3a;
            margin-bottom: 2.5rem;
        }
        .hero h1 {
            font-size: clamp(2.2rem, 6vw, 4rem);
            font-weight: 900;
            text-transform: uppercase;
            background: linear-gradient(135deg, #ff2d95, #00e5ff, #a855f7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            letter-spacing: 0.04em;
        }
        .hero .subtitle {
            font-size: 1.15rem;
            color: #a0a0c0;
            margin-top: 0.75rem;
            font-weight: 300;
            max-width: 720px;
            margin-left: auto;
            margin-right: auto;
        }
        .hero .meta {
            margin-top: 0.75rem;
            font-size: 0.9rem;
            color: #6666aa;
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        .hero .meta i {
            margin-right: 0.35rem;
            color: #ff2d95;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            margin: 2.8rem 0 1.2rem;
            color: #fff;
            border-left: 5px solid #ff2d95;
            padding-left: 1rem;
            letter-spacing: 0.02em;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin: 2rem 0 0.8rem;
            color: #e0e0ff;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            margin: 1.4rem 0 0.6rem;
            color: #b0b0dd;
        }
        p {
            margin-bottom: 1.2rem;
            color: #c8c8d8;
        }
        .content-section {
            background: #111122;
            border-radius: 18px;
            padding: 2rem 2.2rem;
            margin-bottom: 2.2rem;
            border: 1px solid #1e1e3a;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
            transition: border-color 0.3s ease;
        }
        .content-section:hover {
            border-color: #ff2d9540;
        }
        .highlight-box {
            background: #1a0a2e;
            border-left: 5px solid #00e5ff;
            padding: 1.2rem 1.8rem;
            border-radius: 0 12px 12px 0;
            margin: 1.5rem 0;
        }
        .highlight-box strong {
            color: #00e5ff;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .stat-card {
            background: #0d0d1a;
            padding: 1rem 0.8rem;
            border-radius: 12px;
            text-align: center;
            border: 1px solid #1f1f3a;
        }
        .stat-card .num {
            font-size: 1.8rem;
            font-weight: 800;
            color: #ff2d95;
        }
        .stat-card .label {
            font-size: 0.8rem;
            color: #8888aa;
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }
        .wiki-image {
            margin: 2rem 0;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(255, 45, 149, 0.15);
            background: #0a0a14;
            padding: 0.5rem;
        }
        .wiki-image img {
            border-radius: 10px;
            width: 100%;
            max-height: 500px;
            object-fit: cover;
        }
        .wiki-image figcaption {
            text-align: center;
            padding: 0.6rem 0 0.2rem;
            font-size: 0.85rem;
            color: #6666aa;
            font-style: italic;
        }
        .related-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 0.8rem;
            margin: 1.5rem 0;
            padding: 0;
            list-style: none;
        }
        .related-links li a {
            display: block;
            padding: 0.6rem 1rem;
            background: #0d0d1a;
            border-radius: 8px;
            border: 1px solid #1f1f3a;
            transition: all 0.25s ease;
            font-size: 0.95rem;
            color: #b0b0d0;
        }
        .related-links li a:hover {
            background: #1a0a2e;
            border-color: #ff2d95;
            color: #fff;
            transform: translateY(-2px);
        }
        .related-links li a i {
            margin-right: 0.5rem;
            color: #ff2d95;
        }
        .search-form {
            display: flex;
            gap: 0.6rem;
            max-width: 520px;
            margin: 1.2rem 0;
            flex-wrap: wrap;
        }
        .search-form input {
            flex: 1;
            padding: 0.7rem 1.2rem;
            border-radius: 40px;
            border: 1px solid #2a2a4a;
            background: #0d0d1a;
            color: #e0e0e0;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.3s;
            min-width: 180px;
        }
        .search-form input:focus {
            border-color: #ff2d95;
        }
        .search-form button {
            padding: 0.7rem 1.8rem;
            border-radius: 40px;
            border: none;
            background: linear-gradient(135deg, #ff2d95, #a855f7);
            color: #fff;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .search-form button:hover {
            transform: scale(1.04);
            box-shadow: 0 4px 20px rgba(255, 45, 149, 0.35);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 2rem 0;
        }
        @media (max-width: 700px) {
            .feedback-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }
        .comment-box textarea,
        .score-box select,
        .score-box button,
        .comment-box button {
            width: 100%;
            padding: 0.7rem 1rem;
            border-radius: 10px;
            border: 1px solid #2a2a4a;
            background: #0d0d1a;
            color: #e0e0e0;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.3s;
            margin-top: 0.5rem;
        }
        .comment-box textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-box textarea:focus,
        .score-box select:focus {
            border-color: #ff2d95;
        }
        .comment-box button,
        .score-box button {
            background: linear-gradient(135deg, #ff2d95, #a855f7);
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            margin-top: 0.8rem;
        }
        .comment-box button:hover,
        .score-box button:hover {
            transform: scale(1.02);
            box-shadow: 0 4px 20px rgba(255, 45, 149, 0.3);
        }
        .score-box select {
            cursor: pointer;
            appearance: auto;
        }
        .score-box label,
        .comment-box label {
            font-weight: 500;
            color: #b0b0d0;
            display: block;
            margin-bottom: 0.2rem;
        }
        footer {
            background: #07070f;
            border-top: 2px solid #1a1a2e;
            padding: 2.5rem 1.5rem 1.5rem;
            margin-top: 3rem;
        }
        .footer-inner {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        @media (max-width: 700px) {
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }
        .footer-inner h4 {
            color: #ff2d95;
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
        }
        .footer-inner p,
        .footer-inner a {
            font-size: 0.9rem;
            color: #8888aa;
        }
        .footer-inner a:hover {
            color: #00e5ff;
        }
        friend-link {
            display: block;
            margin-top: 1rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.25rem 0.5rem 0.25rem 0;
            padding: 0.3rem 0.8rem;
            background: #0d0d1a;
            border-radius: 20px;
            border: 1px solid #1f1f3a;
            font-size: 0.85rem;
            transition: all 0.25s;
        }
        friend-link a:hover {
            border-color: #ff2d95;
            background: #1a0a2e;
            color: #fff;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #1a1a2e;
            font-size: 0.8rem;
            color: #555577;
        }
        .copyright strong {
            color: #8888aa;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #0d0d1a;
                padding: 1rem 0;
                border-radius: 0 0 16px 16px;
                border-top: 1px solid #1f1f3a;
                gap: 0.2rem;
            }
            nav ul.show {
                display: flex;
            }
            nav ul li a {
                padding: 0.6rem 1.2rem;
                display: block;
                border-bottom: none;
            }
            nav ul li a:hover {
                background: #1a0a2e;
                border-bottom: none;
            }
            .header-inner {
                padding: 0.5rem 0;
            }
            .content-section {
                padding: 1.2rem 1rem;
            }
            .hero h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .stat-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .breadcrumb {
                font-size: 0.75rem;
                padding: 0.5rem 1rem;
            }
        }
        @media (min-width: 769px) {
            nav ul {
                display: flex !important;
            }
            .nav-toggle {
                display: none !important;
            }
        }
        .text-accent {
            color: #ff2d95;
        }
        .text-cyan {
            color: #00e5ff;
        }
        .fw-bold {
            font-weight: 700;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            flex-wrap: wrap;
        }
        .gap-1 {
            gap: 1rem;
        }
