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

/* --- Custom Scrollbar --- */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #0B1120; }
::-webkit-scrollbar-thumb { background: #334155; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: #25D366; }

/* --- Glassmorphism Utility --- */
.glass-card {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: all 0.3s ease;
}
.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(37, 211, 102, 0.3);
    box-shadow: 0 12px 40px 0 rgba(37, 211, 102, 0.1);
}

.glass-nav {
    background: rgba(11, 17, 32, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* --- Gradient Text --- */
.text-gradient {
    background: linear-gradient(135deg, #25D366 0%, #34B7F1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Animations --- */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}
.animate-float { animation: float 6s ease-in-out infinite; }

@keyframes spin { to { transform: rotate(360deg); } }
.spinner {
    width: 50px; height: 50px; border: 3px solid rgba(37, 211, 102, 0.3);
    border-radius: 50%; border-top-color: #25D366;
    animation: spin 1s ease-in-out infinite;
}

/* Loader */
.loader-wrapper {
    position: fixed; inset: 0; background: #0B1120; z-index: 9999;
    display: flex; justify-content: center; align-items: center;
    flex-direction: column; transition: opacity 0.5s ease;
}

/* Glow Effects */
.glow-blob {
    position: absolute;
    filter: blur(80px);
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}

/* Mobile Menu Transition */
#mobile-menu {
    transition: all 0.3s ease-in-out;
}
