:root {
    --color-bg: #000000;
    --color-text: #F8F8F8;
    --color-cyan: #00FFFF;
    --color-magenta: #FF00FF;
    --color-yellow: #FFFF00;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden; 
    cursor: none;
}

#noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(90deg, #111 0, #111 1px, transparent 1px, transparent 2px);
    opacity: 0.05; 
    pointer-events: none; 
    animation: slow-noise 10s infinite alternate; 
}

@keyframes slow-noise {
    from { transform: translate(0, 0); }
    to { transform: translate(10px, 10px); }
}

.container {
    width: 90%;
    max-width: 1000px;
    padding: 20px;
    text-align: center;
    position: relative;
    z-index: 10;
}

header {
    position: absolute;
    top: 20px;
    left: 20px;
    text-align: left;
    line-height: 1.5;
}

.status {
    font-size: 0.8em;
    opacity: 0.7;
}

.title {
    font-size: 3em;
    color: var(--color-cyan);
    margin-bottom: 5px;
    text-shadow: 2px 2px var(--color-magenta);
}

.subtitle {
    font-size: 1.2em;
    color: var(--color-magenta);
    margin-bottom: 50px;
}

#bogota-temp {
    font-size: 1.5em;
    color: var(--color-yellow); 
    margin-top: 20px;
    letter-spacing: 2px;
    animation: blink-error 2s infinite step-end; 
}

@keyframes blink-error {
    50% { opacity: 0.8; color: var(--color-magenta); }
}

#data-graph {
    width: 100%;
    height: 400px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 40px auto;
}

.data-point {
    position: absolute;
    width: 10px;
    height: 10px;
    transition: transform 0.1s ease-out; 
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5); 
}

.point-cyan { background-color: var(--color-cyan); }
.point-magenta { background-color: var(--color-magenta); }

.neon-link {
    display: block;
    margin-top: 50px;
    font-size: 1.5em;
    color: var(--color-yellow);
    text-decoration: none;
    border: 1px solid var(--color-yellow);
    padding: 10px 20px;
    display: inline-block;
    animation: neon-pulse 3s infinite alternate; 
}

@keyframes neon-pulse {
    from { opacity: 1; box-shadow: 0 0 5px var(--color-yellow), 0 0 10px var(--color-yellow); }
    to { opacity: 0.8; box-shadow: none; }
}

#controls-guide {
    position: fixed;
    bottom: 20px;
    left: 20px;
    text-align: left;
    font-size: 0.75em;
    line-height: 1.4;
    color: var(--color-cyan);
    border: 1px dashed rgba(0, 255, 255, 0.3);
    padding: 10px;
}

/* Estilos nucleo.html */
.clean-body {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.container-nucleo {
    padding: 50px;
    border: 1px solid var(--color-cyan);
    max-width: 700px;
}

.nucleo-title {
    font-size: 2em;
    color: var(--color-cyan);
    text-shadow: none;
    margin-bottom: 40px;
}

.nucleo-content {
    font-size: 1.6em;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 50px;
    padding: 0 20px;
}

.nucleo-footer {
    font-size: 0.9em;
    opacity: 0.5;
    margin-bottom: 30px;
}

.link-back {
    animation: none !important; 
}