/* Custom styles */
body {
    font-family: 'Inter', sans-serif;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><text y="16" font-size="16">🌴</text></svg>'), auto;
}

.font-comfortaa {
    font-family: 'Comfortaa', cursive;
}

.font-inter {
    font-family: 'Inter', sans-serif;
}

/* Floating background elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.float-1, .float-2, .float-3, .float-4, .float-5 {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-family: 'Courier New', monospace;
    font-weight: bold;
    animation: float 20s infinite linear;
}

.float-1 {
    top: 10%;
    left: 10%;
    font-size: 2rem;
    animation-delay: 0s;
}

.float-2 {
    top: 30%;
    right: 15%;
    font-size: 1.5rem;
    animation-delay: -5s;
}

.float-3 {
    bottom: 40%;
    left: 20%;
    font-size: 1.8rem;
    animation-delay: -10s;
}

.float-4 {
    top: 60%;
    right: 30%;
    font-size: 1.2rem;
    animation-delay: -15s;
}

.float-5 {
    bottom: 20%;
    right: 10%;
    font-size: 1.4rem;
    animation-delay: -7s;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.1;
    }
    90% {
        opacity: 0.1;
    }
    100% {
        transform: translateY(-20px) rotate(5deg);
        opacity: 0;
    }
}

/* Wave animations */
.wave-1, .wave-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 100% 100% 0 0;
    animation: wave 8s ease-in-out infinite;
}

.wave-2 {
    animation-delay: -4s;
    opacity: 0.5;
    height: 80px;
}

@keyframes wave {
    0%, 100% {
        transform: translateX(-25%) scaleX(1);
    }
    50% {
        transform: translateX(25%) scaleX(1.1);
    }
}

/* Sun animation */
.sun {
    position: absolute;
    top: 10%;
    right: 10%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, #FFD700, #FFA500);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
    opacity: 0.8;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.6;
    }
}

/* Custom slider styling */
.slider::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(45deg, #FF6B6B, #FFE66D);
    cursor: pointer;
    border: 3px solid white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(45deg, #FF6B6B, #FFE66D);
    cursor: pointer;
    border: 3px solid white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Scrollbar styling for favorites */
.max-h-64::-webkit-scrollbar {
    width: 6px;
}

.max-h-64::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.max-h-64::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #FF6B6B, #FFE66D);
    border-radius: 10px;
}

.max-h-64::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #FF5252, #FFEB3B);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .sun {
        width: 60px;
        height: 60px;
        top: 5%;
        right: 5%;
    }
    
    .float-1, .float-2, .float-3, .float-4, .float-5 {
        font-size: 1rem;
    }
    
    .wave-1, .wave-2 {
        height: 60px;
    }
    
    .wave-2 {
        height: 50px;
    }
}

/* Button hover effects */
button:hover {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><text y="16" font-size="16">🚀</text></svg>'), pointer;
}

/* Notification animation */
@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0,0,0);
    }
    40%, 43% {
        transform: translate3d(0, -30px, 0);
    }
    70% {
        transform: translate3d(0, -15px, 0);
    }
    90% {
        transform: translate3d(0, -4px, 0);
    }
}

.animate-bounce {
    animation: bounce 1s ease infinite;
}