/* Landing Page Custom Styles */

:root {
    --primary-glow: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
}

body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

.font-outfit {
    font-family: 'Outfit', sans-serif;
}

/* Custom Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes pulseSlow {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.animate-pulse-slow {
    animation: pulseSlow 6s infinite ease-in-out;
}

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

/* 3D Transform Utilities */
.perspective-1000 {
    perspective: 1000px;
}

.rotate-x-12 {
    transform: rotateX(12deg);
    transition: transform 0.5s ease;
}

.rotate-x-12:hover {
    transform: rotateX(0deg) scale(1.02);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #111827;
}

::-webkit-scrollbar-thumb {
    background: #374151;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4B5563;
}

/* Canvas Container */
#canvas-container {
    opacity: 0.6;
}

/* Selection Color */
::selection {
    background: rgba(99, 102, 241, 0.3);
    color: white;
}