@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #FF1493, #FFD700);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #FF69B4, #FFA500);
}

.screenshot-container {
    animation: float 6s ease-in-out infinite;
}

.screenshot-container:nth-child(2) {
    animation-delay: -2s;
}

.screenshot-container:nth-child(3) {
    animation-delay: -4s;
}

.screenshot-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #FF1493, #FFD700, #4169E1, #8B4B8C);
    border-radius: 1rem;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.screenshot-container:hover::before {
    opacity: 0.7;
}

@keyframes screenshot-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 20, 147, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    }
}

.screenshot-container:hover {
    animation: screenshot-glow 2s ease-in-out infinite;
}

@media (max-width: 768px) {
    .text-6xl {
        font-size: 3rem;
    }
    .text-4xl {
        font-size: 2rem;
    }
    .text-2xl {
        font-size: 1.25rem;
    }
    .text-xl {
        font-size: 1rem;
    }
    .text-lg {
        font-size: 0.875rem;
    }
    .text-base {
        font-size: 0.75rem;
    }
    .text-sm {
        font-size: 0.625rem;
    }
    .text-xs {
        font-size: 0.5rem;
    }
    
    .screenshot-container {
        margin-bottom: 2rem;
    }
}

@media (max-width: 400px) {
    .text-6xl {
        font-size: 2rem;
        line-height: 1.1;
    }
    .text-4xl {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    .text-3xl {
        font-size: 1.25rem;
        line-height: 1.2;
    }
    .text-2xl {
        font-size: 1rem;
        line-height: 1.3;
    }
    .text-xl {
        font-size: 0.875rem;
        line-height: 1.3;
    }
    .text-lg {
        font-size: 0.75rem;
        line-height: 1.4;
    }
    
    nav .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }
    
    nav .text-2xl {
        font-size: 1.125rem;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .py-16 {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .py-8 {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    .mb-6 {
        margin-bottom: 1rem;
    }
    
    .mb-8 {
        margin-bottom: 1.5rem;
    }
    
    .mb-12 {
        margin-bottom: 2rem;
    }
    
    .gap-12 {
        gap: 1.5rem;
    }
    
    .gap-8 {
        gap: 1rem;
    }
}

@media (max-width: 390px) and (min-aspect-ratio: 2/1) {
    .text-6xl {
        font-size: 1.75rem;
        line-height: 1.1;
    }
    
    .text-4xl {
        font-size: 1.25rem;
        line-height: 1.2;
    }
    
    nav .container {
        padding: 0.5rem 0.75rem;
    }
    
    nav .text-2xl {
        font-size: 1rem;
    }
    
    .pt-24 {
        padding-top: 4rem;
    }
    
    .py-16 {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
}