* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

body {
    height: 100vh;
    background: #050509;
    color: #ffffff;
    overflow: hidden;
}

/* Fundo animado */
.background {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #1a1a2e, #050509);
    animation: pulse 6s ease-in-out infinite;
    z-index: -1;
}

@keyframes pulse {
    0% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
    100% { filter: brightness(1); }
}

/* Conteúdo */
.container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

/* Logo */
.logo {
    font-size: 3.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0% { text-shadow: 0 0 10px #6c63ff; }
    50% { text-shadow: 0 0 30px #6c63ff; }
    100% { text-shadow: 0 0 10px #6c63ff; }
}

/* Subtitulo */
.subtitle {
    margin-top: 15px;
    font-size: 1.5rem;
    color: #b8b8ff;
    min-height: 2rem;
}

/* Texto */
.description {
    margin-top: 25px;
    font-size: 1.1rem;
    opacity: 0;
    animation: fadeIn 2s ease forwards;
    animation-delay: 2.5s;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Status */
.status {
    margin-top: 30px;
    padding: 10px 20px;
    border: 1px solid #6c63ff;
    border-radius: 30px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    animation: float 4s ease-in-out infinite;
}

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