:root {
  --bg-color: #0b0b0f;
  --panel-bg: #141419;
  --accent-color: #00ffcc;
  --accent-color-alpha: rgba(0, 255, 204, 0.1);
  --accent-glow: rgba(0, 255, 204, 0.3);
  --text-color: #ffffff;
}

body {
  background-color: var(--bg-color, #0b0b0f);
  background-image: none;
  background-attachment: fixed;
  color: var(--text-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  font-family: 'Orbitron', 'Space Grotesk', sans-serif;
  letter-spacing: 1px;
  overflow: hidden;
  transition: background 0.5s ease, background-color 0.5s ease, background-image 0.5s ease;
}

button, input, select, textarea, kbd, .btn, .hub-btn-text, .help-section-title, .octave-display {
  font-family: 'Orbitron', 'Space Grotesk', sans-serif;
  letter-spacing: 1px;
}

/* --- ICONO DE ECO ANIMADO (CORREGIDO) --- */
.eco-badge {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-weight: 800;
  letter-spacing: 0.5px;
  font-size: 1.5rem;
}

#hub-points {
  color: var(--accent-color);
  text-shadow: 0 0 8px var(--accent-glow);
}

.eco-icon {
  width: 22px;
  height: 22px;
  display: inline-block;
  transform: scale(1.5); /* Escala base unificada con el frame inicial */
  transform-origin: center;
  object-fit: contain;
  filter: drop-shadow(0 0 5px var(--accent-color));
  animation: ecoPulse 2s infinite ease-in-out;
}

@keyframes ecoPulse {
  0%, 100% { filter: drop-shadow(0 0 3px var(--accent-color)); transform: scale(1.5); }
  50% { filter: drop-shadow(0 0 8px var(--accent-color)); transform: scale(1.9); }
}

/* --- HUB PRINCIPAL --- */
.hub-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 700px;
  width: 90%;
  animation: fadeIn 0.4s ease;
}

.hub-title {
  font-size: 2.8rem;
  margin: 0 0 10px 0;
  color: var(--accent-color);
  text-shadow: 0 0 10px var(--accent-glow), 0 0 20px rgba(0, 0, 0, 0.6);
  font-weight: 800;
  letter-spacing: 2px;
  transition: color 0.3s ease, filter 0.3s ease, text-shadow 0.3s ease;
}

.hub-subtitle {
  color: #ffffff;
  font-size: 1.15rem;
  margin: 0 0 35px 0;
  font-weight: 500;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.hub-stats {
  position: absolute;
  top: 25px;
  right: 25px;
  background: rgba(255, 255, 255, 0.03);
  padding: 10px 22px;
  border-radius: 30px;
  border: 1px solid var(--accent-color);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 10px var(--accent-glow);
  z-index: 100;
  display: flex;
  align-items: center;
  margin: 18px;
}

.hub-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .hub-buttons { grid-template-columns: repeat(2, 1fr); }
}

.hub-btn {
  background: rgba(15, 15, 20, 0.4); 
  border: 1px solid rgba(255, 255, 255, 0.12); 
  color: #fff;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 20px 15px;
  height: 200px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.hub-btn:hover {
  background: rgba(15, 15, 20, 0.7);
  border-color: var(--btn-glow, var(--accent-color));
  box-shadow: 0 0 20px var(--btn-glow, var(--accent-color));
  transform: translateY(-4px);
}

.hub-btn-img-wrapper {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hub-btn-img {
  max-width: 80px;
  max-height: 80px;
  object-fit: contain;
  z-index: 2;
  filter: grayscale(100%) brightness(1.1) opacity(0.75);
  transition: all 0.25s ease;
}

.hub-btn:hover .hub-btn-img {
  filter: brightness(0) invert(1) drop-shadow(0 0 12px var(--btn-glow, var(--accent-color))) opacity(1);
}

.hub-btn-placeholder-art {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--btn-glow, var(--accent-color)) 0%, transparent 70%);
  opacity: 0.2;
  filter: blur(4px);
  transition: all 0.25s ease;
  z-index: 1;
}

.hub-btn:hover .hub-btn-placeholder-art {
  opacity: 0.45;
  transform: scale(2);
}

.hub-btn-text {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #e2e8f0; 
  text-align: center;
  margin-top: 10px;
  transition: color 0.3s ease;
}

/* --- BOTÓN DE RETORNO --- */
.back-button {
  position: absolute;
  top: 25px;
  left: 25px;
  display: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--accent-color);
  color: #fff;
  padding: 10px 18px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
  z-index: 100;
}

.back-button:hover {
  background: #ff3b30;
  color: #fff;
  border-color: #ff3b30;
  box-shadow: 0 0 15px rgba(255, 59, 48, 0.4);
}

/* --- ENTORNO DE JUEGO --- */
.game-container {
  display: none;
  flex-direction: column;
  align-items: center;
  animation: fadeIn 0.4s ease;
}

.header-area {
  height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  width: 100%;
}

.octave-display {
  background-color: var(--panel-bg);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
  border: 1px solid var(--accent-color);
  box-shadow: 0 4px 15px var(--accent-glow);
  color: var(--accent-color);
}

.piano {
  display: flex;
  background-color: #050507;
  padding: 25px 20px 15px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 50px rgba(0,0,0,0.9);
  position: relative;
}

.piano.dark-mode .key {
  background-color: #000000 !important;
  border-color: #111 !important;
  box-shadow: none !important;
}

.piano.dark-mode .key span { opacity: 0 !important; }

.piano.dark-mode .key.revealed {
  background-color: #fcfcfc !important;
  border-color: #ccc !important;
  box-shadow: inset 0 0 8px #fff, 0 4px 4px rgba(0,0,0,0.2) !important;
}

.piano.dark-mode .key.black.revealed {
  background-color: #1a1a1a !important;
  border-color: #000 !important;
  margin-left: -18px !important;
  margin-right: -18px !important;
  z-index: 2 !important;
}

.key {
  position: relative;
  cursor: pointer;
  user-select: none;
  transform-origin: top;
  transition: background-color 0.1s, transform 0.05s, box-shadow 0.1s;
}

.white {
  width: 60px;
  height: 240px;
  background-color: #fcfcfc;
  border: 1px solid #ccc;
  border-radius: 0 0 6px 6px;
  z-index: 1;
  box-shadow: inset 0 0 8px #fff, 0 4px 4px rgba(0,0,0,0.2);
}

.piano:not(.dark-mode) .white.active {
  background-color: var(--active-color, #00ffcc);
  transform: translateY(3px);
  box-shadow: inset 0 4px 6px rgba(0,0,0,0.15), 0 0 20px var(--active-color, rgba(0, 255, 204, 0.5));
}

.black {
  width: 36px;
  height: 140px;
  background-color: #1a1a1a;
  border: 1px solid #000;
  border-radius: 0 0 4px 4px;
  margin-left: -18px;
  margin-right: -18px;
  z-index: 2;
  box-shadow: inset 0px -6px 0px #2a2a2a, 0 6px 6px rgba(0,0,0,0.4);
}

.piano:not(.dark-mode) .black.active {
  background-color: var(--active-color, #1a1a1a) !important;
  filter: brightness(0.4) contrast(1.1);
  height: 138px;
  transform: translateY(2px);
  box-shadow: inset 0px -2px 0px #111, 0 3px 3px rgba(0,0,0,0.5), 0 0 20px var(--active-color, rgba(0, 255, 204, 0.3));
  z-index: 3;
}

.key span {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  font-weight: bold;
  color: #888;
  pointer-events: none;
}

.black span { bottom: 10px; color: #666; font-size: 11px; }

/* --- TIENDA DE ASPECTOS (CON SCROLLBARS UNIFICADOS) --- */
.store-container {
  display: none;
  flex-direction: column;
  align-items: center;
  width: 90%;
  max-width: 1000px;
  max-height: 72vh;
  margin-top: 95px;
  overflow-y: auto;
  padding-right: 45px;
  box-sizing: border-box;
  animation: fadeIn 0.4s ease;
}

.store-container::-webkit-scrollbar, .help-container::-webkit-scrollbar {
  width: 8px;
}
.store-container::-webkit-scrollbar-track, .help-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
}
.store-container::-webkit-scrollbar-thumb, .help-container::-webkit-scrollbar-thumb {
  background: var(--accent-color);
  border-radius: 10px;
  box-shadow: 0 0 10px var(--accent-glow);
}

.store-title {
  font-size: 2.8rem;
  margin: 0;
  font-weight: 800;
  color: var(--accent-color);
  text-shadow: 0 0 10px var(--accent-glow);
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  width: 100%;
  margin-top: 30px;
  padding-bottom: 30px;
}

@media (max-width: 768px) {
  .store-grid { grid-template-columns: 1fr; }
}

.skin-card {
  background: #121217;
  border: 1px solid var(--accent-color);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  position: relative;
  transition: border-color 0.35s ease, transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease, filter 0.35s ease;
}

.skin-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6), 0 0 15px var(--accent-glow);
  z-index: 100;
}

.skin-card.locked {
  filter: brightness(0.7) grayscale(0.25);
  border-color: rgba(255, 255, 255, 0.04);
}

.skin-preview-hover {
  position: absolute;
  top: 0;
  width: 280px;
  height: 100%;
  background: #141419;
  border: 1px solid var(--accent-color);
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 15px var(--accent-glow);
  opacity: 0;
  pointer-events: none;
  transform: scale(0.95);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 50;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.store-grid > .skin-card:nth-child(odd) .skin-preview-hover { left: 105%; right: auto; }
.store-grid > .skin-card:nth-child(even) .skin-preview-hover { right: 105%; left: auto; }

.skin-card:hover .skin-preview-hover { opacity: 1; transform: scale(1); }

.lock-indicator {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 28px;
  height: 28px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  z-index: 5;
}

.lock-indicator svg { width: 14px; height: 14px; fill: var(--accent-color); }
.lock-indicator.unlock-anim { animation: lockBounceOut 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; }

@keyframes lockBounceOut {
  0% { transform: scale(1); }
  20% { transform: scale(1.4) rotate(-15deg); }
  40% { transform: scale(1.4) rotate(15deg); }
  60% { transform: scale(1.2) opacity(1); }
  100% { transform: scale(0.3) translateY(-20px); opacity: 0; filter: blur(4px); }
}

.card-flash-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
  border-radius: 20px;
  animation: cardFlash 0.7s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
}

@keyframes cardFlash {
  0% { box-shadow: inset 0 0 0px var(--accent-color); opacity: 0; background: rgba(0, 255, 204, 0.15); }
  30% { opacity: 0.8; box-shadow: inset 0 0 50px var(--accent-color); }
  100% { opacity: 0; box-shadow: inset 0 0 0px var(--accent-color); }
}

.skin-preview-bar { display: flex; gap: 6px; margin: 18px 0; }
.preview-dot { width: 14px; height: 14px; border-radius: 50%; }

/* --- BOTONES DEL SISTEMA --- */
.btn {
  width: 100%;
  height: 48px;
  border-radius: 24px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-sizing: border-box;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-buy-primary {
  background: linear-gradient(135deg, var(--accent-color) 0%, #007fff 100%);
  color: #050507;
  border: none;
  box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-buy-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--accent-glow);
  filter: brightness(1.1);
}

.btn-buy-primary:disabled {
  background: #23232a;
  color: #5d5d68;
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.03);
  opacity: 0.55;
  pointer-events: none;
}

.btn-buy-primary:disabled .eco-icon { filter: grayscale(1) opacity(0.4); }
.btn-equip-secondary { background: rgba(255, 255, 255, 0.03); color: #ffffff; border: 1px solid var(--accent-color); }
.btn-equip-secondary:hover { background: rgba(255, 255, 255, 0.08); box-shadow: 0 0 10px var(--accent-glow); transform: translateY(-1px); }
.btn-equipped-active { background: transparent; color: #858592; border: 1px solid rgba(255, 255, 255, 0.05); pointer-events: none; }

/* --- SECCIÓN DE AYUDA (ESTILOS EXTRAÍDOS DEL HTML) --- */
.help-container {
  display: none;
  flex-direction: column;
  align-items: center;
  width: 90%;
  max-width: 750px;
  max-height: 72vh;
  margin-top: 95px;
  overflow-y: auto;
  padding-right: 15px;
  box-sizing: border-box;
  animation: fadeIn 0.4s ease;
}

.help-title { font-size: 2.5rem; margin: 0 0 25px 0; font-weight: 800; color: var(--accent-color); text-shadow: 0 0 10px var(--accent-glow); }
.theme-toggle-wrapper { width: 100%; display: flex; justify-content: center; margin-bottom: 25px; }
.help-content-wrapper { width: 100%; box-sizing: border-box; }
.help-audio-main-title { color: var(--accent-color); text-shadow: 0 0 10px var(--accent-glow); text-align: center; font-size: 1.8rem; letter-spacing: 1px; margin-top: 10px; margin-bottom: 24px; }

.audio-alert-box {
  background: rgba(0, 255, 204, 0.06);
  border: 1px solid var(--accent-color);
  box-shadow: 0 0 15px rgba(0, 255, 204, 0.15);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 24px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.audio-alert-icon { font-size: 32px; animation: alertIconPulse 2s infinite ease-in-out; }
.audio-alert-body { flex: 1; text-align: left;}
.audio-alert-body h4 { margin: 0 0 4px 0; color: var(--accent-color); font-weight: 800; font-size: 14px; letter-spacing: 0.5px; }
.audio-alert-body p { margin: 0; font-size: 13px; color: #a0aec0; line-height: 1.5; }
.audio-alert-body span { color: var(--accent-color); font-weight: bold; }

@keyframes alertIconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.help-card {
  background: #141419;
  border: 1px solid var(--accent-color);
  border-radius: 16px;
  padding: 25px;
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0 15px 35px rgba(0,0,0,0.4), 0 0 10px var(--accent-glow);
  margin-bottom: 24px;
  text-align: left;
}

.help-section-title { font-size: 1.3rem; color: var(--theme-color, var(--accent-color)); margin: 0 0 12px 0; font-weight: 700; border-bottom: 1px solid rgba(255, 255, 255, 0.08); padding-bottom: 6px; }
.help-text { color: #aaa; font-size: 0.95rem; line-height: 1.6; margin: 0; }
.help-text ul { margin: 10px 0; padding-left: 20px; }
.help-text li { margin-bottom: 8px; }
kbd { background-color: #1e1e24; border: 1px solid #333; border-radius: 4px; padding: 2px 6px; font-size: 12px; color: #aaa; }

/* --- PANTALLA DE PUNTUACIONES --- */
.result-container { display: none; flex-direction: column; align-items: center; text-align: center; animation: fadeIn 0.4s ease; max-width: 450px; width: 90%; }
.result-title { font-size: 2.8rem; margin: 0 0 15px 0; font-weight: 800; letter-spacing: 1.5px; color: var(--accent-color); text-shadow: 0 0 10px var(--accent-glow); }
.result-box { background: rgba(255, 255, 255, 0.03); border: 1px solid var(--accent-color); border-radius: 20px; padding: 30px; width: 100%; box-sizing: border-box; box-shadow: 0 15px 35px rgba(0,0,0,0.4), 0 0 15px var(--accent-glow); }
.result-score-label { color: #888; font-size: 0.95rem; margin: 0 0 5px 0; }
.result-score-value { font-size: 3rem; font-weight: 900; margin: 0 0 15px 0; color: var(--accent-color); text-shadow: 0 0 15px var(--accent-glow); }
.result-total-label { font-size: 1.1rem; color: #eee; margin: 0; display: flex; align-items: center; justify-content: center; gap: 6px; }
.result-total-label span { color: var(--accent-color); font-weight: bold; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- FEEDBACK ACTIVO (DESAFÍOS) --- */
.piano.dark-mode .key.active {
  background-color: var(--accent-color) !important;
  box-shadow: 0 0 30px var(--accent-color), 0 0 60px var(--accent-color), inset 0 0 12px rgba(255, 255, 255, 0.7) !important;
  filter: drop-shadow(0 0 20px var(--accent-color)) !important;
  z-index: 5 !important;
  opacity: 1 !important;
  transform: translateY(3px);
}

.piano.dark-mode .key.black.active {
  background-color: var(--accent-color-dark) !important;
  box-shadow: 0 0 30px var(--accent-color), 0 0 60px var(--accent-color), inset 0 0 8px rgba(255, 255, 255, 0.5) !important;
  filter: drop-shadow(0 0 20px var(--accent-color)) !important;
  z-index: 5 !important;
  opacity: 1 !important;
  height: 138px;
  transform: translateY(2px);
}

/* ==========================================================================
   4. SECCIÓN EXCLUSIVA: REAJUSTE DE CONTRASTES EN MODO DIURNO (.diurno / .day-mode)
   ========================================================================== */

/* Fondo claro real y color de texto base oscuro */
body.diurno, body.day-mode {
  background: #f4f4f9 !important;
  color: #1a1a24 !important;
}

/* --- ELEMENTOS DEL HUB --- */
.diurno .hub-title, .day-mode .hub-title {
  color: #1a1a24 !important;
  text-shadow: none !important;
}

.diurno .hub-subtitle, .day-mode .hub-subtitle {
  color: #4a4a58 !important;
  font-weight: 600;
}

.diurno .hub-btn, .day-mode .hub-btn {
  border-color: rgba(0, 0, 0, 0.12) !important;
  background: rgba(0, 0, 0, 0.04) !important;
}

.diurno .hub-btn-text, .day-mode .hub-btn-text {
  color: #1a1a24 !important;
}

.diurno .hub-btn:hover .hub-btn-text, .day-mode .hub-btn:hover .hub-btn-text {
  color: #000000 !important;
}

.diurno .hub-btn-img, .day-mode .hub-btn-img {
  filter: grayscale(100%) brightness(0.2) opacity(0.7) !important;
}

/* --- CORRECCIÓN DE BOTONES INVISIBLES --- */
.day-mode .back-button, .diurno .back-button {
  color: #1a1a24 !important;
  background: rgba(0, 0, 0, 0.05) !important;
  border-color: #1a1a24 !important;
}

.day-mode .back-button:hover, .diurno .back-button:hover {
  background: #ff3b30 !important;
  color: #fff !important;
  border-color: #ff3b30 !important;
}

.day-mode .btn-equip-secondary, .diurno .btn-equip-secondary {
  color: #1a1a24 !important;
  border-color: #1a1a24 !important;
  background: rgba(0, 0, 0, 0.02) !important;
}

.day-mode .btn-equip-secondary:hover, .diurno .btn-equip-secondary:hover {
  background: rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1) !important;
}

/* --- CORRECCIÓN SECCIÓN DE AYUDA (GUÍA DE JUEGO) --- */
.day-mode .help-title, .diurno .help-title {
  color: #1a1a24 !important;
  text-shadow: none !important;
}

.day-mode .help-card, .diurno .help-card {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05) !important;
}

.day-mode .help-section-title, .diurno .help-section-title {
  color: #1a1a24 !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.day-mode .help-text, .diurno .help-text {
  color: #555566 !important;
}

.day-mode kbd, .diurno kbd {
  background-color: #e2e8f0 !important;
  border: 1px solid #cbd5e1 !important;
  color: #334155 !important;
}

/* --- CUADRO DE ALERTA DE AURICULARES --- */
.day-mode .audio-alert-box, .diurno .audio-alert-box {
  background: rgba(0, 0, 0, 0.03) !important;
  border-color: #1a1a24 !important;
  box-shadow: none !important;
}

.day-mode .audio-alert-box h4, .diurno .audio-alert-box h4 {
  color: #1a1a24 !important;
}

.day-mode .audio-alert-box p, .diurno .audio-alert-box p {
  color: #555566 !important;
}

/* --- GLOBAL STATS (MARCADOR SUPERIOR) --- */
.day-mode .hub-stats, .diurno .hub-stats {
  background: #ffffff !important;
  border-color: rgba(0, 0, 0, 0.15) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
}

.day-mode #hub-points, .diurno #hub-points {
  color: #1a1a24 !important;
  text-shadow: none !important;
}

/* --- PARCHE DE CONTRASTE PARA TEXTOS CON VARIABLES DE ACENTO --- */

/* 1. Título de la Tienda de Aspectos */
.day-mode .store-title, .diurno .store-title {
  color: #1a1a24 !important;
  text-shadow: none !important;
}

/* 2. Subtítulo principal de la Guía de Audio */
.day-mode .help-audio-main-title, .diurno .help-audio-main-title {
  color: #1a1a24 !important;
  text-shadow: none !important;
}

/* 3. Texto de estado inferior en pleno juego ("Busca la nota...") */
/* Usamos !important porque el JS lo inyecta directamente como estilo inline */
.day-mode #game-status, .diurno #game-status {
  color: #4a4a58 !important;
}