/* GENERAL */
body {
    margin: 0;
    padding: 0;
    background-color: #0a0a0a;
    font-family: Arial, sans-serif;
    color: white;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 40px;
    background-color: #111;
    border-bottom: 2px solid #5e17eb;
}

header ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

header a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

header a:hover,
header .active {
    color: #5e17eb;
}

/* LOGO ANIMÉ */
#logo h2 {
    animation: pulseReiatsu 3s infinite ease-in-out;
    text-shadow: 0 0 15px #5e17eb;
}

@keyframes pulseReiatsu {
    0% { text-shadow: 0 0 10px #5e17eb; }
    50% { text-shadow: 0 0 25px #5e17eb; }
    100% { text-shadow: 0 0 10px #5e17eb; }
}

/* TITRE FAQ */
.faq-title {
    text-align: center;
    padding: 60px 20px;
}

.faq-title h1 {
    font-size: 42px;
    text-shadow: 0 0 15px #5e17eb;
    animation: fadeIn 1.5s forwards;
}

.faq-title p {
    font-size: 18px;
    opacity: 0.8;
}

/* ANIMATION FADE */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* FAQ CARDS */
.faq-section {
    display: flex;
    flex-direction: column;
    gap: 35px;
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.faq-card {
    background: #111;
    border: 2px solid #5e17eb;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 0 15px #5e17eb;
    transition: 0.3s;
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px #5e17eb;
}

.faq-card h2 {
    color: #5e17eb;
    margin-bottom: 12px;
}

.faq-card p {
    line-height: 1.6;
    opacity: 0.9;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background-color: #111;
    border-top: 2px solid #5e17eb;
}

/* RESPONSIVE */
@media screen and (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 12px;
    }

    .faq-section {
        gap: 25px;
    }
}
