html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: #050505;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #e2e8f0;
    overflow-x: hidden;
}

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

.glass {
    background: rgba(255, 255, 255, 0.03);
    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.1);
}

.glass:hover {
    border-color: rgba(139, 92, 246, 0.3);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.15);
}

.glass-nav {
    background: rgba(5, 5, 5, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.text-gradient {
    background: linear-gradient(135deg, #a78bfa 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-hover:hover {
    background: linear-gradient(135deg, #c4b5fd 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes blob {
    0% {
        transform: translate(0px, 0px) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }

    100% {
        transform: translate(0px, 0px) scale(1);
    }
}

@keyframes float-logo {

    0%,
    100% {
        transform: translateY(0px);
        filter: drop-shadow(0 0 15px rgba(50, 100, 255, 0.5));
    }

    50% {
        transform: translateY(-12px);
        filter: drop-shadow(0 0 20px rgba(60, 130, 255, 0.8)) drop-shadow(0 0 40px rgba(30, 60, 200, 0.6));
    }
}

.animate-blob {
    animation: blob 7s infinite;
}

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

.animation-delay-2000 {
    animation-delay: 2s;
}

.animation-delay-4000 {
    animation-delay: 4s;
}

.lang-hidden {
    display: none !important;
}

::-webkit-scrollbar {
    width: 8px;
}

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

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

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

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.scroll-snap-x {
    scroll-snap-type: x mandatory;
}

.scroll-snap-center {
    scroll-snap-align: center;
}

.carousel-card {
    width: 100%;
    flex: 0 0 100%;
}

@media (min-width: 768px) {
    .carousel-card {
        width: calc((100% - 4rem) / 3);
        flex: 0 0 calc((100% - 4rem) / 3);
    }
}