:root {
            --primary-color: #1a73e8;
            --secondary-color: #202124;
            --accent-color: #e94235;
            --light-bg: #f8f9fa;
            --text-dark: #333333;
            --text-light: #5f6368;
            --border-color: #dadce0;
            --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            --wiki-blue: #3366cc;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background-color: #fff;
            max-width: 100%;
            overflow-x: hidden;
        }
        header {
            background-color: #fff;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-color);
        }
        .header-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            display: flex;
            align-items: center;
            padding: 15px 0;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary-color);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo span {
            color: var(--accent-color);
        }
        .nav-desktop {
            display: flex;
            gap: 25px;
        }
        .nav-desktop a {
            text-decoration: none;
            color: var(--secondary-color);
            font-weight: 500;
            padding: 8px 0;
            border-bottom: 2px solid transparent;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }
        .nav-desktop a:hover {
            color: var(--primary-color);
            border-bottom-color: var(--primary-color);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--secondary-color);
            cursor: pointer;
            padding: 10px;
            min-width: 44px;
            min-height: 44px;
        }
        .nav-mobile {
            display: none;
            width: 100%;
            flex-direction: column;
            background-color: #fff;
            padding: 20px 0;
            border-top: 1px solid var(--border-color);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 15px 20px;
            text-decoration: none;
            color: var(--secondary-color);
            border-bottom: 1px solid var(--border-color);
            font-weight: 500;
            min-height: 44px;
            display: flex;
            align-items: center;
        }
        .nav-mobile a:hover {
            background-color: var(--light-bg);
            color: var(--primary-color);
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 20px;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        main {
            width: 100%;
        }
        article {
            background-color: #fff;
            padding: 30px 0;
            border-radius: 0;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
            line-height: 1.2;
            border-bottom: 3px solid var(--wiki-blue);
            padding-bottom: 15px;
        }
        h2 {
            font-size: 1.8rem;
            color: var(--secondary-color);
            margin: 40px 0 20px 0;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border-color);
        }
        h3 {
            font-size: 1.4rem;
            color: var(--secondary-color);
            margin: 30px 0 15px 0;
        }
        h4 {
            font-size: 1.1rem;
            color: var(--text-light);
            margin: 20px 0 10px 0;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.2rem;
            color: var(--text-light);
            margin-bottom: 30px;
            font-weight: 400;
            line-height: 1.6;
        }
        .info-box {
            background-color: var(--light-bg);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 25px;
            margin: 30px 0;
            float: right;
            width: 320px;
            margin-left: 30px;
            box-shadow: var(--shadow);
        }
        .info-box h3 {
            margin-top: 0;
            color: var(--primary-color);
            font-size: 1.3rem;
        }
        .info-box img {
            width: 100%;
            height: auto;
            border-radius: 4px;
            margin-bottom: 15px;
        }
        .info-box ul {
            list-style: none;
            padding-left: 0;
        }
        .info-box li {
            padding: 8px 0;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            justify-content: space-between;
        }
        .info-box li:last-child {
            border-bottom: none;
        }
        .info-box .label {
            font-weight: 600;
            color: var(--text-dark);
        }
        .content-box {
            background-color: #fff;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: var(--shadow);
        }
        .content-box h3 {
            color: var(--primary-color);
            margin-top: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 20px 0;
            display: block;
        }
        .img-container {
            text-align: center;
            margin: 25px 0;
        }
        .img-caption {
            font-size: 0.9rem;
            color: var(--text-light);
            margin-top: 8px;
            font-style: italic;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            box-shadow: var(--shadow);
        }
        th, td {
            border: 1px solid var(--border-color);
            padding: 15px;
            text-align: left;
        }
        th {
            background-color: var(--light-bg);
            font-weight: 600;
            color: var(--secondary-color);
        }
        tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        ul, ol {
            padding-left: 25px;
            margin-bottom: 20px;
        }
        li {
            margin-bottom: 8px;
        }
        .btn {
            display: inline-block;
            background-color: var(--primary-color);
            color: white;
            padding: 14px 28px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            min-height: 44px;
            min-width: 44px;
            text-align: center;
            font-size: 1rem;
        }
        .btn:hover {
            background-color: #0d5bc2;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
        }
        .btn-secondary {
            background-color: var(--secondary-color);
        }
        .btn-secondary:hover {
            background-color: #000;
        }
        .btn-accent {
            background-color: var(--accent-color);
        }
        .btn-accent:hover {
            background-color: #c23328;
        }
        .btn-small {
            padding: 10px 18px;
            font-size: 0.9rem;
        }
        form {
            background-color: var(--light-bg);
            padding: 25px;
            border-radius: 8px;
            margin: 25px 0;
            border: 1px solid var(--border-color);
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--text-dark);
        }
        input, textarea, select {
            width: 100%;
            padding: 14px;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            font-family: inherit;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.2);
        }
        .rating {
            display: flex;
            gap: 10px;
            margin: 15px 0;
        }
        .rating input {
            display: none;
        }
        .rating label {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
            min-width: 44px;
            min-height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .rating input:checked ~ label,
        .rating label:hover,
        .rating label:hover ~ label {
            color: #ffc107;
        }
        aside {
            margin-top: 30px;
        }
        .sidebar-widget {
            background-color: #fff;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            margin-top: 0;
            color: var(--primary-color);
            font-size: 1.2rem;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--border-color);
            margin-bottom: 20px;
        }
        .update-log {
            list-style: none;
            padding-left: 0;
        }
        .update-log li {
            padding: 15px 0;
            border-bottom: 1px solid var(--border-color);
        }
        .update-log li:last-child {
            border-bottom: none;
        }
        .update-date {
            font-weight: 600;
            color: var(--primary-color);
            display: block;
        }
        .update-title {
            display: block;
            margin-top: 5px;
        }
        footer {
            background-color: var(--secondary-color);
            color: #fff;
            padding: 50px 0 30px 0;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }
        .footer-section h3 {
            color: #fff;
            font-size: 1.3rem;
            margin-bottom: 20px;
            border-bottom: 2px solid var(--primary-color);
            padding-bottom: 10px;
        }
        .footer-links {
            list-style: none;
            padding-left: 0;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #bdc1c6;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: #fff;
            padding-left: 5px;
        }
        friend-link {
            display: block;
            margin: 10px 0;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid #3c4043;
            color: #9aa0a6;
            font-size: 0.9rem;
            grid-column: 1 / -1;
        }
        .social-share {
            display: flex;
            gap: 15px;
            margin: 30px 0;
        }
        .social-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            color: white;
            text-decoration: none;
            font-size: 1.2rem;
            transition: transform 0.3s;
        }
        .social-btn:hover {
            transform: translateY(-3px);
        }
        .facebook { background-color: #3b5998; }
        .twitter { background-color: #1da1f2; }
        .reddit { background-color: #ff4500; }
        .discord { background-color: #5865f2; }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.5rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
        }
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            background-color: #0d5bc2;
            transform: translateY(-5px);
        }
        @media (max-width: 992px) {
            .container {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .info-box {
                float: none;
                width: 100%;
                margin-left: 0;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                padding: 0 15px;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .container {
                padding: 15px;
            }
            .btn {
                padding: 12px 24px;
            }
            .footer-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }
        @media (max-width: 480px) {
            .social-share {
                justify-content: center;
            }
            .rating label {
                font-size: 1.5rem;
            }
            .back-to-top {
                bottom: 20px;
                right: 20px;
                width: 45px;
                height: 45px;
            }
        }
        .wiki-notice {
            background-color: #f0f8ff;
            border-left: 4px solid var(--wiki-blue);
            padding: 15px 20px;
            margin: 25px 0;
            font-size: 0.95rem;
        }
        .citation {
            font-size: 0.8rem;
            color: var(--text-light);
            vertical-align: super;
            text-decoration: none;
        }
        .toc {
            background-color: var(--light-bg);
            border: 1px solid var(--border-color);
            padding: 20px;
            margin: 30px 0;
            border-radius: 8px;
            display: inline-block;
            width: auto;
        }
        .toc h3 {
            margin-top: 0;
        }
        .toc ul {
            columns: 2;
            column-gap: 40px;
        }
        @media (max-width: 768px) {
            .toc ul {
                columns: 1;
            }
        }
        .character-card {
            display: flex;
            gap: 20px;
            margin: 25px 0;
            padding: 20px;
            background-color: var(--light-bg);
            border-radius: 8px;
            border-left: 4px solid var(--accent-color);
        }
        .character-icon {
            flex-shrink: 0;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background-color: #ddd;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--secondary-color);
        }
        .tip-box {
            background-color: #fff8e1;
            border: 1px solid #ffd54f;
            border-left: 4px solid #ffb300;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .tip-box h4 {
            color: #e65100;
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .faq-item {
            margin-bottom: 25px;
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 20px;
        }
        .faq-item:last-child {
            border-bottom: none;
        }
        .faq-question {
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 10px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        .faq-answer.active {
            max-height: 500px;
        }
