:root {
    --primary-color: #f39c12; /* Naranja industrial */
    --secondary-color: #2c3e50; /* Azul oscuro/gris */
    --accent-color: #e74c3c; /* Rojo de advertencia */
    --text-light: #ecf0f1;
    --bg-dark: #0a0a0a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    background-image: url('assets/background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-light);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(44, 62, 80, 0.7) 100%);
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 90%;
    text-align: center;
    padding: 40px;
    border-left: 4px solid var(--primary-color);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
}

header .logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 5px;
    margin-bottom: 40px;
}

header .logo span {
    color: var(--primary-color);
}

.content h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.divider {
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 20px auto;
}

.description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #bdc3c7;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: rgba(243, 156, 18, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--primary-color);
}

.dot {
    height: 10px;
    width: 10px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(243, 156, 18, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(243, 156, 18, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(243, 156, 18, 0); }
}

footer {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    font-size: 0.85rem;
    color: #7f8c8d;
}

footer a {
    color: var(--primary-color);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .content h1 { font-size: 2.5rem; }
    .container { padding: 20px; }
    footer { flex-direction: column; align-items: center; gap: 10px; }
}
