        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-color: #1a1a2e;
            --secondary-color: #16213e;
            --accent-color: #e94560;
            --accent-dark: #c13550;
            --text-primary: #f0f0f0;
            --text-secondary: #b8b8b8;
            --border-color: #2d3047;
            --card-bg: #222831;
            --wiki-blue: #3366cc;
            --wiki-light: #f8f9fa;
            --success: #28a745;
            --warning: #ffc107;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: var(--text-primary);
            background-color: var(--primary-color);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Georgia', serif;
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 0.75rem;
            color: white;
        }
        h1 {
            font-size: 2.5rem;
            border-bottom: 3px solid var(--accent-color);
            padding-bottom: 0.5rem;
            margin-bottom: 1.5rem;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 2px solid var(--border-color);
            padding-bottom: 0.5rem;
            margin-top: 2rem;
            margin-bottom: 1rem;
        }
        h3 {
            font-size: 1.4rem;
            margin-top: 1.5rem;
            color: var(--accent-color);
        }
        h4 {
            font-size: 1.2rem;
            margin-top: 1.2rem;
        }
        p {
            margin-bottom: 1rem;
            text-align: justify;
        }
        a {
            color: var(--accent-color);
            text-decoration: none;
            transition: color 0.3s;
        }
        a:hover {
            color: #ff6b8b;
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        header {
            background-color: var(--secondary-color);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .my-logo {
            font-family: 'Georgia', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .my-logo i {
            color: var(--accent-color);
        }
        .my-logo span {
            color: var(--accent-color);
        }
        .desktop-nav {
            display: flex;
            gap: 1.5rem;
        }
        .nav-link {
            color: var(--text-primary);
            font-weight: 500;
            padding: 0.5rem 0.75rem;
            border-radius: 4px;
            transition: background-color 0.3s;
            min-height: 44px;
            min-width: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .nav-link:hover {
            background-color: rgba(233, 69, 96, 0.1);
            text-decoration: none;
        }
        .nav-link.active {
            background-color: var(--accent-color);
            color: white;
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            min-height: 44px;
            min-width: 44px;
            align-items: center;
            justify-content: center;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: var(--secondary-color);
            padding: 1rem;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
        }
        .mobile-nav.active {
            display: flex;
        }
        main {
            flex: 1;
            background-color: var(--wiki-light);
            color: #222;
            padding: 2rem 0;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
        }
        .main-content {
            background-color: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        .sidebar {
            background-color: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            height: fit-content;
        }
        .infobox {
            background-color: #f8f9fa;
            border: 1px solid #a2a9b1;
            border-radius: 3px;
            padding: 1rem;
            margin-bottom: 1.5rem;
        }
        .infobox-title {
            background-color: var(--wiki-blue);
            color: white;
            padding: 0.5rem;
            margin: -1rem -1rem 1rem -1rem;
            text-align: center;
            font-weight: bold;
            border-radius: 3px 3px 0 0;
        }
        .infobox-row {
            display: flex;
            margin-bottom: 0.5rem;
        }
        .infobox-label {
            font-weight: bold;
            width: 40%;
        }
        .infobox-value {
            width: 60%;
        }
        .game-image {
            width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 1.5rem 0;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            border: 1px solid var(--border-color);
        }
        .toc {
            background-color: #f8f9fa;
            border: 1px solid #a2a9b1;
            border-radius: 3px;
            padding: 1rem;
            margin: 1.5rem 0;
            float: right;
            width: 250px;
            margin-left: 1.5rem;
        }
        .toc-title {
            font-weight: bold;
            text-align: center;
            margin-bottom: 0.5rem;
        }
        .toc ul {
            list-style-type: none;
            padding-left: 0;
        }
        .toc li {
            margin-bottom: 0.25rem;
        }
        .content-section {
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid #eaeaea;
        }
        .tips-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
            margin: 1.5rem 0;
        }
        .tip-card {
            background-color: #f8f9fa;
            border-left: 4px solid var(--accent-color);
            padding: 1rem;
            border-radius: 4px;
        }
        .update-log {
            background-color: #f0f8ff;
            border: 1px solid #c8e1ff;
            border-radius: 5px;
            padding: 1.5rem;
            margin: 1.5rem 0;
        }
        .update-item {
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px dashed #ccc;
        }
        .update-item:last-child {
            border-bottom: none;
        }
        .update-date {
            font-weight: bold;
            color: var(--accent-color);
        }
        .faq-item {
            margin-bottom: 1rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            overflow: hidden;
        }
        .faq-question {
            background-color: #f5f5f5;
            padding: 1rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
        }
        .faq-answer {
            padding: 1rem;
            display: none;
            background-color: white;
        }
        .faq-item.active .faq-answer {
            display: block;
        }
        .btn {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            background-color: var(--accent-color);
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            text-align: center;
            transition: background-color 0.3s;
            min-height: 44px;
            min-width: 44px;
        }
        .btn:hover {
            background-color: var(--accent-dark);
            text-decoration: none;
            color: white;
        }
        .btn-secondary {
            background-color: var(--secondary-color);
        }
        .btn-secondary:hover {
            background-color: #0f1a2e;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        .form-control {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
        }
        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            margin: 0.5rem 0;
        }
        .star {
            font-size: 1.5rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star.active {
            color: var(--warning);
        }
        .social-share {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            background-color: #f0f0f0;
            border-radius: 50%;
            color: #333;
            transition: transform 0.3s;
        }
        .social-icon:hover {
            transform: translateY(-3px);
            text-decoration: none;
        }
        .social-icon.facebook:hover {
            background-color: #3b5998;
            color: white;
        }
        .social-icon.twitter:hover {
            background-color: #1da1f2;
            color: white;
        }
        .social-icon.reddit:hover {
            background-color: #ff4500;
            color: white;
        }
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background-color: var(--accent-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
            z-index: 999;
        }
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        footer {
            background-color: var(--secondary-color);
            color: var(--text-secondary);
            padding: 2rem 0;
            margin-top: auto;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        .footer-section h3 {
            color: white;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.5rem;
        }
        .friend-link {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 0.75rem;
            border-radius: 4px;
            margin-bottom: 0.5rem;
            display: block;
        }
        .friend-link:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid var(--border-color);
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            .toc {
                float: none;
                width: 100%;
                margin-left: 0;
                margin-right: 0;
            }
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .desktop-nav {
                display: none;
            }
            .mobile-toggle {
                display: flex;
            }
            .tips-grid {
                grid-template-columns: 1fr;
            }
            .back-to-top {
                bottom: 1rem;
                right: 1rem;
            }
        }
        @media (max-width: 576px) {
            .main-content, .sidebar {
                padding: 1rem;
            }
            .header-container {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
            .my-logo {
                margin-bottom: 0.5rem;
            }
        }
        @media print {
            .no-print {
                display: none;
            }
            body {
                background-color: white;
                color: black;
            }
            .main-content {
                box-shadow: none;
                padding: 0;
            }
            .sidebar, .back-to-top, .social-share, .mobile-toggle, .desktop-nav {
                display: none;
            }
            a {
                color: black;
                text-decoration: underline;
            }
        }
        .text-center {
            text-align: center;
        }
        .text-accent {
            color: var(--accent-color);
        }
        .mt-1 { margin-top: 0.5rem; }
        .mt-2 { margin-top: 1rem; }
        .mt-3 { margin-top: 1.5rem; }
        .mt-4 { margin-top: 2rem; }
        .mb-1 { margin-bottom: 0.5rem; }
        .mb-2 { margin-bottom: 1rem; }
        .mb-3 { margin-bottom: 1.5rem; }
        .mb-4 { margin-bottom: 2rem; }
        .highlight {
            background-color: rgba(233, 69, 96, 0.1);
            padding: 0.25rem 0.5rem;
            border-radius: 3px;
            font-weight: 500;
        }
        .badge {
            display: inline-block;
            padding: 0.25rem 0.5rem;
            background-color: var(--accent-color);
            color: white;
            border-radius: 3px;
            font-size: 0.75rem;
            font-weight: bold;
            margin-left: 0.5rem;
        }
