/* Add padding to the main content area */
.content {
    padding: 20px;
    margin: 0 auto;
    max-width: 1200px; /* Optional: to limit the width of the content */
    color: white; /* Ensure the text is readable against the dark background */
}

/* Example styles for the body and background */
body {
    background-color: #121212; /* Dark background */
    color: white; /* White text for readability */
    font-family: Arial, sans-serif; /* Example font */
    margin: 0; /* Remove default margin */
    padding: 0; /* Remove default padding */
}

h1, h2 {
    color: #9370DB; /* Medium Purple for headers */
}

/* Add some styling to the navigation */
nav {
    background-color: #800080; /* Pure Purple */
    padding: 10px;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

/* Center the footer content */
footer {
    text-align: center;
    padding: 10px;
    background-color: #800080; /* Pure Purple for footer background */
    color: white; /* White text for readability */
}

/* Gallery Styling */
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.character {
    flex: 1 1 calc(33.333% - 40px); /* 3 characters per row, with spacing */
    background-color: #222;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
}

.character img {
    max-width: 100%;
    border-radius: 50%;
}

.character h3 {
    color: #9370DB; /* Medium Purple for character names */
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #800080; /* Pure Purple for buttons */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}

.btn:hover {
    background-color: #9370DB; /* Lighter purple on hover */
}

.faq-item {
            margin-bottom: 20px;
            border: 1px solid #333;
            border-radius: 5px;
            overflow: hidden;
        }
        .faq-question {
            background-color: #222222;
            padding: 15px;
            cursor: pointer;
            font-weight: bold;
        }
        .faq-answer {
            padding: 15px;
            display: none;
        }
        .faq-question::after {
            content: '\25BC';
            float: right;
            transition: transform 0.3s ease;
        }
        .faq-question.active::after {
            transform: rotate(180deg);
        }