@tailwind base;
@tailwind components;
@tailwind utilities;

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #101114;
}

::-webkit-scrollbar-thumb {
    background: #2a2d35;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #03f295;
}

/* Smooth transitions for FAQ inputs handled via CSS peer-checked, 
   but we ensure hidden inputs work cleanly with labels */
input[type="checkbox"] {
    display: none;
}

/* Utility for rotating the plus/minus icon in FAQ */
.faq-icon {
    transition: transform 0.3s ease;
}

/* Mobile Menu specific overrides if Tailwind is not enough */
@media (max-width: 768px) {
    /* Mobile specific tweaks */
}

/* Animations */
@keyframes pulse-green {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(3, 242, 149, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(3, 242, 149, 0);
    }
}

.animate-pulse-custom {
    animation: pulse-green 2s infinite;
}