/* Support Page Specific Styles */

/* Base overrides for support page */
.support-body {
    overflow-y: auto;
    /* Allow scrolling for support page content */
    display: block;
    /* Override flex centering from generic body */
    height: auto;
    min-height: 100dvh;
}

.support-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
}

/* Header */
.app-header {
    text-align: center;
    margin-bottom: 3rem;
}

.header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary-purple);
}

.header-logo h1 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
    margin: 0;
}

.header-logo .header-icon {
    font-size: 2.25rem !important;
    text-shadow: 0 0 15px rgba(139, 92, 246, 0.6);
}

.app-header .header-subtitle {
    font-size: 1.1rem;
    font-family: var(--font-ui);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin: 0;
}

/* Content & FAQs */
.support-content {
    flex: 1;
}

.faq-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: linear-gradient(135deg, rgba(20, 15, 41, 0.6), rgba(13, 10, 31, 0.8));
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.faq-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent, rgba(139, 92, 246, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    pointer-events: none;
}

.faq-item:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15);
}

.faq-item:hover::before {
    transform: translateX(100%);
}

.faq-question {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
    font-family: var(--font-display);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-question-icon {
    font-family: 'Material Icons';
    color: var(--color-primary-purple);
    font-size: 1.5rem !important;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.4);
}

.faq-answer {
    font-family: var(--font-ui);
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
}

.faq-answer p {
    margin-bottom: 0.5rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* Footer */
.support-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-family: var(--font-ui);
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--color-primary-purple);
}

.separator {
    color: rgba(255, 255, 255, 0.3);
}

.copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
    .support-wrapper {
        padding: 2rem 1.25rem;
    }

    .header-logo h1 {
        font-size: 2rem;
    }

    .app-header .header-subtitle {
        font-size: 1rem;
    }

    .faq-item {
        padding: 1.5rem;
    }

    .faq-question {
        font-size: 1.15rem;
    }
}