/* ==========================================================================
   L2Kraina — кастомні курсори в стилі Lineage 2
   Єдине джерело правди. Підключати ОСТАННІМ, після webflow-стилів.
   ========================================================================== */

/* 1. Базовий курсор для всього документа --------------------------------- */
html,
body {
  cursor: url('/images/cursor-l2.svg'), auto !important;
}

/* 2. Скидання чужих курсорів.
   Webflow-експорт прописує `cursor: default` / `cursor: pointer` окремим
   класам (.discord-button, .cta-button, .support-button, .main-button,
   .button-placeholder-2 …), а normalize.css — тегам button/[type=button].
   Ці правила перебивають успадкування від <body> і повертають системну
   стрілку. Тому спершу все повертаємо до успадкування, а нижче свідомо
   призначаємо меч тому, що справді клікабельне. */
body * {
  cursor: inherit !important;
}

/* 3. Меч на всьому клікабельному (і на вкладених елементах теж, бо в
   Webflow текст/іконка всередині посилання — це окремий <div>) ----------- */
a,
a *,
button,
button *,
summary,
summary *,
label,
label *,
select,
[role='button'],
[role='button'] *,
[role='link'],
[role='link'] *,
[role='tab'],
[role='tab'] *,
[onclick],
[onclick] *,
input[type='button'],
input[type='submit'],
input[type='reset'],
input[type='checkbox'],
input[type='radio'],
input[type='file'],
.w-button,
.w-button *,
.w-inline-block,
.w-inline-block *,
.w-nav-button,
.w-nav-button *,
.w-nav-link,
.w-nav-link *,
.w-nav-brand,
.w-nav-brand *,
.w-tab-link,
.w-tab-link *,
.w-dropdown-toggle,
.w-dropdown-toggle *,
.w-dropdown-link,
.w-dropdown-link *,
.w-slider-arrow-left,
.w-slider-arrow-right,
.w-slider-dot,
.w-pagination-previous,
.w-pagination-next,
.w-lightbox,
.w-lightbox *,
.w-background-video--control,
.w-background-video--control *,
.w-backgroundvideo-backgroundvideoplaypausebutton,
.w-backgroundvideo-backgroundvideoplaypausebutton * {
  cursor: url('/images/cursor-l2-hover.svg'), pointer !important;
}

/* 4. Текстові поля лишаються з кареткою ---------------------------------- */
input:not([type='button']):not([type='submit']):not([type='reset']):not([type='checkbox']):not([type='radio']):not([type='file']):not([type='range']):not([type='color']),
textarea,
[contenteditable='true'],
[contenteditable='true'] * {
  cursor: text !important;
}

/* 5. Неактивні контроли -------------------------------------------------- */
[disabled],
[disabled] *,
.w-button[disabled],
button:disabled,
button:disabled * {
  cursor: not-allowed !important;
}

/* 6. Стан завантаження (спінер форми MailerLite) — лишаємо тематичний
   курсор замість системного «заборонено» ---------------------------------- */
.loading,
.loading *,
[aria-busy='true'],
[aria-busy='true'] * {
  cursor: url('/images/cursor-l2.svg'), auto !important;
}
