/* Custom styles for SusMac */

:root {
    --sus-pink: #ec4899;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #222;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--sus-pink);
}

/* FAQ transitions */
.faq-content {
    transition: all 0.3s ease-in-out;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
}

.faq-content.show {
    max-height: 500px;
    opacity: 1;
    margin-top: 1rem;
}

.faq-item button span:last-child {
    transition: transform 0.3s ease;
}

.faq-item.active button span:last-child {
    transform: rotate(45deg);
}

/* Glow effects */
.shadow-sus-glow {
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.2);
}

.hover-glow:hover {
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.4);
}

/* Smooth reveal animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    animation: fadeInUp 0.6s ease-out forwards;
}
