/* ============================================================
   DEFAULT — полный справочник темы кабинета (ЛК)
   ------------------------------------------------------------
   Дефолтная (фолбэк) тема: если активной темы нет — ЛК берёт
   стили отсюда. Здесь ВСЁ, что можно менять:
     • TOKENS — CSS-переменные (палитра, шрифты, радиусы…).
       Поменяй значение в :root → меняется весь кабинет.
     • COMPONENTS — каждый компонент описан, для каждого
       блока готово пустое правило  .класс { }  — впиши стиль.
       Под группой перечислены все элементы/модификаторы.

   Картинки: кнопка «Загрузить» (images/), url('images/имя.png').
   Тёмная тема: блок [data-theme="dark"]. < > вырезаются.
   Сохрани как свою тему: «Импорт/Экспорт» → Экспорт.
   ============================================================ */

/* ████ TOKENS — светлая тема (значения по умолчанию) ████ */
:root {

    /* ── Палитра нейтральных (фон, текст, границы) ── */
    --white: #FFFFFF;
    --bone: #FAF9F7;
    --ivory: #F5F4F0;
    --parchment: #EEECE8;
    --stone-100: #E8E6E1;
    --stone-200: #D8D5CF;
    --stone-300: #C5C1B9;
    --stone-400: #A8A39A;
    --stone-500: #8A857C;
    --stone-600: #6B665E;
    --stone-700: #4D4942;
    --stone-800: #33302B;
    --stone-900: #1C1A17;

    /* ── Фон страницы / границы ── */
    --page-bg: #1C1A17;

    /* ── Шрифты ── */
    --font-display: 'Cinzel Decorative', 'Cinzel', serif;
    --font-heading: 'Cinzel', Georgia, serif;
    --font-body: 'Raleway', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* ── Акцент/бренд (золото, live, twitch, youtube) ── */
    --gold: #C9A84C;
    --gold-rgb: 201 168 76;
    --gold-bg: rgba(201, 168, 76, .10);
    --gold-soft: #E0C77A;
    --live: #5A9E6F;
    --live-bg: rgba(90, 158, 111, .1);
    --twitch: #8B6CC1;
    --twitch-bg: rgba(139, 108, 193, .08);
    --yt: #C15050;
    --yt-bg: rgba(193, 80, 80, .08);

    /* ── Статусные цвета (danger/success/red/blue) ── */
    --red: #B45050;
    --red-rgb: 180 80 80;
    --red-bg: rgba(180, 80, 80, .08);
    --blue: #508CB4;
    --blue-rgb: 80 140 180;
    --blue-bg: rgba(80, 140, 180, .08);
    --danger: #c0392b;
    --danger-hover: #b91c1c;
    --danger-bg: #fef2f2;
    --success: #16a34a;
    --success-rgb: 22 163 74;
    --success-bg: rgba(22, 163, 74, .08);

    /* ── Редкость предметов ── */
    --rare: #7AA0C8;
    --rare-bg: rgba(122, 160, 200, .08);
    --rare-glow: rgba(122, 160, 200, .45);
    --epic: #9B6CC1;
    --epic-bg: rgba(155, 108, 193, .08);
    --epic-glow: rgba(155, 108, 193, .50);
    --legend: #C9A84C;
    --legend-bg: rgba(201, 168, 76, .12);
    --legend-glow: rgba(201, 168, 76, .55);

    /* ── Заточка (enchant) ── */
    --enchant-low:  #7FBF8A;
    --enchant-mid:  var(--rare);
    --enchant-high: var(--epic);
    --enchant-top:  var(--gold-soft);
    --enchant-max:  #E54B4B;

    /* ── Тени ── */
    --shadow-dropdown:
        0 0 0 1px var(--stone-200),
        0 0 0 4px var(--ivory),
        0 0 0 5px var(--stone-200),
        0 16px 48px rgba(0, 0, 0, 0.12);
    --shadow-modal:
        0 0 0 1px var(--stone-200),
        0 0 0 4px var(--ivory),
        0 0 0 5px var(--stone-200),
        0 24px 80px rgba(0, 0, 0, 0.15);

    /* ── Скругления (радиусы) ── */
    --radius-sm:   0.375rem;
    --radius-md:   0.625rem;
    --radius-lg:   0.75rem;
    --radius-xl:   1rem;
    --radius-2xl:  1.25rem;
    --radius-full: 99px;

    /* ── Анимации (transition) ── */
    --transition-fast: 0.15s ease;
    --transition-base: 0.2s ease;
    --transition-slow: 0.3s ease;
}

/* ████ TOKENS — тёмная тема (переопределения) ████ */
[data-theme="dark"] {

    /* ── Палитра нейтральных (фон, текст, границы) ── */
    --white: #1A1816;
    --bone: #1E1C19;
    --ivory: #23211D;
    --parchment: #2A2824;
    --stone-100: #33302B;
    --stone-200: #3D3A34;
    --stone-300: #4D4942;
    --stone-400: #6B665E;
    --stone-500: #8A857C;
    --stone-600: #A8A39A;
    --stone-700: #C5C1B9;
    --stone-800: #E8E6E1;
    --stone-900: #F5F4F0;

    /* ── Фон страницы / границы ── */
    --has-border-inset: rgba(255, 255, 255, 0.04);
    --has-border-inner: rgba(255, 255, 255, 0.03);
    --page-bg: #0F0E0C;

    /* ── Акцент/бренд (золото, live, twitch, youtube) ── */
    --gold-bg: rgba(201, 168, 76, .08);
    --live-bg: rgba(90, 158, 111, .08);
    --twitch-bg: rgba(139, 108, 193, .06);
    --yt-bg: rgba(193, 80, 80, .06);

    /* ── Статусные цвета (danger/success/red/blue) ── */
    --red-bg: rgba(180, 80, 80, .06);
    --blue-bg: rgba(80, 140, 180, .06);
    --danger-bg: rgba(192, 57, 43, .1);

    /* ── Редкость предметов ── */
    --rare-bg: rgba(122, 160, 200, .06);
    --rare-glow: rgba(122, 160, 200, .35);
    --epic-bg: rgba(155, 108, 193, .06);
    --epic-glow: rgba(155, 108, 193, .40);
    --legend-bg: rgba(201, 168, 76, .08);
    --legend-glow: rgba(201, 168, 76, .45);
}

/* ████ COMPONENTS — компоненты кабинета ████ */

/* ═══════════════════════════════════════════════════════════
   ОСНОВА — html/body, типографика, базовые элементы, фон страницы
   src: panel/foundation/base.css
   ═══════════════════════════════════════════════════════════ */
.c-skip-link {

}
.theme-switching {

}

/* ═══════════════════════════════════════════════════════════
   КАРКАС — Сетка страницы: обёртка, область контента, колонка сайдбара
   src: panel/foundation/layout.css
   ═══════════════════════════════════════════════════════════ */
.has-border {

}
.has-border-shadow {

}

/* ═══════════════════════════════════════════════════════════
   САЙДБАР — Боковое меню: лого, навигация, пользователь, серверы, тема
   src: panel/ui/sidebar.css
   ═══════════════════════════════════════════════════════════ */
.c-mobile-bar {

}
.c-particles {

}
.c-sidebar {

}
.c-sidebar-overlay {

}
.c-sidebar-tip {

}
.c-social-pop {

}
.c-srv-sel {

}
.c-srv-sel-anim {

}
.c-srv-sel-off {

}
.c-srv-sel-on {

}
.l-main {

}
.l-page {

}
.l-wrapper {

}
.np-root {

}
.sidebar-no-anim {

}
.theme-switching {

}
/* элементы/модификаторы (добавляй по образцу  .блок__элемент { }  ):
   c-mobile-bar__burger  c-mobile-bar__logo  c-sidebar__burger  c-sidebar__collapse
   c-sidebar__foot  c-sidebar__head  c-sidebar__head-actions  c-sidebar__link
   c-sidebar__link-badge  c-sidebar__link-icon  c-sidebar__logo  c-sidebar__nav  c-sidebar__sep
   c-sidebar__site-link  c-sidebar__site-link-ext  c-sidebar__site-link-text  c-sidebar__social
   c-sidebar__socials  c-sidebar__srv  c-sidebar__srv-body  c-sidebar__srv-cards
   c-sidebar__srv-dot  c-sidebar__srv-group  c-sidebar__srv-meta  c-sidebar__srv-name
   c-sidebar__srv-offline  c-sidebar__srv-online  c-sidebar__srv-rate  c-sidebar__theme
   c-sidebar__theme-dot  c-sidebar__user  c-sidebar__user-avatar  c-sidebar__user-email
   c-sidebar__user-info  c-sidebar__user-name  c-srv-sel__chevron  c-srv-sel__dropdown
   c-srv-sel__head  c-srv-sel__item  c-srv-sel__list  c-srv-sel__trigger */

/* ═══════════════════════════════════════════════════════════
   НАВБАР — Верхняя панель страницы: бренд, сервер-индикатор, действия
   src: panel/ui/navbar.css
   ═══════════════════════════════════════════════════════════ */
.c-navbar {

}
.c-nb-srv {

}
.c-srv-tip {

}
.c-topbar {

}
.mob-body-enter {

}
.mob-body-enter-from {

}
.mob-body-enter-to {

}
.mob-body-leave {

}
.mob-body-leave-from {

}
.mob-body-leave-to {

}
.srv-mob-enter {

}
.srv-mob-enter-from {

}
.srv-mob-enter-to {

}
.srv-mob-leave {

}
.srv-mob-leave-from {

}
.srv-mob-leave-to {

}
/* элементы/модификаторы (добавляй по образцу  .блок__элемент { }  ):
   c-navbar__actions  c-navbar__brand  c-navbar__left  c-navbar__sep  c-navbar__srv
   c-navbar__srv-bar  c-navbar__srv-body  c-navbar__srv-dot  c-navbar__srv-group
   c-navbar__srv-mob  c-navbar__srv-mob-arr  c-navbar__srv-mob-body  c-navbar__srv-mob-btn
   c-navbar__srv-mob-chev  c-navbar__srv-mob-count  c-navbar__srv-mob-head
   c-navbar__srv-mob-item  c-navbar__srv-mob-name  c-navbar__srv-mob-panel
   c-navbar__srv-mob-sep  c-navbar__srv-name  c-navbar__srv-progress
   c-navbar__srv-progress-fill  c-navbar__srv-rate  c-navbar__srv-row  c-navbar__srv-status
   c-nb-srv--pending  c-nb-srv--plain  c-nb-srv--running  c-nb-srv__body  c-nb-srv__dot
   c-nb-srv__icon  c-nb-srv__meta  c-nb-srv__name  c-nb-srv__pulse  c-nb-srv__sep
   c-nb-srv__state  c-nb-srv__time  c-srv-tip__arr  c-srv-tip__bar  c-srv-tip__bar-fill
   c-srv-tip__cnt  c-srv-tip__dot  c-srv-tip__head  c-srv-tip__key  c-srv-tip__meta
   c-srv-tip__mx  c-srv-tip__name  c-srv-tip__online  c-srv-tip__pct  c-srv-tip__rate
   c-srv-tip__row  c-srv-tip__sep  c-srv-tip__state  c-srv-tip__val  c-topbar__left
   c-topbar__right */

/* ═══════════════════════════════════════════════════════════
   ЗАГОЛОВОК СТРАНИЦЫ — Шапка страницы с иконкой и подзаголовком
   src: panel/ui/title.css
   ═══════════════════════════════════════════════════════════ */
.c-page-title {

}
/* элементы/модификаторы (добавляй по образцу  .блок__элемент { }  ):
   c-page-title__icon  c-page-title__text */

/* ═══════════════════════════════════════════════════════════
   ПАНЕЛЬ — Карточка-контейнер контента (заголовок + тело)
   src: panel/ui/panel.css
   ═══════════════════════════════════════════════════════════ */
.c-panel {

}
/* элементы/модификаторы (добавляй по образцу  .блок__элемент { }  ):
   c-panel__count  c-panel__header  c-panel__title */

/* ═══════════════════════════════════════════════════════════
   СТАТ-КАРТОЧКИ — Карточки со значением, иконкой и подписью
   src: panel/ui/stat-card.css
   ═══════════════════════════════════════════════════════════ */
.c-card {

}
.c-stats {

}
/* элементы/модификаторы (добавляй по образцу  .блок__элемент { }  ):
   c-card__icon  c-card__label  c-card__meta  c-card__top  c-card__value */

/* ═══════════════════════════════════════════════════════════
   ТАБЛИЦЫ — Таблицы данных
   src: panel/ui/table.css
   ═══════════════════════════════════════════════════════════ */
.c-table {

}
.c-table-wrap {

}

/* ═══════════════════════════════════════════════════════════
   ЯЧЕЙКИ ТАБЛИЦ — Оформление ячеек таблиц
   src: panel/ui/table-cells.css
   ═══════════════════════════════════════════════════════════ */
.c-acct {

}
.c-char {

}
.c-char-avatar {

}
.c-date {

}
.c-no-char {

}
.c-pw {

}
.c-table {

}
/* элементы/модификаторы (добавляй по образцу  .блок__элемент { }  ):
   c-acct__icon  c-char--clickable  c-char__dot  c-char__dot-img  c-date--empty */

/* ═══════════════════════════════════════════════════════════
   КНОПКИ — g-btn и модификаторы: primary/danger/sm/lg/icon/full…
   src: panel/ui/btn.css
   ═══════════════════════════════════════════════════════════ */
.c-card {

}
.g-btn {

}
.is-loading {

}
/* элементы/модификаторы (добавляй по образцу  .блок__элемент { }  ):
   g-btn--action  g-btn--full  g-btn--icon  g-btn--lg  g-btn--primary  g-btn--shimmer  g-btn--sm
   g-btn__badge  g-btn__count  g-btn__icon--error  g-btn__icon--spin  g-btn__icon--success */

/* ═══════════════════════════════════════════════════════════
   ФОРМЫ — Поля ввода, чекбоксы, свитчи, степперы, теги, загрузка
   src: panel/ui/forms.css
   ═══════════════════════════════════════════════════════════ */
.c-block-refresh-overlay {

}
.c-block-refresh-spinner {

}
.c-block-skel {

}
.g-input {

}
.g-input-wrap {

}
.g-switch {

}
.g-switch-desc {

}
.g-switch-name {

}
.g-switch-row {

}
.g-switch-thumb {

}
.g-switch-track {

}
.g-textarea {

}
/* элементы/модификаторы (добавляй по образцу  .блок__элемент { }  ):
   c-block-refresh-overlay--spinner */

/* ═══════════════════════════════════════════════════════════
   МОДАЛЬНЫЕ ОКНА — Оверлеи и модальные окна
   src: panel/ui/modal.css
   ═══════════════════════════════════════════════════════════ */
.c-async-skel {

}
.c-detail {

}
.c-detail-grid {

}
.c-modal {

}
.c-overlay {

}
/* элементы/модификаторы (добавляй по образцу  .блок__элемент { }  ):
   c-async-skel__line  c-async-skel__line--med  c-async-skel__line--short
   c-async-skel__line--title  c-detail__label  c-detail__val  c-modal__body  c-modal__head
   c-modal__title */

/* ═══════════════════════════════════════════════════════════
   ФОРМЫ В МОДАЛКАХ — Поля и элементы внутри модальных окон
   src: panel/ui/modal-forms.css
   ═══════════════════════════════════════════════════════════ */
.c-char-empty {

}
.c-coins-balance {

}
.c-cr-divider {

}
.c-cr-field {

}
.c-cr-info {

}
.c-cr-switch {

}
.c-create {

}
.c-df {

}
.c-drawer {

}
.c-drawer-overlay {

}
.c-form-scroll {

}
.c-mcard {

}
.c-mf {

}
.c-modal-head {

}
.c-promo-result {

}
.c-promo-row {

}
.c-pw-section {

}
.c-pw-warn {

}
.form-send-promo-code {

}
.form-send-to-game {

}
/* элементы/модификаторы (добавляй по образцу  .блок__элемент { }  ):
   c-char-empty--modal  c-char-empty__icon  c-char-empty__refresh  c-char-empty__text
   c-char-empty__title  c-coins-balance__body  c-coins-balance__icon  c-coins-balance__label
   c-coins-balance__value  c-cr-divider__dot  c-cr-divider__line  c-cr-field__error
   c-cr-field__input  c-cr-field__label  c-cr-field__label-row  c-cr-field__status
   c-cr-field__status--error  c-cr-field__toggle  c-cr-field__wrap  c-cr-field__wrap--row
   c-cr-info__icon  c-cr-info__text  c-cr-switch__input  c-cr-switch__label  c-cr-switch__thumb
   c-cr-switch__track  c-create__body  c-create__close  c-create__head  c-create__title
   c-df__error  c-df__hint  c-df__input  c-df__label  c-df__toggle  c-df__wrap
   c-drawer__account  c-drawer__body  c-drawer__close  c-drawer__head  c-drawer__title
   c-field__label-row  c-field__wrap--row  c-mcard__body  c-mcard__close  c-mcard__footer
   c-mcard__head  c-mcard__title  c-mf__error  c-mf__hint  c-mf__input  c-mf__label  c-mf__spin
   c-mf__spin--dec  c-mf__spin--inc  c-mf__wrap  c-mf__wrap--num  c-modal-head__title
   c-overlay--coins  c-overlay--create  c-overlay--promo  c-promo-result--error
   c-promo-result--success  c-pw-section__body  c-pw-section__content  c-pw-section__trigger
   c-select--hidden  c-select__char-class  c-select__char-dot  c-select__char-info
   c-select__char-name  c-select__placeholder  c-select__placeholder-text
   c-select__trigger-selected  g-btn--danger  g-btn__icon */

/* ═══════════════════════════════════════════════════════════
   ТОСТЫ — Всплывающие уведомления (success/error/info/warning)
   src: panel/ui/toast.css
   ═══════════════════════════════════════════════════════════ */
.c-toast {

}
.c-toast-container {

}
/* элементы/модификаторы (добавляй по образцу  .блок__элемент { }  ):
   c-toast--error  c-toast--info  c-toast--success  c-toast--warning  c-toast__action
   c-toast__action--primary  c-toast__actions  c-toast__body  c-toast__close  c-toast__icon
   c-toast__progress  c-toast__text  c-toast__title */

/* ═══════════════════════════════════════════════════════════
   АНОНСЫ — Большие баннеры-объявления
   src: panel/ui/announce.css
   ═══════════════════════════════════════════════════════════ */
.c-announce {

}
.c-announce-container {

}
/* элементы/модификаторы (добавляй по образцу  .блок__элемент { }  ):
   c-announce--blue  c-announce--enter  c-announce--enter-from  c-announce--enter-to
   c-announce--green  c-announce--leave  c-announce--leave-from  c-announce--leave-to
   c-announce--red  c-announce--yellow  c-announce__avatar  c-announce__body  c-announce__close
   c-announce__text  c-announce__title */

/* ═══════════════════════════════════════════════════════════
   ЗАМЕТКИ — Инлайн-уведомления
   src: panel/ui/notice.css
   ═══════════════════════════════════════════════════════════ */
.c-notice {

}
/* элементы/модификаторы (добавляй по образцу  .блок__элемент { }  ):
   c-notice--error  c-notice--has-actions  c-notice--info  c-notice--success  c-notice--warning
   c-notice__actions  c-notice__body  c-notice__footer  c-notice__icon  c-notice__text
   c-notice__title */

/* ═══════════════════════════════════════════════════════════
   ПУСТОЕ СОСТОЯНИЕ — Заглушка «нет данных»
   src: panel/ui/empty-state.css
   ═══════════════════════════════════════════════════════════ */
.c-empty-state {

}
.c-empty-state-row {

}
/* элементы/модификаторы (добавляй по образцу  .блок__элемент { }  ):
   c-empty-state__action  c-empty-state__body  c-empty-state__desc  c-empty-state__diamonds
   c-empty-state__icon  c-empty-state__ornament  c-empty-state__ring  c-empty-state__ring--inner
   c-empty-state__ring--outer  c-empty-state__title */

/* ═══════════════════════════════════════════════════════════
   ФИЛЬТРЫ — Панель вкладок/фильтров
   src: panel/ui/filter-bar.css
   ═══════════════════════════════════════════════════════════ */
.c-filter-bar {

}
.c-filter-tab {

}
.c-filter-tabs {

}
.c-filter-tabs-wrap {

}
/* элементы/модификаторы (добавляй по образцу  .блок__элемент { }  ):
   c-filter-bar__dot  c-filter-bar__info  c-filter-bar__stat */

/* ═══════════════════════════════════════════════════════════
   РАЗДЕЛИТЕЛИ — Декоративные разделители
   src: panel/ui/divider.css
   ═══════════════════════════════════════════════════════════ */
.c-divider {

}
/* элементы/модификаторы (добавляй по образцу  .блок__элемент { }  ):
   c-divider__diamond  c-divider__diamond--lg  c-divider__line  c-divider__ornament */

/* ═══════════════════════════════════════════════════════════
   ПАНЕЛЬ ПЕРСОНАЖА — Карточка выбранного персонажа
   src: panel/ui/char-panel.css
   ═══════════════════════════════════════════════════════════ */
.c-char-panel {

}
.c-char-strip {

}
/* элементы/модификаторы (добавляй по образцу  .блок__элемент { }  ):
   c-char-panel__actions  c-char-panel__avatar  c-char-panel__close  c-char-panel__name
   c-char-panel__name-class  c-char-panel__name-title  c-char-panel__sep  c-char-panel__stat
   c-char-panel__stat-label  c-char-panel__stat-val  c-char-panel__stats  c-char-strip__inner */

/* ═══════════════════════════════════════════════════════════
   ВИДЖЕТ ПОЛЬЗОВАТЕЛЯ — Аватар, имя, меню профиля
   src: panel/ui/user-widget.css
   ═══════════════════════════════════════════════════════════ */
.c-copy-btn {

}
.c-locale {

}
.c-notif {

}
.c-user {

}
/* элементы/модификаторы (добавляй по образцу  .блок__элемент { }  ):
   c-locale__btn  c-locale__chev  c-locale__current  c-locale__dropdown  c-locale__item
   c-locale__item-check  c-locale__item-code  c-locale__item-name  c-notif__all  c-notif__btn
   c-notif__btn-badge  c-notif__dropdown  c-notif__empty  c-notif__head  c-notif__item
   c-notif__item-body  c-notif__item-dot  c-notif__item-dot--blue  c-notif__item-dot--green
   c-notif__item-dot--purple  c-notif__item-dot--red  c-notif__item-dot--teal
   c-notif__item-dot--yellow  c-notif__item-text  c-notif__item-time  c-notif__item-title
   c-notif__list  c-notif__read-all  c-user__avatar  c-user__avatar--img  c-user__dropdown
   c-user__dropdown-avatar  c-user__dropdown-divider  c-user__dropdown-email
   c-user__dropdown-email-row  c-user__dropdown-head  c-user__dropdown-item
   c-user__dropdown-item--danger  c-user__dropdown-name  c-user__email  c-user__info
   c-user__name */

/* ═══════════════════════════════════════════════════════════
   ПЕРЕКЛЮЧАТЕЛЬ ТЕМЫ — Тумблер светлая/тёмная
   src: panel/ui/theme-toggle.css
   ═══════════════════════════════════════════════════════════ */
.c-theme-toggle {

}
/* элементы/модификаторы (добавляй по образцу  .блок__элемент { }  ):
   c-theme-toggle__moon  c-theme-toggle__sun  c-theme-toggle__thumb */

/* ═══════════════════════════════════════════════════════════
   КАПЧА — Блок капчи
   src: panel/ui/captcha.css
   ═══════════════════════════════════════════════════════════ */
.c-captcha {

}
.g-recaptcha {

}
/* элементы/модификаторы (добавляй по образцу  .блок__элемент { }  ):
   c-captcha--google_v3  c-captcha__badge  c-captcha__check  c-captcha__field  c-captcha__head
   c-captcha__hp  c-captcha__input  c-captcha__note  c-captcha__quiz  c-captcha__title */

/* ═══════════════════════════════════════════════════════════
   ОКНО ФАЙЛОВ — Приветственное окно со списком файлов
   src: panel/ui/welcome-files.css
   ═══════════════════════════════════════════════════════════ */
/* элементы/модификаторы (добавляй по образцу  .блок__элемент { }  ):
   c-welcome-files__actions  c-welcome-files__body  c-welcome-files__counter
   c-welcome-files__descr  c-welcome-files__footer  c-welcome-files__icon  c-welcome-files__info
   c-welcome-files__list  c-welcome-files__meta  c-welcome-files__row  c-welcome-files__title */

/* ═══════════════════════════════════════════════════════════
   ДОП. ЭЛЕМЕНТЫ — Прочие утилитарные g-* элементы
   src: panel/ui/g-extras.css
   ═══════════════════════════════════════════════════════════ */
.g-card-check {

}
.g-card-face {

}
.g-card-grid {

}
.g-card-ico {

}
.g-card-opt {

}
.g-card-sub {

}
.g-card-title {

}
.g-check-badge {

}
.g-check-box {

}
.g-check-content {

}
.g-check-desc {

}
.g-check-name {

}
.g-check-opt {

}
.g-pin {

}
.g-pin-digit {

}
.g-pin-sep {

}
.g-rating {

}
.g-section-label {

}
.g-seg {

}
.g-seg-btn {

}
.g-seg-opt {

}
.g-star {

}
.g-step {

}
.g-step-circle {

}
.g-step-label {

}
.g-stepper {

}
.g-stepper-btn {

}
.g-stepper-val {

}
.g-steps {

}
.g-tag {

}
.g-tag-del {

}
.g-tags {

}
.g-tags-input {

}
.g-upload {

}
.g-upload-actions {

}
.g-upload-box {

}
.g-upload-filled-img {

}
.g-upload-hint {

}
.g-upload-icon {

}
.g-upload-remove {

}
.g-upload-title {

}
/* элементы/модификаторы (добавляй по образцу  .блок__элемент { }  ):
   g-upload--og  g-upload--sm  g-upload-box--filled  g-upload-box--loading */

/* ═══════════════════════════════════════════════════════════
   СТРАНИЦА: ИСТОРИЯ БАЛАНСА — Стили страницы «история баланса»
   src: panel/pages/balance-history.css
   ═══════════════════════════════════════════════════════════ */
.balance-history-page {

}
.bh-filters {

}

/* ═══════════════════════════════════════════════════════════
   СТРАНИЦА: ДОНАТ — Стили страницы «донат»
   src: panel/pages/donate.css
   ═══════════════════════════════════════════════════════════ */
.c-bstr {

}
/* элементы/модификаторы (добавляй по образцу  .блок__элемент { }  ):
   c-bstr__book  c-bstr__clatin  c-bstr__cname  c-bstr__corner  c-bstr__corner--bl
   c-bstr__corner--br  c-bstr__corner--tl  c-bstr__corner--tr  c-bstr__einfo  c-bstr__emeta
   c-bstr__ename  c-bstr__entries  c-bstr__entry  c-bstr__eprice  c-bstr__eyebrow  c-bstr__form
   c-bstr__gem  c-bstr__lbl  c-bstr__page  c-bstr__pay  c-bstr__portrait  c-bstr__portrait-deco
   c-bstr__portrait-ring  c-bstr__portrait-sym  c-bstr__row  c-bstr__row--bon  c-bstr__row--tot
   c-bstr__rows  c-bstr__slider  c-bstr__sub  c-bstr__title */

/* ═══════════════════════════════════════════════════════════
   СТРАНИЦА: ФАЙЛЫ — Стили страницы «файлы»
   src: panel/pages/files.css
   ═══════════════════════════════════════════════════════════ */
.c-file-badge {

}
.c-file-card {

}
.c-file-date {

}
.c-file-dl-btn {

}
.c-file-dl-modal {

}
.c-file-downloads {

}
.c-file-meta {

}
.c-file-mirror {

}
.c-file-mirrors {

}
.c-file-name {

}
.c-file-size {

}
.c-file-table-header {

}
.c-file-table-section {

}
.c-files-grid {

}
.c-step {

}
.c-steps {

}
.c-tips {

}
.c-type-badge {

}
/* элементы/модификаторы (добавляй по образцу  .блок__элемент { }  ):
   c-file-badge--upd  c-file-card__desc  c-file-card__icon  c-file-card__meta  c-file-card__name
   c-file-card__pop  c-file-card__pop-bar  c-file-card__pop-count  c-file-card__pop-fill
   c-file-dl-modal__badges  c-file-dl-modal__desc  c-file-dl-modal__icon  c-file-dl-modal__info
   c-file-dl-modal__meta  c-file-dl-modal__name  c-file-dl-modal__size  c-file-dl-modal__version
   c-file-mirror__arrow  c-file-mirror__icon  c-file-mirror__img  c-file-mirror__name
   c-file-mirror__size  c-file-name__icon  c-file-table-header__count
   c-file-table-header__title  c-step__body  c-step__desc  c-step__num  c-step__title
   c-tips__header  c-tips__list  c-type-badge--cfg  c-type-badge--exe  c-type-badge--patch
   c-type-badge--pdf  c-type-badge--zip */

/* ═══════════════════════════════════════════════════════════
   СТРАНИЦА: ФОРУМ — Стили страницы «форум»
   src: panel/pages/forum.css
   ═══════════════════════════════════════════════════════════ */
.c-forum-cats {

}
.c-forum-container {

}
.c-forum-layout {

}
.c-forum-stat {

}
.c-forum-stats {

}
.c-online {

}
.c-recent {

}
.c-recent-item {

}
.c-subforum {

}
/* элементы/модификаторы (добавляй по образцу  .блок__элемент { }  ):
   c-forum-stat__dot  c-forum-stat__val  c-online__count  c-online__dot  c-online__header
   c-online__list  c-online__pill  c-recent-item__avatar  c-recent-item__body
   c-recent-item__cat  c-recent-item__meta  c-recent-item__title  c-subforum__desc
   c-subforum__icon  c-subforum__icon--hot  c-subforum__icon--pin  c-subforum__info
   c-subforum__last  c-subforum__last-avatar  c-subforum__last-info  c-subforum__last-meta
   c-subforum__last-topic  c-subforum__name  c-subforum__stat  c-subforum__stat-label
   c-subforum__stat-val  c-subforum__stats */

/* ═══════════════════════════════════════════════════════════
   СТРАНИЦА: УСТАНОВЩИК — Стили страницы «установщик»
   src: panel/pages/installer.css
   ═══════════════════════════════════════════════════════════ */
.f-alert {

}
.f-field {

}
.f-group {

}
.f-hint {

}
.f-input {

}
.f-label {

}
.f-row {

}
.f-section {

}
.f-select {

}
.f-toggle {

}
.inst-bg {

}
.inst-btn {

}
.inst-card {

}
.inst-connector {

}
.inst-cred {

}
.inst-creds {

}
.inst-header {

}
.inst-log {

}
.inst-logo {

}
.inst-pane {

}
.inst-progress {

}
.inst-step {

}
.inst-steps {

}
.inst-success {

}
.inst-task {

}
.inst-tasks {

}
.inst-theme-btn {

}
.inst-version {

}
.installer {

}
.installer-body {

}
.req-badge {

}
.req-item {

}
.req-list {

}
.spin {

}
/* элементы/модификаторы (добавляй по образцу  .блок__элемент { }  ):
   f-alert--err  f-alert--warn  f-hint--error  f-section__label  f-section__line
   f-toggle__label  f-toggle__switch  inst-bg__grid  inst-btn--action  inst-btn--gold
   inst-card__body  inst-card__brand  inst-card__desc  inst-card__foot  inst-card__foot--end
   inst-card__head  inst-card__title  inst-cred__key  inst-cred__val  inst-log__line
   inst-log__msg  inst-log__msg--err  inst-log__msg--ok  inst-log__msg--warn  inst-log__time
   inst-logo__emblem  inst-logo__name  inst-logo__sub  inst-progress__bar
   inst-progress__bar-wrap  inst-progress__pct  inst-step__dot  inst-step__label
   inst-success__desc  inst-success__emblem  inst-success__title  inst-task__icon
   req-badge--fail  req-badge--ok  req-badge--warn  req-item__icon  req-item__left
   req-item__name  req-item__note */

/* ═══════════════════════════════════════════════════════════
   СТРАНИЦА: ИНВЕНТАРЬ — Стили страницы «инвентарь»
   src: panel/pages/inventory.css
   ═══════════════════════════════════════════════════════════ */
.c-cart {

}
.c-cart-item {

}
.c-char-pill {

}
.c-char-select {

}
.c-inv-cap {

}
.c-inv-slots {

}
.c-inv-tab {

}
.c-inv-tabs {

}
.c-inv-toolbar {

}
.c-qty-modal {

}
.c-qty-overlay {

}
.c-slot {

}
/* элементы/модификаторы (добавляй по образцу  .блок__элемент { }  ):
   c-cart-item__del  c-cart-item__grade  c-cart-item__icon  c-cart-item__info  c-cart-item__name
   c-cart-item__qty  c-cart__body  c-cart__empty  c-cart__footer  c-cart__list  c-cart__total
   c-cart__total-label  c-cart__total-val  c-char-pill__avatar  c-char-pill__class
   c-char-pill__info  c-char-pill__name  c-char-select__list  c-inv-cap__bar  c-inv-cap__fill
   c-inv-cap__text  c-inv-toolbar__char  c-inv-toolbar__count  c-inv-toolbar__icon
   c-inv-toolbar__label  c-inv-toolbar__left  c-qty-modal__actions  c-qty-modal__input
   c-qty-modal__max  c-qty-modal__sub  c-qty-modal__title  c-slot--a  c-slot--b  c-slot--c
   c-slot--d  c-slot--empty  c-slot--s  c-slot__grade  c-slot__icon  c-slot__name  c-slot__qty */

/* ═══════════════════════════════════════════════════════════
   СТРАНИЦА: ВХОД — Стили страницы «вход»
   src: panel/pages/login.css
   ═══════════════════════════════════════════════════════════ */
.c-check {

}
.c-field {

}
.c-login {

}
.c-login-theme {

}
.c-passkey-icons {

}
.c-pw-strength {

}
.c-select {

}
.c-social-icon-btn {

}
.c-verify {

}
.l-page {

}
.passkeys-add {

}
.passkeys-item {

}
.passkeys-list {

}
.passkeys-status {

}
/* элементы/модификаторы (добавляй по образцу  .блок__элемент { }  ):
   c-check__box  c-check__input  c-field__input  c-field__label  c-field__msg
   c-field__msg--error  c-field__msg--success  c-field__msg-icon  c-field__msg-text
   c-field__select  c-field__select-arrow  c-field__status  c-field__status--error
   c-field__status--success  c-field__toggle  c-field__wrap  c-login__body  c-login__diamond
   c-login__diamond--lg  c-login__foot  c-login__forgot  c-login__head  c-login__logo
   c-login__options  c-login__ornament  c-login__ornament-line  c-login__register  c-login__sep
   c-login__sep-line  c-login__sep-text  c-login__socials  c-login__subtitle  c-login__telegram
   c-passkey-icons__ok  c-passkey-icons__spin  c-pw-strength__bar  c-pw-strength__bars
   c-pw-strength__label  c-reg-field__label  c-reg-field__login-row  c-reg-field__toggle
   c-select--prefix  c-select__arrow  c-select__dropdown  c-select__err  c-select__option
   c-select__option-icon  c-select__trigger  c-select__value  c-social-icon-btn--telegram
   c-social-icon-btn__tip  c-verify__alert  c-verify__alert--err  c-verify__alert--ok
   c-verify__btn  c-verify__email  c-verify__form  c-verify__hint  c-verify__icon
   c-verify__logout  c-verify__logout-form  c-verify__text  g-btn--social  g-btn__google
   passkeys-item__date  passkeys-item__icon  passkeys-item__info  passkeys-item__name */

/* ═══════════════════════════════════════════════════════════
   СТРАНИЦА: НОВОСТИ — Стили страницы «новости»
   src: panel/pages/news.css
   ═══════════════════════════════════════════════════════════ */
.c-cat {

}
.c-news-card {

}
.c-news-grid {

}
.c-pagination {

}
.c-subscribe {

}
.c-tag {

}
.cn-featured {

}
/* элементы/модификаторы (добавляй по образцу  .блок__элемент { }  ):
   c-cat--announce  c-cat--contest  c-cat--event  c-cat--guide  c-cat--maint  c-cat--promo
   c-cat--update  c-news-card__author  c-news-card__author-avatar  c-news-card__date
   c-news-card__excerpt  c-news-card__footer  c-news-card__head  c-news-card__tags
   c-news-card__title  c-pagination__btn  c-pagination__dots  c-subscribe__action
   c-subscribe__body  c-subscribe__desc  c-subscribe__icon  c-subscribe__title
   cn-featured__excerpt  cn-featured__label  cn-featured__meta  cn-featured__meta-item
   cn-featured__num  cn-featured__pin  cn-featured__title */

/* ═══════════════════════════════════════════════════════════
   СТРАНИЦА: УВЕДОМЛЕНИЯ — Стили страницы «уведомления»
   src: panel/pages/notifications.css
   ═══════════════════════════════════════════════════════════ */
.np-empty {

}
.np-filter-btn {

}
.np-filters {

}
.np-header {

}
.np-item {

}
.np-pagination {

}
.np-panel {

}
.np-root {

}
.np-tag {

}
/* элементы/модификаторы (добавляй по образцу  .блок__элемент { }  ):
   np-empty__icon  np-empty__sub  np-empty__title  np-filter-btn__badge  np-header__icon
   np-header__left  np-header__sub  np-header__title  np-item--link  np-item__action
   np-item__body  np-item__dot-wrap  np-item__dot-wrap--blue  np-item__dot-wrap--green
   np-item__dot-wrap--purple  np-item__dot-wrap--red  np-item__dot-wrap--teal
   np-item__dot-wrap--yellow  np-item__meta  np-item__text  np-item__time  np-item__title
   np-item__top  np-item__unread-badge  np-item__unread-dot  np-tag--blue  np-tag--green
   np-tag--purple  np-tag--red  np-tag--teal  np-tag--yellow */

/* ═══════════════════════════════════════════════════════════
   СТРАНИЦА: ПРОФИЛЬ — Стили страницы «профиль»
   src: panel/pages/profile.css
   ═══════════════════════════════════════════════════════════ */
.lh-item {

}
.lh-list {

}
.pf-details {

}
.pf-hero {

}
.pf-link {

}
.pf-links {

}
.pf-row {

}
.pf-stats {

}
.set-avatar {

}
.set-content {

}
.set-form {

}
.set-layout {

}
.set-nav {

}
.set-row {

}
.set-section {

}
.tfa-confirm {

}
.tfa-grid {

}
.tfa-qr {

}
.tfa-qr-section {

}
.tfa-secret {

}
.tfa-secret-block {

}
.tfa-step {

}
.tfa-steps {

}
/* элементы/модификаторы (добавляй по образцу  .блок__элемент { }  ):
   lh-item__ago  lh-item__body  lh-item__device  lh-item__icon  lh-item__icon--live
   lh-item__icon--stone  lh-item__ip  lh-item__meta  lh-item__time  lh-item__title  lh-item__top
   pf-hero__avatar  pf-hero__avatar-img  pf-hero__avatar-letter  pf-hero__badge  pf-hero__email
   pf-hero__info  pf-hero__name  pf-hero__tags  pf-link__icon  pf-row__label  pf-row__value
   pf-row__value--accent  pf-row__value--flex  set-avatar__actions  set-avatar__hint
   set-avatar__img  set-avatar__info  set-avatar__letter  set-avatar__name  set-nav__btn
   set-nav__dot  set-nav__label  set-row__body  set-row__icon  set-row__sub  set-row__title
   tfa-qr__box  tfa-qr__hint  tfa-qr__img  tfa-secret-block__label  tfa-secret__copy
   tfa-secret__value  tfa-step__body  tfa-step__num  tfa-step__text  tfa-step__title */

/* ═══════════════════════════════════════════════════════════
   СТРАНИЦА: РЕГИСТРАЦИЯ — Стили страницы «регистрация»
   src: panel/pages/register.css
   ═══════════════════════════════════════════════════════════ */
.c-reg-agree {

}
.c-reg-check {

}
.c-reg-field {

}
.c-register {

}
.c-select {

}
.l-page {

}
/* элементы/модификаторы (добавляй по образцу  .блок__элемент { }  ):
   c-reg-check__box  c-reg-check__input  c-reg-field__error  c-reg-field__hint
   c-reg-field__input  c-reg-field__label  c-reg-field__login-row  c-reg-field__toggle
   c-reg-field__wrap  c-register__body  c-register__diamond  c-register__diamond--lg
   c-register__foot  c-register__head  c-register__login-link  c-register__ornament
   c-register__ornament-line  c-register__sep  c-register__sep-line  c-register__sep-text
   c-register__subtitle  c-register__title  c-select--prefix  c-select__arrow
   c-select__dropdown  c-select__option  c-select__option-icon  c-select__trigger
   c-select__value  g-btn__google */

/* ═══════════════════════════════════════════════════════════
   СТРАНИЦА: НАСТРОЙКИ ЛК — Стили страницы «настройки ЛК»
   src: panel/pages/settings.css
   ═══════════════════════════════════════════════════════════ */
.np-root {

}
.set-actions {

}
.set-content {

}
.set-sub-nav {

}
.soc-item {

}
.ugh-grid {

}
/* элементы/модификаторы (добавляй по образцу  .блок__элемент { }  ):
   set-sub-nav__btn  soc-item__body  soc-item__detail  soc-item__icon  soc-item__name */

/* ═══════════════════════════════════════════════════════════
   СТРАНИЦА: СТАТИСТИКА — Стили страницы «статистика»
   src: panel/pages/stats.css
   ═══════════════════════════════════════════════════════════ */
.c-champ {

}
.c-champ-cards {

}
.c-clan {

}
.c-class {

}
.c-player {

}
.c-rank {

}
.c-ranking-grid {

}
.c-stats-header {

}
.c-table {

}
.c-val {

}
/* элементы/модификаторы (добавляй по образцу  .блок__элемент { }  ):
   c-champ--clan  c-champ--pk  c-champ--pvp  c-champ__avatar  c-champ__body  c-champ__extra
   c-champ__extra-dot  c-champ__info  c-champ__label  c-champ__name  c-champ__val
   c-clan--accent  c-clan__dot  c-class__icon  c-player__avatar  c-player__avatar--img
   c-player__name  c-rank--1  c-rank--2  c-rank--3  c-val__bar  c-val__fill  c-val__fill--gold
   c-val__num */

/* ═══════════════════════════════════════════════════════════
   СТРАНИЦА: МАГАЗИН — Стили страницы «магазин»
   src: panel/pages/store.css
   ═══════════════════════════════════════════════════════════ */
.sh {

}
.sh-buy {

}
.sh-card {

}
.sh-empty {

}
.sh-gi {

}
.sh-grid {

}
.sh-header {

}
.sh-line {

}
.sh-price {

}
.sh-stock {

}
.sh-tabs {

}
.sh-timer {

}
.sh-tip {

}
.store-form-count {

}
.store-form-select {

}
/* элементы/модификаторы (добавляй по образцу  .блок__элемент { }  ):
   sh-buy__alert  sh-buy__alert--error  sh-buy__alert--warn  sh-buy__count  sh-buy__field-label
   sh-buy__head  sh-buy__items  sh-buy__name  sh-buy__product  sh-buy__seal  sh-buy__select
   sh-buy__select-arrow  sh-buy__select-wrap  sh-buy__total  sh-buy__total-label
   sh-buy__total-value  sh-card--popular  sh-card__badge  sh-card__body  sh-card__foot
   sh-card__head  sh-card__inner  sh-card__name  sh-card__seal  sh-card__seal-ring
   sh-card__summary  sh-card__summary-num  sh-card__tagline  sh-card__tier  sh-card__top
   sh-empty__title  sh-gi--common  sh-gi--epic  sh-gi--legend  sh-gi--rare  sh-gi__ench
   sh-gi__shine  sh-gi__spark  sh-line--epic  sh-line--legend  sh-line--rare  sh-line__name
   sh-line__qty  sh-line__qty-lbl  sh-line__rar  sh-line__title  sh-price__now  sh-price__old
   sh-stock__bar  sh-stock__fill  sh-stock__head  sh-tab__badge  sh-timer__label  sh-timer__val
   sh-tip__arrow  sh-tip__desc  sh-tip__ench  sh-tip__head  sh-tip__name  sh-tip__rar
   sh-tip__stat  sh-tip__stats  store-form-alert__icon  store-form-btn__icon */

/* ═══════════════════════════════════════════════════════════
   СТРАНИЦА: СТРИМЕРЫ — Стили страницы «стримеры»
   src: panel/pages/streamers.css
   ═══════════════════════════════════════════════════════════ */
.c-autoplay-btn {

}
.c-cta {

}
.c-featured {

}
.c-live-badge {

}
.c-live-dot {

}
.c-platform {

}
.c-stream-embed {

}
.c-streamer {

}
.c-streamers-grid {

}
/* элементы/модификаторы (добавляй по образцу  .блок__элемент { }  ):
   c-cta__action  c-cta__body  c-cta__desc  c-cta__icon  c-cta__title  c-featured__avatar
   c-featured__avatar-live  c-featured__body  c-featured__desc  c-featured__embed
   c-featured__embed--lazy  c-featured__head  c-featured__name  c-featured__num
   c-featured__play  c-featured__play-btn  c-featured__stat  c-featured__stat-label
   c-featured__stat-val  c-featured__stats  c-featured__thumb  c-live-dot--off  c-platform--kick
   c-platform--twitch  c-platform--yt  c-stream-embed--off  c-streamer__activity
   c-streamer__activity-bar  c-streamer__activity-fill  c-streamer__activity-label
   c-streamer__avatar  c-streamer__avatar--live  c-streamer__avatar--off  c-streamer__avatar-dot
   c-streamer__avatar-dot--live  c-streamer__avatar-dot--off  c-streamer__badges
   c-streamer__body  c-streamer__desc  c-streamer__embed  c-streamer__embed--lazy
   c-streamer__embed--off  c-streamer__info  c-streamer__info-desc  c-streamer__info-name
   c-streamer__info-row  c-streamer__info-time  c-streamer__info-time--off
   c-streamer__info-viewers  c-streamer__meta  c-streamer__meta-item  c-streamer__meta-label
   c-streamer__meta-val  c-streamer__name  c-streamer__play  c-streamer__play-btn
   c-streamer__thumb */

/* ═══════════════════════════════════════════════════════════
   СТРАНИЦА: ТИКЕТЫ — Стили страницы «тикеты»
   src: panel/pages/tickets.css
   ═══════════════════════════════════════════════════════════ */
.tc-check2 {

}
.tc-copy-btn {

}
.tc-date-sep {

}
.tc-dots {

}
.tc-file {

}
.tc-img {

}
.tc-jump-loading {

}
.tc-load-more {

}
.tc-messages {

}
.tc-msg {

}
.tc-msg-loading {

}
.tc-preview {

}
.tc-preview-item {

}
.tc-rec-bar {

}
.tc-reply-bar {

}
.tc-reply-btn {

}
.tc-reply-quote {

}
.tc-resolve-btn {

}
.tc-scroll-down {

}
.tc-tb-btn {

}
.tc-toolbar {

}
.tc-typing-row {

}
.tc-unread-divider {

}
.tc-vid-bar {

}
.tc-video {

}
.tc-voice {

}
.tckt-card {

}
.tckt-chip {

}
.tckt-list {

}
/* элементы/модификаторы (добавляй по образцу  .блок__элемент { }  ):
   ap-form__footer  tc-file__name  tc-file__size  tc-jump-loading__spinner
   tc-load-more__spinner  tc-messages__empty  tc-modal-head__actions  tc-modal__closed
   tc-modal__form  tc-modal__reply  tc-modal__textarea  tc-msg--admin  tc-msg--highlight
   tc-msg--incoming  tc-msg--new-sender  tc-msg--system  tc-msg--user  tc-msg-loading__spinner
   tc-msg__actions  tc-msg__author  tc-msg__av  tc-msg__box  tc-msg__check  tc-msg__check--read
   tc-msg__meta  tc-msg__time  tc-msg__wrap  tc-preview-item--file  tc-preview-item--img
   tc-preview-item--voice  tc-preview__rm  tc-rec-bar__cancel  tc-rec-bar__dot  tc-rec-bar__send
   tc-rec-bar__time  tc-reply-bar__author  tc-reply-bar__body  tc-reply-bar__cancel
   tc-reply-bar__text  tc-reply-quote__author  tc-reply-quote__text  tc-tb-btn--rec
   tc-tb-btn--vid  tc-toolbar__sep  tc-vid-bar__actions  tc-vid-bar__dot  tc-vid-bar__hint
   tc-vid-bar__info  tc-vid-bar__preview  tc-vid-bar__time  tc-video__btn  tc-video__time
   tc-voice__bars  tc-voice__btn  tc-voice__time  tckt-card--closed  tckt-card--open
   tckt-card--pending  tckt-card__body  tckt-card__category  tckt-card__head  tckt-card__icon
   tckt-card__id  tckt-card__meta  tckt-card__rail  tckt-card__subject  tckt-card__time
   tckt-card__time--reply  tckt-card__unread  tckt-card__unread-count  tckt-chip--closed
   tckt-chip--open  tckt-chip--pending  tckt-chip--prio  tckt-chip--prio-high
   tckt-chip--prio-low  tckt-chip--prio-normal  tckt-chip--prio-urgent  tckt-chip__dot */

/* ═══════════════════════════════════════════════════════════
   СТРАНИЦА: 2FA — Стили страницы «2FA»
   src: panel/pages/two-factor-challenge.css
   ═══════════════════════════════════════════════════════════ */
.key-drop {

}
.tfc-back {

}
.tfc-card {

}
.tfc-ornament {

}
.tfc-pin-label {

}
.tfc-pin-row {

}
.tfc-shield {

}
.tfc-timer {

}
.tfc-trust {

}
.tfc-wrap {

}
/* элементы/модификаторы (добавляй по образцу  .блок__элемент { }  ):
   key-drop__body  key-drop__icon  key-drop__sub  key-drop__title  tfc-card__body
   tfc-card__foot  tfc-card__head  tfc-card__sub  tfc-card__title  tfc-shield__body
   tfc-shield__icon  tfc-shield__ring-inner  tfc-shield__ring-outer  tfc-timer__arc-wrap
   tfc-timer__bg  tfc-timer__fg  tfc-timer__num  tfc-timer__text */

/* ═══════════════════════════════════════════════════════════
   СТРАНИЦА: КОЛЕСО/РУЛЕТКА — Стили страницы «колесо/рулетка»
   src: panel/pages/wheel.css
   ═══════════════════════════════════════════════════════════ */
.np-root {

}
.wheel-card {

}
.wheel-center {

}
.wheel-center-text {

}
.wheel-grid {

}
.wheel-hint {

}
.wheel-legend {

}
.wheel-lg-dot {

}
.wheel-lg-item {

}
.wheel-lg-val {

}
.wheel-live {

}
.wheel-live-dot {

}
.wheel-outer {

}
.wheel-pill {

}
.wheel-pills {

}
.wheel-pointer {

}
.wheel-result {

}
.wheel-result-overlay {

}
.wheel-ring {

}
.wheel-section-head {

}
.wheel-section-title {

}
.wheel-seg {

}
.wheel-stage-section {

}
.wheel-stats-section {

}
.wheel-studs {

}
.wheel-svg {

}
.wheel-tab {

}
.wheel-tabs {

}
.wheel-win {

}
.wheel-win-av {

}
.wheel-win-name {

}
.wheel-win-prize {

}
.wheel-win-r1 {

}
.wheel-win-r2 {

}
.wheel-win-rlbl {

}
.wheel-win-time {

}
.wheel-wins {

}
.wheel-wrap {

}
/* элементы/модификаторы (добавляй по образцу  .блок__элемент { }  ):
   wheel-lg-dot--epic  wheel-lg-dot--legend  wheel-lg-dot--rare  wheel-pill--cost
   wheel-result__icon  wheel-result__icon--epic  wheel-result__icon--legend
   wheel-result__icon--rare  wheel-result__prize  wheel-result__rarity
   wheel-result__rarity--epic  wheel-result__rarity--legend  wheel-result__rarity--rare
   wheel-result__title  wheel-win-av--me  wheel-win-name--me  wheel-win-time--now
   wheel-wins__empty */

/* ═══════════════════════════════════════════════════════════
   СТРАНИЦА: ВИКИ — Стили страницы «вики»
   src: panel/pages/wiki.css
   ═══════════════════════════════════════════════════════════ */
.re-stat-bar {

}
.wiki-article {

}
.wiki-backdrop {

}
.wiki-content {

}
.wiki-grid {

}
.wiki-loading {

}
.wiki-menu {

}
.wiki-mobile-toggle {

}
.wiki-page {

}
.wiki-placeholder {

}
.wiki-search {

}
.wiki-sidebar {

}
.wiki-spinner {

}
.wiki-submenu {

}
.wiki-submenu-wrap {

}
.wiki-toolbar {

}
/* элементы/модификаторы (добавляй по образцу  .блок__элемент { }  ):
   re-stat-bar__fill  wiki-content__inner  wiki-menu__button  wiki-menu__button-arrow
   wiki-menu__button-icon  wiki-menu__button-title  wiki-menu__item  wiki-menu__list
   wiki-search__clear  wiki-search__icon  wiki-search__input  wiki-search__item
   wiki-search__list  wiki-search__results  wiki-search__state  wiki-search__state--empty
   wiki-search__title  wiki-search__type  wiki-sidebar__close  wiki-sidebar__header
   wiki-sidebar__title  wiki-spinner--sm  wiki-submenu--deep  wiki-submenu__arrow
   wiki-submenu__bullet  wiki-submenu__item  wiki-submenu__link  wiki-submenu__link--deep
   wiki-submenu__title */

/* ═══════════════════════════════════════════════════════════
   УТИЛИТЫ: СКРОЛЛБАРЫ — Вспомогательные классы
   src: panel/utilities/scrollbars.css
   ═══════════════════════════════════════════════════════════ */
.c-sidebar {

}
.l-main {

}

/* ═══════════════════════════════════════════════════════════
   УТИЛИТЫ: ХЕЛПЕРЫ — Вспомогательные классы
   src: panel/utilities/utilities.css
   ═══════════════════════════════════════════════════════════ */
.absolute {

}
.align-baseline {

}
.align-bottom {

}
.align-middle {

}
.align-top {

}
.appearance-none {

}
.aspect-auto {

}
.aspect-square {

}
.aspect-video {

}
.bg-bone {

}
.bg-error {

}
.bg-ivory {

}
.bg-success {

}
.bg-transparent {

}
.bg-warning {

}
.bg-white {

}
.border {

}
.border-b {

}
.border-error {

}
.border-l {

}
.border-none {

}
.border-r {

}
.border-t {

}
.bottom-0 {

}
.break-all {

}
.break-words {

}
.capitalize {

}
.col-span-2 {

}
.col-span-3 {

}
.col-span-full {

}
.cursor-default {

}
.cursor-grab {

}
.cursor-move {

}
.cursor-not-allowed {

}
.cursor-pointer {

}
.cursor-text {

}
.d-block {

}
.d-contents {

}
.d-flex {

}
.d-grid {

}
.d-inline {

}
.d-inline-flex {

}
.d-inline-grid {

}
.d-none {

}
.fixed {

}
.flex {

}
.flex-1 {

}
.flex-auto {

}
.flex-col {

}
.flex-col-rev {

}
.flex-grow {

}
.flex-none {

}
.flex-nowrap {

}
.flex-row {

}
.flex-row-rev {

}
.flex-shrink-0 {

}
.flex-wrap {

}
.font-body {

}
.font-bold {

}
.font-heading {

}
.font-medium {

}
.font-mono {

}
.font-normal {

}
.font-semibold {

}
.gap-0 {

}
.gap-lg {

}
.gap-md {

}
.gap-sm {

}
.gap-x-lg {

}
.gap-x-md {

}
.gap-x-sm {

}
.gap-xl {

}
.gap-xs {

}
.gap-y-lg {

}
.gap-y-md {

}
.gap-y-sm {

}
.grid-cols-1 {

}
.grid-cols-2 {

}
.grid-cols-3 {

}
.grid-cols-4 {

}
.h-0 {

}
.h-auto {

}
.h-full {

}
.h-screen {

}
.icon-lg {

}
.icon-md {

}
.icon-sm {

}
.icon-xl {

}
.icon-xs {

}
.inset-0 {

}
.invisible {

}
.items-baseline {

}
.items-center {

}
.items-end {

}
.items-start {

}
.items-stretch {

}
.justify-around {

}
.justify-between {

}
.justify-center {

}
.justify-end {

}
.justify-evenly {

}
.justify-start {

}
.leading-loose {

}
.leading-none {

}
.leading-normal {

}
.leading-tight {

}
.left-0 {

}
.line-through {

}
.list-decimal {

}
.list-disc {

}
.list-none {

}
.lowercase {

}
.m-0 {

}
.m-auto {

}
.max-h-full {

}
.max-h-screen {

}
.max-w-full {

}
.max-w-lg {

}
.max-w-md {

}
.max-w-none {

}
.max-w-sm {

}
.max-w-xl {

}
.max-w-xs {

}
.mb-0 {

}
.mb-lg {

}
.mb-md {

}
.mb-sm {

}
.mb-xl {

}
.mb-xs {

}
.min-h-0 {

}
.min-h-full {

}
.min-h-screen {

}
.min-w-0 {

}
.min-w-full {

}
.ml-auto {

}
.ml-lg {

}
.ml-md {

}
.ml-sm {

}
.mr-auto {

}
.mr-lg {

}
.mr-md {

}
.mr-sm {

}
.mt-0 {

}
.mt-lg {

}
.mt-md {

}
.mt-sm {

}
.mt-xl {

}
.mt-xs {

}
.mx-auto {

}
.mx-lg {

}
.mx-md {

}
.mx-sm {

}
.my-lg {

}
.my-md {

}
.my-sm {

}
.no-underline {

}
.normal-case {

}
.object-contain {

}
.object-cover {

}
.object-fill {

}
.opacity-0 {

}
.opacity-100 {

}
.opacity-25 {

}
.opacity-50 {

}
.opacity-75 {

}
.outline {

}
.outline-none {

}
.overflow-auto {

}
.overflow-hidden {

}
.overflow-scroll {

}
.overflow-visible {

}
.overflow-x-auto {

}
.overflow-x-hidden {

}
.overflow-y-auto {

}
.overflow-y-hidden {

}
.p-0 {

}
.p-lg {

}
.p-md {

}
.p-sm {

}
.p-xl {

}
.p-xs {

}
.pb-lg {

}
.pb-md {

}
.pb-sm {

}
.pl-md {

}
.pl-sm {

}
.pointer-events-auto {

}
.pointer-events-none {

}
.pr-md {

}
.pr-sm {

}
.pt-lg {

}
.pt-md {

}
.pt-sm {

}
.px-lg {

}
.px-md {

}
.px-sm {

}
.px-xs {

}
.py-lg {

}
.py-md {

}
.py-sm {

}
.py-xs {

}
.relative {

}
.right-0 {

}
.rotate-180 {

}
.rotate-90 {

}
.rounded {

}
.rounded-full {

}
.rounded-lg {

}
.rounded-none {

}
.rounded-sm {

}
.scale-100 {

}
.scale-105 {

}
.scale-95 {

}
.select-all {

}
.select-none {

}
.select-text {

}
.self-auto {

}
.self-center {

}
.self-end {

}
.self-start {

}
.self-stretch {

}
.shadow {

}
.shadow-lg {

}
.shadow-none {

}
.shadow-sm {

}
.shadow-xl {

}
.static {

}
.sticky {

}
.text-2xl {

}
.text-2xs {

}
.text-3xl {

}
.text-base {

}
.text-center {

}
.text-default {

}
.text-error {

}
.text-info {

}
.text-left {

}
.text-lg {

}
.text-muted {

}
.text-right {

}
.text-sm {

}
.text-strong {

}
.text-subtle {

}
.text-success {

}
.text-warning {

}
.text-white {

}
.text-xl {

}
.text-xs {

}
.top-0 {

}
.top-auto {

}
.tracking-normal {

}
.tracking-tight {

}
.tracking-wide {

}
.tracking-wider {

}
.transition {

}
.transition-colors {

}
.transition-none {

}
.transition-opacity {

}
.transition-transform {

}
.translate-x-full {

}
.translate-y-0 {

}
.truncate {

}
.underline {

}
.uppercase {

}
.visible {

}
.w-auto {

}
.w-fit {

}
.w-full {

}
.w-half {

}
.w-max {

}
.w-min {

}
.w-screen {

}
.w-third {

}
.whitespace-nowrap {

}
.whitespace-pre {

}
.z-0 {

}
.z-10 {

}
.z-100 {

}
.z-20 {

}
.z-30 {

}
.z-50 {

}
.z-auto {

}