/* Main stylesheet customizations extending Tailwind utility layouts */
body {
    font-family: 'Outfit', sans-serif;
}

/* Glassmorphism details */
.glass-panel {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.dark .glass-panel {
    background: rgba(15, 23, 42, 0.45);
}

/* Dynamic pulse and glow animations */
.glow-effect {
    box-shadow: 0 0 40px -10px rgba(99, 102, 241, 0.2);
}

.dark .glow-effect {
    box-shadow: 0 0 50px -5px rgba(99, 102, 241, 0.15);
}

/* Custom button states transition */
.btn-premium {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-premium:hover {
    transform: translateY(-2px);
}
