/* CONFIGURACIÓN DE LOS 3 TEMAS REQUERIDOS (Por defecto Obscuro) */
:root {
    --bg-principal: #0d1117;
    --bg-tarjetas: #161b22;
    --texto-principal: #c9d1d9;
    --texto-secundario: #8b949e;
    --color-acento: #58a6ff;
}
[data-theme="claro"] {
    --bg-principal: #ffffff;
    --bg-tarjetas: #f7f9fa;
    --texto-principal: #1a1a1a;
    --texto-secundario: #555555;
    --color-acento: #007bff;
}
[data-theme="semiobscuro"] {
    --bg-principal: #2d3238;
    --bg-tarjetas: #3f474f;
    --texto-principal: #e1e4e8;
    --texto-secundario: #959da5;
    --color-acento: #ffab70;
}
[data-theme="obscuro"] {
    --bg-principal: #0d1117;
    --bg-tarjetas: #161b22;
    --texto-principal: #c9d1d9;
    --texto-secundario: #8b949e;
    --color-acento: #58a6ff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-principal);
    color: var(--texto-principal);
    margin: 0;
    padding: 20px;
    transition: background-color 0.2s, color 0.2s;
}
.contenedor { max-width: 850px; margin: 0 auto; }
header { text-align: center; margin-bottom: 25px; }
header h1 { color: var(--color-acento); }

.panel-controles {
    background-color: var(--bg-tarjetas);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}
.control-grupo { display: flex; flex-direction: column; gap: 5px; }
label { font-weight: bold; font-size: 0.9rem; color: var(--texto-secundario); }
select, input[type="range"], button {
    padding: 10px; border-radius: 5px; border: 1px solid var(--texto-secundario);
    background-color: var(--bg-principal); color: var(--texto-principal); font-size: 1rem;
}

.pantalla-lectura {
    background-color: var(--bg-tarjetas);
    padding: 35px; border-radius: 8px; margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.articulo-texto { line-height: 1.7; text-align: justify; font-size: 18px; }

/* CLASE ANTITRAMPA: DIFUMINADO DE TEXTO */
.texto-protegido {
    filter: blur(12px);
    user-select: none;
    pointer-events: none;
    transition: filter 0.3s ease;
}

.seccion-cronometro { background-color: var(--bg-tarjetas); padding: 25px; border-radius: 8px; text-align: center; }
.botones-crono { display: flex; justify-content: center; gap: 15px; margin-bottom: 15px; }
button { cursor: pointer; font-weight: bold; padding: 12px 25px; }
button:disabled { opacity: 0.3; cursor: not-allowed; }
.btn-inicio { background-color: #28a745; color: white; border: none; }
.btn-detener { background-color: #dc3545; color: white; border: none; }

.recuadro-tiempo {
    font-size: 1.8rem; font-family: monospace; margin: 10px 0; padding: 10px 20px;
    background-color: var(--bg-principal); border-radius: 5px; display: inline-block;
    border: 1px solid var(--texto-secundario);
}
.resultado-error { color: #dc3545; font-size: 1.2rem; font-weight: bold; margin-top: 15px; }
.oculto { display: none !important; }
.enlace-admin { text-align: center; margin-top: 20px; }
.enlace-admin a { color: var(--color-acento); text-decoration: none; font-weight: bold; }
