@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* Base Setup */
body {
    background-color: #000000;
    color: #f5f5f7;
    overflow-x: hidden;
    /* Native cursor for Apple feel */
}

/* Custom Scrollbar */
/* Custom Scrollbar - Mac-like */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid #000;
    /* mimic padding */
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.4);
}


/* Glassmorphism Classes */
/* Glassmorphism Classes */
.glass-nav {
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-card {
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(50px) saturate(120%);
    -webkit-backdrop-filter: blur(50px) saturate(120%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(40, 40, 45, 0.5);
}

/* Text Gradients */
.text-gradient-animated {
    background: linear-gradient(to right,
            #2997ff 20%,
            #d946ef 40%,
            #a855f7 60%,
            #2997ff 80%);
    background-size: 200% auto;
    color: #000;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: text-shimmer 4s linear infinite;
}

@keyframes text-shimmer {
    to {
        background-position: 200% center;
    }
}

/* Aurora Background */
.aurora-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
}

.blob-1,
.blob-2,
.blob-3 {
    position: absolute;
    filter: blur(80px);
    opacity: 0.4;
    animation: blob 10s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.blob-1 {
    top: -10%;
    left: 30%;
    width: 500px;
    height: 500px;
    background: #2997ff;
    animation-delay: 0s;
}

.blob-2 {
    top: 20%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: #a855f7;
    animation-delay: 2s;
}

.blob-3 {
    bottom: 10%;
    left: 20%;
    width: 600px;
    height: 600px;
    background: #3b82f6;
    opacity: 0.2;
    animation-delay: 4s;
}

@keyframes blob {
    0% {
        transform: translate(0px, 0px) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }

    100% {
        transform: translate(0px, 0px) scale(1);
    }
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-out, visibility 0.5s;
}

.preloader-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top-color: #2997ff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}