/* ==========================================================================
   Кавер АИ — дизайн-система (минимализм + стекло)
   Нейтральный почти чёрный фон, тонкие линии, сдержанная типографика.
   Стекло — только у всплывающих слоёв; фирменный градиент и свечение —
   только у главных действий. Подключается последним в theme/head.php.
   ========================================================================== */

:root {
  color-scheme: dark;

  --bg: #0a0a0b;
  --panel: rgba(255, 255, 255, 0.028);
  --panel-2: rgba(255, 255, 255, 0.045);
  --fill: rgba(255, 255, 255, 0.06);
  --fill-2: rgba(255, 255, 255, 0.09);
  --fill-3: rgba(255, 255, 255, 0.13);
  --line: rgba(255, 255, 255, 0.07);
  --line-2: rgba(255, 255, 255, 0.12);
  --line-3: rgba(255, 255, 255, 0.2);

  --text: #ededee;
  --text-2: rgba(255, 255, 255, 0.58);
  --text-3: rgba(255, 255, 255, 0.36);

  /* фирменные цвета из логотипа */
  /* главная кнопка — нейтральная серая */
  --brand: #2b2b2e;
  --brand-hover: #353539;
  --brand-glow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 0 0 1px rgba(255, 255, 255, 0.06);
  --accent: #a36ff0;
  --accent-rgb: 163, 111, 240;
  --danger: #ff5f56;

  --glass: rgba(22, 22, 25, 0.78);
  --glass-blur: saturate(160%) blur(36px);
  --shadow-pop: 0 24px 70px -20px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(0, 0, 0, 0.4);

  --r-sm: 8px;
  --r: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --pill: 999px;
  --h: 42px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Wix Madefor Display", "Segoe UI", Roboto, Arial, sans-serif;

  /* старые переменные темы */
  --primary-color: #a36ff0;
  --primary-color-transparent: rgba(163, 111, 240, 0.14);
  --success-color: #3ecf8e;
  --warning-color: #f5b454;
  --danger-color: #ff5f56;
  --sec-color: rgba(255, 255, 255, 0.58);
  --body-color: rgba(255, 255, 255, 0.1);
  --desc-color: rgba(255, 255, 255, 0.08);
  --dark-color: #0f0f10;
  --border-color: rgba(255, 255, 255, 0.07);
}

/* ---------- База ---------- */
html {
  background: var(--bg) !important;
  background-image: none !important;
  scrollbar-color: rgba(255, 255, 255, 0.14) transparent;
  scrollbar-width: thin;
}
html body {
  font-family: var(--font);
  font-size: 14px;
  color: var(--text);
  background: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.005em;
}
/* единственный мягкий свет сверху — без цветных пятен */
html body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(900px 420px at 55% -180px, rgba(166, 108, 242, 0.09), transparent 70%),
    var(--bg);
}
html body h1, html body h2, html body h3,
html body h4, html body h5, html body h6 {
  font-family: var(--font);
  color: var(--text);
  letter-spacing: -0.02em;
}
html body p { font-size: inherit; }
html body a { color: var(--text-2); transition: color .2s var(--ease); }
html body a:hover { color: var(--text); }
::selection { background: rgba(var(--accent-rgb), 0.45); color: #fff; }
:focus-visible { outline: 2px solid rgba(255, 255, 255, 0.5); outline-offset: 2px; }

/* полосы прокрутки */
html *::-webkit-scrollbar { width: 8px !important; height: 8px !important; background: transparent !important; }
html *::-webkit-scrollbar-track { background: transparent !important; box-shadow: none !important; }
html *::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12) !important;
  border: 2px solid transparent !important;
  background-clip: padding-box !important;
  border-radius: 8px !important;
}
html *::-webkit-scrollbar-thumb:hover { background-color: rgba(255, 255, 255, 0.24) !important; }
html *::-webkit-scrollbar-corner { background: transparent !important; }
html .geex-sidebar::-webkit-scrollbar,
html .geex-customizer::-webkit-scrollbar { width: 0 !important; }

/* ---------- Каркас: боковая колонка во всю высоту ---------- */
html body .geex-sidebar {
  background: rgba(12, 12, 13, 0.82) !important;
  background-image: none !important;
  border: 0 !important;
  border-right: 1px solid var(--line) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  padding: 22px 12px 16px !important;
}
@media only screen and (min-width: 1200px) {
  html body .geex-sidebar {
    top: 0 !important;
    inset-inline-start: 0 !important;
    width: 240px !important;
    min-width: 0 !important;
    max-width: none !important;
    height: 100vh !important;
    max-height: 100vh !important;
  }
  html body .geex-main-content {
    padding: 20px 28px 20px 268px !important;
    gap: 28px !important;
  }
}
@media only screen and (max-width: 1199px) {
  html body .geex-sidebar {
    background: rgba(14, 14, 16, 0.94) !important;
    box-shadow: 30px 0 80px -20px rgba(0, 0, 0, 0.8) !important;
  }
}
html body .geex-sidebar__wrapper { gap: 26px !important; }
html body .geex-sidebar__header { padding: 0 10px; }
html body .geex-sidebar__logo { justify-content: flex-start !important; }
html body .geex-sidebar__logo img { max-height: 52px !important; width: auto; }
html body .geex-sidebar__close {
  top: 18px !important;
  width: 32px; height: 32px;
  display: none;
  align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--fill);
  color: var(--text) !important;
  font-size: 18px;
}
@media only screen and (max-width: 1199px) { html body .geex-sidebar__close { display: inline-flex; } }

html body .geex-sidebar__menu { gap: 2px; }
html body .geex-sidebar__menu__item:first-child,
html body .geex-sidebar__menu__item:last-child { margin: 0 !important; }
html body .geex-sidebar__menu__link {
  align-items: center;
  gap: 12px !important;
  padding: 9px 10px !important;
  border-radius: 10px !important;
  color: var(--text-2) !important;
  font-family: var(--font) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 20px !important;
  text-transform: none !important;
  background: transparent !important;
  box-shadow: none !important;
  transition: background .2s var(--ease), color .2s var(--ease);
}
html body .geex-sidebar__menu__link svg { width: 18px; height: 18px; flex: 0 0 18px; color: currentColor; }
html body .geex-sidebar__menu__link svg.ico * { fill: none !important; }
html body .geex-sidebar__menu__link:hover { color: var(--text) !important; background: var(--fill) !important; }
html body .geex-sidebar__menu > .geex-sidebar__menu__item > .geex-sidebar__menu__link.active {
  color: #fff !important;
  background: var(--fill-2) !important;
}
html body .geex-sidebar__menu__item.has-children > .geex-sidebar__menu__link::after {
  content: "";
  margin-left: auto;
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: .45;
  transition: transform .25s var(--ease);
}
html body .geex-sidebar__menu__item.has-children > .geex-sidebar__menu__link.active::after { transform: rotate(-135deg) translateY(-1px); }

html body .geex-sidebar__submenu {
  background: transparent !important;
  background-image: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  margin: 2px 0 6px !important;
}
html body .geex-sidebar__submenu .geex-sidebar__menu__item { margin: 0 !important; padding: 0 0 0 20px; position: relative; }
html body .geex-sidebar__submenu .geex-sidebar__menu__item::before {
  content: "";
  position: absolute;
  left: 18px; top: 0; bottom: 0;
  width: 1px;
  background: var(--line-2);
}
html body .geex-sidebar__submenu .geex-sidebar__menu__link {
  padding: 7px 10px 7px 14px !important;
  font-size: 13.5px !important;
  color: var(--text-3) !important;
}
html body .geex-sidebar__submenu .geex-sidebar__menu__link:hover { color: var(--text) !important; background: transparent !important; }
html body .geex-sidebar__submenu .geex-sidebar__menu__link.active { color: #fff !important; background: transparent !important; }
html body .geex-sidebar__submenu .geex-sidebar__menu__link.active::before {
  content: "";
  position: absolute;
  left: -2px; top: 8px; bottom: 8px;
  width: 1.5px;
  border-radius: 2px;
  background: #fff;
}

html body .geex-sidebar__footer { padding: 0 10px; background: transparent; }
html body .g-balance-note {
  margin-top: 10px;
  text-align: center;
  font-size: 12.5px;
  color: var(--text-3);
}
html body .geex-sidebar__footer__title { color: var(--text-2) !important; font-size: 12.5px !important; font-weight: 600; margin-bottom: 2px !important; }
html body .geex-sidebar__footer__author { color: var(--text-3) !important; font-size: 12px !important; }
html body .geex-sidebar__footer__author a { color: var(--text-2); }
html body .heart-icon { color: #e27fb4; }

/* ---------- Шапка ---------- */
@media only screen and (min-width: 992px) {
  html body .geex-content__header { align-items: center; }
}
html body .geex-content__header { margin-bottom: 22px !important; }
html body .geex-content__header__title,
html body .geex-content__header__content h1,
html body .geex-content__header__content h2 {
  font-family: var(--font) !important;
  font-size: 26px !important;
  line-height: 1.2 !important;
  font-weight: 650 !important;
  letter-spacing: -0.025em !important;
  text-transform: none !important;
  background: none !important;
  -webkit-text-fill-color: var(--text) !important;
  color: var(--text) !important;
  animation: none !important;
}
html body .geex-content__header__subtitle {
  font-family: var(--font) !important;
  font-size: 13.5px !important;
  color: var(--text-3) !important;
  margin-top: 4px !important;
}
@media (max-width: 575px) {
  html body .geex-content__header__title,
  html body .geex-content__header__content h1,
  html body .geex-content__header__content h2 { font-size: 22px !important; }
}

html body .geex-content__header__customizer { gap: 8px !important; }
html body .geex-content__header .geex-btn.ten {
  height: 36px;
  padding: 0 14px !important;
  gap: 7px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px !important;
  font-weight: 600;
  border-radius: var(--pill) !important;
  color: var(--text) !important;
  background: var(--fill) !important;
  border: 0 !important;
  box-shadow: none !important;
}
html body .geex-content__header .geex-btn.ten:hover { background: var(--fill-2) !important; }
html body .geex-content__header .geex-btn.ten i { font-size: 16px; }
html body .geex-content__header .geex-btn__toggle-sidebar { width: 36px; padding: 0 !important; }
@media only screen and (max-width: 1199px) {
  html body .geex-content__header__customizer .geex-btn__toggle-sidebar { display: inline-flex !important; }
}
@media only screen and (min-width: 1200px) {
  html body .geex-content__header__customizer .geex-btn__toggle-sidebar { display: none !important; }
}
/* главная кнопка — фирменный градиент */
html body .geex-content__header .geex-btn.ten.newtrack,
html body .geex-content__header .geex-btn.ten.auth:not(.geex-btn__toggle-sidebar) {
  color: #fff !important;
  background: var(--brand) !important;
  box-shadow: var(--brand-glow) !important;
}
html body .geex-content__header .geex-btn.ten.newtrack:hover,
html body .geex-content__header .geex-btn.ten.auth:not(.geex-btn__toggle-sidebar):hover { background: var(--brand-hover) !important; }

html body .geex-content__header__quickaction { gap: 8px !important; align-items: center; }
html body .geex-content__header__quickaction__link {
  width: 36px !important;
  height: 36px !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 50% !important;
  background: var(--fill) !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: hidden;
}
html body .geex-content__header__quickaction__link:hover { background: var(--fill-2) !important; }
html body .geex-content__header__quickaction__link svg { width: 17px; height: 17px; stroke: currentColor !important; color: var(--text); }
html body .geex-content__header__quickaction__link svg.ico * { fill: none !important; }
html body .geex-content__header__quickaction__link .user-img {
  width: 100% !important; height: 100% !important; max-width: none !important;
  object-fit: cover; border-radius: 50%;
}

/* всплывающие окна шапки */
html body .geex-content__header__popup {
  background: var(--glass) !important;
  border: 1px solid var(--line-2) !important;
  border-radius: var(--r-lg) !important;
  box-shadow: var(--shadow-pop) !important;
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  overflow: hidden;
}
html body .geex-content__header__popup:before { display: none !important; }
html body .geex-content__header__popup--author { padding: 6px; min-width: 260px; }
html body .geex-content__header__popup__header {
  margin: 0 !important;
  padding: 10px !important;
  gap: 12px !important;
  border-radius: 12px !important;
  background: transparent !important;
  border-bottom: 1px solid var(--line) !important;
}
html body .geex-content__header__popup__header__img img { width: 40px !important; height: 40px !important; border-radius: 50%; object-fit: cover; }
html body .geex-content__header__popup__header__title { color: var(--text) !important; font-size: 14px !important; font-weight: 600 !important; margin: 0 0 2px !important; }
html body .geex-content__header__popup__header__subtitle { color: var(--text-3) !important; font-size: 12.5px !important; }
html body .geex-content__header__popup__content { padding: 6px 0 !important; margin: 0 !important; max-height: none !important; }
html body .geex-content__header__popup__items { display: grid; gap: 1px; margin: 0; padding: 0; }
html body .geex-content__header__popup__item { margin: 0 !important; padding: 0 !important; }
html body .geex-content__header__popup__link,
html body .geex-content__header__popup__footer__link {
  display: flex !important;
  align-items: center;
  justify-content: flex-start !important;
  gap: 10px;
  padding: 8px 10px !important;
  border-radius: 8px;
  font-size: 13.5px;
  color: var(--text-2) !important;
}
html body .geex-content__header__popup__link i,
html body .geex-content__header__popup__footer__link i { font-size: 16px; color: var(--text-3); }
html body .geex-content__header__popup__link:hover,
html body .geex-content__header__popup__footer__link:hover { background: var(--fill); color: var(--text) !important; }
html body .geex-content__header__popup__footer {
  margin: 0 !important;
  padding: 6px 0 0 !important;
  border-top: 1px solid var(--line) !important;
  border-radius: 0 !important;
  background: transparent !important;
}
html body .geex-content__header__searchform {
  background: var(--glass) !important;
  border: 1px solid var(--line-2) !important;
  border-radius: var(--pill) !important;
  padding: 2px 6px 2px 16px !important;
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-pop);
}
html body .geex-content__header__searchform input {
  background: transparent !important; border: 0 !important; color: var(--text) !important; height: 38px;
}
html body .geex-content__header__searchform i { color: var(--text-3); cursor: pointer; }

/* ---------- Кнопки ---------- */
html body .geex-btn {
  font-family: var(--font);
  font-weight: 600;
  border-radius: var(--pill);
  color: var(--text);
  background: var(--fill);
  border: 0;
  transition: background .2s var(--ease), filter .2s var(--ease), transform .15s var(--ease), opacity .2s;
}
html body .geex-btn:hover { color: #fff; background: var(--fill-2); }
html body .geex-btn:active { transform: scale(0.98); }

/* главное действие (генерация) — фирменный градиент со свечением */
html body .geex-btn--primary,
html body .btn-submit,
html body .mv-primary,
html body .mv-next,
html body .mv-actions .mv-next,
html body .geex-content__authentication__form-submit:not(.return-btn),
html body .geex-sidebar__support-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: var(--h);
  padding: 0 22px !important;
  font-family: var(--font);
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.2;
  color: #fff !important;
  background: var(--brand) !important;
  border: 0 !important;
  border-radius: var(--pill) !important;
  box-shadow: var(--brand-glow) !important;
  text-decoration: none;
  cursor: pointer;
  transition: filter .2s var(--ease), transform .15s var(--ease), opacity .2s;
}
html body .geex-btn--primary:hover,
html body .btn-submit:hover:enabled,
html body .mv-primary:hover:enabled,
html body .mv-next:hover:enabled,
html body .geex-content__authentication__form-submit:not(.return-btn):hover,
html body .geex-sidebar__support-btn:hover { background: var(--brand-hover) !important; }

/* обычное подтверждение — белая кнопка */
html body .btn-primary,
html body #copyright-claim-form .btn-submit,
html body .mv-edit-actions .mv-edit-save,
html body .geex-btn-use {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  color: #0a0a0b !important;
  background: #f2f2f3 !important;
  border: 0 !important;
  border-radius: var(--pill) !important;
  box-shadow: none !important;
  transition: background .2s var(--ease), transform .15s var(--ease);
}
html body .btn-primary:hover,
html body #copyright-claim-form .btn-submit:hover:enabled,
html body .mv-edit-actions .mv-edit-save:hover,
html body .geex-btn-use:hover { background: #fff !important; color: #000 !important; }

/* второстепенные */
html body .btn-secondary,
html body .btn-cancel,
html body #copyright-claim-form .btn-cancel,
html body .geex-btn-copy,
html body .mv-actions > button:not(.mv-next),
html body .mv-edit-actions button:not(.mv-edit-save),
html body .mv-ready button,
html body .mv-voice-card-actions button,
html body .geex-content__authentication__form-submit.return-btn,
html body .geex-btn--primary-transparent,
html body .geex-btn--transparent,
html body .geex-btn--dark-transparent,
html body .geex-btn--success {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 18px !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  color: var(--text) !important;
  background: var(--fill) !important;
  border: 0 !important;
  border-radius: var(--pill) !important;
  box-shadow: none !important;
}
html body .geex-btn-copy, html body .geex-btn-use { min-height: 32px; padding: 0 14px !important; font-size: 12.5px !important; }
html body .btn-secondary:hover,
html body .btn-cancel:hover,
html body #copyright-claim-form .btn-cancel:hover,
html body .geex-btn-copy:hover,
html body .mv-actions > button:not(.mv-next):hover,
html body .mv-edit-actions button:not(.mv-edit-save):hover,
html body .mv-ready button:hover,
html body .mv-voice-card-actions button:hover,
html body .geex-btn--primary-transparent:hover,
html body .geex-btn--transparent:hover,
html body .geex-btn--dark-transparent:hover,
html body .geex-btn--success:hover { background: var(--fill-2) !important; color: #fff !important; }

html body .btn-danger,
html body .geex-btn--danger,
html body .mv-delete-modal .mv-delete-confirm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px !important;
  font-weight: 600 !important;
  color: #fff !important;
  background: #e5484d !important;
  border: 0 !important;
  border-radius: var(--pill) !important;
  box-shadow: none !important;
}
html body .btn-danger:hover, html body .geex-btn--danger:hover { background: #f25359 !important; }
html body .mv-voice-card-actions .mv-delete { color: #ff8a84 !important; }

html body button:disabled,
html body .btn:disabled,
html body .geex-btn:disabled,
html body .geex-btn[disabled],
html body #sand_musiccover:disabled,
html body #send_extend_track:disabled {
  opacity: 0.4 !important;
  cursor: not-allowed !important;
  transform: none !important;
  filter: none !important;
  box-shadow: none !important;
}
html body #sand_musiccover:disabled,
html body #send_extend_track:disabled { background: var(--brand) !important; }

/* сегментированный переключатель */
html body #title-source-toggle .d-flex {
  display: inline-flex !important;
  gap: 0 !important;
  padding: 3px;
  width: 100%;
  border-radius: var(--pill);
  background: var(--fill);
}
html body #title-source-toggle label.btn {
  flex: 1;
  min-width: 0 !important;
  height: 32px;
  margin: 0;
  border: 0 !important;
  border-radius: var(--pill) !important;
  background: transparent !important;
  color: var(--text-3) !important;
  font-size: 13px;
  font-weight: 600;
  box-shadow: none !important;
}
html body #title-source-toggle label.btn:hover { color: var(--text) !important; }
html body #title-source-toggle .btn-check:checked + label.btn {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.13) !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4) !important;
}
html body #title-source-toggle .input-label { width: 100%; }

html body .attempt-btn,
html body .payment-btn {
  min-height: 40px;
  padding: 0 18px;
  border-radius: var(--pill) !important;
  color: var(--text) !important;
  background: var(--fill) !important;
  border: 1px solid transparent !important;
  font-weight: 600;
  box-shadow: none !important;
}
html body .attempt-btn.active,
html body .payment-btn.active { background: #f2f2f3 !important; color: #0a0a0b !important; }

/* ---------- Формы ---------- */
html body .input-label,
html body .form-label,
html body .geex-content__form__single__box label:not(.form-check-label):not(.geex-audio-upload):not(.btn):not(.cover-upload):not(.cover-toggle),
html body .mv-builder label,
html body .mv-edit-form label,
html body .geex-content__authentication__form-group label,
html body .musiccover-source-title,
html body .extend-source-title {
  display: block;
  padding: 0 !important;
  margin: 0 0 7px !important;
  font-family: var(--font);
  font-size: 12.5px !important;
  font-weight: 500 !important;
  color: var(--text-2) !important;
  text-align: left;
  text-transform: none;
}
html body .mv-builder label,
html body .mv-edit-form label { display: grid; margin: 0 !important; }
html body .input-wrapper,
html body .geex-content__form__single__box { margin-bottom: 14px; }

html body .form-control,
html body .form-textarea,
html body .coolinput,
html body .geex-content__form__single__box input:not([type="checkbox"]):not([type="radio"]):not([type="file"]):not([type="range"]),
html body .geex-content__form__single__box textarea,
html body .geex-content__form__single__box select,
html body .geex-content__authentication__form-group input,
html body .geex-content__modal__form input,
html body .geex-sidebar__support-amount input,
html body #copyright-claim-form input[type="text"],
html body #copyright-claim-form textarea,
html body .mv-builder input,
html body .mv-builder select,
html body .mv-builder textarea,
html body .mv-language select,
html body .mv-edit-form input,
html body .mv-edit-form textarea,
html body .landing-trial .trial-form textarea,
html body select.form-select {
  width: 100%;
  min-width: 0 !important;
  min-height: var(--h);
  margin-bottom: 0 !important;
  padding: 10px 14px !important;
  font-family: var(--font);
  font-size: 14px !important;
  line-height: 1.45;
  color: var(--text) !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--r) !important;
  box-shadow: none !important;
  outline: none !important;
  transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
html body textarea.form-control,
html body .geex-content__form__single__box textarea,
html body .mv-builder textarea,
html body .mv-edit-form textarea,
html body #copyright-claim-form textarea { min-height: 110px; resize: vertical; }
html body .form-control:hover,
html body .geex-content__form__single__box input:hover,
html body .geex-content__form__single__box textarea:hover { border-color: var(--line-2) !important; }
html body .form-control:focus,
html body .form-textarea:focus,
html body .coolinput:focus,
html body .geex-content__form__single__box input:focus,
html body .geex-content__form__single__box textarea:focus,
html body .geex-content__form__single__box select:focus,
html body .geex-content__authentication__form-group input:focus,
html body #copyright-claim-form input[type="text"]:focus,
html body #copyright-claim-form textarea:focus,
html body .mv-builder input:focus,
html body .mv-builder select:focus,
html body .mv-builder textarea:focus,
html body .mv-edit-form input:focus,
html body .mv-edit-form textarea:focus {
  background: rgba(255, 255, 255, 0.055) !important;
  border-color: var(--line-3) !important;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.05) !important;
}
html body .form-control::placeholder,
html body textarea::placeholder,
html body input::placeholder { color: var(--text-3) !important; opacity: 1; }
html body .form-control:disabled,
html body input:disabled,
html body textarea:disabled,
html body select:disabled { opacity: .5; cursor: not-allowed; }
html body .form-control.is-invalid,
html body .error-border { border-color: rgba(255, 95, 86, 0.7) !important; box-shadow: 0 0 0 3px rgba(255, 95, 86, 0.12) !important; }
html body .invalid-feedback,
html body .error-text,
html body .musiccover-field-error,
html body .extend-field-error,
html body .signin-error,
html body .cover-error { color: #ff8a84 !important; font-size: 12.5px !important; }

html body select.form-control,
html body .geex-content__form__single__box select,
html body .mv-builder select,
html body .mv-language select,
html body select.form-select {
  padding-right: 40px !important;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-opacity='.5' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  background-size: 12px !important;
}
html body select option { background: #161618; color: var(--text); }
html body .prompt-limit,
html body .bio-counter,
html body .cover-count { color: var(--text-3) !important; font-size: 11.5px !important; margin-top: 6px !important; font-variant-numeric: tabular-nums; }
html body .cover-help, html body .cover-result-empty { color: var(--text-3) !important; }

/* чекбоксы и радио */
html body .geex-content__form__single__box .form-check input[type="checkbox"],
html body .geex-content__form__single__box .form-check input[type="radio"] { display: inline-block !important; }
html body .geex-content__form__single__box .form-check .form-check-label::before,
html body .geex-content__form__single__box .form-check .form-check-label::after,
html body .geex-content__form__single__box label::after { content: none !important; display: none !important; }
html body .form-check { display: flex; align-items: flex-start; gap: 10px; padding-left: 0; min-height: 20px; }
html body .form-check .form-check-input,
html body #copyright-claim-form .form-check-input[type="radio"],
html body #copyright-claim-form .form-check-input[type="checkbox"],
html body .terms-checkbox {
  -webkit-appearance: none;
  appearance: none;
  flex: 0 0 18px;
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  min-height: 18px !important;
  margin: 1px 0 0 !important;
  float: none;
  cursor: pointer;
  background: transparent no-repeat center / 12px;
  border: 1.5px solid var(--line-3) !important;
  box-shadow: none !important;
  transition: background-color .15s var(--ease), border-color .15s var(--ease);
}
html body .form-check .form-check-input[type="checkbox"],
html body #copyright-claim-form .form-check-input[type="checkbox"],
html body .terms-checkbox { border-radius: 5px !important; }
html body .form-check .form-check-input[type="radio"],
html body #copyright-claim-form .form-check-input[type="radio"] { border-radius: 50% !important; }
html body .form-check .form-check-input:checked,
html body .terms-checkbox:checked { background-color: #f2f2f3 !important; border-color: #f2f2f3 !important; }
html body .form-check .form-check-input[type="checkbox"]:checked,
html body .terms-checkbox:checked {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a0a0b' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5 10 17 19 7'/%3E%3C/svg%3E") !important;
}
html body .form-check .form-check-input[type="radio"]:checked {
  background-color: transparent !important;
  background-image: radial-gradient(circle, #f2f2f3 0 4px, transparent 4.5px) !important;
  background-size: 100% 100% !important;
}
html body .form-check-label {
  color: var(--text) !important;
  font-size: 13.5px !important;
  line-height: 1.45 !important;
  cursor: pointer;
  top: 0 !important;
  padding-inline-start: 0 !important;
}
html body #copyright-claim-form .form-check-input:checked + .form-check-label { color: var(--text) !important; }

/* переключатели */
html body .form-switch { padding-left: 0 !important; align-items: center; }
html body .form-switch .form-check-input,
html body #only-music-wrapper.form-switch .form-check-input {
  flex: 0 0 40px;
  width: 40px !important;
  height: 24px !important;
  min-height: 24px !important;
  margin: 0 !important;
  border-radius: 24px !important;
  border: 0 !important;
  background-color: rgba(255, 255, 255, 0.14) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3.3' fill='white'/%3E%3C/svg%3E") !important;
  background-size: 20px 20px !important;
  background-position: 2px center !important;
  background-repeat: no-repeat !important;
  transform: none !important;
  transition: background-position .2s var(--ease), background-color .2s var(--ease) !important;
}
html body .form-switch .form-check-input:checked,
html body #only-music-wrapper.form-switch .form-check-input:checked {
  background-color: var(--accent) !important;
  background-position: calc(100% - 2px) center !important;
}

/* ползунки */
html body input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 20px;
  background: transparent;
  cursor: pointer;
}
html body input[type="range"]::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(#f2f2f3, #f2f2f3) no-repeat, rgba(255, 255, 255, 0.12);
  background-size: var(--g-fill, 0%) 100%, 100% 100%;
}
html body input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px; height: 16px;
  margin-top: -6px;
  border-radius: 50%;
  background: #fff;
  border: 0;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}
html body input[type="range"]::-moz-range-track { height: 4px; border-radius: 4px; background: rgba(255, 255, 255, 0.12); }
html body input[type="range"]::-moz-range-progress { height: 4px; border-radius: 4px; background: #f2f2f3; }
html body input[type="range"]::-moz-range-thumb { width: 16px; height: 16px; border: 0; border-radius: 50%; background: #fff; }
html body .extend-range-row { color: var(--text-2) !important; font-size: 13px !important; }
html body .extend-range-row output { color: var(--text) !important; font-variant-numeric: tabular-nums; }
html body .cover-range > .form-control { padding: 0 6px !important; text-align: center; font-variant-numeric: tabular-nums; }

html body .toggle-password-type { color: var(--text-3) !important; }
html body .toggle-password-type:hover { color: var(--text) !important; }

/* зоны загрузки файлов */
html body .geex-audio-upload,
html body .cover-upload,
html body .mv-audio-picker,
html body .mv-drop {
  background: transparent !important;
  border: 1px dashed var(--line-2) !important;
  border-radius: var(--r-lg) !important;
  box-shadow: none !important;
  transition: border-color .2s var(--ease), background .2s var(--ease) !important;
}
html body .geex-audio-upload:hover,
html body .geex-audio-upload:focus-within,
html body .cover-upload:hover,
html body .mv-audio-picker:hover,
html body .mv-drop:hover { background: rgba(255, 255, 255, 0.025) !important; border-color: var(--line-3) !important; }
html body .geex-audio-upload.is-dragover,
html body .cover-upload.is-dragover { background: rgba(var(--accent-rgb), 0.06) !important; border-color: rgba(var(--accent-rgb), 0.7) !important; }
html body .geex-audio-upload.has-file,
html body .cover-upload.has-file { border-style: solid !important; border-color: var(--line) !important; background: rgba(255, 255, 255, 0.02) !important; }
html body .geex-audio-upload__icon,
html body .cover-upload__empty i {
  width: 44px !important; height: 44px !important;
  font-size: 20px !important;
  background: var(--fill) !important;
  color: var(--text) !important;
  box-shadow: none !important;
}
html body .geex-audio-upload__title,
html body .cover-upload__empty b { color: var(--text) !important; font-size: 14px !important; font-weight: 600 !important; }
html body .geex-audio-upload__subtitle { color: var(--text-3) !important; font-size: 13px !important; }
html body .geex-audio-upload__filename { color: var(--text-2) !important; font-size: 12.5px !important; font-weight: 500 !important; }
html body .geex-audio-upload__play,
html body .cover-play,
html body .mv-file-row button,
html body .mv-verify-visual button,
html body .sep-play,
html body #extendTrackModal .extend-player-toggle {
  background: #f2f2f3 !important;
  color: #0a0a0b !important;
  border: 0 !important;
  border-radius: 50% !important;
  box-shadow: none !important;
}
html body #extendTrackModal .extend-play-icon { border-left-color: #0a0a0b !important; }
html body #extendTrackModal .extend-player-toggle.is-playing .extend-play-icon:before,
html body #extendTrackModal .extend-player-toggle.is-playing .extend-play-icon:after { background: #0a0a0b !important; }
html body .geex-audio-upload__play img { filter: brightness(0); width: 16px !important; height: 16px !important; }
html body .mv-audio-picker i,
html body .mv-drop i,
html body .mv-drop > .mv-icon { color: var(--text-2) !important; }

/* страница «Сделать кавер»: тумблер */
html body .cover-toggle { width: 40px !important; height: 24px !important; flex: 0 0 40px !important; }
html body .cover-toggle input { min-width: 0 !important; width: 1px !important; height: 1px !important; }
html body .cover-toggle span { background: rgba(255, 255, 255, 0.14) !important; border-radius: 24px !important; }
html body .cover-toggle span:before { width: 20px !important; height: 20px !important; left: 2px !important; top: 2px !important; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4) !important; }
html body .cover-toggle input:checked + span { background: var(--accent) !important; }
html body .cover-toggle input:checked + span:before { transform: translateX(16px) !important; }

html body audio { color-scheme: dark; border-radius: var(--pill); }
html body audio::-webkit-media-controls-enclosure { border-radius: var(--pill); background: var(--fill); }

/* ---------- Панели страниц ---------- */
html body .geex-content__section,
html body .mv-card,
html body .user-info-card {
  background: var(--panel) !important;
  background-image: none !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--r-xl) !important;
  box-shadow: none !important;
  padding: 24px;
}
@media (max-width: 575px) {
  html body .geex-content__section, html body .mv-card { padding: 18px !important; border-radius: var(--r-lg) !important; }
}
html body .geex-content__section--transparent { background: transparent !important; border: 0 !important; padding: 0 !important; }
html body .geex-content__form__single { border-color: var(--line) !important; }
html body .geex-content__form__single__label,
html body .geex-content__widget__single__title,
html body .mv-card h3 {
  font-family: var(--font) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  color: var(--text) !important;
  margin-bottom: 18px !important;
  letter-spacing: -0.01em;
}
html body .geex-content__widget__single__subtitle,
html body .mv-muted, html body .mv-tip { color: var(--text-3) !important; font-size: 13px; }

/* ответы генератора текста */
html body .geex-content__chat__content { background: transparent !important; }
html body .geex-content__chat__list__single__msg {
  background: var(--panel-2) !important;
  border: 1px solid var(--line);
  color: var(--text) !important;
  border-radius: 14px !important;
  font-size: 13.5px;
}
html body .geex-content__chat__list__single__title { color: var(--text-2) !important; font-size: 13px !important; }

/* правая колонка «Последние обновления» */
html body .inform, html body .inform2 {
  width: 320px !important;
  max-width: 320px !important;
  padding: 0 4px 0 24px !important;
  border-left: 1px solid var(--line);
}
@media only screen and (max-width: 719px) {
  html body .inform, html body .inform2 { width: 100% !important; max-width: 100% !important; border-left: 0; padding: 0 !important; }
}
html body .geex-content__widget__single {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}
html body .geex-content__widget__single__header { margin-bottom: 18px; }
html body .geex-content__widget__single__timeline__content__title { color: var(--text) !important; font-size: 13.5px !important; font-weight: 600 !important; }
html body .geex-content__widget__single__timeline__content > h4:first-child { color: var(--text-3) !important; font-size: 12px !important; font-weight: 500 !important; }
html body .geex-content__widget__single__timeline__content__subtitle { color: var(--text-3) !important; font-size: 12.5px !important; line-height: 1.5; }
html body .geex-content__widget__single__timeline__content img {
  border-radius: var(--r) !important;
  transition: opacity .25s var(--ease);
}
html body .geex-content__widget__single__timeline__content a:hover img { opacity: .85; }
html body .geex-content__widget__single__timeline__content:before {
  background: var(--bg) !important;
  border: 1.5px solid var(--text-3) !important;
  box-shadow: none !important;
}
html body .geex-content__widget__single__timeline:first-child .geex-content__widget__single__timeline__content:before { border-color: #fff !important; background: #fff !important; }
html body .geex-content__widget__single__timeline__content:after { background: var(--line-2) !important; width: 1px !important; }

/* ---------- Карточки треков (вертикальные, без рамок) ---------- */
html body .allmusic { padding-right: 10px !important; }
html body .geex-content__todo__list {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 22px 6px !important;
  align-items: start !important;
  padding: 0 !important;
}
html body .geex-content__todo__list > :not(.geex-content__todo__list__single) { grid-column: 1 / -1; }

html body .geex-content__todo__list__single,
html body .geex-content__todo__list__single.brd {
  position: relative;
  width: 100%;
  max-width: 280px;
  padding: 8px 8px 12px !important;
  gap: 0 !important;
  align-items: stretch !important;
  background: transparent !important;
  background-image: none !important;
  border: 0 !important;
  border-radius: var(--r-lg) !important;
  box-shadow: none !important;
  transition: background .25s var(--ease);
}
html body .geex-content__todo__list .geex-content__todo__list__single { max-width: none; }
html body .geex-content__todo__list__single:hover { background: rgba(255, 255, 255, 0.035) !important; }

html body .geex-content__todo__list__single__checkbox,
html body .geex-content__todo__list__single .players-wrapper,
html body .geex-content__todo__list__single .audio-player { width: 100%; align-items: stretch !important; margin: 0 !important; }

/* обложка */
html body .geex-content__todo__list__single .play-button {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1 / 1;
  align-items: flex-end !important;
  justify-content: flex-end !important;
  padding: 10px;
  border-radius: var(--r) !important;
  background-color: #151517 !important;
  box-shadow: none !important;
  transition: box-shadow .3s var(--ease);
}
html body .play-button::before {
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.35)) !important;
  opacity: 0;
  transition: opacity .25s var(--ease) !important;
}
html body .play-button:hover::before,
html body .play-button:has(img[src*="pause"])::before { opacity: 1; }

/* кнопка воспроизведения — стеклянный круг, появляется при наведении */
html body .play-button .icon {
  left: 0 !important;
  width: 44px;
  height: 44px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: translateY(6px) scale(0.96);
  transition: opacity .25s var(--ease), transform .25s var(--ease), background .2s;
}
html body .play-button .icon img {
  width: 16px !important;
  height: 16px !important;
  object-fit: contain;
  filter: brightness(0);
}
html body .play-button .icon img[src*="play-button"] { margin-left: 2px; }
html body .play-button:hover .icon,
html body .play-button:focus-visible .icon,
html body .play-button .icon:has(img[src*="pause"]) { opacity: 1; transform: none; }
html body .play-button:hover .icon { background: #fff; }
@media (hover: none) {
  html body .play-button .icon {
    opacity: 1;
    transform: none;
    width: 38px; height: 38px;
    background: rgba(20, 20, 22, 0.55);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    backdrop-filter: blur(16px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.18);
  }
  html body .play-button .icon img { filter: brightness(0) invert(1); width: 14px !important; height: 14px !important; }
}
/* играет — тонкая светящаяся обводка в фирменных цветах */
html body .play-button:has(img[src*="pause"]) {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.28), 0 18px 40px -18px rgba(226, 127, 180, 0.75) !important;
}
html body .play-button .icon:has(img[src*="pause"]) { background: #fff; }

html body .skeleton-bg {
  background: linear-gradient(100deg, #141416 30%, #1f1f22 50%, #141416 70%) !important;
  background-size: 220% 100% !important;
  animation: g-skeleton 1.5s ease-in-out infinite !important;
}
@keyframes g-skeleton { 0% { background-position: 120% 0; } 100% { background-position: -120% 0; } }

/* подписи */
html body .geex-content__todo__list__single__text {
  width: 100% !important;
  max-width: none !important;
  gap: 2px !important;
  padding: 10px 2px 0;
}
html body .geex-content__todo__list__single__title {
  width: 100% !important;
  height: 19px !important;
  font-family: var(--font) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 19px !important;
  color: var(--text) !important;
  white-space: nowrap;
  text-overflow: ellipsis;
}
html body .geex-content__todo__list__single__subtitle {
  width: 100% !important;
  height: 17px !important;
  font-size: 12px !important;
  line-height: 17px !important;
  color: var(--text-3) !important;
  text-transform: none !important;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* строка статистики: иконки без плашек */
html body .geex-content__todo__list__single__inform,
html body .geex-content__todo__list__single__inform2 {
  width: 100%;
  gap: 0 !important;
  margin: 6px 0 0 -6px !important;
  flex-wrap: nowrap !important;
}
html body .geex-content__todo__list__single__inform .dropdown { margin-left: auto; }
html body .block_track_info {
  height: 26px;
  min-width: 26px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 6px !important;
  font-size: 12px !important;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  color: var(--text-3);
  background: transparent !important;
  border: 0 !important;
  border-radius: var(--r-sm) !important;
  text-decoration: none;
  transition: background .15s var(--ease), color .15s var(--ease);
}
html body a.block_track_info:hover,
html body button.block_track_info:hover { color: var(--text) !important; background: var(--fill) !important; }
html body .block_track_info[style*="color"] { color: #e27fb4 !important; }
html body .block_track_info .geex-content__listen { gap: 4px !important; }
html body .block_track_info svg,
html body .geex-content__listen svg { width: 14px !important; height: 14px !important; margin: 0 !important; flex: 0 0 14px; }
html body svg.ico { vertical-align: middle; overflow: visible; }
html body svg.ico * { fill: none; }
html body .block_track_info svg.ico-play path { fill: currentColor; stroke: none; }
html body .block_track_info[style*="color"] svg.ico-thumbUp path:last-child,
html body .block_track_info[style*="color"] svg.ico-thumbDown path:last-child { fill: currentColor; }

/* звуковая волна — тонкая и спокойная */
html body .wave-overlay { background: transparent !important; border: 0 !important; }
html body .geex-audio-upload__waveform { height: 40px !important; background: transparent !important; }
html body .geex-audio-upload__waveform .wave-bars { padding: 0 !important; }

/* кнопки под карточкой */
html body .geex-content__todo__list__single__tag {
  gap: 4px !important;
  width: 100%;
  max-width: none !important;
  justify-content: flex-start !important;
  margin-top: 8px;
}
html body .geex-content__todo__list__single__tag__item {
  height: 28px !important;
  padding: 0 10px !important;
  gap: 5px !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  border-radius: var(--pill) !important;
  color: var(--text-2) !important;
  background: var(--fill) !important;
  border: 0 !important;
  box-shadow: none !important;
  text-decoration: none;
  transition: background .15s var(--ease), color .15s var(--ease);
}
html body .geex-content__todo__list__single__tag__item i { font-size: 14px !important; color: inherit !important; }
html body .geex-content__todo__list__single__tag__item:hover { background: var(--fill-2) !important; color: #fff !important; }
html body .geex-content__todo__list__single__tag__item.danger:hover { color: #ff8a84 !important; background: rgba(255, 95, 86, 0.12) !important; }

/* меню трека и все выпадающие списки */
html body .dropdown-menu {
  padding: 5px !important;
  min-width: 190px !important;
  width: max-content;
  max-width: min(300px, calc(100vw - 24px));
  background: var(--glass) !important;
  border: 1px solid var(--line-2) !important;
  border-radius: 12px !important;
  box-shadow: var(--shadow-pop) !important;
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
}
html body .dropdown-menu .dropdown-item {
  gap: 10px !important;
  padding: 7px 9px !important;
  font-size: 13px !important;
  color: var(--text) !important;
  background: transparent !important;
  border-radius: 8px;
  width: 100%;
  white-space: nowrap;
}
html body .dropdown-menu .dropdown-item svg { width: 15px; height: 15px; color: var(--text-3); }
html body .dropdown-menu .dropdown-item:hover,
html body .dropdown-menu .dropdown-item:focus { background: var(--fill-2) !important; color: #fff !important; }
html body .dropdown-menu .dropdown-item:hover svg { color: #fff; }
html body .dropdown-menu .dropdown-item[data-action="report"]:hover,
html body .dropdown-menu .dropdown-item[data-action="report"]:hover svg { color: #ff8a84 !important; }

html body #loader span, html body .loading-dots { color: var(--text-2); }
html body .spinner, html body .cover-spinner, html body .mv-spinner {
  border-color: rgba(255, 255, 255, 0.1) !important;
  border-top-color: #fff !important;
}

/* ---------- Панель «Новая песня» ---------- */
html body .geex-customizer {
  width: 400px;
  background: rgba(14, 14, 16, 0.86) !important;
  border-left: 1px solid var(--line-2);
  box-shadow: -40px 0 100px -30px rgba(0, 0, 0, 0.9);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  padding: 22px 24px !important;
}
@media only screen and (max-width: 575px) { html body .geex-customizer { width: 100vw; padding: 18px !important; } }
html body .geex-customizer:not(.active) { inset-inline-end: -110vw !important; }
html body .geex-customizer__header { border-bottom: 0 !important; padding-bottom: 0 !important; margin-bottom: 22px !important; }
html body .geex-customizer__title { font-size: 18px !important; font-weight: 650 !important; letter-spacing: -0.02em; }
html body .geex-customizer .geex-btn__customizer-close {
  width: 32px !important; height: 32px !important;
  border-radius: 50% !important;
  background: var(--fill) !important;
  border: 0 !important;
  color: var(--text);
}
html body .geex-customizer .geex-btn__customizer-close svg { width: 16px; height: 16px; }
html body .geex-customizer .geex-btn__customizer-close svg * { fill: none !important; }
html body .geex-customizer .geex-btn__customizer-close:hover { background: var(--fill-2) !important; }
html body .geex-customizer .geex-content__widget__single { padding: 0 !important; }
html body .geex-customizer .geex-content__summary__balance__img { display: none; }
html body .geex-customizer #sand_track { width: 100% !important; min-height: 46px; margin-top: 8px; }
html body .geex-customizer a[href="/kak_sozdat_pesnyu"],
html body .geex-customizer .input-label a { color: var(--text-2) !important; font-size: 12.5px; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--line-3); }

html body.overlay_active::after {
  background-color: rgba(0, 0, 0, 0.5) !important;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
html body .geex-customizer .geex-customizer-overlay { background: transparent !important; }

/* ---------- Модальные окна ---------- */
html body .modal-backdrop { background: #000 !important; }
html body .modal-backdrop.show { opacity: 0.6 !important; }
html body .modal.show { -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
html body .modal-dialog { padding: 0 12px; }
html body .modal .modal-content,
html body .mv-modal-box {
  background: rgba(20, 20, 22, 0.86) !important;
  background-image: none !important;
  color: var(--text) !important;
  border: 1px solid var(--line-2) !important;
  border-radius: var(--r-xl) !important;
  box-shadow: var(--shadow-pop) !important;
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
}
html body .modal .modal-body { color: var(--text); font-size: 14px; }
html body .modal .modal-body > div,
html body .modal .modal-body p { line-height: 1.55; }
html body .modal .modal-body a:not(.btn):not(.geex-btn) { color: var(--text); text-decoration: underline; text-decoration-color: var(--line-3); text-underline-offset: 3px; }
html body .modal .geex-content__widget__single__title,
html body .modal h3, html body .modal h5 { font-weight: 600 !important; }

html body .modal .btn-close,
html body #extendTrackModal .btn-close,
html body .mv-close {
  position: absolute !important;
  top: 14px !important;
  right: 14px !important;
  left: auto !important;
  width: 30px !important;
  height: 30px !important;
  padding: 0 !important;
  margin: 0 !important;
  display: inline-flex !important;
  border-radius: 50% !important;
  opacity: 1 !important;
  background: var(--fill) none !important;
  border: 0 !important;
  box-shadow: none !important;
  font-size: 0 !important;
  z-index: 20 !important;
  transition: background .2s var(--ease);
}
html body .modal .btn-close span,
html body #extendTrackModal .btn-close span { display: none !important; }
html body .modal .btn-close::before,
html body .modal .btn-close::after,
html body .mv-close::before,
html body .mv-close::after {
  content: "" !important;
  position: absolute;
  top: 50%; left: 50%;
  width: 12px; height: 1.5px;
  margin: 0 !important;
  border-radius: 2px;
  background: var(--text) !important;
  transform: translate(-50%, -50%) rotate(45deg);
}
html body .modal .btn-close::after,
html body .mv-close::after { transform: translate(-50%, -50%) rotate(-45deg); }
html body .modal .btn-close:hover,
html body .mv-close:hover { background: var(--fill-2) !important; }
html body .mv-back { background: var(--fill) !important; border: 0 !important; border-radius: 50% !important; width: 30px !important; height: 30px !important; }
html body .mv-modal { background: rgba(0, 0, 0, 0.6) !important; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }

html body .geex-content__modal__form {
  background: rgba(20, 20, 22, 0.92) !important;
  border: 1px solid var(--line-2);
  border-radius: var(--r-xl) !important;
  box-shadow: var(--shadow-pop) !important;
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  color: var(--text);
}
html body .geex-content__modal__form__close {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--fill) !important;
  border: 0 !important;
  color: var(--text) !important;
}
html body .geex-content__modal__form__item__title { color: var(--text) !important; font-weight: 600 !important; }
html body .geex-content__modal__form__item__single { color: var(--text-2) !important; line-height: 1.6; }

html body .profile-upload-circle { background: transparent !important; border: 1px dashed var(--line-3) !important; overflow: hidden; }
html body .profile-upload-circle:hover { border-color: #fff !important; }
html body .profile-upload-circle svg path { stroke: var(--text-2); }
html body .profile-upload-text span { color: var(--text) !important; font-size: 14px !important; }
html body .profile-upload-text small { color: var(--text-3) !important; font-size: 12px !important; }
html body #linkChangePass, html body #linkBackToProfile { color: var(--text-2) !important; }

/* продление трека */
html body #extendTrackModal .extend-continue-player,
html body #musiccoverModal .musiccover-source-box,
html body #extendTrackModal .extend-source-box,
html body .sep-row {
  background: var(--panel-2) !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--r-lg) !important;
}
html body #extendTrackModal .extend-player-cover { border-radius: 10px !important; }
html body #extendTrackModal .extend-wave-editor { background: rgba(0, 0, 0, 0.3) !important; border: 1px solid var(--line) !important; border-radius: var(--r) !important; }
html body #extendTrackModal .extend-wave-bar { background: rgba(255, 255, 255, 0.5) !important; }
html body #extendTrackModal .extend-wave-keep {
  background: rgba(var(--accent-rgb), 0.35) !important;
  border: 0 !important;
  border-radius: 12px 0 0 12px !important;
  mix-blend-mode: normal !important;
}
html body #extendTrackModal .extend-wave-handle { width: 2px !important; background: #fff !important; box-shadow: 0 0 12px rgba(255, 255, 255, 0.6) !important; }
html body #extendTrackModal .extend-wave-labels span:first-child { background: rgba(var(--accent-rgb), 0.55) !important; }
html body #extendTrackModal .extend-wave-labels span:last-child { background: var(--fill) !important; }
html body #extendTrackModal .extend-player-bottom strong { background: var(--fill) !important; border: 0 !important; border-radius: 8px !important; }

/* страница «Сделать кавер»: волна */
html body .cover-wave { background: transparent !important; gap: 2px !important; padding: 0 !important; }
html body .cover-wave span.bar { background: rgba(255, 255, 255, 0.14) !important; min-width: 1px !important; }
html body .cover-wave span.bar.active { background: #f2f2f3 !important; }
html body .cover-wave-progress { background: transparent !important; }

/* ---------- Сообщения ---------- */
html body .vocal-result-alert,
html body .mv-alert,
html body .alert-danger {
  background: rgba(255, 95, 86, 0.08) !important;
  border: 1px solid rgba(255, 95, 86, 0.25) !important;
  border-radius: var(--r) !important;
  color: #ffb3ae !important;
}
html body .vocal-result-alert__title { color: #ffd2cf !important; }
html body .alert { border-radius: var(--r) !important; border: 1px solid var(--line-2) !important; background: var(--panel-2) !important; color: var(--text) !important; }
html body .alert-success { background: rgba(62, 207, 142, 0.08) !important; border-color: rgba(62, 207, 142, 0.25) !important; color: #a7f0cd !important; }
html body .mv-ready { background: var(--panel-2) !important; border: 1px solid var(--line) !important; border-radius: var(--r) !important; }
html body .mv-ready > i { color: var(--text) !important; }
html body .mv-badge { background: var(--fill) !important; color: var(--text-2) !important; border-radius: var(--pill) !important; }
html body .mv-grid article,
html body .mv-voice-card,
html body .mv-source-options button,
html body .mv-recorder,
html body .mv-selection,
html body .mv-phrase,
html body .mv-verify-visual,
html body .mv-wave-editor {
  background: var(--panel) !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--r-lg) !important;
  box-shadow: none !important;
}
html body .mv-source-options button:hover,
html body .mv-voice-card:hover { border-color: var(--line-2) !important; background: var(--panel-2) !important; }
html body .mv-grid article > i,
html body .mv-voice-card-icon { color: var(--text) !important; }
html body .mv-voice-card-icon { background: var(--fill) !important; border-radius: 10px !important; }
html body .mv-record-button { border-radius: 50% !important; background: var(--brand) !important; border: 6px solid rgba(255, 255, 255, 0.06) !important; box-shadow: var(--brand-glow); }
html body .mv-library-empty { border-color: var(--line-2) !important; border-radius: var(--r-lg) !important; }
html body .custom-tooltip,
html body .geex-tooltip {
  background: var(--glass) !important;
  border: 1px solid var(--line-2) !important;
  border-radius: 10px !important;
  color: var(--text) !important;
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
}

/* ---------- Профиль пользователя ---------- */
html body .user-info-card { padding: 20px 24px !important; gap: 32px !important; }
html body .user-info-card .geex-content__feature__card__img img { background: transparent !important; border: 0 !important; width: 64px !important; height: 64px !important; }
html body .user-info-card .geex-content__feature__card__title { color: var(--text) !important; font-size: 20px !important; font-weight: 650 !important; }
html body .user-info-card .geex-content__feature__card__subtitle { color: var(--text-3) !important; font-size: 12px !important; }

/* ---------- Блог и документы ---------- */
html body .geex-content__blog__single {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}
html body .geex-content__blog__single__img { border-radius: var(--r-lg); overflow: hidden; }
html body .geex-content__blog__single__img img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--r-lg) !important;
  transition: transform .5s var(--ease);
}
html body .geex-content__blog__single__content,
html body .geex-content__blog__single__quickinfo { text-align: left !important; justify-content: flex-start !important; display: block; }
html body .geex-content__blog__single:hover .geex-content__blog__single__img img { transform: scale(1.03); }
html body .geex-content__blog__single__content { padding: 12px 2px 0 !important; text-align: left !important; }
html body .geex-content__blog__single__quickinfo,
html body .geex-content__widget__quickinfo { color: var(--text-3) !important; font-size: 12px !important; margin-bottom: 4px !important; }
html body .geex-content__blog__single__title,
html body .geex-content__blog__single__title a,
html body .geex-content__widget__article__title,
html body .geex-content__widget__article__title a,
html body .geex-content__widget__title {
  font-family: var(--font) !important;
  font-size: 14.5px !important;
  font-weight: 600 !important;
  color: var(--text) !important;
  line-height: 1.35;
  text-align: left !important;
}
html body .geex-content__blog_details__title { font-size: 28px !important; font-weight: 700 !important; letter-spacing: -0.03em; }
html body .geex-content__blog_details__content > img { border-radius: var(--r-lg) !important; }
html body .geex-content__blog_details__quickinfo { display: flex; flex-wrap: wrap; gap: 16px; }
html body .geex-content__blog_details__quickinfo__item { color: var(--text-3) !important; font-size: 13px; }
html body .geex-content__blog_details__content,
html body .geex-content__blog_details__content p,
html body .geex-content__blog_details__content li { color: rgba(255, 255, 255, 0.76); line-height: 1.7; }
html body .geex-content__blog_details__quote,
html body blockquote {
  background: transparent !important;
  border: 0 !important;
  border-left: 2px solid var(--line-3) !important;
  border-radius: 0 !important;
  color: var(--text-2) !important;
  padding: 4px 0 4px 18px !important;
  font-style: italic;
}
html body .geex-content__widget__article__img > a > div { border-radius: 10px !important; }
html body .geex-content__terms__title { color: var(--text) !important; font-size: 17px !important; font-weight: 600 !important; margin: 26px 0 10px !important; }
html body .geex-content__terms__wrapper > :first-child { margin-top: 0 !important; }
html body .geex-content__terms__desc,
html body .geex-content__terms__wrapper li { color: rgba(255, 255, 255, 0.72) !important; line-height: 1.7 !important; font-size: 14px; }

/* ---------- Вход и лендинг ---------- */
html body.authentication-page .geex-content__authentication { background: transparent; }
html body .geex-content__authentication__content {
  background: rgba(10, 10, 11, 0.9) !important;
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border-right: 1px solid var(--line);
}
html body .geex-content__authentication__form { padding: 0; background: transparent; border: 0; }
html body .geex-content__authentication__title {
  font-size: 22px !important;
  font-weight: 650 !important;
  letter-spacing: -0.025em;
  color: var(--text) !important;
  margin-bottom: 26px !important;
}
html body .geex-content__authentication__form-group { position: relative; }
html body .geex-content__authentication__form-group input {
  height: 56px;
  margin-bottom: 13px !important;
  padding: 0 46px 0 16px !important;
}
html body .geex-content__authentication__form-group__code input { width: 56px; height: 56px; padding: 0 !important; text-align: center; font-size: 20px !important; }
html body .geex-content__authentication__form-group i { color: var(--text-3) !important; }
html body .geex-content__authentication__label-wrapper a,
html body .geex-content__authentication__form-footer a { color: var(--text-2) !important; font-size: 12.5px; }
html body .geex-content__authentication__form-submit { width: 100%; min-height: 48px !important; margin-top: 8px; }
html body .geex-content__authentication__img { position: relative; }
html body .geex-content__authentication__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 10, 11, 0.7) 0%, rgba(10, 10, 11, 0) 35%);
  pointer-events: none;
}

html body .landing-section h1,
html body .landing-section h2 {
  background: none !important;
  -webkit-text-fill-color: var(--text) !important;
  color: var(--text) !important;
  font-weight: 650;
  letter-spacing: -0.03em;
}
html body .landing-section .lead,
html body .landing-section p { color: var(--text-2) !important; }
html body .hero-cta { gap: 10px; }
html body .hero-cta .geex-btn { min-height: 44px; padding: 0 24px !important; }
html body .hero-cta .geex-btn:first-child {
  color: #fff !important;
  background: var(--brand) !important;
  box-shadow: var(--brand-glow) !important;
}
html body .hero-image img {
  border-radius: var(--r-lg) !important;
  border: 1px solid var(--line-2);
  box-shadow: 0 40px 100px -40px rgba(0, 0, 0, 0.9), 0 0 80px -30px rgba(166, 108, 242, 0.35) !important;
}
html body .feature-card,
html body .landing-pricing .price-card,
html body .disclaimer-card,
html body .glass-card {
  background: var(--panel) !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--r-lg) !important;
  box-shadow: none !important;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
html body .glass-card::before, html body .glass-card::after { display: none; }
html body .feature-card:hover,
html body .landing-pricing .price-card:hover { border-color: var(--line-2) !important; background: var(--panel-2) !important; box-shadow: none !important; }
html body .feature-card .icon { font-size: 22px !important; margin-bottom: 12px !important; }
html body .feature-card h3 { font-size: 15px !important; font-weight: 600; }
html body .feature-card p { font-size: 13.5px; color: var(--text-3) !important; }
html body .track-card { border: 0 !important; background: transparent; }
html body .track-card .cover { border-radius: var(--r) !important; }
html body .slider-dots .dot { width: 6px !important; height: 6px !important; background: var(--line-3) !important; }
html body .slider-dots .dot.active { background: #fff !important; transform: none !important; }

/* ---------- Bootstrap мелочи ---------- */
html body hr { border-color: var(--line) !important; opacity: 1; }
html body .text-light { color: var(--text-2) !important; }
html body .table { --bs-table-bg: transparent; color: var(--text); border-color: var(--line); }
html body .payitg { padding-top: 16px; border-top: 1px solid var(--line); }

/* ---------- Мобильная версия ---------- */
@media only screen and (max-width: 991px) {
  html body .geex-content__header__action { width: 100%; justify-content: space-between; }
}
@media only screen and (max-width: 767px) {
  html body .geex-main-content { gap: 0 !important; padding: 14px !important; }
  html body .geex-content__header { gap: 16px !important; }
  html body .geex-content__header__customizer { flex: 0 0 auto !important; margin-inline-end: 0; }
  html body .geex-content__header__action__wrap { gap: 0 !important; }
  html body .allmusic { max-height: none !important; overflow: visible !important; padding: 0 !important; }
}
@media only screen and (max-width: 575px) {
  html body .geex-content__todo__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 2px !important;
  }
  html body .geex-content__todo__list__single,
  html body .geex-content__todo__list__single.brd { padding: 4px 4px 10px !important; }
  html body .block_track_info { padding: 0 4px !important; min-width: 22px; }
  html body .geex-content__todo__list__single__inform { margin-left: -4px !important; }
  html body .geex-content__todo__list__single__tag__item { flex: 1; justify-content: center; padding: 0 6px !important; }
}
@media only screen and (max-width: 360px) {
  html body .geex-content__todo__list { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html body *, html body *::before, html body *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  html body .geex-sidebar,
  html body .geex-customizer,
  html body .modal .modal-content,
  html body .dropdown-menu,
  html body .geex-content__header__popup { background: #151517 !important; }
}

/* ==========================================================================
   Дополнения v4: логотип, покупка попыток, волна на canvas,
   страница трека, подписки
   ========================================================================== */

/* ---------- Логотип ---------- */
html body .geex-sidebar__header { padding: 4px 10px 6px; }
html body .geex-sidebar__logo { display: inline-flex; }
@media only screen and (max-width: 1199px) {
  html body .geex-sidebar__logo img { max-height: 46px !important; }
}

/* ---------- Остаток попыток + покупка ---------- */
html body .geex-sidebar__footer .geex-tooltip {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0 0 14px;
  padding: 6px 6px 6px 14px;
  border-radius: var(--pill);
  background: var(--fill);
  border: 1px solid var(--line);
  box-shadow: none;
}
html body .geex-sidebar__footer .geex-tooltip::after,
html body .geex-sidebar__footer .geex-tooltip::before { display: none !important; content: none !important; }
html body .geex-sidebar__footer .geex-tooltip__title:empty { display: none; }
html body .geex-sidebar__footer .geex-tooltip__text {
  flex: 1;
  min-width: 0;
  color: var(--text) !important;
  font-size: 13px !important;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: default;
}
html body .geex-sidebar__footer .geex-tooltip__text:empty::after { content: "…"; color: var(--text-3); }
html body .g-buy {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 30px;
  padding: 0 12px 0 10px;
  border: 0;
  border-radius: var(--pill);
  background: #f2f2f3;
  color: #0a0a0b;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s var(--ease), transform .15s var(--ease);
}
html body .g-buy:hover { background: #fff; }
html body .g-buy:active { transform: scale(0.96); }
html body .g-buy svg { width: 15px; height: 15px; }
html body .g-buy svg * { fill: none; }

/* ---------- Волна (canvas) ---------- */
html body .waveform-slider { height: 30px !important; margin-top: 8px; }
html body .geex-content__todo__list__single .waveform-slider { width: 100% !important; overflow: hidden; }
html body .cw-mounted > span,
html body .cw-mounted span.bar { visibility: hidden !important; }
html body .cw-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  z-index: 2;
}
html body .geex-audio-upload__waveform { height: 40px !important; background: transparent !important; border-radius: 0 !important; }
html body .geex-audio-upload__waveform .wave-overlay { display: none; }
html body .cover-wave { height: 44px !important; }

/* ---------- Кликабельное название трека ---------- */
html body .geex-content__todo__list__single__title { cursor: pointer; }
html body .geex-content__todo__list__single__title:hover { text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--line-3); }

/* ---------- Выпадающие окна шапки: отступ от кнопок ---------- */
html body .geex-content__header__popup { top: calc(100% + 12px) !important; }
@media only screen and (max-width: 767px) {
  html body .geex-content__header__quickaction__item { position: static !important; }
  html body .geex-content__header__quickaction { position: relative; }
  html body .geex-content__header__popup {
    position: absolute !important;
    top: calc(100% + 12px) !important;
    right: 0 !important;
    left: auto !important;
    inset-inline-end: 0 !important;
    width: calc(100vw - 28px) !important;
    min-width: 0 !important;
    max-width: 380px;
  }
  html body .geex-content__header__searchform { width: calc(100vw - 28px) !important; max-width: 380px; }
}

/* ---------- Страница трека ---------- */
.tp {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  align-items: start;
}
.tp-main { min-width: 0; }
.tp-hero { display: flex; gap: 26px; align-items: stretch; }
.tp-cover {
  position: relative;
  flex: 0 0 232px;
  width: 232px;
  height: 232px;
  padding: 0;
  border: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #151517;
  cursor: pointer;
  box-shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.9);
}
.tp-cover img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s var(--ease), filter .3s; }
.tp-cover:hover img { transform: scale(1.03); filter: brightness(0.85); }
.tp-cover__btn {
  position: absolute;
  left: 50%; top: 50%;
  width: 60px; height: 60px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(20, 20, 22, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.22);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
  transform: translate(-50%, -50%) scale(0.92);
  opacity: 0;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.tp-cover:hover .tp-cover__btn, .tp.is-playing .tp-cover__btn { opacity: 1; transform: translate(-50%, -50%); }
.tp-cover__btn .tp-i-play { margin-left: 3px; }
.tp .tp-i-pause { display: none; }
.tp.is-playing .tp-i-pause { display: block; }
.tp.is-playing .tp-i-play { display: none; }
.tp.is-playing .tp-cover { box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25), 0 24px 60px -24px rgba(0, 0, 0, 0.9); }
@media (hover: none) { .tp-cover__btn { opacity: 1; transform: translate(-50%, -50%); } }

.tp-info { flex: 1; min-width: 0; display: flex; flex-direction: column; }
html body .tp-title {
  font-size: 34px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.035em;
  margin: 2px 0 14px;
  word-break: break-word;
}
.tp-author { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-bottom: 12px; }
html body .tp-author__link { display: inline-flex; align-items: center; gap: 8px; color: var(--text); font-weight: 600; font-size: 14px; }
.tp-author__link img { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; }
.tp-follow {
  display: inline-flex; align-items: center; gap: 6px;
  height: 28px; padding: 0 12px;
  border: 0; border-radius: var(--pill);
  background: #f2f2f3; color: #0a0a0b;
  font-size: 12.5px; font-weight: 600;
  cursor: pointer;
  transition: background .2s var(--ease);
}
.tp-follow:hover { background: #fff; }
.tp-follow svg * { fill: none; }
.tp-follow .tp-follow__check { display: none; }
.tp-follow.is-following { background: var(--fill-2); color: var(--text); }
.tp-follow.is-following:hover { background: var(--fill-3); }
.tp-follow.is-following .tp-follow__plus { display: none; }
.tp-follow.is-following .tp-follow__check { display: inline; }
.tp-followers { color: var(--text-3); font-size: 12.5px; }
.tp-styles { color: var(--text-2); font-size: 13px; line-height: 1.5; margin: 0 0 6px; }
.tp-date { color: var(--text-3); font-size: 12.5px; margin: 0; display: flex; align-items: center; gap: 8px; }
.tp-tag { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 10.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--text-3); padding: 2px 6px; border-radius: 6px; background: var(--fill); }

.tp-bar { margin-top: auto; padding-top: 18px; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
html body .tp-stats { display: flex; align-items: center; gap: 6px !important; margin: 0 !important; flex-wrap: wrap; width: auto; }
html body .tp-chip,
html body .tp-stats .block_track_info.tp-chip {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  height: 32px;
  min-width: 32px;
  padding: 0 12px !important;
  border: 0 !important;
  border-radius: var(--pill) !important;
  background: var(--fill) !important;
  color: var(--text) !important;
  font-size: 13px !important;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  text-decoration: none;
  cursor: pointer;
}
html body .tp-chip:hover { background: var(--fill-2) !important; }
html body .tp-chip svg { width: 14px !important; height: 14px !important; }
html body .tp-stats .block_track_info.tp-chip[style*="color"] { color: #e27fb4 !important; }
.tp-actions { display: flex; gap: 8px; }
.tp-icon-btn {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 0; border-radius: 50%;
  background: var(--fill); color: var(--text);
  cursor: pointer;
  transition: background .2s var(--ease);
}
.tp-icon-btn:hover { background: var(--fill-2); }
.tp-icon-btn svg * { fill: none; }
.tp-icon-btn--sm { width: 32px; height: 32px; }
.tp-icon-btn.is-done { background: rgba(62, 207, 142, 0.18); color: #6ee7b7; }
.tp-play-btn {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 0; border-radius: 50%;
  background: #f2f2f3; color: #0a0a0b;
  cursor: pointer;
}
.tp-play-btn:hover { background: #fff; }
.tp-play-btn .tp-i-play { margin-left: 2px; }

.tp-player { display: flex; align-items: center; gap: 14px; margin: 26px 0 8px; }
.tp-player[hidden] { display: none; }
.tp-time { flex: 0 0 auto; min-width: 36px; color: var(--text-3); font-size: 12px; font-variant-numeric: tabular-nums; }
#tpDur { text-align: right; }
html body .tp-wave { flex: 1; height: 44px !important; margin: 0 !important; cursor: pointer; }

.tp-body { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: 24px; margin-top: 22px; align-items: start; }
.tp-section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
html body .tp-section-head h3,
html body .tp-comments__head h3 { font-size: 15px; font-weight: 600; margin: 0; }
.tp-lyrics__text { display: flex; flex-direction: column; font-size: 14.5px; line-height: 1.75; color: rgba(255, 255, 255, 0.86); }
.tp-lyrics__tag { color: var(--text-3); font-size: 13px; }
.tp-muted { color: var(--text-3); font-size: 13.5px; }

.tp-comments {
  padding: 18px;
  border-radius: var(--r-xl);
  background: var(--panel);
  border: 1px solid var(--line);
  scroll-margin-top: 20px;
}
.tp-emoji-row { position: relative; display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 12px; }
.tp-emoji {
  width: 34px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 0; border-radius: 50%;
  background: transparent;
  font-size: 19px; line-height: 1;
  cursor: pointer;
  transition: background .15s var(--ease), transform .15s var(--ease);
}
.tp-emoji:hover { background: var(--fill); transform: scale(1.12); }
.tp-emoji--more { font-size: 18px; color: var(--text-2); background: var(--fill); }
.tp-emoji-panel {
  position: absolute;
  top: calc(100% + 8px); left: 0;
  z-index: 30;
  width: min(340px, 100%);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(34px, 1fr));
  gap: 2px;
  padding: 8px;
  border-radius: 14px;
  background: var(--glass);
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow-pop);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
}
.tp-emoji-panel[hidden] { display: none; }

.tp-compose { display: flex; align-items: flex-end; gap: 10px; padding: 8px 8px 8px 10px; border-radius: 18px; background: var(--fill); border: 1px solid transparent; transition: border-color .2s; }
.tp-compose:focus-within { border-color: var(--line-2); }
html body .tp-compose--guest { justify-content: center; padding: 14px; color: var(--text-2); font-size: 13.5px; }
.tp-avatar { width: 30px; height: 30px; flex: 0 0 30px; border-radius: 50%; object-fit: cover; }
.tp-compose .tp-avatar { margin-bottom: 3px; }
.tp-compose__field { flex: 1; min-width: 0; }
.tp-compose__reply { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 4px; font-size: 12px; color: var(--text-3); }
.tp-compose__reply b { color: var(--text-2); font-weight: 600; }
.tp-compose__reply button { border: 0; background: none; color: var(--text-3); font-size: 16px; line-height: 1; cursor: pointer; }
.tp-compose__reply[hidden] { display: none; }
html body .tp-compose textarea {
  width: 100%;
  min-height: 36px !important;
  max-height: 160px;
  padding: 8px 2px !important;
  border: 0 !important;
  background: transparent !important;
  color: var(--text);
  font-family: var(--font);
  font-size: 14px;
  line-height: 20px;
  resize: none;
  outline: none;
  box-shadow: none !important;
}
.tp-send {
  width: 34px; height: 34px; flex: 0 0 34px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 0; border-radius: 50%;
  background: #f2f2f3; color: #0a0a0b;
  cursor: pointer;
  transition: opacity .2s, background .2s;
}
.tp-send svg * { fill: none; }
html body .tp-send:disabled { opacity: .25 !important; background: #f2f2f3 !important; }
.tp-comments__error { margin-top: 8px; font-size: 12.5px; color: #ff8a84; }
.tp-comments__error[hidden] { display: none; }

.tp-comments__head { display: flex; align-items: center; justify-content: space-between; margin: 18px 0 10px; }
.tp-sort { display: inline-flex; align-items: center; gap: 6px; border: 0; background: none; color: var(--text-2); font-size: 12.5px; font-weight: 500; cursor: pointer; padding: 4px 0; }
.tp-sort:hover { color: var(--text); }
.tp-sort svg * { fill: none; }

.tp-comments__list { display: flex; flex-direction: column; }
.tp-thread { padding: 6px 0; }
.tp-thread + .tp-thread { border-top: 1px solid var(--line); }
.tp-c { display: flex; gap: 10px; padding: 8px 0; }
.tp-c__body { flex: 1; min-width: 0; }
.tp-c__head { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; margin-bottom: 2px; }
html body .tp-c__name { color: var(--text); font-size: 13px; font-weight: 600; }
.tp-c__ago { color: var(--text-3); font-size: 12px; }
.tp-badge { padding: 1px 7px; border-radius: 6px; background: var(--fill-2); color: var(--text-2); font-size: 11px; font-weight: 600; }
.tp-c__text { color: rgba(255, 255, 255, 0.86); font-size: 14px; line-height: 1.5; word-break: break-word; }
.tp-c__actions { display: flex; gap: 14px; margin-top: 4px; }
.tp-c__actions button { border: 0; background: none; padding: 0; color: var(--text-3); font-size: 12px; font-weight: 500; cursor: pointer; }
.tp-c__actions button:hover { color: var(--text); }
.tp-c__actions .tp-c__del:hover { color: #ff8a84; }
.tp-c__like {
  flex: 0 0 auto;
  align-self: flex-start;
  display: inline-flex; flex-direction: column; align-items: center; gap: 1px;
  min-width: 28px;
  border: 0; background: none;
  color: var(--text-3); font-size: 11px;
  cursor: pointer;
}
.tp-c__like:hover { color: var(--text); }
.tp-c__like svg * { fill: none; }
.tp-c__like.is-liked { color: #e27fb4; }
.tp-c__like.is-liked svg path { fill: currentColor; }
.tp-replies { margin-left: 40px; }
.tp-c--reply .tp-avatar { width: 24px; height: 24px; flex-basis: 24px; }
.tp-empty-comments, .tp-loading { padding: 18px 0; text-align: center; }

.tp-side { position: sticky; top: 20px; }
.tp-tabs { display: inline-flex; gap: 2px; padding: 3px; margin-bottom: 14px; border-radius: var(--pill); background: var(--fill); max-width: 100%; }
.tp-tab {
  height: 30px; padding: 0 14px;
  border: 0; border-radius: var(--pill);
  background: transparent; color: var(--text-3);
  font-size: 12.5px; font-weight: 600;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 170px;
  cursor: pointer;
}
.tp-tab.is-active { background: rgba(255, 255, 255, 0.13); color: #fff; }
.tp-side__list { display: flex; flex-direction: column; gap: 2px; }
.tp-side__list[hidden] { display: none; }
html body .tp-side__item { display: flex; gap: 12px; align-items: center; padding: 8px; margin: 0 -8px; border-radius: 12px; color: var(--text); transition: background .15s; }
.tp-side__item:hover { background: var(--fill); }
.tp-side__cover { width: 56px; height: 56px; flex: 0 0 56px; border-radius: 10px; object-fit: cover; background: #151517; }
.tp-side__meta { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.tp-side__title { font-size: 13.5px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tp-side__styles { font-size: 12px; color: var(--text-3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tp-side__author { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; color: var(--text-2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tp-side__author img { width: 14px; height: 14px; border-radius: 50%; object-fit: cover; }
.tp-side__plays { display: inline-flex; align-items: center; gap: 4px; font-size: 11.5px; color: var(--text-3); font-variant-numeric: tabular-nums; }
.tp-side__empty { color: var(--text-3); font-size: 13px; padding: 10px 0; }

.tp-empty { max-width: 460px; margin: 60px auto; text-align: center; }
html body .tp-empty h3 { font-size: 20px; margin-bottom: 8px; }
.tp-empty p { color: var(--text-3); margin-bottom: 18px; }

@media only screen and (max-width: 1399px) {
  .tp { grid-template-columns: minmax(0, 1fr); }
  .tp-side { position: static; }
  .tp-side__list { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 4px 16px; }
  .tp-side__item { margin: 0; }
}
@media only screen and (max-width: 991px) {
  .tp-body { grid-template-columns: minmax(0, 1fr); }
}
@media only screen and (max-width: 767px) {
  .tp-hero { flex-direction: column; gap: 18px; }
  .tp-cover { flex: none; width: 100%; height: auto; aspect-ratio: 1 / 1; max-width: 420px; }
  html body .tp-title { font-size: 26px; }
  .tp-bar { padding-top: 14px; }
  .tp-comments { padding: 14px; border-radius: var(--r-lg); }
  .tp-replies { margin-left: 28px; }
}

/* ---------- Подписки ---------- */
.subs-authors { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 6px; margin: -4px 0 22px; scrollbar-width: none; }
.subs-authors::-webkit-scrollbar { display: none; }
html body .subs-author {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; gap: 8px;
  height: 36px; padding: 0 14px 0 4px;
  border-radius: var(--pill);
  background: var(--fill);
  color: var(--text);
  font-size: 13px; font-weight: 500;
}
.subs-author:hover { background: var(--fill-2); }
.subs-author img { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; }

html body svg.ico-solid, html body svg.ico-solid * { fill: currentColor !important; stroke: none !important; }
@media only screen and (max-width: 575px) {
  .tp-emoji-row { gap: 2px; }
  .tp-emoji { width: 32px; height: 32px; font-size: 18px; }
}
html body .geex-content__header__searchform { background: rgba(22, 22, 25, 0.94) !important; }
/* кнопка покупки — круглая, только иконка, чтобы остаток помещался целиком */
html body .g-buy { width: 32px; height: 32px; padding: 0; justify-content: center; }
html body .g-buy span { display: none; }
html body .geex-sidebar__footer .geex-tooltip { padding: 5px 5px 5px 14px; }
@media only screen and (min-width: 1200px) {
  html body .geex-sidebar { width: 256px !important; }
  html body .geex-main-content { padding-left: 284px !important; }
}
html body .geex-sidebar__footer .geex-tooltip { gap: 8px; }
html body .geex-sidebar__footer .geex-tooltip__text { font-size: 12.5px !important; }

/* ---------- v6: выравнивание шапки ---------- */
html body .geex-content__header__action,
html body .geex-content__header__action__wrap,
html body .geex-content__header__quickaction { align-items: center !important; }
html body .geex-content__header__quickaction__item {
  display: flex !important;
  align-items: center;
  margin: 0 !important;
  line-height: 0;
}
html body .geex-content__header__quickaction__item > .geex-content__header__popup { line-height: normal; }

/* ---------- v6: кнопка корзины — серая, иконка белая ---------- */
html body .g-buy {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
html body .g-buy:hover { background: rgba(255, 255, 255, 0.22); }

/* ---------- v6: автозаполнение браузера без чужого фона ---------- */
html body input:-webkit-autofill,
html body input:-webkit-autofill:hover,
html body input:-webkit-autofill:focus,
html body textarea:-webkit-autofill,
html body select:-webkit-autofill {
  -webkit-text-fill-color: var(--text) !important;
  caret-color: var(--text);
  -webkit-box-shadow: 0 0 0 1000px #151517 inset !important;
  box-shadow: 0 0 0 1000px #151517 inset !important;
  transition: background-color 9999s ease-out 0s;
}
/* в стеклянной строке поиска поле прозрачное — подкладываем цвет самой строки */
html body .geex-content__header__searchform input:-webkit-autofill,
html body .geex-content__header__searchform input:-webkit-autofill:hover,
html body .geex-content__header__searchform input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #161619 inset !important;
  box-shadow: 0 0 0 1000px #161619 inset !important;
}
html body input:autofill { background: transparent !important; }

/* ---------- v6: подписка в профиле автора ---------- */
html body .user-info-card .tp-follow { align-self: center; }
html body .user-info-card .user-follow { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }
html body .user-info-card .user-follow .tp-followers { font-size: 12px; }
@media (max-width: 600px) {
  html body .user-info-card .user-follow { align-items: center; }
}

/* ---------- v7: кнопка воспроизведения на сенсорных экранах ----------
   В покое — тёмный стеклянный круг с белым значком.
   Играет — белый круг с чёрным значком паузы (контрастно, сразу видно). */
@media (hover: none) {
  html body .play-button:hover .icon,
  html body .play-button:active .icon { background: rgba(20, 20, 22, 0.55); }
  html body .play-button .icon:has(img[src*="pause"]) {
    background: #fff !important;
    border-color: #fff;
  }
  html body .play-button .icon:has(img[src*="pause"]) img { filter: brightness(0) !important; }
}

/* ---------- v7: лента профиля на телефоне прокручивается вместе со страницей ---------- */
@media only screen and (max-width: 767px) {
  html body .allmusic2 { max-height: none !important; overflow: visible !important; padding: 0 !important; }
}

/* надпись подгрузки под лентой */
html body #loader, html body #loader2, html body #loader3, html body #loader4 { margin: 24px 0 8px !important; }
html body #loader span, html body #loader2 span, html body #loader3 span, html body #loader4 span { color: var(--text-3) !important; font-size: 13px; }
