/* FAQ Page Specific Styles */
@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");

.faq-section {
    min-height: calc(100vh - 100px);
    padding: 40px 20px;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* FAQ Header */
.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 20px;
    line-height: 1.2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.faq-title .title-word {
    color: var(--text-primary);
    text-shadow: 
        0 0 20px rgba(218, 41, 46, 0.5),
        0 0 40px rgba(218, 41, 46, 0.3);
    animation: titleGlow 2s ease-in-out infinite alternate;
}

.faq-title .title-word.accent {
    color: var(--apex-red);
    text-shadow: 
        0 0 20px rgba(218, 41, 46, 0.8),
        0 0 40px rgba(218, 41, 46, 0.5);
}

.faq-subtitle {
    color: var(--text-secondary);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Category Buttons */
.faq-categories {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 12px 24px;
    background: rgba(26, 31, 46, 0.6);
    border: 2px solid rgba(139, 146, 163, 0.2);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.category-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(218, 41, 46, 0.3), transparent);
    transition: left 0.5s ease;
}

.category-btn:hover::before {
    left: 100%;
}

.category-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.category-btn.active {
    background: rgba(218, 41, 46, 0.2);
    border-color: var(--apex-red);
    color: var(--text-primary);
}

.category-btn i {
    font-size: 20px;
}

/* FAQ Content */
.faq-content {
    background: linear-gradient(135deg, rgba(26, 31, 46, 0.6), rgba(10, 14, 26, 0.6));
    border: 2px solid rgba(218, 41, 46, 0.2);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    min-height: 400px;
}

.faq-category {
    display: none;
}

.faq-category.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FAQ Items */
.faq-item {
    margin-bottom: 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(139, 146, 163, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(218, 41, 46, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(218, 41, 46, 0.1);
}

.faq-question h3 {
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    text-transform: none;
    letter-spacing: 0.3px;
}

.faq-question i {
    color: var(--apex-red);
    font-size: 24px;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 20px 20px 20px;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 10px 0;
}

.faq-answer ul {
    color: var(--text-secondary);
    margin: 10px 0;
    padding-left: 20px;
}

.faq-answer ul li {
    margin: 5px 0;
    list-style-type: none;
    position: relative;
    padding-left: 20px;
}

.faq-answer ul li::before {
    content: '▸';
    color: var(--apex-red);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* FAQ Footer */
.faq-footer {
    margin-top: 50px;
}

.still-questions {
    background: linear-gradient(135deg, rgba(218, 41, 46, 0.1), rgba(255, 107, 53, 0.1));
    border: 2px solid rgba(218, 41, 46, 0.3);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.still-questions h3 {
    color: var(--text-primary);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.still-questions p {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 30px;
}

.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    padding: 14px 28px;
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}

.contact-btn:hover::before {
    left: 100%;
}

.discord-btn {
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
    border: 2px solid #5865F2;
}

.discord-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(88, 101, 242, 0.4);
}

.email-btn {
    background: linear-gradient(135deg, var(--apex-red) 0%, var(--apex-dark-red) 100%);
    border: 2px solid var(--apex-red);
}

.email-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(218, 41, 46, 0.4);
}

.contact-btn i {
    font-size: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        padding: 20px 15px;
    }
    
    .faq-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .faq-subtitle {
        font-size: 16px;
    }
    
    .faq-categories {
        gap: 10px;
    }
    
    .category-btn {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .category-btn i {
        font-size: 18px;
    }
    
    .faq-content {
        padding: 20px;
    }
    
    .faq-question {
        padding: 15px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-answer {
        font-size: 14px;
    }
    
    .still-questions {
        padding: 30px 20px;
    }
    
    .still-questions h3 {
        font-size: 24px;
    }
    
    .still-questions p {
        font-size: 16px;
    }
    
    .contact-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .faq-categories {
        flex-direction: column;
    }
    
    .category-btn {
        width: 100%;
        justify-content: center;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .contact-btn {
        width: 100%;
        justify-content: center;
    }
}