/* styles.css */
@tailwind base;
@tailwind components;
@tailwind utilities;

/* Custom Utilities for Glassmorphism & Neon Effects */
@layer utilities {
    .glass-card {
        @apply bg-white/[0.03] backdrop-blur-xl border border-white/10;
        box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    }
    
    .glass-badge {
        @apply bg-white/[0.05] backdrop-blur-md;
    }

    .glass-mockup {
        @apply bg-white/[0.04] backdrop-blur-2xl;
        box-shadow: inset 0 0 10px rgba(255,255,255,0.05);
    }

    .drop-shadow-neon {
        filter: drop-shadow(0 0 8px rgba(255, 45, 117, 0.8));
    }
    
    .neon-border-bottom {
        border-bottom: 1px solid rgba(255, 45, 117, 0.2);
        box-shadow: 0 4px 30px rgba(255, 45, 117, 0.1);
    }

    .text-glow {
        text-shadow: 0 0 10px rgba(255,255,255,0.8), 0 0 20px rgba(255,45,117,0.8);
    }
}

/* Base Styles */
body {
    scrollbar-width: thin;
    scrollbar-color: #FF2D75 #0D0D0D;
}

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

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

::-webkit-scrollbar-thumb {
    background: #FF2D75;
    border-radius: 10px;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes float-alt {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(-10deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

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

.floating-anim-alt {
    animation: float-alt 8s ease-in-out infinite;
    animation-delay: 1s;
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(255, 45, 117, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(255, 45, 117, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 45, 117, 0); }
}

.btn-pulse {
    animation: pulse-glow 2s infinite;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-bg-gradient {
    background: linear-gradient(-45deg, #0D0D0D, #2B0011, #1A000A, #0D0D0D);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}

/* Specific Component Styles */
.phone-mockup {
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}

.phone-mockup:hover {
    transform: rotateY(-5deg) rotateX(2deg) scale(1.02);
}

.btn-primary {
    background: linear-gradient(135deg, #FF2D75, #FF1744);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.glow-effect {
    box-shadow: 0 0 40px rgba(255, 45, 117, 0.2), 
                inset 0 0 20px rgba(255, 45, 117, 0.1);
}

.glow-frame:hover {
    box-shadow: 0 0 40px rgba(255, 45, 117, 0.3), 
                inset 0 0 20px rgba(138, 43, 226, 0.2);
    border-color: rgba(255, 45, 117, 0.4);
}

/* Swiper Customize */
.swiper {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 50px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    filter: blur(2px) opacity(0.5) scale(0.9);
    transition: all 0.4s ease;
}

.swiper-slide-active {
    filter: blur(0) opacity(1) scale(1.05);
    z-index: 10;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.3) !important;
    opacity: 1 !important;
    width: 8px !important;
    height: 8px !important;
    transition: all 0.3s ease !important;
}

.swiper-pagination-bullet-active {
    background: #FF2D75 !important;
    width: 24px !important;
    border-radius: 4px !important;
    box-shadow: 0 0 10px rgba(255,45,117,0.8);
}

/* Particles Canvas */
#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

/* Initial state for GSAP Reveal */
.gs-reveal {
    opacity: 0;
    visibility: hidden;
}
