/* Radux — main.css
 * Generic base stylesheet. Brand-specific fidelity overrides live in
 * /public/<brand>/brand.css and are loaded after this file.
 *
 * Default color tokens:
 *   $color-1:  #121212   body bg
 *   $color-2:  linear-gradient(90deg,#000 7.21%,#34756f 100%)  header bg
 *   $color-3:  #09090A   footer bg / input text
 *   $color-10: #FFFFFF   white
 *   $color-11: #926d20   gold primary accent
 *   $color-16: #FDFCFA   almost-white (nav links)
 *   $color-20: #171614   lobby/page bg (very dark)
 *   $color-21: #222324   surface / category bar container
 *   $color-25: #313233   game item bg
 *   $color-29: #383630   sidebar / category bar row
 *   $color-31: #202122   slider btn border
 */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Mapped from original colors.scss */
  --color-bg:            #121212;   /* $color-1 — body bg */
  --color-surface:       #222324;   /* $color-21 — cards, category bar container */
  --color-surface-2:     #383630;   /* $color-29 — sidebar, bar row bg */
  --color-surface-3:     #313233;   /* $color-25 — game item bg */
  --color-drawer:        #2E3033;   /* $color-8 — Vuetify navigation drawer */
  --color-lobby-bg:      #171614;   /* $color-20 — lobby / page bg */
  --color-border:        #404040;   /* $color-12 */
  --color-primary:       #926d20;   /* $color-11 — gold */
  --color-primary-hover: #b08030;
  --color-text:          #FDFCFA;   /* $color-16 — almost white (nav links) */
  --color-text-white:    #FFFFFF;   /* $color-10 */
  --color-text-muted:    #8A8A8A;   /* $color-33 */
  --color-danger:        #D72919;   /* $color-4 */
  --color-success:       #489727;   /* $color-6 */
  --color-header-bg:     linear-gradient(90deg, #000000 7.21%, #34756f 100%); /* $color-2 */
  --color-footer-bg:     #09090A;   /* $color-3 */
  --font: 'Proxima Nova', 'Segoe UI', system-ui, sans-serif;
  --radius: 3px;   /* original uses 3px border-radius */
  --header-height: 64px;
}


html {
  width: 100%;
  height: 100vh;
  height: -webkit-fill-available;
}

body {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.5;
}

#app {
  /* clip (not hidden) prevents horizontal overflow WITHOUT establishing a
   * scroll container, so descendant `position: sticky` (catalog bar) works. */
  overflow-x: clip;
  min-height: 100%;
}

#app.activeRtl {
  font-family: Arial, sans-serif;
}

.v-application {
  font-family: var(--font);
  font-size: 14px;
  background: var(--color-bg);
  color: var(--color-text);
}

.v-main {
  padding-top: 64px;
}

.v-main__wrap {
  min-height: 555px;
}

body.sidebar-open {
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
  min-height: 100%;
}

.container--fluid {
  max-width: 100% !important;
}

.view {
  min-height: 100%;
  width: 100%;
}

a { color: var(--color-primary); text-decoration: none; }
a:hover { color: var(--color-primary-hover); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── Buttons ────────────────────────────────────────────────────────────
 * Converted from $header-loginBtn / $header-registerBtn vars
 */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 21px;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: nowrap;
  line-height: 150%;
  text-align: center;
}
/* $header-registerBtnBg: $color-11 / $header-registerBtnBorder: $color-11 */
.btn--primary {
  background: var(--color-primary);
  color: var(--color-text-white);
  border-color: var(--color-primary);
}
.btn--primary:hover {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
/* $header-loginBtnBg: transparent / $header-loginBtnBorder: $color-11 */
.btn--outline {
  background: transparent;
  color: var(--color-text-white);
  border-color: var(--color-primary);
}
.btn--outline:hover {
  background: var(--color-primary);
  color: var(--color-text-white);
}

/* ── Header ───────────────────────────────────────────────────────────── */
header.v-app-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  background: var(--color-header-bg);
}

header.v-app-bar .v-toolbar__content {
  height: var(--header-height);
  padding: 0 16px;
  max-width: 1680px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.v-btn.btn-menu {
  width: 56px;
  height: 56px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  margin-right: 8px;
}

.v-btn.btn-menu .v-icon__svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.header {
  padding: 0 8px;
  display: flex;
  flex-grow: 1;
  align-items: center;
  justify-content: space-between;
}

.menu {
  display: flex;
  flex-grow: 1;
  width: calc(50% - 280px);
  overflow: hidden;
}

.menu ul {
  display: flex;
  align-items: center;
}

.menu li {
  margin-right: 32px;
}

.menu li:last-child {
  margin-right: 0;
}

.menu a {
  color: #fdfcfa;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 700;
  font-size: 15px;
  line-height: 150%;
  white-space: nowrap;
}

.menu a:hover,
.menu a.is-active {
  color: #926d20;
  filter: drop-shadow(0 0 5.19px #47c5ae);
}

.header .logo {
  display: flex;
  flex-grow: 1;
  justify-content: center;
}

.header .logo .desc,
.header .logo .mob {
  max-height: 60px;
}

.header .logo .desc {
  display: block;
  width: 200px;
}

.header .logo .mob {
  display: none;
  width: 75px;
}

.header .logo img {
  display: block;
}

.header__nav {
  display: flex;
  align-items: center;
  flex-grow: 1;
  justify-content: flex-end;
  gap: 16px;
  width: calc(50% - 200px);
}

.header__nav-login {
  display: flex;
  align-items: center;
  margin: 0 -4px;
}

.header__nav-loginBox {
  display: flex;
}

.header__nav-login .btn-login,
.header__nav-login .btn-register {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  font-weight: 700;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid #926d20;
  margin: 0 4px;
  padding: 9px 21px;
}

.header__nav-login .btn-login {
  background: transparent;
  color: #fff;
}

.header__nav-login .btn-register {
  background: #926d20;
  color: #fff;
}

.header--rtl .menu li {
  margin: 0 0 0 32px;
}

.header--rtl .menu li:last-child {
  margin-left: 0;
}

header.v-app-bar.activeRtl .v-btn.btn-menu {
  margin-left: 8px;
  margin-right: 0;
}

.language-switcher-basic {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #FFFFFF;
}

.language-switcher-basic .option {
  position: relative;
  color: inherit;
  font-weight: 400;
  font-size: 13px;
  line-height: 1;
  text-decoration: none;
}

.language-switcher-basic .option.active {
  font-weight: 700;
}

.language-switcher-basic .option.active::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-primary);
  border-radius: 100px;
}

.header__nav-user {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__nav-user .btn-balance {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 2px solid var(--color-primary);
  border-radius: 3px;
  background: transparent;
  color: #FFFFFF;
  padding: 0 8px 0 12px;
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.header__nav-user .btn-balance .plus {
  position: relative;
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--color-primary);
}

.header__nav-user .btn-balance .plus::before,
.header__nav-user .btn-balance .plus::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 2px;
  background: #FFFFFF;
  transform: translate(-50%, -50%);
}

.header__nav-user .btn-balance .plus::after {
  width: 2px;
  height: 8px;
}

.header__nav-user .btn-register {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  border: 2px solid var(--color-primary);
  border-radius: 3px;
  background: var(--color-primary);
  color: #FFFFFF;
  padding: 0 16px;
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

.header__nav-user .btn-profileMenu {
  width: 32px;
  min-width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-primary);
  border-radius: 3px;
  background: transparent;
  color: #FFFFFF;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease;
}

.header__nav-user .btn-profileMenu:hover {
  background: var(--color-primary);
}

/* ── Main sidebar / hamburger menu ─────────────────────────────────────── */
.navigation-menu {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 250;
  width: 256px;
  max-width: calc(100vw - 64px);
  height: 100%;
  background: var(--color-drawer);
  color: #FFFFFF;
  transform: translateX(-100%);
  transition: transform 0.28s ease;
  overflow: visible;
  will-change: transform;
}

.activeRtl .navigation-menu,
.navigation-menu--rtl {
  left: auto;
  right: 0;
  transform: translateX(100%);
}

.navigation-menu.open {
  transform: translateX(0);
}

.navigation-menu .v-navigation-drawer__content {
  height: 100%;
  overflow-y: auto;
  overflow-x: visible;
  scrollbar-gutter: stable;
}

.navigation-menu .v-navigation-drawer__content::-webkit-scrollbar {
  width: 4px;
  height: 3px;
}

.navigation-menu .v-navigation-drawer__content::-webkit-scrollbar-button {
  display: none;
}

.navigation-menu .v-navigation-drawer__content::-webkit-scrollbar-track,
.navigation-menu .v-navigation-drawer__content::-webkit-scrollbar-track-piece {
  background-color: #121212;
}

.navigation-menu .v-navigation-drawer__content::-webkit-scrollbar-thumb {
  width: 4px;
  background: var(--color-primary);
  border-radius: 3px;
}

.navigation-menu .close {
  position: fixed;
  top: 25px;
  left: 285px;
  z-index: 260;
  display: none;
  width: 24px;
  height: 24px;
  padding: 4px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.navigation-menu.open .close {
  display: block;
}

.activeRtl .navigation-menu .close,
.navigation-menu--rtl .close {
  left: auto;
  right: 285px;
}

.navigation-menu-scrim {
  position: fixed;
  inset: 0;
  z-index: 240;
  display: block;
  border: 0;
  background: rgba(0, 0, 0, 0.46);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.navigation-menu.open + .navigation-menu-scrim {
  opacity: 1;
  pointer-events: auto;
}

.navigation-user {
  left: auto;
  right: 0;
  transform: translateX(100%);
}

.activeRtl .navigation-user,
.navigation-user--rtl {
  right: auto;
  left: 0;
  transform: translateX(-100%);
}

.navigation-user.open {
  transform: translateX(0);
}

.navigation-user .close {
  left: auto;
  right: 285px;
}

.activeRtl .navigation-user .close,
.navigation-user--rtl .close {
  right: auto;
  left: 285px;
}

.user-sidebar {
  padding: 35px 20px;
}

.user-sidebar__name {
  margin-bottom: 18px;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
}

.user-sidebar__purse {
  margin-bottom: 25px;
}

.user-sidebar__purse .item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
  color: #FFFFFF;
}

.user-sidebar__purse .item:last-child {
  margin-bottom: 0;
}

.user-sidebar__purse .name {
  color: #C4C7CC;
  font-size: 15px;
  line-height: 150%;
}

.user-sidebar__purse .value {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 15px;
  line-height: 150%;
  text-align: right;
}

.user-sidebar .btn-modal,
.user-sidebar .btn-logOut {
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}

.user-sidebar .btn-modal {
  border: 2px solid var(--color-primary);
  background: var(--color-primary);
  color: #FFFFFF;
}

.user-sidebar .btn-modal--secondary {
  background: transparent;
  color: #FFFFFF;
}

.user-sidebar .btn-logOut {
  border: 2px solid var(--color-primary);
  background: transparent;
  color: #FFFFFF;
}

.user-sidebar .btn-logOut:hover,
.user-sidebar .btn-modal--secondary:hover {
  background: var(--color-primary);
}

.user-sidebar .btn-logOut:disabled {
  opacity: 0.65;
  cursor: progress;
}

.user-sidebar__menu {
  margin: 32px -20px 10px;
  padding: 19px 0 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.user-sidebar__menu ul {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
}

.user-sidebar__menu a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 20px;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  line-height: 150%;
  transition: background 0.3s ease;
}

.user-sidebar__menu a:hover,
.user-sidebar__menu a.is-active {
  background: var(--color-primary);
  color: #FFFFFF;
}

.user-sidebar__menu svg {
  flex: 0 0 auto;
}

.activeRtl .user-sidebar__purse .value,
.navigation-user--rtl .user-sidebar__purse .value {
  text-align: left;
}

.main-menu {
  margin-bottom: 25px;
}

.main-menu ul {
  margin: 0;
  padding: 19px 0 0;
  list-style: none;
}

.main-menu ul::after {
  content: '';
  display: block;
  width: calc(100% - 40px);
  height: 1px;
  margin: 19px auto 0;
  background: #FFFFFF;
  opacity: 0.2;
}

.main-menu li,
.menu-additional li {
  width: 100%;
  margin: 0;
}

.main-menu a,
.menu-additional a {
  display: flex;
  align-items: center;
  width: 100%;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 15px;
  line-height: 150%;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.main-menu a {
  padding: 15px 20px;
}

.menu-additional {
  margin-bottom: 24px;
}

.menu-additional ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-additional a {
  padding: 10px 20px;
}

.main-menu a:hover,
.menu-additional a:hover {
  color: #FFFFFF;
  background: var(--color-primary);
}

.main-menu picture,
.main-menu img {
  display: block;
  flex: 0 0 auto;
}

.main-menu img,
.main-menu i,
.menu-additional img,
.menu-additional i {
  width: 20px;
  height: auto;
  margin-right: 14px;
  font-size: 20px;
}

.activeRtl .main-menu img,
.activeRtl .main-menu i,
.activeRtl .menu-additional img,
.activeRtl .menu-additional i,
.navigation-menu--rtl .main-menu img,
.navigation-menu--rtl .main-menu i,
.navigation-menu--rtl .menu-additional img,
.navigation-menu--rtl .menu-additional i {
  margin-right: 0;
  margin-left: 14px;
}

.menu-additional .language-switcher-container {
  padding: 10px 20px;
}

@media (max-width: 1180px) {
  .menu ul {
    display: none;
  }
}

@media (max-width: 767px) {
  .header .logo {
    width: 75px;
  }

  .header .logo .desc {
    display: none;
  }

  .header .logo .mob {
    display: block;
  }

  .header__nav {
    width: auto;
  }

  .header__nav-login .btn-login,
  .header__nav-login .btn-register {
    padding: 8px 14px;
    font-size: 11px;
  }

  .header__nav-user {
    gap: 6px;
  }

  .header__nav-user .btn-register {
    display: none;
  }

  .header__nav-user .btn-balance {
    min-height: 30px;
    padding: 0 7px;
    font-size: 11px;
  }

  .header__nav-user .btn-profileMenu {
    width: 30px;
    min-width: 30px;
    height: 30px;
  }
}

/* ── Home page ───────────────────────────────────────────────────────────
 * Converted from .SimpleContainerContentWrapper, CategoryGames, HorizontalBarWithSearch
 */
.home {
  width: 100%;
  padding: 20px 0;
}
.home--rtl { direction: rtl; }

/* HorizontalBarWithSearch (legacy-compatible markup) */
.section-categoryBarBox {
  margin: 0 -15px 24px;
  overflow: hidden;
  height: 60px;
}

.section-categoryBarCont {
  width: 100%;
  display: flex;
  justify-content: center;
  background: #222324;
  padding: 6px 0;
}

.section-categoryBarBgg {
  background: #222324;
  width: 100%;
}

.section-categoryBar {
  width: 100%;
  max-width: 100%;
  margin: 0;
  background-color: #383630;
  padding: 0 19px 0 50px;
  display: flex;
  justify-content: space-between;
}

.section-categoryBar__menu {
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
}

.section-categoryBar__menu .list {
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.section-categoryBar__menu .list .swiper-wrapper {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
  will-change: transform;
}

.section-categoryBar__menu .list__item {
  width: max-content;
  flex: 0 0 auto;
}

.section-categoryBar__menu .list__item a {
  height: 48px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  color: #fdfcfa;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  line-height: 150%;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.section-categoryBar__menu .list__item a picture {
  display: inline-flex;
  margin-right: 12px;
}

.section-categoryBar__menu .list__item a img {
  width: 24px;
  height: auto;
}

.section-categoryBar__menu .list__item a:hover {
  background: #926d20;
}

.section-categoryBar__menu .swiper-button-prev,
.section-categoryBar__menu .swiper-button-next {
  opacity: 1;
  z-index: 4;
  width: 24px;
  height: 48px;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
  display: none;
}

.section-categoryBar__menu .swiper-button-prev { left: 12px; }
.section-categoryBar__menu .swiper-button-next { right: 12px; }

.search-widgetCategoryBar {
  width: 0;
}

.search-widgetCategoryBar__searchBtn {
  display: none;
}

.icon-search::before {
  content: ' ';
}

/* CategoryGames section — .section-listGame
 * $sectionListGame-titleName: $color-10 = #FFFFFF
 * $sectionListGame-titleIcon: $color-11 = #926d20
 * $sectionListGame-titleLinkSee: $color-10 = #FFFFFF
 * $sectionListGame-titleLinkSeeBGHover: $color-11 = #926d20
 */
.home-section { margin-bottom: 36px; }
.home-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  width: 100%;
}
.home-section__title {
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  color: #FFFFFF;
}
.home-section__see-all {
  display: flex;
  align-items: center;
  border-radius: var(--radius);
  color: #FFFFFF;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 150%;
  padding: 5px 10px;
  transition: background 0.3s ease;
}
.home-section__see-all:hover {
  background: var(--color-primary);
  color: #FFFFFF;
}

/* ===========================================================================
 * Home row sliders — Promotions (PromotionSlider) + Latest news (NewsSlider).
 * Horizontal scroll track of cards with prev/next arrows + a "see all" link.
 * =========================================================================== */
.home-rowslider { margin: 0 0 40px; }
.home-rowslider__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.home-rowslider__header .title { display: flex; align-items: center; gap: 12px; }
.home-rowslider__header .title h2 { font-size: 20px; font-weight: 700; color: #FFFFFF; line-height: 1.2; }
.home-rowslider__header .title p { font-size: 13px; color: var(--color-text-muted); margin-top: 2px; }
.home-rowslider__header .title [class^="icon-"] { font-size: 28px; color: var(--color-primary); }
.home-rowslider__header .slider-nav { display: flex; align-items: center; gap: 8px; }
.home-rowslider__header .see-all {
  color: #FFFFFF; font-size: 14px; padding: 5px 10px; border-radius: var(--radius);
  transition: background 0.3s ease;
}
.home-rowslider__header .see-all:hover { background: var(--color-primary); }
.rs-nav {
  width: 32px; height: 32px; flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--color-primary); background: transparent; color: #FFFFFF;
  border-radius: 50%; cursor: pointer; font-size: 18px; line-height: 1;
  transition: background 0.3s ease;
}
.rs-nav:hover { background: var(--color-primary); }

.home-rowslider__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}
.home-rowslider__track::-webkit-scrollbar { display: none; }
.home-rowslider__track .item { flex: 0 0 auto; scroll-snap-align: start; }
.home-rowslider__track .item__box { height: 100%; }

/* Promotion cards — colour/image background with overlaid text */
.section-promotions .item { width: 320px; max-width: 80vw; }
.section-promotions .item__content {
  aspect-ratio: 320 / 180;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.section-promotions .item__content::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.75) 100%);
}
.section-promotions .item__content > * { position: relative; z-index: 1; }
.section-promotions .item__content h2 { font-size: 18px; font-weight: 700; color: #FFFFFF; }
.section-promotions .item__content p { font-size: 13px; color: #E6E6E6; margin: 4px 0 10px; }
.section-promotions .item__content .link { color: var(--color-primary); font-weight: 700; font-size: 13px; align-self: flex-start; }

/* News cards — cover image + category badge, title, short description */
.section-lastNews .item { width: 280px; max-width: 80vw; }
.section-lastNews .item__image {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 280 / 160; background: var(--color-surface-3);
}
.section-lastNews .item__image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.section-lastNews .item__image-category {
  position: absolute; top: 8px; inset-inline-start: 8px; z-index: 1;
  background: var(--color-primary); color: #FFFFFF; font-size: 11px;
  padding: 3px 8px; border-radius: var(--radius);
}
.section-lastNews .item__content h2 {
  font-size: 15px; font-weight: 700; color: #FFFFFF; margin: 10px 0 6px; line-height: 1.3;
}
.section-lastNews .item__content p {
  font-size: 13px; color: var(--color-text-muted); line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* ===========================================================================
 * Promotions page (PromotionsItems) — faithful port of PromotionsItems.scss.
 * 3-col grid of cards; the promotion image fills the card with title + desc +
 * read-more overlaid on the left, over the promotion's background colour.
 * =========================================================================== */
.page-promotions { display: flex; justify-content: center; }
.page-promotions__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  max-width: 1840px;
  gap: 24px 20px;
}
.page-promotions__header { grid-column: 1 / span 3; margin-bottom: 24px; }
.page-promotions__title h1 { font-weight: 700; font-size: 40px; line-height: 1; color: #FFFFFF; }
.page-promotions .item {
  position: relative;
  width: 100%;
  aspect-ratio: 2.4;
  border-radius: 8px;
  overflow: hidden;
  isolation: isolate;
}
.page-promotions .item__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-promotions .item__content {
  position: relative; z-index: 1; height: 100%;
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  gap: 20px; padding: 0 30px;
}
.page-promotions .item__content h2 { font-weight: 700; font-size: clamp(14px, 0.494vw + 14.52px, 24px); line-height: 1; color: #FFFFFF; }
.page-promotions .item__content p { font-weight: 400; font-size: clamp(9px, 0.321vw + 7.85px, 14px); line-height: 20px; color: #FFFFFF; margin: 0; }
.page-promotions .item__content .link {
  display: inline-flex; align-items: center; justify-content: center;
  width: clamp(78px, 23%, 128px); height: clamp(25px, 17%, 42px);
  border: 2px solid var(--color-primary); background: var(--color-primary);
  border-radius: 3px; color: #FFFFFF; font-weight: 700;
  font-size: clamp(9px, 0.321vw + 7.85px, 12px); text-transform: uppercase; text-decoration: none;
  white-space: nowrap; transition: background 0.3s ease;
}
.page-promotions .item__content .link:hover { background: transparent; }

@media (max-width: 1400px) {
  .page-promotions__list { grid-template-columns: repeat(2, 1fr); max-width: 1215px; gap: 22px 15px; }
  .page-promotions__header { grid-column: 1 / span 2; }
  .page-promotions__title h1 { font-size: 36px; }
}
@media (max-width: 767px) {
  .page-promotions__list { grid-template-columns: 1fr; }
  .page-promotions__header { grid-column: 1; }
  .page-promotions__title h1 { font-size: 28px; }
}

/* Promotion details popup */
body.promotion-dialog-open { overflow: hidden; }
.promotion-dialog-layer[hidden],
.promotion-dialog-layer [hidden] { display: none !important; }
.promotion-dialog-layer {
  position: fixed;
  inset: 0;
  z-index: 1960;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.promotion-dialog-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
}
.promotion-dialog__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: calc(100vh - 48px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.promotion-dialog__content .v-dialog {
  width: 780px;
  max-width: 100%;
  height: auto;
  max-height: calc(100vh - 48px);
  margin: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 5px !important;
  overflow: hidden;
}
.popups-promotions {
  width: 780px;
  max-width: 100%;
  max-height: calc(100vh - 48px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 5px;
  background: #ebebeb;
  color: #000;
  box-shadow: none;
}
.popups-promotions .v-card__title {
  position: relative;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 21px 54px 20px;
  background: var(--color-header-bg);
  border-radius: 3px 3px 0 0;
  text-align: center;
}
.popups-promotions .headline {
  width: 100%;
  color: #fff;
  font-size: 18px;
  line-height: 130%;
  font-weight: 700;
  text-align: center;
  overflow-wrap: anywhere;
}
.popups-promotions .close,
.popups-promotions .back {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  line-height: 0;
}
.popups-promotions .close { right: 21px; }
.popups-promotions .back { left: 25px; }
.activeRtl .popups-promotions .close { right: auto; left: 21px; }
.activeRtl .popups-promotions .back { left: auto; right: 25px; }
.activeRtl .popups-promotions .back svg { transform: scaleX(-1); }
.popups-promotions .close:hover,
.popups-promotions .back:hover { color: var(--color-primary); }
.popups-promotions .v-card__text {
  position: relative;
  flex: 1;
  min-height: 0;
  max-height: calc(100vh - 112px);
  padding: 0 !important;
  overflow-y: auto;
  background: #ebebeb;
  scrollbar-gutter: stable;
}
.popups-promotions .v-card__text::-webkit-scrollbar,
.popups-promotions__content .scrollDesc::-webkit-scrollbar {
  width: 4px;
  height: 3px;
}
.popups-promotions .v-card__text::-webkit-scrollbar-button,
.popups-promotions__content .scrollDesc::-webkit-scrollbar-button { display: none; }
.popups-promotions .v-card__text::-webkit-scrollbar-track,
.popups-promotions .v-card__text::-webkit-scrollbar-track-piece,
.popups-promotions__content .scrollDesc::-webkit-scrollbar-track,
.popups-promotions__content .scrollDesc::-webkit-scrollbar-track-piece {
  background: #d0d0d0;
}
.popups-promotions .v-card__text::-webkit-scrollbar-thumb,
.popups-promotions__content .scrollDesc::-webkit-scrollbar-thumb {
  background: #8e8e8e;
  border-radius: 3px;
}
.promotion-preloader {
  position: absolute;
  inset: 0;
  z-index: 8;
  background: rgba(235, 235, 235, 0.78);
}
.promotion-preloader::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 34px;
  height: 34px;
  margin: -17px 0 0 -17px;
  border: 3px solid rgba(0, 0, 0, 0.14);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: deposit-spin 0.8s linear infinite;
}
.promotion-message {
  margin: 20px 28px;
  border-radius: 4px;
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.4;
  white-space: pre-line;
}
.promotion-message--info {
  color: #4b3714;
  background: rgba(146, 109, 32, 0.12);
  border: 1px solid rgba(146, 109, 32, 0.25);
}
.promotion-message--error {
  color: #8c1a12;
  background: rgba(215, 41, 25, 0.12);
  border: 1px solid rgba(215, 41, 25, 0.35);
}
.popups-promotions__preview {
  position: relative;
  width: 100%;
  aspect-ratio: 600 / 250;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 60px;
  background: #191919;
}
.popups-promotions__preview picture,
.popups-promotions__preview img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.popups-promotions__preview img {
  z-index: 1;
  border-radius: 5px;
  object-fit: cover;
  object-position: right bottom;
}
.activeRtl .popups-promotions__preview img { object-position: left bottom; }
.popups-promotions__preview h2,
.popups-promotions__preview p {
  position: relative;
  z-index: 2;
  max-width: 400px;
  color: #fff;
  overflow-wrap: anywhere;
}
.popups-promotions__preview h2 {
  margin: 0 0 12px;
  font-weight: 700;
  font-size: 48px;
  line-height: 150%;
}
.popups-promotions__preview p {
  max-width: 320px;
  margin: 0;
  font-size: 20px;
  line-height: 150%;
  opacity: 0.7;
}
.popups-promotions__content {
  padding: 23px 28px 35px !important;
}
.popups-promotions__content .scrollDesc {
  height: 100%;
  overflow-y: auto;
}
.popups-promotions__content h2 {
  margin: 0 0 20px;
  color: #000;
  font-weight: 700;
  font-size: 36px;
  line-height: 150%;
}
.popups-promotions__content .desc {
  color: #000;
  font-size: 16px;
  line-height: 150%;
  text-align: justify;
  overflow-wrap: anywhere;
}
.popups-promotions__content .desc p { margin: 0 0 14px; }
.popups-promotions__content .desc ul,
.popups-promotions__content .desc ol { margin: 0 0 14px 22px; padding: 0; }
.activeRtl .popups-promotions__content .desc ul,
.activeRtl .popups-promotions__content .desc ol { margin-left: 0; margin-right: 22px; }
.popups-promotions__footer {
  display: flex;
  justify-content: center;
  height: 56px;
  margin-bottom: 40px;
}
.popups-promotions__footer .btn-deposit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: calc(100% - 40px);
  min-width: 172px;
  height: 100%;
  padding: 0 21px;
  border: 0;
  border-radius: 12px;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  text-transform: capitalize;
  text-decoration: none;
  text-align: center;
  overflow-wrap: anywhere;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.popups-promotions__footer .btn-deposit:hover {
  opacity: 1;
  transform: scale(1.05);
  filter: brightness(1.3);
}
@media (max-height: 850px) and (max-width: 1440px) {
  .promotion-dialog__content { overflow: auto; }
}
@media (max-width: 992px) {
  .promotion-dialog-layer { align-items: stretch; }
  .promotion-dialog__content,
  .promotion-dialog__content .v-dialog,
  .popups-promotions {
    height: 100%;
    max-height: none;
  }
  .popups-promotions__preview {
    padding: 40px;
  }
  .popups-promotions__preview h2 {
    margin-bottom: 13px;
    max-width: 270px;
    font-size: 32px;
  }
  .popups-promotions__preview p {
    max-width: 270px;
    font-size: 16px;
  }
  .popups-promotions__content { padding: 12px 25px 35px !important; }
  .popups-promotions__content h2 { margin-bottom: 17px; }
  .popups-promotions .v-card__title {
    min-height: 54px;
    padding: 16px 54px 15px;
  }
  .popups-promotions .v-card__text {
    max-height: calc(100% - 54px);
  }
}
@media (max-width: 767px) {
  .promotion-dialog-layer { padding: 0; }
  .promotion-dialog__content,
  .promotion-dialog__content .v-dialog,
  .popups-promotions {
    width: 100%;
    max-width: none;
    border-radius: 0 !important;
  }
  .popups-promotions__preview {
    padding: 26px;
  }
  .popups-promotions__preview h2 {
    margin-bottom: 4px;
    max-width: 150px;
    font-size: 18px;
  }
  .popups-promotions__preview p {
    max-width: 150px;
    font-size: 12px;
  }
  .popups-promotions__content {
    height: auto;
    padding: 30px 20px 35px !important;
  }
  .popups-promotions__content h2 {
    margin-bottom: 12px;
    font-size: 18px;
  }
  .popups-promotions__content .desc { font-size: 14px; }
  .popups-promotions__footer {
    height: 48px;
    margin-bottom: 20px;
  }
  .popups-promotions__footer .btn-deposit {
    min-width: 144px;
    padding: 0 14px;
    font-size: 14px;
  }
}

/* Altenar sportsbook (AltenarSportsbook.scss) — full-width widget container */
.page-sportsbook { margin-block: 20px; }
.page-sportsbook.container {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 15px !important;
  margin: 0 auto;
  min-height: 100%;
}
.page-sportsbook ._asb_application { background: transparent; }
#altenarsportsbook { min-height: 600px; }

/* ===========================================================================
 * Legal / info pages (SlimContainerWithTopMarginWhiteBg) — white content card
 * over the brand background image; collapsible sections (CollapseContentBlock).
 * =========================================================================== */
.page-information {
  margin: -38px -15px 0;
  padding: 120px 0 155px;
  min-height: 690px;
  background: var(--page-information-bg, #EBEBEB);
}
.page-information .container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
.page-information__content {
  max-width: 880px;
  width: 100%;
  margin: 0 auto;
  padding: 38px 56px;
  background: #FFFFFF;
  color: #09090A;
  border-radius: 2px;
  box-shadow: 0 3px 5px rgba(0,0,0,0.05), 0 6px 10px rgba(0,0,0,0.04), 0 1px 18px rgba(0,0,0,0.03);
}
/* content-only-block on info pages: everything renders at body size; headings
 * are gold, body text dark (matches the live site exactly). */
.page-information .content-only-block { display: block; padding: 0; max-width: none; font-size: 14px; }
.page-information .content-only-block h1,
.page-information .content-only-block h2,
.page-information .content-only-block h1 span, .page-information .content-only-block h2 span,
.page-information .content-only-block h1 strong, .page-information .content-only-block h2 strong {
  color: var(--color-primary) !important; font-size: 14px; font-weight: 700; text-transform: none; line-height: 1.4; margin: 7px 0 14px;
}
.page-information .content-only-block h3 { color: #09090A; font-size: 14px; font-weight: 700; margin: 7px 0 10px; }
.page-information .content-only-block p,
.page-information .content-only-block li,
.page-information .content-only-block span { color: #09090A; font-size: 14px; line-height: 1.5; text-align: justify; }
.page-information .content-only-block strong, .page-information .content-only-block em { color: inherit; }
.page-information__content a { color: var(--color-primary); }

/* Collapsible sections (CollapseContentBlockWithTitle) */
.page-information .item { border-bottom: 1px solid #EBEBEB; border-radius: 3px 3px 0 0; transition: all .3s ease; }
.page-information .item.active { border: 1px solid #EBEBEB; margin-top: 10px; }
.page-information .item .btn-toggle {
  width: 100%; padding: 13px 9px; margin: 0;
  display: flex; align-items: center; justify-content: space-between;
  background: transparent; border: 0; cursor: pointer;
  font-weight: 700; font-size: 26px; line-height: 1.2; text-align: start; color: #09090A;
  border-radius: 3px; transition: all .3s ease;
}
.page-information .item.active .btn-toggle { background: #EBEBEB; }
.page-information .item .btn-toggle i {
  flex: 0 0 auto; margin-inline-start: 12px; color: var(--color-primary);
  border: solid var(--color-primary); border-width: 0 2px 2px 0; padding: 3px;
  transform: rotate(45deg); transition: transform .3s ease;
}
.page-information .item.active .btn-toggle i { transform: rotate(-135deg); }
.page-information .item .desc { display: none; padding: 21px 12px; font-size: 16px; line-height: 1.5; text-align: justify; color: #222324; }
.page-information .item.active .desc { display: block; }
.page-information .item .desc p, .page-information .item .desc li { color: #222324; }

@media screen and (max-width: 992px) {
  .page-information { padding: 120px 0 54px; }
  .page-information__content { padding: 38px 40px; }
  .page-information .container { padding: 0 30px; }
}
@media screen and (max-width: 600px) {
  .page-information__content { padding: 24px 18px; }
  .page-information .item .btn-toggle { font-size: 20px; }
}

/* ===========================================================================
 * Help center (HelpCategories) — search + category grid + "need more help".
 * =========================================================================== */
.page-help { margin: 0 -15px; }
.page-help__title { background: #222324; padding: 28px 0; }
.page-help__title h1 { text-align: center; font-size: 40px; font-weight: 700; color: #FFFFFF; }
/* light-grey body with white cards + dark text (matches the live site) */
.page-help__body { background: #EBEBEB; padding: 0 0 40px; }
.page-help__body .container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
.page-help__search { width: 100%; max-width: 570px; margin: 0 auto 17px; padding: 36px 0; position: relative; }
.page-help__search input {
  width: 100%; border: 0; border-radius: 3px; padding: 17px 15px 17px 48px;
  font-size: 15px; color: #212121;
  background: #FFFFFF var(--page-help-search-icon, none) no-repeat 15px center;
}
.page-help__search_results {
  position: absolute; top: calc(100% - 30px); width: 100%; z-index: 5;
  background: #FFFFFF; padding: 15px 20px; max-height: 220px; overflow-y: auto;
  border-radius: 3px; box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
.page-help__search_results[hidden] { display: none; }
.page-help__search_results ul { list-style: none; padding: 0; margin: 0; }
.page-help__search_results ul[hidden] { display: none; }
.page-help__search_results li { padding: 8px 0; border-bottom: 1px solid rgba(33,33,33,0.18); }
.page-help__search_results li:last-child { border-bottom: 0; }
.page-help__search_results a { color: #212121; }
.page-help__search_results a:hover { color: var(--color-primary); }
.page-help__search_results .null { text-align: center; color: #212121; font-size: 12px; }
.page-help__search_results .null[hidden] { display: none; }

.page-help__category h2 { text-align: center; font-size: 30px; font-weight: 700; color: #09090A; margin-bottom: 40px; }
.page-help__category ul { display: flex; flex-wrap: wrap; margin: 0 -15px; padding: 0 0 30px; list-style: none; }
.page-help__category li { width: 25%; padding: 0 15px; margin-bottom: 30px; }
.page-help__category a {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  height: 163px; padding: 27px 8px; background: #FFFFFF;
  border-radius: 4px; color: #09090A; text-align: center;
  box-shadow: 0 3px 5px rgba(0,0,0,0.05), 0 1px 18px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.page-help__category a:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,0.15); }
.page-help__category a img { width: 48px; height: 48px; object-fit: contain; }
.page-help__category a span { font-size: 16px; font-weight: 700; color: #09090A; }

.page-help__bottom { text-align: center; padding: 10px 0 40px; }
.page-help__bottom h2 { font-size: 24px; color: #FFFFFF; margin-bottom: 16px; }
.page-help .btn-contact {
  display: inline-block; padding: 12px 28px; border-radius: var(--radius);
  background: var(--color-primary); color: #FFFFFF; font-weight: 700; text-transform: uppercase; font-size: 13px;
}
.page-help .btn-contact:hover { background: var(--color-primary-hover); }

@media (max-width: 992px) { .page-help__category li { width: 33.33%; } }
@media (max-width: 600px) {
  .page-help__category li { width: 50%; }
  .page-help__title h1 { font-size: 28px; }
  .page-help__category h2 { font-size: 24px; }
}

/* Help sub-pages: category question list + single answer + breadcrumbs */
.page-help__list,
.page-help__desc { max-width: 880px; margin: 0 auto; padding: 0 15px; }
.page-help__list ul { list-style: none; padding: 0; margin: 0; }
.page-help__list li { margin-bottom: 12px; }
.page-help__list a {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; background: #FFFFFF; border-radius: 4px;
  color: #09090A; font-size: 16px; font-weight: 600;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06); transition: box-shadow 0.3s ease;
}
.page-help__list a:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.14); color: var(--color-primary); }
.page-help__list a svg { flex: 0 0 auto; }
.page-help__desc .box-desc { color: #09090A; font-size: 16px; line-height: 1.7; text-align: justify; }
.page-help__desc .box-desc p { margin: 0 0 14px; }
.page-help__desc .box-desc a { color: var(--color-primary); }

.breadcrumbs-bar { padding: 16px 0 0; }
.breadcrumbs-bar .container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
.breadcrumbs-bar ul { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; list-style: none; padding: 0; margin: 0; font-size: 13px; }
.breadcrumbs-bar li { color: var(--color-text-muted); }
.breadcrumbs-bar li:not(:last-child)::after { content: '/'; margin-inline-start: 8px; }
.breadcrumbs-bar a { color: var(--color-text-muted); }
.breadcrumbs-bar a:hover { color: var(--color-primary); }
.breadcrumbs-bar li[aria-current] { color: #FFFFFF; }

/* ===========================================================================
 * Lottery page (LotteryRaffles) — current draw + countdown, awards slider,
 * past-raffle history, over the brand lottery background.
 * =========================================================================== */
.section-lottery { position: relative; margin: 0 -15px; padding: 20px 0 50px; overflow: hidden; }
.section-lottery .background { position: absolute; inset: 0; z-index: 0; }
.section-lottery .background img { width: 100%; height: 100%; object-fit: cover; }
.section-lottery > .container { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 0 15px; }

.section-lottery-x__header { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin: 32px 0 18px; flex-wrap: wrap; }
.section-lottery-x__header .title { display: flex; align-items: center; gap: 12px; }
.section-lottery-x__header .title h2 { font-size: 22px; font-weight: 700; color: #FFFFFF; }
.section-lottery-x__header .title p { font-size: 13px; color: var(--color-text-muted); }
.section-lottery-x__header .title [class^="icon-"] { font-size: 28px; color: var(--color-primary); }
.section-lottery .slider-nav { display: flex; gap: 8px; }

/* Current draw — text on the left, countdown on the right (flex space-between) */
.section-lottery-current__wrapper,
.section-lottery-current .empty-block {
  border: 2px solid var(--color-primary); border-radius: 6px; background: rgba(0,0,0,0.6);
}
.section-lottery-current .empty-block { text-align: center; color: #FFFFFF; padding: 40px; }
.section-lottery-current__content {
  display: flex; flex-direction: row; align-items: center; justify-content: space-between; gap: 28px; padding: 24px;
}
.section-lottery-current__content .title { flex: 1 1 auto; min-width: 0; }
.section-lottery-current__content .title h2 { font-size: 24px; color: #FFFFFF; margin-bottom: 10px; }
.section-lottery-current .lottery-desc { color: var(--color-text-muted); font-size: 14px; line-height: 1.5; }
.section-lottery-current .lottery-desc p { margin: 0 0 8px; }
.countdown { flex: 0 0 auto; display: flex; gap: 10px; }
.cd-unit { display: flex; flex-direction: column; align-items: center; min-width: 62px; padding: 12px 8px; background: rgba(0,0,0,0.7); border: 1px solid rgba(146,109,32,0.5); border-radius: 6px; }
.cd-num { font-size: 32px; font-weight: 700; color: var(--color-primary); line-height: 1; font-variant-numeric: tabular-nums; }
.cd-label { font-size: 10px; color: var(--color-text-muted); margin-top: 6px; text-transform: uppercase; letter-spacing: 0.03em; }
@media (max-width: 767px) {
  .section-lottery-current__content { flex-direction: column; align-items: stretch; }
  .countdown { justify-content: center; flex-wrap: wrap; }
}

/* Awards — horizontal slider of row cards (image + text + read-more) */
.section-lottery-awards .item { width: 380px; max-width: 85vw; }
.section-lottery-awards .item__box { height: 100%; background: rgba(0,0,0,0.6); border: 1px solid var(--color-primary); border-radius: 6px; overflow: hidden; }
.section-lottery-awards .item__content { display: flex; flex-direction: row; align-items: center; gap: 14px; padding: 16px; }
.section-lottery-awards .item__image { flex: 0 0 auto; }
.section-lottery-awards .item__image img { width: 56px; height: 56px; object-fit: contain; }
.section-lottery-awards .item__text { flex: 1 1 auto; min-width: 0; }
.section-lottery-awards .item__text h3 { font-size: 15px; color: #FFFFFF; margin-bottom: 2px; }
.section-lottery-awards .item__text p { font-size: 13px; color: var(--color-primary); font-weight: 700; }
.section-lottery-awards .item__link { flex: 0 0 auto; }
.section-lottery-awards .item__link .link { background: transparent; border: 0; color: var(--color-primary); font-weight: 700; font-size: 12px; text-transform: uppercase; cursor: pointer; white-space: nowrap; }
.section-lottery-awards .item .desc { display: none; padding: 0 16px 16px; color: var(--color-text-muted); font-size: 13px; line-height: 1.5; }
.section-lottery-awards .item.active .desc { display: block; }

/* Upcoming — cards (or empty block) */
.section-lottery-upcoming .empty-block { border: 2px solid var(--color-primary); border-radius: 6px; background: rgba(0,0,0,0.6); padding: 40px; text-align: center; color: #FFFFFF; }
.section-lottery-upcoming .item { width: 300px; max-width: 80vw; }
.section-lottery-upcoming .item__box { background: rgba(0,0,0,0.6); border: 1px solid var(--color-primary); border-radius: 6px; overflow: hidden; }
.section-lottery-upcoming .item__header { padding: 14px 16px; background: rgba(146,109,32,0.2); }
.section-lottery-upcoming .item__header p { font-weight: 700; color: #FFFFFF; }
.section-lottery-upcoming .item__content { padding: 14px 16px; }
.section-lottery-upcoming .item__content p { color: var(--color-text-muted); font-size: 13px; margin-bottom: 8px; }
.section-lottery-upcoming .item__content h2 { color: var(--color-primary); font-size: 15px; font-weight: 700; }

/* History — table of past raffles (expandable) + winner list */
.lottery-history-table { display: flex; flex-direction: column; background: rgba(0,0,0,0.5); border-radius: 6px; overflow: hidden; }
.lottery-row { border-bottom: 1px solid rgba(255,255,255,0.08); }
.lottery-row:last-child { border-bottom: 0; }
.lottery-row.active { background: rgba(146,109,32,0.12); }
.lottery-row__summary {
  width: 100%; display: grid; grid-template-columns: 2fr 1.3fr 1fr 1.3fr auto; align-items: center; gap: 12px;
  padding: 16px 20px; background: transparent; border: 0; cursor: pointer; color: #FFFFFF; text-align: start; font-size: 14px;
}
.lottery-row__summary .col--title { font-weight: 700; }
.lottery-row__summary .col--date, .lottery-row__summary .col--winners, .lottery-row__summary .col--tickets { color: var(--color-text-muted); font-size: 13px; }
.lottery-row__summary .chev { justify-self: end; width: 8px; height: 8px; border: solid var(--color-primary); border-width: 0 2px 2px 0; transform: rotate(45deg); transition: transform .3s ease; }
.lottery-row.active .chev { transform: rotate(-135deg); }
.lottery-row__detail { display: none; padding: 0 20px 18px; color: var(--color-text-muted); font-size: 13px; line-height: 1.5; }
.lottery-row.active .lottery-row__detail { display: block; }
.lottery-row__awards { list-style: none; padding: 0; margin: 0 0 12px; display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 4px 16px; }
.lottery-row__awards li { color: #FFFFFF; }

.lottery-winners__wrapper { margin-top: 28px; }
.lottery-winners__header { font-size: 18px; font-weight: 700; color: #FFFFFF; margin-bottom: 14px; }
.widgetWinn { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 10px; }
.widgetWinn__item { background: rgba(0,0,0,0.6); border: 1px solid rgba(146,109,32,0.4); border-radius: 6px; padding: 12px 14px; }
.widgetWinn__item .inf h4 { font-size: 14px; color: #FFFFFF; }
.widgetWinn__item .inf p { font-size: 13px; color: var(--color-primary); font-weight: 700; margin-top: 2px; }

@media (max-width: 767px) {
  .lottery-row__summary { grid-template-columns: 1fr auto; row-gap: 4px; }
  .lottery-row__summary .col--date, .lottery-row__summary .col--winners, .lottery-row__summary .col--tickets { grid-column: 1; }
  .lottery-row__summary .chev { grid-row: 1; grid-column: 2; }
}

/* ── Load More button — mirrors GamesBlockLoadMoreButtonFooter.scss
 * $standardBtn-color: $color-10 = #FFFFFF
 * $standardBtn-border: $color-11 = #926d20
 */
.home-section__footer {
  padding: 30px 0;
  display: flex;
  justify-content: center;
}
.btn-load {
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 150%;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FFFFFF;
  min-width: 190px;
  height: 40px;
  background: transparent;
  border: 2px solid #926d20;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  padding: 0 24px;
}
.btn-load:hover {
  background: #926d20;
  color: #FFFFFF;
}
.btn-load:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* CSS-based initial hiding — mirrors GamesBlockSimple.scss
 * additional_game_rows_count_0: hides from nth-child(11) on desktop
 * Class .home-section--limited is added server-side when games >= 10
 */
.home-section--limited .games-grid .game-card:nth-child(n+11) { display: none; }

@media screen and (max-width: 1024px) {
  .home-section--limited .games-grid .game-card:nth-child(n+9) { display: none; }
}
@media screen and (max-width: 767px) {
  .home-section--limited .games-grid .game-card:nth-child(n+7) { display: none; }
}
@media screen and (max-width: 600px) {
  .home-section--limited .games-grid .game-card:nth-child(n+5) { display: none; }
}

/* ===========================================================================
 * CategoryItemContent — "view all" category listing
 * Mirrors CategoryItemContent.vue + GamesBlock*.vue (section-listGame grid).
 * =========================================================================== */
.categoryItemContent { width: 100%; }

.categoryItemContent .section-listGame__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.categoryItemContent .section-listGame__header .title {
  display: flex;
  align-items: center;
  gap: 14px;
}
.categoryItemContent .section-listGame__header .title img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.categoryItemContent .section-listGame__header .title__text h2 {
  font-weight: 700;
  font-size: 22px;
  line-height: 130%;
  color: #FFFFFF;
}
.categoryItemContent .section-listGame__header .title__text p {
  font-size: 13px;
  line-height: 150%;
  color: var(--color-text-muted);
  margin-top: 2px;
}
.categoryItemContent .section-listGame__header .link a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #FFFFFF;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: background 0.3s ease;
}
.categoryItemContent .section-listGame__header .link a:hover {
  background: var(--color-primary);
}

/* Block grid — repeat(5) with 16px gap (game.scss .listGame__list) */
.section-listGame { margin: 0 0 16px; }
.section-listGame__content .listGame__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  width: 100%;
}
.listGame__list-item {
  min-height: 0;
  display: flex;
  flex-direction: column;
}
.listGame__list-item .game-card { width: 100%; height: 100%; }

/* Big item — first item (firstBox) / 7th item (lastBox) span 2×2 */
.listGame__list.firstBox .listGame__list-item:nth-child(1),
.listGame__list.lastBox .listGame__list-item:nth-child(7) {
  grid-row: span 2;
}
.listGame__list.firstBox .listGame__list-item:nth-child(1) { grid-column: 1 / span 2; }
.listGame__list.lastBox .listGame__list-item:nth-child(7) { grid-column: 4 / span 2; }
.listGame__list-item--big .game-card__thumb-wrap { aspect-ratio: auto; height: 100%; }
.listGame__list-item--big .game-card__thumb { object-fit: cover; }

/* Sort + provider filter bar — CatalogBarWithProviderFilter.vue */
.section-catalogBarBox { margin: 0 0 20px; }

/* Category nav bar (HorizontalBarWithSearch) sticks below the fixed header while
 * scrolling. The Vue app toggles `.section-categoryBarCont.scroll` → fixed via a
 * scroll handler; this is the CSS-only equivalent (needs #app overflow-x:clip,
 * not hidden, so the sticky ancestor doesn't clip it). */
.section-categoryBarBox {
  position: sticky;
  top: var(--header-height, 64px);
  z-index: 6;
}
.section-catalogBar__filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.section-catalogBar__filter .left,
.section-catalogBar__filter .right { display: flex; align-items: center; gap: 14px; }
.section-catalogBar .btn-select {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-surface-3);
  color: #FFFFFF;
  border: 1px solid var(--color-primary);
  border-radius: var(--radius);
  padding: 8px 14px;
  font-size: 13px;
  cursor: pointer;
}
.provider-filter-menu { position: relative; }
.provider-filter-menu .v-menu-select {
  position: absolute;
  top: calc(100% + 6px);
  inset-inline-start: 0;
  z-index: 20;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 10px;
  min-width: 220px;
  max-height: 320px;
  overflow-y: auto;
}
.provider-filter-menu .v-menu-select[hidden] { display: none; }
.provider-filter-menu .v-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  list-style: none;
}
.provider-filter-menu .v-list-item { position: relative; }
.provider-filter-menu .v-list-item .checkbox { position: absolute; opacity: 0; }
.provider-filter-menu .v-list-item label {
  display: block;
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 4px;
  cursor: pointer;
}
.provider-filter-menu .v-list-item img { width: 100%; height: auto; display: block; }
.provider-filter-menu .v-list-item .checkbox:checked + label { border-color: var(--color-primary); }
.provider-filter-menu .btn-select-all {
  margin-top: 10px;
  width: 100%;
  background: transparent;
  color: #FFFFFF;
  border: 1px solid var(--color-primary);
  border-radius: var(--radius);
  padding: 8px;
  cursor: pointer;
  font-size: 12px;
}
.section-catalogBar .sort { display: flex; align-items: center; gap: 12px; }
.section-catalogBar .sort__label { color: var(--color-text-muted); font-size: 13px; }
.section-catalogBar .sort ul { display: flex; gap: 8px; list-style: none; }
.section-catalogBar .sort li {
  cursor: pointer;
  font-size: 13px;
  color: #FFFFFF;
  padding: 4px 8px;
  border-radius: var(--radius);
  transition: background 0.3s ease;
}
.section-catalogBar .sort li.active,
.section-catalogBar .sort li:hover { background: var(--color-primary); }

/* Load more (btn-loadCatalog) */
.btn-loadCatalog {
  margin: 40px auto;
  width: max-content;
  min-width: 190px;
  font-weight: 700;
  font-size: 12px;
  line-height: 150%;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FFFFFF;
  padding: 11px;
  border: 2px solid var(--color-primary);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.3s ease;
}
.btn-loadCatalog:hover { background: var(--color-primary); }
.btn-loadCatalog.is-loading { opacity: 0.5; pointer-events: none; }

@media screen and (max-width: 1024px) {
  .section-listGame__content .listGame__list { grid-template-columns: repeat(4, 1fr); }
  .listGame__list.firstBox .listGame__list-item:nth-child(1),
  .listGame__list.lastBox .listGame__list-item:nth-child(7) {
    grid-column: auto;
    grid-row: auto;
  }
  .listGame__list-item--big .game-card__thumb-wrap { aspect-ratio: 275 / 205; height: auto; }
}
@media screen and (max-width: 767px) {
  .section-listGame__content .listGame__list { grid-template-columns: repeat(3, 1fr); }
}
@media screen and (max-width: 600px) {
  .section-listGame__content .listGame__list { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .provider-filter-menu .v-menu-select { min-width: 180px; }
}

/* Footer menu (MenuWithoutIcons)
 * $menuWithoutIcons-listItemLink: $color-10 = #FFFFFF
 * $menuWithoutIcons-listItemLinkHover: $color-11 = #926d20
 */
/* In-content MenuWithoutIcons — faithful to `#cont ul` in MenuWithoutIcons.scss:
 * centred max-width row of links, light-grey text, gold on hover. */
#cont .menu-without-icons {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1200px;
  padding: 12px;
  margin: 20px auto 0;
  justify-content: center;
  list-style: none;
}
#cont .menu-without-icons li { margin: 0 15px; }
#cont .menu-without-icons a { font-size: 14px; color: #C4C7CC; text-decoration: none; transition: color 0.3s ease; }
#cont .menu-without-icons a:hover { color: var(--color-primary); }
@media screen and (max-width: 767px) {
  #cont .menu-without-icons li { margin: 0 7px 10px; }
}

/* ===========================================================================
 * Providers page (PlatformsItems.vue)
 * =========================================================================== */
.page-platformList {
  margin: -38px -15px 0;
  min-height: 690px;
  padding: 70px 0 26px;
}
.page-platformList__title {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
}
.page-platformList__title-icon {
  position: relative;
  flex: 0 0 auto;
  width: 66px;
  height: 66px;
  color: var(--color-primary);
}
.page-platformList__title-icon::before {
  content: '';
  position: absolute;
  inset: 9px 13px;
  border: 5px solid currentColor;
  border-radius: 5px;
  transform: rotate(-8deg);
}
.page-platformList__title-icon::after {
  content: '';
  position: absolute;
  left: 21px;
  top: 22px;
  width: 24px;
  height: 5px;
  background: currentColor;
  box-shadow: 0 13px 0 currentColor;
  transform: rotate(-8deg);
}
.page-platformList__title .text { padding-left: 14px; }
.activeRtl .page-platformList__title .text,
.content-page--rtl .page-platformList__title .text {
  padding-left: 0;
  padding-right: 14px;
}
.page-platformList__title h1 {
  margin: 0 0 4px;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 40px;
  line-height: 40px;
}
.page-platformList__title p {
  margin: 0;
  color: #FFFFFF;
  font-weight: 400;
  font-size: 25px;
  line-height: 25px;
}
.page-platformList__list {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -11px;
}
.page-platformList__list .item {
  width: 25%;
  padding: 0 11px;
  margin-bottom: 42px;
}
.page-platformList__list .item__image {
  height: 126px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-surface);
}
.page-platformList__list .item__image a,
.page-platformList__list .item__image picture {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-platformList__list .item__image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.page-platformList__list .item__content {
  padding: 10px 12px 15px 10px;
  background: var(--color-surface-2);
  border-radius: 0 0 3px 3px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.page-platformList__list .item__content-inf { min-width: 0; }
.page-platformList__list .item__content h2 {
  margin: 0 0 8px;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.page-platformList__list .rate {
  display: flex;
  align-items: center;
}
.page-platformList__list .rate img {
  width: 21px;
  height: 20px;
  margin-right: 2px;
}
.activeRtl .page-platformList__list .rate img,
.content-page--rtl .page-platformList__list .rate img {
  margin-right: 0;
  margin-left: 2px;
}
.page-platformList__list .read-btn {
  display: block;
  flex: 0 0 auto;
  min-width: 98px;
  width: max-content;
  padding: 4px 5px;
  border: 2px solid var(--color-primary);
  border-radius: 3px;
  background: var(--color-primary);
  color: #FFFFFF;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s ease;
}
.page-platformList__list .read-btn:hover {
  background: transparent;
  color: #FFFFFF;
}
.page-platformList__load {
  display: flex;
  justify-content: center;
}
.page-platformList__load .v-btn {
  min-width: 190px;
  height: 40px;
  border: 2px solid var(--color-primary);
  border-radius: 3px;
  background: transparent;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
}
.page-platformList__load .v-btn:hover,
.page-platformList__load .v-btn.is-loading {
  background: var(--color-primary);
}
.page-platformList__load .v-btn:disabled {
  cursor: wait;
  opacity: 0.75;
}
@media screen and (max-width: 992px) {
  .page-platformList { padding: 52px 0 0; }
  .page-platformList .container { max-width: 605px; }
  .page-platformList__title { margin-bottom: 30px; }
  .page-platformList__title-icon { width: 47px; height: 47px; }
  .page-platformList__title-icon::before { inset: 7px 10px; border-width: 4px; }
  .page-platformList__title-icon::after { left: 16px; top: 16px; width: 17px; height: 4px; box-shadow: 0 10px 0 currentColor; }
  .page-platformList__title .text { padding-left: 11px; }
  .activeRtl .page-platformList__title .text,
  .content-page--rtl .page-platformList__title .text { padding-left: 0; padding-right: 11px; }
  .page-platformList__title h1 { font-size: 30px; line-height: 21px; }
  .page-platformList__title p { font-size: 18px; line-height: 27px; }
  .page-platformList__list .item { width: 50%; margin-bottom: 22px; }
  .page-platformList__list .item__image { height: 217px; }
  .page-platformList__list .item__content { padding: 22px 18px 19px; }
}
@media screen and (max-width: 767px) {
  .page-platformList { margin: 0 -15px; padding: 10px 0 0; }
  .page-platformList__title { margin-bottom: 23px; }
  .page-platformList__title-icon { width: 27px; height: 27px; }
  .page-platformList__title-icon::before { inset: 4px 6px; border-width: 2px; border-radius: 3px; }
  .page-platformList__title-icon::after { left: 9px; top: 10px; width: 10px; height: 2px; box-shadow: 0 6px 0 currentColor; }
  .page-platformList__title .text { padding-left: 7px; }
  .activeRtl .page-platformList__title .text,
  .content-page--rtl .page-platformList__title .text { padding-left: 0; padding-right: 7px; }
  .page-platformList__title h1 { font-size: 18px; line-height: 15px; margin-bottom: 0; }
  .page-platformList__title p { font-size: 12px; line-height: 16px; }
  .page-platformList__load { margin-top: 25px; }
  .page-platformList__load .v-btn { margin-bottom: 25px; }
  .page-platformList__list .item { width: 50%; margin-bottom: 22px; }
  .page-platformList__list .item__image { height: 60px; }
  .page-platformList__list .item__content { padding: 3px 6px 6px; }
  .page-platformList__list .item__content h2 { font-size: 9px; margin-bottom: 2px; }
  .page-platformList__list .rate img { width: 10px; height: auto; margin-right: 3px; }
  .activeRtl .page-platformList__list .rate img,
  .content-page--rtl .page-platformList__list .rate img { margin-right: 0; margin-left: 3px; }
  .page-platformList__list .read-btn { min-width: 46px; padding: 2px 6px; font-size: 10px; }
}

/* Deposit popup */
body.deposit-dialog-open { overflow: hidden; }
.deposit-dialog-layer[hidden],
.deposit-dialog-layer [hidden] { display: none !important; }
.deposit-dialog-layer {
  position: fixed;
  inset: 0;
  z-index: 1950;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.deposit-dialog-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
}
.deposit-dialog__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: calc(100vh - 48px);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
}
.deposit-dialog__content .v-dialog {
  width: 900px;
  max-width: 100%;
  margin: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 3px !important;
  overflow: hidden;
}
.popups-deposit {
  width: 900px;
  max-width: 100%;
  max-height: calc(100vh - 48px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 3px;
  background: #ebebeb;
  color: #000;
  box-shadow: none;
}
.popups-deposit .v-card__title {
  position: relative;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 21px 54px 20px;
  background: var(--color-header-bg);
  border-radius: 3px 3px 0 0;
}
.popups-deposit .headline {
  width: 100%;
  color: #fff;
  font-size: 18px;
  line-height: 130%;
  font-weight: 700;
  text-align: center;
}
.popups-deposit .close,
.popups-deposit .back {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  line-height: 0;
}
.popups-deposit .close { right: 21px; }
.popups-deposit .back { left: 25px; }
.activeRtl .popups-deposit .close { right: auto; left: 21px; }
.activeRtl .popups-deposit .back { left: auto; right: 25px; }
.activeRtl .popups-deposit .back svg { transform: scaleX(-1); }
.popups-deposit .v-card__text {
  position: relative;
  flex: 1;
  min-height: 0;
  max-height: calc(90vh - 64px);
  padding: 0;
  overflow-y: auto;
  scrollbar-gutter: stable;
}
.deposit-dialog-layer .preloader {
  position: absolute;
  inset: 0;
  z-index: 8;
  background: rgba(235, 235, 235, 0.72);
}
.deposit-dialog-layer .preloader::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 34px;
  height: 34px;
  margin: -17px 0 0 -17px;
  border: 3px solid rgba(0, 0, 0, 0.14);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: deposit-spin 0.8s linear infinite;
}
@keyframes deposit-spin { to { transform: rotate(360deg); } }
.deposit-message {
  margin: 14px 24px 0;
  border-radius: 4px;
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.4;
  white-space: pre-line;
}
.deposit-message--info {
  color: #4b3714;
  background: rgba(146, 109, 32, 0.12);
  border: 1px solid rgba(146, 109, 32, 0.25);
}
.deposit-message--error {
  color: #8c1a12;
  background: rgba(215, 41, 25, 0.12);
  border: 1px solid rgba(215, 41, 25, 0.35);
}
.deposit-message--success {
  color: #1d5b16;
  background: rgba(72, 151, 39, 0.12);
  border: 1px solid rgba(72, 151, 39, 0.35);
}
.deposit-dialog-layer .form-two {
  display: flex;
  flex-direction: row;
  min-height: 520px;
}
.deposit-dialog-layer h2 {
  margin: 0 0 25px;
  color: #000;
  font-size: 18px;
  line-height: 130%;
  font-weight: 700;
  text-align: left;
}
.deposit-dialog-layer .form-method,
.deposit-dialog-layer .form-much {
  width: 50%;
  max-height: calc(90vh - 64px);
  overflow-y: auto;
  padding: 42px 56px;
}
.deposit-dialog-layer .form-method {
  background: #f8f8f8;
}
.deposit-dialog-layer .form-much {
  background: #ebebeb;
}
.deposit-country {
  margin: 0 0 18px;
}
.deposit-country label,
.deposit-dialog-layer .form-group label {
  display: block;
  margin: 0 0 7px;
  color: #000;
  font-size: 14px;
  line-height: 1.2;
}
.deposit-country select,
.deposit-dialog-layer .form-group input,
.deposit-dialog-layer .form-group select {
  width: 100%;
  height: 48px;
  border: 1px solid var(--color-primary);
  border-radius: 3px;
  background: #fff;
  color: #000;
  padding: 0 13px;
  font-size: 14px;
  outline: none;
}
.deposit-dialog-layer .form-group {
  margin: 0 0 14px;
}
.deposit-dialog-layer .text {
  margin: -10px 0 16px;
  color: #000;
  font-size: 14px;
  line-height: 1.45;
}
.deposit-dialog-layer .form-radio {
  margin-bottom: 8px;
}
.deposit-dialog-layer .list-method .radio {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.deposit-dialog-layer .list-method .radio + label {
  position: relative;
  min-height: 89px;
  display: block;
  padding: 9px 30px 9px 94px;
  border: 2px solid #e1e1e1;
  border-radius: 3px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.activeRtl .deposit-dialog-layer .list-method .radio + label {
  padding: 9px 94px 9px 30px;
}
.deposit-dialog-layer .list-method .radio:checked + label,
.deposit-dialog-layer .list-method .radio + label:hover {
  border-color: var(--color-primary);
  background: #fbf6ec;
}
.deposit-dialog-layer .list-method .form-radio.disabled {
  opacity: 0.55;
}
.deposit-dialog-layer .list-method img {
  position: absolute;
  left: 18px;
  top: 50%;
  width: 60px;
  max-height: 54px;
  object-fit: contain;
  transform: translateY(-50%);
}
.activeRtl .deposit-dialog-layer .list-method img {
  left: auto;
  right: 18px;
}
.deposit-dialog-layer .list-method .name {
  display: block;
  margin-bottom: 8px;
  color: #000;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 700;
}
.deposit-dialog-layer .list-method .amount {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  color: #000;
  font-size: 12px;
  line-height: 1.35;
}
.deposit-dialog-layer .list-method .amount .name {
  display: inline;
  margin: 0 4px 0 0;
  color: #6a6a6a;
  font-size: inherit;
  font-weight: 400;
}
.deposit-method-category {
  border-bottom: 1px solid #d5d5d5;
}
.deposit-method-category__title {
  width: 100%;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border: 0;
  background: transparent;
  margin: 0;
  padding: 10px 0;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  cursor: pointer;
  text-align: left;
}
.deposit-method-category__title:hover {
  color: var(--color-primary);
}
.deposit-method-category__arrow {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}
.deposit-method-category.is-open .deposit-method-category__arrow {
  transform: rotate(225deg);
}
.deposit-method-category__panel {
  padding: 7px 0 10px;
}
.payment-amount-message,
.deposit-process-message,
.create-new-payment-account-message {
  margin-bottom: 10px;
  border: 1px solid #eee;
  padding: 10px;
  border-radius: 5px;
  background: #fcfcfc;
  text-align: center;
  color: #000;
}
.deposit-dialog-layer .list-amount {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 14px;
}
.deposit-dialog-layer .list-amount .form-radio {
  min-height: 40px;
  margin: 0;
  border: 1px solid var(--color-primary);
  border-radius: 3px;
  background: #fff;
  color: #000;
  cursor: pointer;
  font-weight: 700;
}
.deposit-dialog-layer .list-amount .form-radio:hover {
  background: #fbf6ec;
}
.deposit-dialog-layer .list-total {
  margin: 18px 0;
  border-top: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
}
.deposit-dialog-layer .list-total__item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  color: #000;
  font-size: 14px;
}
.deposit-dialog-layer .list-total__item + .list-total__item {
  border-top: 1px solid #e2e2e2;
}
.deposit-dialog-layer .list-total__item .value {
  font-weight: 700;
  text-align: right;
}
.deposit-dialog-layer .v-btn {
  width: 100%;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-primary);
  border-radius: 3px;
  background: var(--color-primary);
  color: #fff;
  padding: 0 18px;
  cursor: pointer;
  font-size: 12px;
  line-height: 15px;
  font-weight: 700;
  text-transform: uppercase;
}
.deposit-dialog-layer .v-btn.btn-normal {
  background: transparent;
  color: #000;
}
.deposit-dialog-layer .v-btn:disabled {
  cursor: progress;
  opacity: 0.65;
}
.deposit-dialog-layer .form-selectCard .v-btn + .v-btn {
  margin-top: 10px;
}
.deposit-bonus-list,
.deposit-step--account,
.deposit-step--process,
.deposit-step--success {
  padding: 42px 56px;
  color: #000;
}
.deposit-bonus-list__items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}
.deposit-bonus-card {
  min-height: 86px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 2px solid #e1e1e1;
  border-radius: 3px;
  background: #fff;
  color: #000;
  padding: 12px;
  cursor: pointer;
  text-align: left;
}
.deposit-bonus-card.is-active,
.deposit-bonus-card:hover {
  border-color: var(--color-primary);
  background: #fbf6ec;
}
.deposit-bonus-card__title {
  font-weight: 700;
  font-size: 14px;
}
.deposit-bonus-card__desc {
  font-size: 12px;
  line-height: 1.4;
}
.deposit-bonus-list__actions,
.transaction-status .buttons {
  display: flex;
  gap: 10px;
}
.deposit-process iframe {
  width: 100%;
  min-height: 620px;
  border: 0;
  padding: 15px;
  background: #fff;
}
.window-process,
.transaction-status,
.deposit-process--qr {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: #000;
  text-align: center;
}
.window-process .message {
  font-size: 14px;
  line-height: 1.45;
}
.window-process button[data-action="deposit-open-window"],
.window-process .icon button {
  border: 0;
  background: transparent;
  color: var(--color-primary);
  cursor: pointer;
  font-weight: 700;
}
.window-process .icon img {
  max-width: 110px;
  max-height: 70px;
  object-fit: contain;
}
.qr-code-img img {
  width: 240px;
  max-width: 100%;
  height: auto;
}
.transaction-status__title {
  margin: 0;
  color: #000;
  font-size: 22px;
  line-height: 1.25;
}
.transaction-status__amount,
.transaction-status__date,
.transaction-status__message,
.transaction-status__id {
  color: #000;
  font-size: 14px;
  line-height: 1.45;
}
.deposit-empty {
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  background: #fff;
  padding: 18px;
  color: #000;
  text-align: center;
}

@media (max-width: 767px) {
  .deposit-dialog-layer {
    align-items: stretch;
    padding: 0;
  }
  .deposit-dialog__content,
  .deposit-dialog__content .v-dialog,
  .popups-deposit {
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    border-radius: 0 !important;
  }
  .popups-deposit {
    height: 100vh;
    min-height: 100vh;
  }
  .popups-deposit .v-card__title {
    border-radius: 0;
  }
  .popups-deposit .v-card__text {
    max-height: calc(100vh - 64px);
  }
  .deposit-dialog-layer .form-two {
    flex-direction: column;
    min-height: 0;
  }
  .deposit-dialog-layer .form-method,
  .deposit-dialog-layer .form-much,
  .deposit-bonus-list,
  .deposit-step--account,
  .deposit-step--process,
  .deposit-step--success {
    width: 100%;
    max-height: none;
    padding: 24px 18px;
  }
  .deposit-bonus-list__items {
    grid-template-columns: 1fr;
  }
  .deposit-bonus-list__actions,
  .transaction-status .buttons {
    flex-direction: column;
    width: 100%;
  }
}

/* Auth popups — LoginNew / RegisterNew */
body.auth-dialog-open { overflow: hidden; }
.auth-dialog-layer[hidden],
.auth-dialog-layer [hidden] { display: none !important; }
.auth-dialog-layer {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.auth-dialog-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
}
.auth-dialog__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: calc(100vh - 48px);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
}
.auth-dialog__content .v-dialog {
  margin: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 10px !important;
  overflow: hidden;
}
.auth-dialog-layer .v-card {
  color: #000;
}
.auth-dialog-layer .v-card__title {
  position: relative;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-header-bg);
}
.auth-dialog-layer .headline {
  width: 100%;
  color: #fff;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 19px;
  font-weight: 700;
  text-align: center;
}
.auth-dialog-layer .close,
.auth-dialog-layer .back,
.email-signup-form__close {
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  line-height: 0;
}
.auth-dialog-layer .close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.auth-dialog-layer .back {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.auth-dialog-layer .v-card__text {
  overflow-y: auto;
  scrollbar-gutter: stable;
}
.auth-dialog-layer .auth-popup-form.is-submitting {
  opacity: 0.82;
}
.auth-dialog-layer .auth-message {
  width: 328px;
  margin: 0 auto 12px;
  white-space: pre-line;
  border-radius: 4px;
  padding: 9px 11px;
  font-size: 12px;
  line-height: 1.35;
  color: #000;
  background: rgba(146, 109, 32, 0.12);
  border: 1px solid rgba(146, 109, 32, 0.25);
}
.auth-dialog-layer .auth-message--error {
  color: #8c1a12;
  background: rgba(215, 41, 25, 0.12);
  border-color: rgba(215, 41, 25, 0.35);
}
.auth-dialog-layer .auth-message--success {
  color: #1d5b16;
  background: rgba(72, 151, 39, 0.12);
  border-color: rgba(72, 151, 39, 0.35);
}
.auth-dialog-layer h2 {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 19px;
  font-weight: 700;
  color: #000;
  text-align: center;
}
.auth-dialog-layer .form-group {
  width: 328px;
  margin: 0 auto 12px;
}
.auth-dialog-layer .form-group label {
  display: block;
  margin-bottom: 6px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  line-height: 17px;
  font-weight: 300;
  color: #000;
}
.auth-dialog-layer .form-group input {
  width: 100%;
  height: 40px;
  min-height: 40px;
  max-height: 40px;
  border: 0.5px solid var(--color-primary);
  border-radius: 4px;
  background: #fff;
  color: #000;
  caret-color: #000;
  padding: 10px 12px;
  font: 14px/20px "Helvetica Neue", Arial, sans-serif;
  outline: none;
}
.auth-dialog-layer .form-group input:focus {
  box-shadow: 0 0 0 2px rgba(146, 109, 32, 0.18);
}
.auth-dialog-layer .v-btn {
  width: 328px;
  min-width: 328px;
  max-width: 328px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 0 auto 20px;
  padding: 3px;
  border: 1px solid var(--color-primary);
  border-radius: 3px;
  background: var(--color-primary);
  color: #fff;
  box-shadow: none;
  cursor: pointer;
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px;
  line-height: 15px;
  font-weight: 700;
  text-transform: uppercase;
}
.auth-dialog-layer .v-btn:disabled {
  cursor: progress;
  opacity: 0.75;
}
.auth-dialog-layer .login-with {
  background: #ebebeb;
  color: #000;
  border-color: var(--color-primary);
}
.auth-dialog-layer .login-with-apple,
.auth-dialog-layer .signup-with-apple {
  background: #fff;
  border-color: #000;
}
.auth-dialog-layer .login-with__text {
  color: inherit;
}
.auth-dialog-layer .login-with__icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.popups-login-new {
  width: 360px;
  max-width: 360px;
  height: 540px;
  overflow: hidden;
  border-radius: 10px;
  background: #ebebeb;
  box-shadow: none;
}
.popups-login-new .v-card__title {
  border-radius: 10px 10px 0 0;
}
.popups-login-new .v-card__text {
  max-height: calc(100% - 60px);
  padding: 0 16px 20px;
}
.popups-login-new h2 {
  margin: 20px 0;
}
.popups-login-new .login-actions {
  width: 328px;
  margin: 0 auto 20px;
  display: flex;
  justify-content: space-between;
}
.popups-login-new .login-actions a {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  line-height: 14px;
  font-weight: 500;
  color: #000;
}
.popups-login-new .login-actions a:last-child {
  color: var(--color-primary);
  text-decoration: underline;
}
.popups-register {
  width: 360px;
  max-width: 360px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 10px;
  background: #ebebeb;
  box-shadow: none;
}
.popups-register .v-card__title {
  flex: 0 0 60px;
  border-radius: 10px 10px 0 0;
}
.popups-register .close svg {
  width: 16px;
  height: 16px;
}
.popups-register .close svg path {
  opacity: 1;
  fill: #fff;
}
.popups-register .v-card__text {
  flex: 1;
  min-height: 0;
  max-width: 100%;
  padding: 0;
}
.register-step__bar {
  display: none;
}
.register-step__content {
  padding-bottom: 0;
}
.register-step__start {
  position: relative;
  min-height: auto;
  padding: 20px 16px 28px;
}
.register-step__start .steps-content {
  width: 328px;
  margin: 0 auto;
}
.register-step__one h2 {
  margin: 0 0 20px;
}
.signup-providers {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 8px;
}
.signup-providers .v-btn {
  margin-bottom: 12px;
}
.signup-providers .v-btn:last-child {
  margin-bottom: 4px;
}
.email-signup-form {
  margin-top: 8px;
}
.email-signup-form__header {
  width: 328px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.email-signup-form__title {
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px;
  line-height: 15px;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
}
.email-signup-form__close {
  color: #000;
  padding: 4px;
}
.email-signup-form__close:hover {
  color: var(--color-primary);
}
.auth-popup-check {
  width: 328px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0 auto 16px;
  color: #000;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  line-height: 13px;
  font-weight: 300;
}
.auth-popup-check input {
  width: 16px;
  height: 16px;
  accent-color: var(--color-primary);
  flex: 0 0 auto;
}
.terms-disclaimer {
  width: 328px;
  margin: 4px auto 12px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  line-height: 14px;
  font-weight: 300;
  color: #000;
  text-align: center;
}
.terms-disclaimer a {
  color: var(--color-primary);
  text-decoration: underline;
}
.popups-register .login {
  margin-top: 12px;
  color: #000;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  line-height: 14px;
  font-weight: 500;
  text-align: center;
}
.popups-register .login span {
  color: var(--color-primary);
  cursor: pointer;
  text-decoration: underline;
}
.register-step__two {
  width: 328px;
  min-height: 256px;
  margin: 80px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.register-step__two h2 {
  margin: 0;
}
.register-step__two-code {
  width: 328px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.register-step__two-code .info-text {
  margin: 0;
  color: #000;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  line-height: 17px;
  font-weight: 300;
  text-align: center;
}
.register-step__two-code .v-btn {
  width: 100%;
  min-width: auto;
  max-width: 100%;
  margin: 0;
}
.register-step__two-code .resend-btn {
  background: #ebebeb;
  color: #000;
}
.auth-otp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.auth-otp input {
  width: 56px;
  height: 56px;
  min-height: 56px;
  max-height: 56px;
  padding: 0;
  text-align: center;
  font-size: 18px;
}
.register-step__success {
  min-height: 360px;
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #000;
  text-align: center;
}
.activeRtl .popups-register .close,
.activeRtl .popups-login-new .close {
  right: auto;
  left: 16px;
}
.activeRtl .popups-register .back {
  left: auto;
  right: 16px;
}
.activeRtl .popups-register .back svg {
  transform: scaleX(-1);
}

@media (max-width: 767px) {
  .auth-dialog-layer {
    align-items: stretch;
    padding: 0;
  }
  .auth-dialog__content,
  .auth-dialog__content .v-dialog {
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    border-radius: 0 !important;
    background: #ebebeb !important;
  }
  .popups-login-new,
  .popups-register {
    width: 100%;
    max-width: 100%;
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    border-radius: 0;
  }
  .popups-login-new .v-card__title,
  .popups-register .v-card__title {
    border-radius: 0;
  }
  .popups-login-new .v-card__text,
  .popups-register .v-card__text {
    height: calc(100vh - 60px);
    max-height: calc(100vh - 60px);
    background: #ebebeb;
  }
  .register-step__start {
    padding: 20px 16px 28px;
  }
}

/* Auth pages */
.auth-page {
  min-height: calc(100vh - 84px);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 108px 16px 56px;
}
.auth-page [hidden] { display: none !important; }
.auth-card {
  width: 100%;
  background: #1c1b19;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.35);
  color: #FFFFFF;
}
.auth-card--login { max-width: 472px; }
.auth-card--register { max-width: 900px; }
.auth-card__header {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 0 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.auth-card__header h1 {
  font-size: 20px;
  line-height: 1.25;
  font-weight: 700;
  margin: 0;
  color: #FFFFFF;
}
.auth-card__body { padding: 26px 28px 30px; }
.auth-card__intro {
  margin: 0 0 18px;
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.5;
}
.auth-form { display: flex; flex-direction: column; gap: 16px; }
.auth-form.is-submitting { opacity: 0.78; }
.auth-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.auth-grid--account { grid-template-columns: 1fr; }
.auth-field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 7px;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
}
.auth-field span,
.auth-field legend { color: #FFFFFF; }
.auth-field input,
.auth-field select {
  width: 100%;
  min-width: 0;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  background: #11100f;
  color: #FFFFFF;
  padding: 0 13px;
  font-size: 14px;
  outline: none;
}
.auth-field input:focus,
.auth-field select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(223, 177, 116, 0.16);
}
.auth-field input[readonly] {
  color: var(--color-text-muted);
  background: #161412;
}
.auth-field--inline {
  border: 0;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  min-height: 48px;
}
.auth-field--inline legend {
  width: 100%;
  margin-bottom: 2px;
  font-size: 13px;
  font-weight: 600;
}
.auth-field--inline label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  color: #FFFFFF;
}
.auth-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--color-text-muted);
  font-size: 13px;
  line-height: 1.5;
}
.auth-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: 0 0 auto;
  accent-color: var(--color-primary);
}
.auth-check a,
.auth-links a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 700;
}
.auth-check a:hover,
.auth-links a:hover { text-decoration: underline; }
.auth-submit,
.auth-secondary {
  min-height: 44px;
  border: 1px solid var(--color-primary);
  border-radius: 4px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
.auth-submit { background: var(--color-primary); color: #12100e; }
.auth-submit:hover { filter: brightness(1.06); }
.auth-submit:disabled,
.auth-secondary:disabled {
  opacity: 0.65;
  cursor: progress;
}
.auth-secondary { background: transparent; color: var(--color-primary); }
.auth-submit--link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: max-content;
}
.auth-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 4px;
}
.auth-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
  color: var(--color-text-muted);
  font-size: 13px;
}
.auth-message {
  white-space: pre-line;
  border-radius: 4px;
  padding: 11px 13px;
  font-size: 13px;
  line-height: 1.45;
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
}
.auth-message--error {
  background: rgba(214, 72, 72, 0.15);
  color: #ffb8b8;
  border: 1px solid rgba(214, 72, 72, 0.35);
}
.auth-message--success {
  background: rgba(78, 171, 106, 0.15);
  color: #b8ffd0;
  border: 1px solid rgba(78, 171, 106, 0.35);
}
.auth-message--info {
  background: rgba(223, 177, 116, 0.14);
  color: #f1d6b2;
  border: 1px solid rgba(223, 177, 116, 0.3);
}
.auth-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}
.auth-steps li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--color-text-muted);
}
.auth-steps span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: inherit;
  flex: 0 0 auto;
}
.auth-steps strong {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 13px;
}
.auth-steps li.active { color: #FFFFFF; }
.auth-steps li.active span {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #12100e;
}
.auth-step h2 {
  margin: 0 0 18px;
  color: #FFFFFF;
  font-size: 18px;
  line-height: 1.25;
}
.auth-step--success {
  text-align: center;
  gap: 14px;
  align-items: center;
}
.auth-step--success p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 720px) {
  .auth-page { padding: 88px 10px 36px; }
  .auth-card__header { padding: 0 18px; }
  .auth-card__body { padding: 20px 18px 24px; }
  .auth-grid { grid-template-columns: 1fr; gap: 14px; }
  .auth-actions { justify-content: stretch; }
  .auth-actions .auth-submit,
  .auth-actions .auth-secondary { flex: 1 1 0; }
  .auth-steps { gap: 8px; }
  .auth-steps strong { font-size: 12px; }
  .auth-field--inline { align-items: flex-start; flex-wrap: wrap; }
}

/* ===========================================================================
 * Site footer — faithful port of TheFooter.scss base styles.
 * bigMenu links are gold (hover white); smallMenu links white (hover gold);
 * items separated by "|"; provider logos grayscale → colour on hover.
 *   $footer-copyright/$footer-helpText = $color-7 = #C4C7CC
 *   $footer-partnersBorder ≈ #ffffff20
 * =========================================================================== */
.footer { background: var(--color-footer-bg); color: #FFFFFF; line-height: 1.6; }
.footer .container { max-width: 1320px; margin: 0 auto; padding: 0 24px; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer a { text-decoration: none; transition: color 0.3s ease; }

/* Flex row (mirrors `.footer` in TheFooter.scss) */
.footer__inner {
  padding: 20px 0;
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: space-between;
}

/* Language switcher — left block, bigMenu fills the rest right-aligned */
.footer__language-switcher-container { width: 220px; display: flex; align-items: center; }

/* Slider switcher (LanguageSwitcher.scss): gold pill under the active option */
.language-switcher-slider .wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 208px;
  height: 32px;
  padding: 2px;
  border: 1px solid var(--color-primary);
  border-radius: 21px;
}
.language-switcher-slider .sliding-background {
  position: absolute;
  left: 2px;
  width: calc(50% - 2px);
  height: 27px;
  background: var(--color-primary);
  border-radius: 20px;
  transition: transform 0.3s ease;
}
.language-switcher-slider .option {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 50%;
  height: 27px;
  color: #FFFFFF;
  text-decoration: none;
  background: transparent;
}
.language-switcher-slider .option.active { color: #000000; }
.language-switcher-slider .option img { width: 22px; height: 15px; }
.language-switcher-slider .option span { font-weight: 700; font-size: 11px; line-height: 20px; }
.language-switcher-slider .option span { white-space: nowrap; }
.menu-additional .language-switcher-slider .wrapper { width: 100%; max-width: 216px; }
.menu-additional .language-switcher-slider .option { gap: 6px; }
@media (max-width: 768px) {
  .language-switcher-slider .wrapper { width: 176px; height: 24px; border-radius: 11px; }
  .language-switcher-slider .sliding-background { height: 20px; }
  .language-switcher-slider .option { height: 20px; border-radius: 10px; }
  .language-switcher-slider .option img { width: 15px; height: 10px; }
}

/* Big menu — gold, right-aligned */
.footer__bigMenu { width: calc(100% - 240px); display: flex; justify-content: flex-end; margin-bottom: 30px; }
.footer__bigMenu-list { display: flex; flex-wrap: wrap; }
.footer__bigMenu-list a { color: var(--color-primary); font-weight: 700; font-size: 16px; text-transform: uppercase; }
.footer__bigMenu-list a:hover { color: #FFFFFF; }

/* Small / middle menu — white, centred */
.footer__smallMenu,
.footer__middleMenu { width: 100%; margin-bottom: 30px; }
.footer__smallMenu-list,
.footer__middleMenu-list { display: flex; flex-wrap: wrap; justify-content: center; }
.footer__smallMenu-list a,
.footer__middleMenu-list a { color: #FFFFFF; font-size: 14px; text-transform: uppercase; }
.footer__smallMenu-list a:hover,
.footer__middleMenu-list a:hover { color: var(--color-primary); }

/* "|" separators between items (both menus) */
.footer__bigMenu-list li:not(:first-child)::before,
.footer__smallMenu-list li:not(:first-child)::before,
.footer__middleMenu-list li:not(:first-child)::before {
  content: '|';
  margin: 0 15px;
}
.footer__bigMenu-list li:not(:first-child)::before { color: var(--color-primary); }

/* Help / contact block */
.footer__help { width: 100%; overflow: auto; }
.footer__help h2 { color: #FFFFFF; font-size: 16px; margin-bottom: 8px; }
.footer__help p { color: #C4C7CC; font-size: 14px; }
.footer__help table { border-collapse: collapse; margin-top: 8px; }
.footer__help td, .footer__help th { padding: 6px 16px 6px 0; vertical-align: middle; }
.footer__help a { color: var(--color-primary); }

/* Partner (payment) + provider logo grids — container classes come from the CMS */
.footer__listPartners,
.footer__listProvider { width: 100%; padding: 25px 0; }
.footer__listPartners { border: 1px solid rgba(255, 255, 255, 0.125); border-left: 0; border-right: 0; }
.footer__listPartners-container,
.footer__listProvider-container {
  display: flex; flex-flow: row wrap; align-items: center; justify-content: center; margin: 0 -7px;
}
.footer__listPartners-container img { display: inline-block; margin: 7px; width: auto; max-height: 30px; }
.footer__listProvider-container { justify-content: space-between; }
.footer__listProvider-container img {
  margin: 0 9px 25px; max-height: 30px; width: auto;
  filter: grayscale(100%); transition: filter 0.3s ease;
}
.footer__listProvider-container img:hover { filter: grayscale(0%); }

/* Copyright + warning */
.footer__copyright { width: 100%; margin-top: 5px; color: #C4C7CC; font-size: 12px; text-align: justify; }
.footer__copyright p { margin: 0 0 10px; }
.footer__copyright a { color: var(--color-primary); }
.footer__warning { width: 100%; color: #C4C7CC; font-size: 12px; }

@media (max-width: 799px) {
  .footer__language-switcher-container { width: 100%; justify-content: center; margin-bottom: 16px; }
  .footer__bigMenu,
  .footer__smallMenu,
  .footer__middleMenu { width: 100%; justify-content: center; }
  .footer__bigMenu-list,
  .footer__smallMenu-list { justify-content: center; }
  .footer__bigMenu-list a,
  .footer__smallMenu-list a { font-size: 12px; }
  .footer__bigMenu-list li:not(:first-child)::before,
  .footer__smallMenu-list li:not(:first-child)::before { margin: 0 8px 0 5px; }
  .footer__listPartners, .footer__listProvider { padding: 15px 0; }
  .footer__listPartners-container img,
  .footer__listProvider-container img { margin: 6px; max-height: 27px; }
}
@media (max-width: 600px) {
  .footer .container { padding: 0 16px; }
  .footer__bigMenu { border-bottom: 1px solid var(--color-border); margin-top: 16px; margin-bottom: 15px; }
  .footer__listPartners-container img,
  .footer__listProvider-container img { margin: 5px; max-height: 21px; }
}
@media (max-width: 480px) {
  .footer__bigMenu-list a,
  .footer__smallMenu-list a { font-size: 10px; }
  .footer__smallMenu-list { display: block; }
  .footer__smallMenu-list li:not(:first-child)::before { content: '' !important; }
}

/* ContentOnlyBlock (SEO text) — faithful port of ContentOnlyBlock.scss:
 * centred max-width column, no box; gold uppercase headings, justified body. */
#cont .content-only-block {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1200px;
  padding: 12px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
#cont .content-only-block > div { display: flex; justify-content: space-between; }
#cont .content-only-block > div > div { width: calc(50% - 10px); }
.content-only-block h1,
.content-only-block h2 {
  color: var(--color-primary);
  margin: 7px 0 14px;
  text-transform: uppercase;
}
.content-only-block h1 { font-size: 24px; }
.content-only-block h2 { font-size: 14px; }
.content-only-block h1 span, .content-only-block h2 span,
.content-only-block h1 strong, .content-only-block h2 strong { color: var(--color-primary) !important; }
.content-only-block p { font-size: 14px; text-align: justify; color: inherit; }
.content-only-block p span, .content-only-block p strong, .content-only-block p em { color: inherit !important; }
.content-only-block a { text-decoration: none; color: var(--color-primary); }

@media screen and (max-width: 767px) {
  #cont .content-only-block > div { display: block; }
  #cont .content-only-block > div > div { width: 100%; }
  .content-only-block h1 { font-size: 21px; }
}

/* ── Lobby ────────────────────────────────────────────────────────────
 * $pageLobby-contentLobbyBg: $color-20 = #171614
 */
.lobby {
  width: 100%;
  padding: 20px 0;
  background: var(--color-lobby-bg);
  min-height: calc(100vh - var(--header-height));
}
.lobby--rtl { direction: rtl; }
.lobby__platforms { margin-bottom: 16px; }

/* Platform tabs — $color-21 bg, $color-11 active */
.platform-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 4px 0;
}
.platform-tabs__tab a {
  display: block;
  padding: 8px 18px;
  border-radius: 20px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.platform-tabs__tab a:hover,
.platform-tabs__tab--active a {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #FFFFFF;
}

.lobby__body {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  align-items: start;
}
.lobby--rtl .lobby__body { direction: rtl; }

/* Category sidebar */
.category-tabs {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: sticky;
  top: calc(var(--header-height) + 12px);
}
.category-tabs__tab a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: var(--radius);
  color: var(--color-text);
  font-size: 13px;
  transition: all 0.3s ease;
}
.category-tabs__tab a:hover,
.category-tabs__tab--active a {
  background: var(--color-surface-2);
  color: var(--color-text-white);
}

.lobby__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--color-text-white);
}

/* ── Game Grid ────────────────────────────────────────────────────────
 * $gameItem-bg: $color-25 = #313233
 * $gameItem-name: $color-10 = #FFFFFF
 * $gameItem-nameBg: $color-1 = #121212
 * $gameItem-boxHov: rgba(0,0,0,0.9)
 * $gameItem-boxHovPlayBg: $color-11 = #926d20
 * $gameItem-boxHovPlayBorder: $color-11 = #926d20
 * Game image aspect-ratio: 275/205 from GameItem.scss
 */
.games-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.game-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-surface-3);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease;
}
.game-card:hover { transform: translateY(-3px); }
.game-card__link { display: block; }

/* aspect-ratio: 275/205 from original GameItem.scss */
.game-card__thumb-wrap {
  position: relative;
  aspect-ratio: 275 / 205;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}
.game-card__thumb {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius);
  display: block;
  transition: none;
}
.game-card:hover .game-card__thumb { transform: none; }

/* $gameItem-boxHov: rgba(0,0,0,0.9) — hover overlay */
.game-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  border-radius: var(--radius) var(--radius) 0 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 16px;
  opacity: 0.15;
  transition: opacity 0.4s ease;
}
.game-card:hover .game-card__overlay { opacity: 1; }

/* Play button inside overlay — styled like .play in GameItem.scss */
.game-card__play-btn {
  display: block;
  width: 100%;
  border: 2px solid var(--color-primary);
  background: var(--color-primary);
  color: #FFFFFF;
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 150%;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 9px 36px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.3s ease;
  text-decoration: none;
}
.game-card__play-btn:hover { background: transparent; color: #fff; }

/* $gameItem-name: $color-10 / $gameItem-nameBg: $color-1 = #121212 */
.game-card__info {
  padding: 7px 15px;
  background: #121212;
  border-radius: 0 0 var(--radius) var(--radius);
}
.game-card__name {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  line-height: 150%;
  text-align: center;
  color: #FFFFFF;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.game-card__rating {
  display: block;
  font-size: 11px;
  color: var(--color-primary);
  text-align: center;
  margin-top: 2px;
}

.games-empty {
  color: var(--color-text-muted);
  padding: 40px 0;
  text-align: center;
}
.error-banner {
  background: rgba(215, 41, 25, 0.15);
  border: 1px solid var(--color-danger);
  color: var(--color-danger);
  padding: 12px 16px;
  border-radius: var(--radius);
  margin-bottom: 16px;
}

/* ── Pagination ────────────────────────────────────────────────────────
 * $pagination-btnActiveBg: $color-11 = #926d20
 * $pagination-btn: $color-18 = #C4C4C4
 */
.pagination {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  justify-content: center;
}
.pagination__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  background: var(--color-surface);
  border: 1px solid rgba(196, 196, 196, 0.3);
  color: #C4C4C4;
  font-size: 18px;
  transition: background 0.15s, border-color 0.15s;
}
.pagination__btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}
.pagination__btn--disabled { opacity: 0.3; pointer-events: none; }
.pagination__info { color: var(--color-text-muted); font-size: 13px; }

/* ── AccordionHelpItems (FAQ) ────────────────────────────────────────── */
/* $faqSchema-title/#926D20, $faqSchema-border/#383630, $faqSchema-desc/#FDFCFA */
.accordion-help-items {
  max-width: 1200px;
  margin: 30px auto 50px;
  padding: 0 12px;
}
.accordion-help-items__title {
  color: var(--color-primary);
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.faq-item {
  border-bottom: 1px solid #383630;
}
.faq-item[open] {
  border: 1px solid #383630;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 4px;
}
.faq-item__q {
  list-style: none;
  cursor: pointer;
  color: var(--color-primary);
  font-size: 14px;
  text-transform: uppercase;
  padding: 20px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::after { content: '+'; font-size: 18px; }
.faq-item[open] .faq-item__q { background: #383630; }
.faq-item[open] .faq-item__q::after { content: '−'; }
.faq-item__a {
  color: #FDFCFA;
  font-size: 14px;
  padding: 12px 10px 16px;
}

/* ── MultiSlideSlider (hero banner) ──────────────────────────────────── */
.home-slider-wrapper {
  height: 300px;
  position: relative;
  margin: 0 -15px 6px;
  overflow: hidden;
}
.home-slider {
  margin: 0 auto 8px;
  width: 100%;
  max-width: 1200px;
  height: 300px;
  position: relative;
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
}

.home-slider.is-dragging {
  cursor: grabbing;
}

.home-slider .swiper-wrapper {
  display: flex;
  height: 100%;
  transition-property: transform;
  transition-timing-function: ease;
}

.home-slider .swiper-slide {
  width: 100%;
  min-width: 100%;
  height: 100%;
  flex: 0 0 100%;
}
.home-slider .item {
  position: relative;
  padding: 0 4px;
  height: 300px;
}
.home-slider .item__box {
  height: 300px;
  background: #313233;
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
}
.home-slider .item:before {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 4px;
  content: '';
  width: calc(62.5% - 8px);
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.66) 0%, rgba(0, 0, 0, 0) 100%);
}
.home-slider .item__image,
.home-slider .item__iframe {
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
}
.home-slider .item__image picture,
.home-slider .item__image img {
  width: 100%;
  height: 100%;
}
.home-slider .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.home-slider .item.load img {
  opacity: 1;
}
.home-slider .item__content {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 4px;
  right: 4px;
  bottom: 0;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.home-slider .item.load .item__content {
  opacity: 1;
}
.home-slider .item__content h2 {
  margin: 0 0 19px;
  font-style: normal;
  font-weight: 700;
  font-size: 26px;
  line-height: 120%;
  color: #fff;
}
.home-slider .item__content p {
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #fff;
  margin-bottom: 25px;
  max-width: 280px;
}
.home-slider .item__content a.link {
  border: 2px solid #926d20;
  padding: 9px 36px;
  background: #926d20;
  border-radius: 3px;
  color: #fff;
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}
.home-slider .item__content a.link:hover {
  background: transparent;
}
.home-slider .item a.linkMobal {
  display: none;
}
.home-slider-wrapper .swiper-button-prev,
.home-slider-wrapper .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-25%);
  opacity: 0.5;
  z-index: 4;
  width: 40px;
  height: 80px;
  background: #202122;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.home-slider-wrapper .swiper-button-prev:hover,
.home-slider-wrapper .swiper-button-next:hover {
  opacity: 1;
}
.home-slider-wrapper .swiper-button-next { right: -15px; }
.home-slider-wrapper .swiper-button-prev { left: -15px; }
.home-slider-wrapper .swiper-button-next:before,
.home-slider-wrapper .swiper-button-prev:before {
  content: '';
  display: block;
  width: 8px;
  height: 16px;
  margin: 32px auto;
  background-repeat: no-repeat;
  background-position: center center;
}
.home-slider-wrapper .swiper-button-next:before {
  background-image: url('/public/shared/icons/arrow-right.svg');
}
.home-slider-wrapper .swiper-button-prev:before {
  background-image: url('/public/shared/icons/arrow-left.svg');
}
.home--rtl .home-slider .item:before {
  right: 4px;
  left: auto;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.66) 0%, rgba(0, 0, 0, 0) 100%);
}
.home--rtl .home-slider .item img {
  object-position: left;
}

/* Game launcher base layout; brand CSS owns the final visual parity. */
.page-lobby {
  min-height: calc(100vh - var(--header-height, 64px));
  padding: 24px 16px;
  color: var(--color-text);
  background: var(--color-lobby-bg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.page-lobby__content {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto 32px;
  display: flex;
  gap: 24px;
}
.page-lobby__content .lobby {
  flex: 1 1 auto;
  min-width: 0;
  height: min(70vh, 680px);
  min-height: 480px;
  overflow: hidden;
  background: var(--color-surface);
  border-radius: var(--radius);
}
.lobby__header {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 12px;
  background: var(--color-surface-2);
}
.lobby__header .left,
.lobby__header .right {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.lobby__header img {
  max-width: 70px;
  max-height: 20px;
  object-fit: contain;
}
.lobby__header .name {
  min-width: 0;
  overflow: hidden;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.lobby__content,
.game-launcher__frame-wrap,
.game-launcher__frame {
  width: 100%;
  height: 100%;
}
.lobby__content {
  min-height: inherit;
  background: #121212;
}
.game-launcher__frame {
  display: block;
  border: 0;
  background: #121212;
}
.game-launcher__loading,
.game-launcher__notice {
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  padding: 32px;
  text-align: center;
  background: rgba(18, 18, 18, 0.86);
}
.game-launcher__spinner {
  width: 42px;
  height: 42px;
  border: 3px solid rgba(255, 255, 255, 0.18);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: game-launcher-spin 0.9s linear infinite;
}
@keyframes game-launcher-spin {
  to { transform: rotate(360deg); }
}
.game-launcher__notice h2 {
  margin: 0;
  color: #fff;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.35;
}
.game-launcher__notice p {
  max-width: 460px;
  margin: -8px 0 0;
  color: #d8d8d8;
  line-height: 1.5;
}
.game-launcher__notice-actions {
  display: flex;
  justify-content: center;
}
.game-launcher__retry,
.game-launcher__notice-actions .v-btn {
  min-height: 37px;
  padding: 0 18px;
  border: 0;
  border-radius: var(--radius);
  background: var(--color-primary);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}
.game-launcher__modes {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.24);
}
.game-launcher__mode {
  min-width: 78px;
  padding: 8px 12px;
  color: #d8d8d8;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}
.game-launcher__mode.is-active {
  background: var(--color-primary);
  color: #fff;
}
.lobby__icon-btn {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius);
  background: transparent;
  color: #fff;
  cursor: pointer;
}
.lobby-right {
  width: 300px;
  flex: 0 0 300px;
}
.lobby-info {
  height: 100%;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(18, 18, 18, 0.94);
}
.lobby-info__nav {
  display: flex;
}
.lobby-info__nav .v-btn {
  width: 50%;
  min-height: 40px;
  border: 0;
  background: var(--color-surface-2);
  color: #fff;
  cursor: pointer;
}
.lobby-info__nav .v-btn.active {
  background: var(--color-surface-3);
}
.lobby-info__tabs .tab {
  padding: 12px;
}
.lobby-info__tabs .tab[hidden] {
  display: none;
}
.game-launcher__description {
  color: #d8d8d8;
  font-size: 14px;
  line-height: 1.45;
}
.page-lobby__suggested {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
.page-lobby__suggested-slider {
  position: relative;
  overflow: hidden;
}
.page-lobby__suggested .suggested-slider {
  overflow-x: auto;
  scrollbar-width: none;
}
.page-lobby__suggested .swiper-wrapper {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(160px, 1fr);
  gap: 12px;
}

/* ── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 1023px) {
  .lobby__body { grid-template-columns: 1fr; }
  .category-tabs { flex-direction: row; flex-wrap: wrap; position: static; }
  .games-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .home { padding: 15px 0; }
  .home-slider-wrapper .swiper-button-next { right: 0; }
  .home-slider-wrapper .swiper-button-prev { left: 0; }
  .home-slider .item__content { padding: 40px 65px; }

  .page-lobby {
    padding: 0;
  }
  .page-lobby__content {
    display: block;
    margin: 0;
  }
  .page-lobby__content .lobby {
    height: calc(100vh - var(--header-height, 64px));
    min-height: calc(100vh - var(--header-height, 64px));
    border-radius: 0;
  }
  .lobby-right,
  .page-lobby__suggested {
    display: none;
  }

  .section-categoryBar {
    padding: 0 15px;
  }

  .section-categoryBar__menu {
    padding: 0 50px;
  }

  .section-categoryBar__menu .swiper-button-prev,
  .section-categoryBar__menu .swiper-button-next {
    display: block;
  }
}
@media (max-width: 767px) {
  .section-categoryBar__menu {
    padding: 0 27px;
  }

  .section-categoryBar__menu .list__item a {
    padding: 0 7px;
    font-size: 10px;
    font-weight: 700;
  }

  .section-categoryBar__menu .list__item a img {
    width: 16px;
    margin-right: 8px;
  }

  .games-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .games-grid--row .game-card { flex: 0 0 140px; }
  .game-card__name { font-size: 12px; padding: 3px; }
  .home-section__title { font-size: 18px; }
  .lobby__header {
    padding: 7px 8px 7px 12px;
  }
  .lobby__header .name {
    font-size: 13px;
  }
  .lobby__header .game-launcher__modes {
    display: none;
  }
}
@media (max-width: 600px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .page-lobby__content .lobby {
    height: calc(100vh - 56px);
    min-height: calc(100vh - 56px);
  }
  .home-slider-wrapper {
    height: auto;
    margin-bottom: 22px;
    border-bottom: 1px solid #404040;
  }
  .home-slider {
    height: auto;
    margin-bottom: 0;
  }
  .home-slider .item,
  .home-slider .item__box {
    height: auto;
  }
  .home-slider .item__image img,
  .home-slider .item__iframe {
    height: 132px;
    min-height: 132px;
  }
  .home-slider .item:before {
    display: none;
  }
  .home-slider .item__content {
    padding: 14px 40px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
  }
  .home-slider .item__content h2 {
    font-size: 14px;
    margin-bottom: 0;
  }
  .home-slider .item__content p {
    font-size: 10px;
    margin-bottom: 0;
  }
  .home-slider .item__content a.link {
    display: none;
  }
  .home-slider .item a.linkMobal {
    display: block;
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 14px;
    z-index: 3;
    height: 56px;
    line-height: 56px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
    background: #926d20;
    text-decoration: none;
  }
  .home-slider-wrapper .swiper-button-prev,
  .home-slider-wrapper .swiper-button-next {
    top: 85px;
    width: 24px;
    height: 48px;
  }
  .home-slider-wrapper .swiper-button-next { right: -2px; }
  .home-slider-wrapper .swiper-button-prev { left: -2px; }
  .home-slider-wrapper .swiper-button-prev:before,
  .home-slider-wrapper .swiper-button-next:before {
    margin: 16px auto;
  }
}
