/* Reset de Estilos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: #0b0c10;
    color: #e5e5e5;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* Efecto de Fondo Cuántico / Gradiente Premium */
.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 30%, #1f2833 0%, #0b0c10 70%);
    z-index: 1;
}

.background-overlay::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(102, 252, 241, 0.03) 0%, transparent 60%);
    animation: rotateBackground 20s linear infinite;
    z-index: 2;
}

@keyframes rotateBackground {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Contenedor Principal */
.container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 600px;
    padding: 2.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 80vh;
}

/* Header & Logo */
header {
    margin-bottom: 2rem;
}

.logo {
    max-width: 120px;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(102, 252, 241, 0.2));
    border-radius: 20px;
}

.logo-text {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 6px;
    background: linear-gradient(90deg, #66fcf1, #45a29e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(102, 252, 241, 0.1);
}

/* Contenido Principal */
.content {
    margin: auto 0;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(102, 252, 241, 0.07);
    border: 1px solid rgba(102, 252, 241, 0.2);
    color: #66fcf1;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 99px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.title {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
}

.subtitle {
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.7;
    color: #c5c6c7;
    margin-bottom: 2.5rem;
}

/* Caja de Estado / Procesando */
.status-box {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 24px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #66fcf1;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 10px #66fcf1;
}

.status-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #66fcf1;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

.status-text {
    font-size: 0.9rem;
    font-weight: 400;
    color: #c5c6c7;
    letter-spacing: 0.5px;
}

/* Footer */
footer {
    margin-top: 2rem;
}

.footer-text {
    font-size: 0.8rem;
    color: #45a29e;
    letter-spacing: 1px;
}

/* Animaciones */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards ease-out;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

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

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media Queries para Móviles */
@media (max-width: 480px) {
    .container {
        padding: 1.5rem;
    }
    .title {
        font-size: 2.2rem;
    }
    .subtitle {
        font-size: 1rem;
    }
}
