/* General Body */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0d1b2a;
    color: #ccc;
    background-image: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    background-size: 200px 200px;
    background-attachment: fixed;
}

/* Header */
.faq-header {
    text-align: center;
    padding: 50px 20px 30px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: #fff;
}

.faq-header h1 {
    font-size: 3rem;
    animation: bounceText 2s infinite;
}

.faq-header .welcome-text {
    font-size: 1.2rem;
    margin-top: 10px;
}

/* FAQ Section */
.faq-section {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
}

.faq-section h2 {
    color: #ff6f91;
    font-size: 2rem;
    margin-bottom: 20px;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-item .question {
    font-weight: bold;
    font-size: 1.2rem;
}

.faq-item .answer {
    margin-left: 20px;
    font-size: 1rem;
}

/* Chatroom Buttons */
.chatroom-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.chatroom-buttons button {
    background: linear-gradient(135deg, #ff6f91, #ffb347);
    border: none;
    color: #fff;
    padding: 15px 25px;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.chatroom-buttons button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 20px;
    font-size: 0.9rem;
    background-color: #111;
    color: #fff;
}

/* Animations */
@keyframes bounceText {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}