/* Setting the base font for the entire page */
body {
    font-family: 'Inter', sans-serif;
    background-color: #1a1a2e; /* Deep purple-blue background */
    overflow-x: hidden;
    color: #d1d5db; /* text-gray-300 */
}

/* Custom gradient for buttons and highlights */
.gradient-bg {
    background-image: linear-gradient(to right, #8e2de2, #4a00e0);
}

.gradient-text {
    background: linear-gradient(to right, #c471ed, #f64f59);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glassmorphism effect for cards */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animation for elements fading in on scroll */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Styles for legal pages content */
.legal-content h1 {
    font-size: 2.25rem; /* text-4xl */
    line-height: 2.5rem;
}
@media (min-width: 768px) {
    .legal-content h1 {
        font-size: 3rem; /* md:text-5xl */
        line-height: 1;
    }
}

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.75;
}
.legal-content ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

/* NEW: Mobile menu animation styles */
#mobile-menu {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

#mobile-menu.menu-visible {
    opacity: 1;
    transform: translateY(0);
}