:root {
    --bg-color: #0a0a0a;
    --accent-color: #00ff41;
    --text-main: #ffffff;
    --text-dim: #888888;
    --terminal-bg: #111111;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    font-family: 'Segoe UI', Roboto, sans-serif;
    color: var(--text-main);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Efecto de resplandor de fondo */
.background-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 10%, rgba(0, 255, 65, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 90% 90%, rgba(0, 255, 65, 0.05) 0%, transparent 50%);
    z-index: -1;
}

.container {
    text-align: center;
    max-width: 600px;
    padding: 20px;
}

.status-bar {
    font-family: monospace;
    font-size: 0.8rem;
    color: var(--accent-color);
    letter-spacing: 2px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-color);
    animation: pulse 1.5s infinite;
}

.logo {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 15px rgba(0, 255, 65, 0.3));
}

h1 {
    font-size: 3rem;
    letter-spacing: 5px;
    margin-bottom: 1rem;
}

.highlight {
    color: var(--accent-color);
}

p {
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

/* Estilos de la Terminal */
.terminal {
    background: var(--terminal-bg);
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    text-align: left;
}

.terminal-header {
    background: #1a1a1a;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.red { background: #ff5f56; }
.yellow { background: #ffbd2e; }
.green { background: #27c93f; }

.terminal-title {
    margin-left: 10px;
    font-size: 0.7rem;
    color: #666;
    font-family: monospace;
}

.terminal-body {
    padding: 20px;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.9rem;
    color: var(--accent-color);
    line-height: 1.5;
}

.prompt { color: #888; }
.success { color: #fff; }

.cursor {
    display: inline-block;
    width: 8px;
    height: 15px;
    background: var(--accent-color);
    margin-left: 5px;
    animation: blink 1s infinite;
    vertical-align: middle;
}

footer {
    margin-top: 3rem;
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: #333;
}

/* Animaciones */
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}