/* FAQ Specific Styles */

.faq-container {
    background-color: #121212;
    background-image: radial-gradient(circle at 10% 20%, rgba(9, 58, 107, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(198, 217, 59, 0.08) 0%, transparent 40%);
    color: #ffffff;
}

/* Glassmorphism Category Sidebar */
.category-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-btn {
    position: relative;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.category-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #C6D93B;
}

.category-btn.active {
    background: rgba(198, 217, 59, 0.1);
    color: #C6D93B;
    border-left-color: #C6D93B;
    font-weight: 700;
}

/* Search Bar styling */
.search-container {
    position: relative;
}

.search-input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: #C6D93B;
    box-shadow: 0 0 15px rgba(198, 217, 59, 0.2);
    background: rgba(255, 255, 255, 0.06);
}

/* Accordion Card Design */
.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(198, 217, 59, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.faq-question-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
    transition: color 0.3s ease;
}

.faq-item.active {
    border-color: rgba(73, 211, 242, 0.3);
    /* gsLightBlue border when active */
    background: rgba(255, 255, 255, 0.03);
}

.faq-item.active .faq-question-btn {
    color: #49D3F2;
    /* gsLightBlue for active question text */
}

.faq-chevron {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: rgba(255, 255, 255, 0.5);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: #49D3F2;
}

/* Accordion body height transition */
.faq-answer-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-content {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 16px;
}

/* Glow highlights */
.text-glow-gsGreen {
    text-shadow: 0 0 10px rgba(125, 191, 59, 0.5);
}

.text-glow-gsBlue {
    text-shadow: 0 0 10px rgba(7, 152, 255, 0.5);
}

/* Custom Scrollbar for side list */
.custom-scrollbar::-webkit-scrollbar {
    width: 4px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(198, 217, 59, 0.3);
    border-radius: 2px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: rgba(198, 217, 59, 0.5);
}

/* Mascot floating animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

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

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

.mascot-float {
    animation: float 4s ease-in-out infinite;
}