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

body {
    font-family: 'Inter', sans-serif;
    background-color: #050505;
    color: #ffffff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .outfit {
    font-family: 'Outfit', sans-serif;
}

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

.glass-panel {
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.glass-panel:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

/* Neon Glows */
.glow-blue {
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.3), inset 0 0 10px rgba(0, 243, 255, 0.1);
}
.glow-green {
    box-shadow: 0 0 15px rgba(0, 255, 102, 0.3), inset 0 0 10px rgba(0, 255, 102, 0.1);
}
.glow-gold {
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3), inset 0 0 10px rgba(255, 215, 0, 0.1);
}

.text-glow-blue {
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}
.text-glow-green {
    text-shadow: 0 0 10px rgba(0, 255, 102, 0.5);
}

/* Animations */
@keyframes pulseGlow {
    0% { box-shadow: 0 0 15px rgba(0, 243, 255, 0.2); }
    50% { box-shadow: 0 0 25px rgba(0, 243, 255, 0.5); }
    100% { box-shadow: 0 0 15px rgba(0, 243, 255, 0.2); }
}

.animate-glow {
    animation: pulseGlow 3s infinite;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #050505;
}
::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: #00f3ff;
}

/* Toast */
.toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.toast {
    transform: translateX(110%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.toast.show {
    transform: translateX(0);
    opacity: 1;
}

/* Auth Progress */
.progress-step {
    transition: all 0.4s ease;
}

/* Backgrounds */
.bg-mesh {
    background-color: #050505;
    background-image: 
        radial-gradient(at 0% 0%, rgba(0, 243, 255, 0.1) 0px, transparent 40%),
        radial-gradient(at 100% 0%, rgba(0, 255, 102, 0.08) 0px, transparent 40%),
        radial-gradient(at 100% 100%, rgba(255, 215, 0, 0.05) 0px, transparent 40%),
        radial-gradient(at 0% 100%, rgba(0, 85, 255, 0.08) 0px, transparent 40%);
}

.bg-mesh-dark {
    background-color: #000;
    background-image: 
        radial-gradient(at 50% 0%, rgba(0, 243, 255, 0.05) 0px, transparent 50%);
}

/* inputs */
input, select {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
}
input:focus, select:focus {
    outline: none;
    border-color: #00f3ff;
    box-shadow: 0 0 8px rgba(0,243,255,0.3);
}

/* File Upload */
.file-upload-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
    cursor: pointer;
}
.file-upload-wrapper input[type=file] {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
