/* assets/css/style.css - Supplemental Styles for Tailwind CSS v4 */

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

:root {
    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    font-family: var(--font-sans);
    background-color: #050308;
    color: #f3f1f6;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #050308;
}
::-webkit-scrollbar-thumb {
    background: rgba(139, 92, 246, 0.2);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #8b5cf6;
}

/* Background Glowing Orbs */
.glow-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
}
.orb-1 {
    top: -10%;
    left: 15%;
    width: 45vw;
    height: 45vw;
    background-color: #8b5cf6;
}
.orb-2 {
    bottom: -10%;
    right: 5%;
    width: 40vw;
    height: 40vw;
    background-color: #06b6d4;
}

/* Modal animation */
.modal-anim {
    transition: opacity 0.25s ease-in-out, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.5; box-shadow: 0 0 16px #10b981; }
    100% { transform: scale(0.95); opacity: 1; }
}

.pulse-animation {
    animation: pulse 2s infinite;
}
