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

body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    background-color: #faf7ff;
    touch-action: pan-y;
    width: 100%;
    position: relative;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
::-webkit-scrollbar-thumb {
    background: #c084fc; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #9333ea; 
}

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

.glass-dark-effect {
    background: rgba(20, 10, 40, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Glow Effects */
.purple-glow:hover {
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
    transition: all 0.3s ease;
}

.primary-glow {
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.3);
}

/* Micro animations */
.hover-scale {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hover-scale:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(124, 58, 237, 0.2);
}

.input-style {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    background-color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #1f2937;
    font-size: 1rem;
    line-height: 1.5rem;
}

.input-style:focus {
    background-color: #ffffff;
    outline: none;
    border-color: #8F45D8;
    box-shadow: 0 0 0 2px rgba(143, 69, 216, 0.3);
}

.label-style {
    display: block;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.375rem;
    margin-left: 0.25rem;
}

/* Custom Checkbox/Radio */
.custom-radio {
    accent-color: #8F45D8;
    width: 1.2rem;
    height: 1.2rem;
}

/* Floating animation for hero elements */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

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