/* Custom Utilities */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #0B0B0B;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0B0B0B;
}

::-webkit-scrollbar-thumb {
    background: #1E73BE;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #D94B8C;
}

/* Glassmorphism Classes */
.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.glass-card:hover {
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 8px 32px 0 rgba(255, 215, 0, 0.1);
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

/* Gradient Text Setup */
.text-gradient-gold {
    background: linear-gradient(to right, #FFD700, #FCEABB);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-primary {
    background: linear-gradient(to right, #D94B8C, #1E73BE);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hide scrollbar for slider */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Additional Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-pulse-slow {
    animation: pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* 3D Canvas Styling */
#three-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

/* Phone Mockup Specific */
.perspective-1000 {
    perspective: 1000px;
}

.rotate-y-\[-15deg\] {
    transform: rotateY(-15deg);
}

.rotate-x-\[5deg\] {
    transform: rotateX(5deg);
}

.hover\:rotate-y-\[0deg\]:hover {
    transform: rotateY(0deg);
}

.hover\:rotate-x-\[0deg\]:hover {
    transform: rotateX(0deg);
}

/* Timeline Styles (For How It Works) */
.timeline-step {
    position: relative;
}

.timeline-step::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 50px;
    bottom: -50px;
    width: 2px;
    background: linear-gradient(to bottom, #1E73BE, transparent);
    z-index: 0;
}

.timeline-step:last-child::before {
    display: none;
}