/* ---------- ЦВЕТ ТЕКСТА В ТЁМНОЙ ТЕМЕ ---------- */
html.dark-theme {
  color: #E0E0E0 !important; /* основной цвет текста */
}

html.dark-theme a {
  color: #E0E0E0 !important; /* цвет ссылок */
}

/* ---------- ПОДЧЕРКИВАНИЕ ССЫЛОК (оставляем как есть) ---------- */
a {
  text-decoration: none;
  position: relative;
}

a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.2px;
  height: 2px;
  opacity: 0;
  transition: opacity 0.2s ease, background 0.3s ease;
}

/* светлая тема */
html.light-theme a::after {
  background: #1F1F1F;
}
html.light-theme a:hover::after {
  opacity: 1;
}

/* тёмная тема */
html.dark-theme a::after {
  background: #FFFFFF;
}
html.dark-theme a:hover::after {
  opacity: 1;
}
