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

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

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

.perspective-1000 {
    perspective: 1000px;
}

.glass-panel {
    background: rgba(24, 24, 27, 0.6);
    /* Zinc 900 with opacity */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.gradient-text {
    background: linear-gradient(135deg, #f4f4f5, #a1a1aa);
    /* Metallic Silver */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text-accent {
    background: linear-gradient(135deg, #056EE9, #0456ba);
    /* Industrial Blue */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

::-webkit-scrollbar-track {
    background: #0f172a;
}

::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #475569;
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(10deg);
    }

    50% {
        transform: translateY(-20px) rotate(12deg);
    }
}

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

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.animate-spin-slow {
    animation: spin-slow 20s linear infinite;
}

@keyframes slide-bg {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 50px 0;
    }
}

.animate-slide-bg {
    animation: slide-bg 2s linear infinite;
}

.transform-style-3d {
    transform-style: preserve-3d;
}

.mask-image-grunge {
    -webkit-mask-image: url('https://www.transparenttextures.com/patterns/grunge-wall.png');
    mask-image: url('https://www.transparenttextures.com/patterns/grunge-wall.png');
    -webkit-mask-size: cover;
    mask-size: cover;
}

/* Integration Animations */
@keyframes flow {
    0% {
        stroke-dashoffset: 100;
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        stroke-dashoffset: 0;
        opacity: 0;
    }
}

.animate-flow {
    animation: flow 2s linear infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.animate-pulse-ring {
    animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.glow-blue {
    box-shadow: 0 0 15px rgba(5, 110, 233, 0.4);
}

.glow-purple {
    box-shadow: 0 0 15px rgba(147, 51, 234, 0.4);
}

.glow-black {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

@keyframes spin-reverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

.animate-spin-reverse-slow {
    animation: spin-reverse 20s linear infinite;
}

.glow-purple {
    box-shadow: 0 0 15px rgba(147, 51, 234, 0.4);
}

.glow-black {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}