body { 
    font-family: 'Inter', sans-serif;
    background: red !important;
    min-height: 100vh;
    position: relative;
}

.hero-bg {
    background-image: url('assets/background.jpg');
    background-size: cover;
    background-position: 10% 45%;
    background-repeat: no-repeat;
    filter: sepia(20%) saturate(120%) brightness(80%) contrast(90%) hue-rotate(-10deg);
    /* Enlarged background for negative parallax */
    height: 120vh;
    top: -10vh;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.phone-shadow {
    box-shadow: 
        0 0 0 8px #333,
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 50px 100px rgba(0, 0, 0, 0.2),
        0 0 120px rgba(0, 0, 0, 0.15),
        0 0 200px rgba(0, 0, 0, 0.08);
}

.w-10 {
    transition: all 0.2s ease;
}

#sliderHandle:hover .w-10 {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

#sliderHandle.dragging .w-10 {
    transform: translate(-50%, -50%) scale(0.95);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.6);
}

#sliderHandle {
    transition: opacity 0.2s ease;
}

/* Cosmic dust drift animations */
@keyframes drift-slow {
    0% { transform: translate(0, 0) scale(1); opacity: 0.2; }
    25% { transform: translate(10px, -15px) scale(1.2); opacity: 0.4; }
    50% { transform: translate(-5px, -30px) scale(0.8); opacity: 0.6; }
    75% { transform: translate(15px, -45px) scale(1.1); opacity: 0.3; }
    100% { transform: translate(-8px, -60px) scale(1); opacity: 0.2; }
}

@keyframes drift-medium {
    0% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    33% { transform: translate(-12px, -20px) scale(1.3); opacity: 0.5; }
    66% { transform: translate(8px, -40px) scale(0.7); opacity: 0.4; }
    100% { transform: translate(-6px, -60px) scale(1); opacity: 0.3; }
}

@keyframes drift-fast {
    0% { transform: translate(0, 0) scale(1); opacity: 0.4; }
    50% { transform: translate(20px, -35px) scale(1.4); opacity: 0.6; }
    100% { transform: translate(-10px, -70px) scale(1); opacity: 0.4; }
}

.animate-drift-slow {
    animation: drift-slow 12s ease-in-out infinite;
}

.animate-drift-medium {
    animation: drift-medium 8s ease-in-out infinite;
}

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

/* Storytelling Steps Styles */
.storytelling-step {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.story-content {
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.story-content.fade-out {
    opacity: 0.3;
    transform: translateY(-20px);
}

/* Smaller phone shadow for storytelling */
.phone-shadow-small {
    box-shadow: 
        0 0 0 6px #333,
        0 15px 30px rgba(0, 0, 0, 0.2),
        0 30px 60px rgba(0, 0, 0, 0.15),
        0 0 80px rgba(0, 0, 0, 0.1),
        0 0 120px rgba(0, 0, 0, 0.05);
}

/* Parallax elements */
.parallax-phone,
.parallax-text {
    transition: transform 0.1s ease-out;
}

/* Responsive adjustments for storytelling */
@media (max-width: 1024px) {
    .storytelling-step h3 {
        font-size: 2.5rem !important;
    }
    
    .storytelling-step p {
        font-size: 1rem;
    }
    
    .parallax-phone,
    .parallax-text {
        transform: none !important;
    }
}

@media (max-width: 768px) {
    .storytelling-step .grid {
        gap: 2rem !important;
    }
    
    .storytelling-step h3 {
        font-size: 2rem !important;
        text-align: center !important;
    }
    
    .storytelling-step p {
        text-align: center !important;
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .storytelling-step .order-1,
    .storytelling-step .order-2 {
        order: 0 !important;
    }
    
    .storytelling-step .lg\:text-left {
        text-align: center !important;
    }
}