:root {
            --primary-color: #4a148c;
            --secondary-color: #ff6f00;
            --accent-color: #e1bee7;
            --text-color: #212121;
            --light-bg: #f5f5f5;
            --white: #ffffff;
            --shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 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(--primary-color);
            color: var(--white);
            padding: 15px 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            display: flex;
            align-items: center;
        }
        .logo span {
            color: var(--secondary-color);
        }
        .nav-desktop {
            display: flex;
        }
        .nav-desktop a {
            color: var(--white);
            text-decoration: none;
            margin-left: 25px;
            padding: 8px 12px;
            border-radius: 4px;
            transition: background-color 0.3s;
        }
        .nav-desktop a:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--white);
            margin: 3px 0;
            transition: 0.3s;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: var(--primary-color);
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            padding: 20px;
            box-shadow: var(--shadow);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: var(--white);
            text-decoration: none;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .main-content {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 30px;
            margin: 30px 0;
        }
        .content-section {
            background-color: var(--white);
            border-radius: 8px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: var(--shadow);
        }
        .content-section h1, .content-section h2, .content-section h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        .content-section h1 {
            font-size: 2.2rem;
            border-bottom: 2px solid var(--accent-color);
            padding-bottom: 10px;
        }
        .content-section h2 {
            font-size: 1.8rem;
            margin-top: 25px;
        }
        .content-section h3 {
            font-size: 1.4rem;
            margin-top: 20px;
        }
        .content-section p {
            margin-bottom: 15px;
            text-align: justify;
        }
        .highlight {
            background-color: var(--accent-color);
            padding: 15px;
            border-left: 4px solid var(--secondary-color);
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        .game-info-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        .game-info-table th, .game-info-table td {
            border: 1px solid #ddd;
            padding: 12px;
            text-align: left;
        }
        .game-info-table th {
            background-color: var(--primary-color);
            color: var(--white);
        }
        .game-info-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        .character-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
            margin: 20px 0;
        }
        .character-card {
            border: 1px solid #ddd;
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .character-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }
        .character-img {
            height: 150px;
            background-color: #e0e0e0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
        }
        .character-info {
            padding: 15px;
        }
        .character-info h4 {
            margin-bottom: 8px;
            color: var(--primary-color);
        }
        .sidebar {
            background-color: var(--white);
            border-radius: 8px;
            padding: 20px;
            box-shadow: var(--shadow);
            height: fit-content;
            position: sticky;
            top: 100px;
        }
        .sidebar-section {
            margin-bottom: 25px;
        }
        .sidebar-section h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 1px solid #eee;
        }
        .quick-links a {
            display: block;
            color: var(--text-color);
            text-decoration: none;
            padding: 8px 0;
            border-bottom: 1px solid #f0f0f0;
            transition: color 0.3s;
        }
        .quick-links a:hover {
            color: var(--primary-color);
        }
        .update-info {
            background-color: #e8f5e9;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
        }
        .update-info h4 {
            color: #2e7d32;
            margin-bottom: 10px;
        }
        .faq-item {
            margin-bottom: 20px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            overflow: hidden;
        }
        .faq-question {
            background-color: #f5f5f5;
            padding: 15px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
        }
        .faq-answer {
            padding: 15px;
            display: none;
        }
        .faq-item.active .faq-answer {
            display: block;
        }
        .comments-section {
            margin-top: 40px;
        }
        .comment-form {
            margin-bottom: 30px;
        }
        .form-group {
            margin-bottom: 15px;
        }
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
        }
        .form-group input, .form-group textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
        }
        .form-group textarea {
            height: 120px;
            resize: vertical;
        }
        .btn {
            background-color: var(--primary-color);
            color: var(--white);
            border: none;
            padding: 10px 20px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 1rem;
            transition: background-color 0.3s;
        }
        .btn:hover {
            background-color: #3d1168;
        }
        .comment {
            border-bottom: 1px solid #eee;
            padding: 20px 0;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }
        .comment-author {
            font-weight: bold;
            color: var(--primary-color);
        }
        .comment-date {
            color: #757575;
            font-size: 0.9rem;
        }
        footer {
            background-color: var(--primary-color);
            color: var(--white);
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-section h3 {
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-section a {
            color: var(--accent-color);
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s;
        }
        .footer-section a:hover {
            color: var(--white);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: var(--accent-color);
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: flex;
            }
            .main-content {
                grid-template-columns: 1fr;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
            .character-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }
        }
        @media print {
            .nav-desktop, .hamburger, .sidebar, .comment-form, footer {
                display: none;
            }
            .main-content {
                grid-template-columns: 1fr;
            }
            .content-section {
                box-shadow: none;
                border: 1px solid #ddd;
            }
        }
