/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #020202;
}
::-webkit-scrollbar-thumb {
    background: #15803d;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #39FF14;
}

html {
    scroll-behavior: smooth;
}

/* Glass Effect */
.glass-card {
    background: rgba(10, 20, 10, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(57, 255, 20, 0.1);
}

/* Text Glow Effect - Reduced Intensity */
.text-glow {
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.35);
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-overlay.hidden {
    display: none;
}

/* FAQ Animations */
.faq-content {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}