body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    @apply bg-slate-950 text-slate-200 antialiased;
}

/* Custom Utilities */
.mask-linear-fade {
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.glass-nav {
    @apply backdrop-blur-md bg-slate-950/80 border-b border-white/5;
}

.text-gradient {
    @apply text-transparent bg-clip-text bg-gradient-to-r from-teal-400 to-cyan-300;
    -webkit-background-clip: text;
    background-clip: text;
}

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

::-webkit-scrollbar-track {
    @apply bg-slate-950;
}

::-webkit-scrollbar-thumb {
    @apply bg-slate-800 rounded-full hover:bg-slate-700;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes gradient-flow {
    0% {
        background-position: 0% 50%;
    }

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

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

.animate-gradient-x {
    background-size: 200% auto;
    animation: gradient-flow 5s linear infinite;
}

/* Swiper Pagination Customization */
.swiper-pagination-bullet {
    @apply bg-slate-700 opacity-50 transition-all duration-300;
}

.swiper-pagination-bullet-active {
    @apply w-8 rounded-full bg-teal-400 opacity-100;
}

.h-30 {
    height: 30rem;
}

.h-40 {
    height: 40rem;
}