* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    color: #ffffff;
}

.container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    text-align: center;
    position: relative;
}

.message {
    margin-bottom: 2rem;
}

.text {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeIn 2s ease-in forwards;
}

.no {
    font-size: 4rem;
    font-weight: bold;
    color: #ff0000;
    text-shadow: 0 0 20px #ff0000;
    opacity: 0;
    animation: glowPulse 3s ease-in-out infinite;
    animation-delay: 2s;
}

.uwu {
    font-size: 1.2rem;
    opacity: 0.7;
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    animation: floating 3s ease-in-out infinite;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glowPulse {
    0% {
        opacity: 0;
        text-shadow: 0 0 20px #ff0000;
    }
    50% {
        opacity: 1;
        text-shadow: 0 0 40px #ff0000;
    }
    100% {
        opacity: 0;
        text-shadow: 0 0 20px #ff0000;
    }
}

@keyframes floating {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
} 