        * {
            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', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
            line-height: 1.7;
            color: #222;
            background-color: #f8f9fa;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
            position: relative;
        }
        a {
            color: #0066cc;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #d45500;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button {
            cursor: pointer;
            font-family: inherit;
        }
        h1, h2, h3, h4 {
            color: #202122;
            font-weight: 600;
            margin-top: 1.5em;
            margin-bottom: 0.5em;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.5rem;
            border-bottom: 1px solid #a2a9b1;
            padding-bottom: 0.3em;
            margin-top: 1em;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 1px solid #a2a9b1;
            padding-bottom: 0.25em;
        }
        h3 {
            font-size: 1.4rem;
        }
        h4 {
            font-size: 1.2rem;
        }
        p {
            margin-bottom: 1em;
        }
        ul, ol {
            margin-bottom: 1em;
            padding-left: 2em;
        }
        li {
            margin-bottom: 0.5em;
        }
        blockquote {
            border-left: 4px solid #a2a9b1;
            padding-left: 1em;
            margin: 1.5em 0;
            color: #54595d;
        }
        code {
            background-color: #f8f9fa;
            border: 1px solid #eaecf0;
            padding: 1px 4px;
            border-radius: 2px;
            font-family: monospace;
        }
        header {
            background-color: #fff;
            border-bottom: 1px solid #a2a9b1;
            padding: 1rem 0;
            margin-bottom: 1.5rem;
        }
        nav {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }
        main {
            display: grid;
            grid-template-columns: minmax(0, 1fr) 300px;
            gap: 2rem;
            margin-bottom: 3rem;
        }
        @media (max-width: 768px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        section, article {
            background-color: #fff;
            border: 1px solid #a2a9b1;
            border-radius: 3px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
        }
        aside {
            background-color: #f8f9fa;
            border: 1px solid #a2a9b1;
            border-radius: 3px;
            padding: 1.5rem;
            align-self: start;
            position: sticky;
            top: 20px;
        }
        footer {
            background-color: #fff;
            border-top: 1px solid #a2a9b1;
            padding: 2rem 0;
            text-align: center;
            font-size: 0.9rem;
            color: #54595d;
            margin-top: 2rem;
        }
        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 700;
            color: #d45500;
            background: linear-gradient(135deg, #ff6b00, #cc0000);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .logo-tagline {
            font-size: 0.9rem;
            color: #54595d;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }
        .main-nav a {
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 4px;
        }
        .main-nav a:hover {
            background-color: #f8f9fa;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #202122;
            padding: 5px;
            min-width: 44px;
            min-height: 44px;
        }
        @media (max-width: 768px) {
            .main-nav {
                position: fixed;
                top: 0;
                left: -100%;
                width: 80%;
                height: 100vh;
                background-color: #fff;
                z-index: 1000;
                padding: 2rem;
                box-shadow: 2px 0 10px rgba(0,0,0,0.1);
                transition: left 0.3s ease;
                overflow-y: auto;
            }
            .main-nav.active {
                left: 0;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 1rem;
            }
            .hamburger {
                display: block;
            }
            .nav-overlay {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-color: rgba(0,0,0,0.5);
                z-index: 999;
            }
            .nav-overlay.active {
                display: block;
            }
        }
        .search-container {
            margin: 1.5rem 0;
            display: flex;
            gap: 10px;
        }
        .search-input {
            flex-grow: 1;
            padding: 12px 15px;
            border: 2px solid #a2a9b1;
            border-radius: 4px;
            font-size: 1rem;
        }
        .search-btn {
            background-color: #0066cc;
            color: white;
            border: none;
            border-radius: 4px;
            padding: 0 20px;
            font-weight: 600;
            min-width: 44px;
            min-height: 44px;
        }
        .search-btn:hover {
            background-color: #0052a3;
        }
        .content-card {
            background: #f8f9fa;
            border-left: 4px solid #0066cc;
            padding: 1.2rem;
            margin: 1.5rem 0;
        }
        .tip-box {
            background-color: #e8f4f8;
            border-left: 4px solid #2a9fd8;
            padding: 1.2rem;
            margin: 1.5rem 0;
        }
        .warning-box {
            background-color: #fff3cd;
            border-left: 4px solid #ffc107;
            padding: 1.2rem;
            margin: 1.5rem 0;
        }
        .update-log {
            background-color: #f0f8ff;
            border: 1px dashed #0066cc;
            padding: 1.2rem;
            margin: 1.5rem 0;
        }
        .character-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 1.5rem 0;
        }
        .character-card {
            border: 1px solid #a2a9b1;
            border-radius: 5px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .character-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .character-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        .character-card h4 {
            padding: 0.8rem;
            margin: 0;
            background-color: #f8f9fa;
        }
        .responsive-img {
            width: 100%;
            height: auto;
            border-radius: 5px;
            margin: 1.5rem 0;
            border: 1px solid #ddd;
        }
        .img-caption {
            text-align: center;
            font-size: 0.9rem;
            color: #54595d;
            margin-top: 5px;
            margin-bottom: 1.5rem;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            background-color: #fff;
        }
        th, td {
            border: 1px solid #a2a9b1;
            padding: 12px 15px;
            text-align: left;
        }
        th {
            background-color: #f8f9fa;
            font-weight: 600;
        }
        tr:nth-child(even) {
            background-color: #f8f9fa;
        }
        .btn {
            display: inline-block;
            padding: 12px 24px;
            background-color: #0066cc;
            color: white;
            border-radius: 4px;
            font-weight: 600;
            border: none;
            text-align: center;
            min-width: 44px;
            min-height: 44px;
            transition: background-color 0.2s;
        }
        .btn:hover {
            background-color: #0052a3;
            color: white;
            text-decoration: none;
        }
        .btn-orange {
            background-color: #d45500;
        }
        .btn-orange:hover {
            background-color: #b34700;
        }
        .rating-container {
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 1rem 0;
        }
        .star-rating {
            display: flex;
            gap: 5px;
        }
        .star-rating i {
            color: #ffc107;
            font-size: 1.5rem;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating i:hover {
            color: #ff9800;
        }
        .social-share {
            display: flex;
            gap: 10px;
            margin: 1.5rem 0;
        }
        .social-btn {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            transition: transform 0.2s;
        }
        .social-btn:hover {
            transform: scale(1.1);
            color: white;
            text-decoration: none;
        }
        .facebook { background-color: #3b5998; }
        .twitter { background-color: #1da1f2; }
        .reddit { background-color: #ff4500; }
        .discord { background-color: #7289da; }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: #0066cc;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
        }
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            background-color: #0052a3;
            color: white;
        }
        .comment-form, .rating-form {
            background-color: #f8f9fa;
            padding: 1.5rem;
            border-radius: 5px;
            margin: 1.5rem 0;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-control {
            width: 100%;
            padding: 12px;
            border: 1px solid #a2a9b1;
            border-radius: 4px;
            font-size: 1rem;
        }
        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }
        friend-link {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin: 1.5rem 0;
        }
        friend-link a {
            padding: 8px 15px;
            background-color: #f8f9fa;
            border-radius: 4px;
        }
        .last-updated {
            font-style: italic;
            color: #72777d;
            margin-top: 1rem;
        }
        .visually-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        .text-center { text-align: center; }
        .text-bold { font-weight: 700; }
        .text-orange { color: #d45500; }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .mt-2 { margin-top: 2rem; }
        .flex { display: flex; }
        .flex-col { flex-direction: column; }
        .items-center { align-items: center; }
        .justify-between { justify-content: space-between; }
        .gap-1 { gap: 1rem; }
        .w-100 { width: 100%; }
        @media (max-width: 480px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.5rem; }
            h3 { font-size: 1.2rem; }
            .character-grid { grid-template-columns: 1fr; }
        }
