/* Reset y Bases */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0a0a0c; /* Negro casi total */
    color: #e0e0e0;
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

.container {
    max-width: 800px;
    width: 90%;
    text-align: center;
}

/* Tipografía y Logo */
.logo {
    font-family: 'Fira Code', monospace;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -2px;
    color: #00ff41; /* Verde Matrix/Terminal */
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.1rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 4px;
}

/* Tarjeta de Estado */
.status-card {
    background: #141417;
    border: 1px solid #222;
    padding: 2rem;
    margin-top: 3rem;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1rem;
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
    color: #00ff41;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: #00ff41;
    border-radius: 50%;
}

.blinking {
    animation: blinker 1.5s linear infinite;
}

.description {
    line-height: 1.6;
    color: #b0b0b0;
    text-align: justify;
}

.highlight {
    color: #00ff41;
    font-weight: bold;
}

/* Animaciones */
@keyframes blinker {
    50% { opacity: 0; }
}

.footer {
    margin-top: 4rem;
    font-size: 0.8rem;
    color: #444;
}

/* Responsivo */
@media (max-width: 600px) {
    .logo { font-size: 2rem; }
}