@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dark-glass {
    background: rgba(12, 30, 51, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Gradients */
.text-gradient {
    background: linear-gradient(to right, #ffffff, #fdba74);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-gradient {
    background: radial-gradient(circle at top right, #4f46e5 0%, transparent 40%),
        radial-gradient(circle at bottom left, #0c1e33 0%, #060f1a 100%);
}

/* Animations */
.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Cards */
.stats-card {
    transition: all 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -15px rgba(0, 72, 64, 0.2);
}

/* Patterns */
.hero-pattern {
    background-image:
        radial-gradient(circle at 20% 30%, rgba(79, 70, 229, 0.05) 0%, transparent 10%),
        radial-gradient(circle at 80% 70%, rgba(249, 115, 22, 0.05) 0%, transparent 10%);
    background-size: 40px 40px;
}

/* Typography for content pages (Privacy Policy, Terms) */
.prose h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e1b4b;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.prose p {
    margin-bottom: 1rem;
    color: #475569;
    line-height: 1.75;
}

.prose ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: #475569;
}

.prose li {
    margin-bottom: 0.5rem;
}

.prose a {
    color: #4f46e5;
    text-decoration: underline;
}
