:root {
            --primary-color: #4A148C;
            --secondary-color: #6A1B9A;
            --accent-color: #9C27B0;
            --text-color: #333;
            --light-bg: #F3E5F5;
            --dark-bg: #4A148C;
            --header-height: 70px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: var(--light-bg);
            color: var(--text-color);
            line-height: 1.6;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--dark-bg);
            color: white;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: var(--header-height);
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--accent-color);
        }
        .nav-menu {
            display: flex;
            list-style: none;
        }
        .nav-menu li {
            margin-left: 25px;
        }
        .nav-menu a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        .nav-menu a:hover {
            color: var(--accent-color);
        }
        .hamburger {
            display: none;
            cursor: pointer;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
        }
        main {
            margin-top: var(--header-height);
            padding: 30px 0;
        }
        .page-header {
            text-align: center;
            margin-bottom: 40px;
            padding: 20px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            border-radius: 10px;
        }
        .page-header h1 {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        .page-meta {
            display: flex;
            justify-content: center;
            gap: 20px;
            font-size: 0.9rem;
            opacity: 0.9;
        }
        .content-section {
            margin-bottom: 40px;
            background: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        }
        .content-section h2 {
            color: var(--secondary-color);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent-color);
            font-size: 1.8rem;
        }
        .content-section h3 {
            color: var(--primary-color);
            margin: 25px 0 15px;
            font-size: 1.4rem;
        }
        .content-section p {
            margin-bottom: 15px;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(74, 20, 140, 0.1);
            padding: 15px;
            border-left: 4px solid var(--primary-color);
            margin: 20px 0;
        }
        .game-features {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin: 25px 0;
        }
        .feature-card {
            background: var(--light-bg);
            padding: 20px;
            border-radius: 8px;
            border: 1px solid #e0e0e0;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .feature-card h4 {
            color: var(--secondary-color);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        .feature-card h4 span {
            margin-right: 10px;
            font-size: 1.2rem;
        }
        .character-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 25px 0;
        }
        .character-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        .character-img {
            height: 180px;
            background-color: #ddd;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #777;
        }
        .character-info {
            padding: 15px;
        }
        .character-info h4 {
            color: var(--secondary-color);
            margin-bottom: 10px;
        }
        .character-info p {
            font-size: 0.9rem;
            margin-bottom: 10px;
        }
        .skill-tag {
            display: inline-block;
            background: var(--accent-color);
            color: white;
            padding: 3px 8px;
            border-radius: 20px;
            font-size: 0.8rem;
            margin-right: 5px;
            margin-bottom: 5px;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        table th, table td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        table th {
            background-color: var(--secondary-color);
            color: white;
        }
        table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        .faq-item {
            margin-bottom: 20px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            overflow: hidden;
        }
        .faq-question {
            background: var(--light-bg);
            padding: 15px 20px;
            font-weight: bold;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        .faq-answer.active {
            padding: 20px;
            max-height: 500px;
        }
        .comment-section {
            margin-top: 30px;
        }
        .comment-form {
            background: var(--light-bg);
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 30px;
        }
        .form-group {
            margin-bottom: 15px;
        }
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .submit-btn {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.3s;
        }
        .submit-btn:hover {
            background: #3a0f6b;
        }
        .comments-list {
            margin-top: 20px;
        }
        .comment {
            border-bottom: 1px solid #e0e0e0;
            padding: 15px 0;
        }
        .comment:last-child {
            border-bottom: none;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }
        .comment-author {
            font-weight: bold;
            color: var(--secondary-color);
        }
        .comment-date {
            color: #777;
            font-size: 0.9rem;
        }
        .comment-content {
            line-height: 1.5;
        }
        .guide-section {
            margin-top: 30px;
        }
        .guide-card {
            background: var(--light-bg);
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 20px;
            border-left: 4px solid var(--accent-color);
        }
        .guide-card h4 {
            color: var(--secondary-color);
            margin-bottom: 10px;
        }
        .guide-meta {
            display: flex;
            gap: 15px;
            margin-bottom: 10px;
            font-size: 0.9rem;
            color: #777;
        }
        .rating {
            color: #ffc107;
        }
        footer {
            background-color: var(--dark-bg);
            color: white;
            padding: 40px 0 20px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-section h3 {
            color: var(--accent-color);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section ul li {
            margin-bottom: 10px;
        }
        .footer-section a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-section a:hover {
            color: var(--accent-color);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: var(--header-height);
                right: -100%;
                flex-direction: column;
                background-color: var(--dark-bg);
                width: 80%;
                height: calc(100vh - var(--header-height));
                transition: right 0.3s;
                padding: 20px;
            }
            .nav-menu.active {
                right: 0;
            }
            .nav-menu li {
                margin: 15px 0;
            }
            .hamburger {
                display: block;
            }
            .page-header h1 {
                font-size: 2rem;
            }
            .content-section h2 {
                font-size: 1.5rem;
            }
        }
