body {
    /* background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 50%, #0f0f23 100%); */
    background: #0a0b0b;
    min-height: 100vh;
}

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

.glow {
    /* box-shadow: 0 0 20px rgba(241, 99, 144, 0.3); */
    box-shadow: 0 0 20px rgba(255, 45, 85, 0);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

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