/* =========================
   BASE / THEME
========================= */

:root {
  --bg: #070b14;
  --bg-2: #0b1020;
  --bg-3: #11182b;
  --card: rgba(255, 255, 255, 0.06);
  --card-2: rgba(255, 255, 255, 0.09);
  --border: rgba(255, 255, 255, 0.1);
  --border-2: rgba(255, 255, 255, 0.16);
  --text: #ffffff;
  --text-muted: #8f9bb7;
  --text-soft: #c9d3ee;
  --blue: #2b90fe;
  --blue-2: #41c6ff;
  --blue-dark: #1a64fc;
  --green: #25d366;
  --red: #ff4d4f;
  --yellow: #ffd666;
  --purple: #9d6bff;

  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;

  --container: 1440px;
  --header-height: 78px;

  --shadow: 0 20px 70px rgba(0, 0, 0, 0.45);
  --shadow-blue: 0 14px 40px rgba(43, 144, 254, 0.35);

  --transition: 0.22s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  font-family:
    Inter,
    Arial,
    Helvetica,
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(43, 144, 254, 0.22), transparent 36%),
    radial-gradient(circle at 80% 16%, rgba(157, 107, 255, 0.18), transparent 38%),
    linear-gradient(180deg, #070b14 0%, #0a0f1d 42%, #070b14 100%);
  overflow-x: hidden;
}

body::selection {
  color: #fff;
  background: var(--blue);
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

.noCopy {
  user-select: none;
}

.container {
  width: 100%;
  min-height: 100vh;
  position: relative;
}

.wrapper,
.content,
.wrap {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.baseBlock {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
}

/* =========================
   BUTTONS
========================= */

.mainBtn {
  min-height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  cursor: pointer;
  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.mainBtn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.13);
  border-color: var(--border-2);
}

.mainBtn:active {
  transform: translateY(0);
}

.mainBtn.blue {
  border: 0;
  background: linear-gradient(135deg, var(--blue-2), var(--blue-dark));
  box-shadow: var(--shadow-blue);
}

.mainBtn.blue:hover {
  filter: brightness(1.08);
}

.mainBtn.blue span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* =========================
   HEADER DESKTOP
========================= */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(7, 11, 20, 0.74);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(22px);
}

.header.scrolled {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.header .wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo img {
  width: 150px;
  height: auto;
}

.header .flexWrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.anAuth {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header .element {
  position: relative;
}

.dropdown.main {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: 430px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(13, 19, 35, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
}

.element:hover .dropdown.main,
.openModalDropdown:hover {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateY(0);
}

.dropdown .grided {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.dropdown .colored {
  min-height: 94px;
  padding: 14px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(43, 144, 254, 0.34), rgba(26, 100, 252, 0.14)),
    rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.dropdown .colored:hover {
  transform: translateY(-2px);
  border-color: rgba(65, 198, 255, 0.5);
}

.dropdown .colored .character {
  position: absolute;
  right: 4px;
  bottom: 0;
  max-height: 95px;
  pointer-events: none;
}

.dropdown .colored span {
  position: relative;
  z-index: 2;
  font-size: 15px;
  font-weight: 800;
}

.dropdown .colored p {
  margin: 5px 0 0;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500;
}

/* =========================
   MOBILE HEADER / MENUS
========================= */

.headerMobile {
  display: none;
}

.sandwichMenu {
  display: none;
}

.bottomMenuMobile {
  display: none;
}

.sandwich {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.sandwich svg {
  width: 42px;
  height: 42px;
}

.sandwich .line {
  fill: none;
  stroke: #fff;
  stroke-width: 7;
  stroke-linecap: round;
  transition: var(--transition);
}

/* =========================
   MAIN CONTENT
========================= */

.contentWrapper {
  position: relative;
  z-index: 2;
}

.contentWrapper > .content {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.start {
  padding-top: 28px;
}

.backgroundBack {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  opacity: 0.16;
}

.backgroundBack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================
   HERO BANNERS
========================= */

.banerBody {
  position: relative;
  margin-bottom: 24px;
}

.swiper {
  width: 100%;
  overflow: hidden;
}

.banners {
  overflow: visible;
}

.banner {
  min-height: 390px;
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.banner .inside {
  position: relative;
  z-index: 4;
  width: 58%;
  min-height: 390px;
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}

.banner .h1,
.banner .inside .h1 {
  margin: 0;
  font-size: clamp(32px, 4vw, 64px);
  line-height: 0.95;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.banner .h2 {
  font-size: clamp(24px, 3vw, 48px);
  line-height: 1;
  font-weight: 900;
  color: var(--blue-2);
}

.banner .h3 {
  font-size: clamp(18px, 2vw, 30px);
  line-height: 1.1;
  font-weight: 900;
}

.banner .mainImg {
  position: absolute;
  z-index: 3;
  right: 3%;
  bottom: 0;
  max-height: 105%;
  max-width: 48%;
  object-fit: contain;
}

.banner .back {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.banner .backImg,
.banner .back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner .back::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 11, 20, 0.9), rgba(7, 11, 20, 0.18)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.45));
}

.bonusBanner .info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 220px));
  gap: 14px;
}

.iblock {
  padding: 18px;
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.iblock img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.iblock.col {
  flex-direction: column;
  align-items: flex-start;
}

.iblock p {
  margin: 0;
  color: var(--text-muted);
}

.iblock span {
  color: var(--blue-2);
}

.arrowArea {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 8;
  width: 12%;
  cursor: pointer;
}

.arrowArea.right {
  left: auto;
  right: 0;
}

/* =========================
   SLOT CARDS
========================= */

.slot {
  position: relative;
  width: 100%;
}

.slotInner {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 22px;
  background: #12192b;
  border: 1px solid var(--border);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
}

.slotInner .back,
.slotInner > img.back {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.36s ease, filter 0.36s ease;
}

.slot:hover .slotInner > img.back,
.slot:hover .slotInner .back {
  transform: scale(1.06);
  filter: brightness(0.55) blur(1px);
}

.slot .play {
  position: absolute;
  inset: 0;
  z-index: 4;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.26)),
    rgba(3, 8, 18, 0.28);
  transition: var(--transition);
  cursor: pointer;
}

.slot:hover .play {
  opacity: 1;
}

.slot .h1 {
  margin: 0;
  font-size: 15px;
  line-height: 1.15;
  font-weight: 900;
}

.slot p {
  margin: 6px 0 0;
  color: var(--text-muted);
  font-size: 12px;
}

.slot .play .mainBtn {
  width: 54px;
  height: 54px;
  min-height: 54px;
  padding: 0;
  align-self: center;
}

.slot .down {
  display: flex;
  justify-content: flex-end;
}

.like {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.like svg {
  width: 20px;
  height: 20px;
}

.demo {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 5;
  padding: 7px 11px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  border-radius: 999px;
  background: rgba(7, 11, 20, 0.78);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

/* Hero slot banner internal list */

.slotBanner .inside {
  width: 72%;
}

.slotBanner .list {
  display: grid;
  grid-template-columns: repeat(5, minmax(92px, 1fr));
  gap: 12px;
}

.slotBanner .slotInner {
  border-radius: 16px;
}

.slotBanner .slot .h1 {
  font-size: 12px;
}

/* =========================
   LIVE BETS
========================= */

.liveBets {
  margin: 24px 0;
}

.liveBetsSwiper {
  padding: 4px 0 6px;
}

.bet {
  display: block;
  overflow: hidden;
  border-radius: 22px;
  background: var(--card);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.bet:hover {
  transform: translateY(-3px);
  border-color: rgba(65, 198, 255, 0.44);
}

.bet .image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.bet .image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.playBtnLast {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 3;
  width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.bet:hover .playBtnLast {
  opacity: 1;
}

.bet .info {
  padding: 12px;
  border-radius: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.045);
}

.bet .top,
.bet .down {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.bet .x {
  color: var(--blue-2);
  font-weight: 900;
}

.bet .top p {
  margin: 0;
  font-size: 12px;
  font-weight: 900;
}

.username {
  color: var(--text-muted);
  font-size: 12px;
}

.win {
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

/* =========================
   CATEGORIES / SEARCH
========================= */

.lobbySearch {
  margin: 30px 0;
}

.categoriesBlock {
  display: flex;
  align-items: center;
  gap: 16px;
}

.categoriesWrapper {
  min-width: 0;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}

.categories_slider {
  min-width: 0;
  flex: 1;
}

.categories {
  display: flex;
}

.category {
  display: block;
  width: 100%;
  min-height: 54px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.category:hover,
.category.active {
  background: rgba(43, 144, 254, 0.14);
  border-color: rgba(65, 198, 255, 0.48);
}

.category .inner {
  height: 42px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.category svg {
  flex: 0 0 auto;
}

.count {
  margin-left: auto;
  padding: 4px 8px;
  color: var(--text-muted);
  font-size: 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.arrow {
  width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  flex: 0 0 auto;
}

.arrow.left,
.arrows .left,
.item.left {
  transform: rotate(180deg);
}

.arrow.swiper-button-disabled,
.item.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.providers {
  flex: 0 0 220px;
}

.defaultSelect__control {
  min-height: 44px !important;
  border: 1px solid var(--border) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  box-shadow: none !important;
}

.defaultSelect__single-value {
  color: #fff !important;
  display: flex !important;
  align-items: center;
  gap: 8px;
}

.defaultSelect__indicator-separator {
  display: none;
}

.searchWrapper {
  margin-top: 22px;
}

.searchGames {
  padding: 18px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--border);
}

.searchGames .field {
  height: 58px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.searchGames input {
  width: 100%;
  color: #fff;
  background: transparent;
  border: 0;
  outline: 0;
}

.searchGames input::placeholder {
  color: var(--text-muted);
}

.searchGames .items {
  margin-top: 18px;
  max-height: 530px;
  overflow: auto;
  padding-right: 6px;
}

.searchGames .items::-webkit-scrollbar {
  width: 6px;
}

.searchGames .items::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}

.searchGames .list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.searchGames .item {
  min-width: 0;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
  cursor: pointer;
}

.searchGames .item:hover {
  transform: translateY(-2px);
  background: rgba(43, 144, 254, 0.11);
}

.searchGames .thumb {
  position: relative;
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  overflow: hidden;
  border-radius: 14px;
  background: #111827;
}

.searchGames .thumb .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.playBtn {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 4;
  width: 34px;
  height: 34px;
  min-height: 34px;
  padding: 0;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.searchGames .item:hover .playBtn {
  opacity: 1;
}

.searchGames .name {
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  line-height: 1.2;
}

.searchGames .provider {
  margin-top: 5px;
  color: var(--text-muted);
  font-size: 12px;
}

.searchMobile {
  display: none;
}

/* =========================
   GAME LIST SECTIONS
========================= */

.gameList {
  margin: 42px 0;
}

.gameList .top {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.gameList .title {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.gameList .title img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.gameList .h3,
.gameList .title .h3 {
  margin: 0;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.1;
  font-weight: 950;
}

.arrows {
  display: flex;
  align-items: center;
  gap: 10px;
}

.arrows .item {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}

.arrows .item:hover {
  background: rgba(255, 255, 255, 0.14);
}

.gameSwiper {
  overflow: hidden;
}

.gameSwiper .swiper-wrapper {
  align-items: stretch;
}

.gameSwiper .swiper-slide {
  height: auto;
}

/* =========================
   JACKPOT
========================= */

.jackpotBlock {
  position: relative;
  min-height: 190px;
  margin: 48px 0;
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 28px;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 214, 102, 0.22), transparent 30%),
    radial-gradient(circle at 80% 30%, rgba(43, 144, 254, 0.22), transparent 30%),
    rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.jackpotBlock::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
}

.jackpotBlock .title {
  flex: 0 0 230px;
}

.jackpotBlock .title .h1 {
  font-size: clamp(34px, 4vw, 62px);
  line-height: 0.9;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.jackpotBlock .title p {
  margin: 8px 0 0;
  color: var(--text-muted);
  font-weight: 700;
}

.jackpotBlock .items {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.jackpotBlock .item {
  min-width: 0;
  padding: 18px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(7, 11, 20, 0.58);
  border: 1px solid var(--border);
}

.jackpotBlock .icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
}

.jackpotBlock .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.jackpotBlock .info {
  min-width: 0;
  position: relative;
  z-index: 2;
}

.jackpotBlock .back {
  position: absolute;
  right: 8px;
  top: -20px;
  color: rgba(255, 255, 255, 0.06);
  font-size: 96px;
  font-weight: 950;
}

.jackpotBlock .h3 {
  font-size: 18px;
  font-weight: 950;
}

.jackpotBlock .bank {
  margin-top: 7px;
  display: flex;
  align-items: center;
  gap: 4px;
  color: #fff;
  font-size: clamp(20px, 2.2vw, 34px);
  font-weight: 950;
}

.odometer-inside {
  display: inline-flex;
  align-items: center;
  gap: 1px;
}

.odometer-digit {
  display: inline-block;
}

.odometer-value {
  display: inline-block;
}

.jackpotBlock .arr {
  position: absolute;
  right: 22px;
  bottom: 18px;
  opacity: 0.55;
}

/* =========================
   TOURNAMENTS
========================= */

.gameList.tour {
  position: relative;
  padding: 28px;
  overflow: hidden;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

.tournament {
  min-height: 370px;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #101729;
  border: 1px solid var(--border);
}

.tournament .activeBlock {
  position: absolute;
  left: 26px;
  top: 26px;
  z-index: 4;
}

.tournament .active {
  padding: 14px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.countdown {
  display: flex;
  gap: 8px;
}

.countdown .item {
  min-width: 54px;
  padding: 9px 8px;
  text-align: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid var(--border);
}

.countdown span {
  display: block;
  font-size: 18px;
  font-weight: 950;
}

.countdown .small,
.left {
  margin: 3px 0 0;
  color: var(--text-muted);
  font-size: 10px;
}

.tournament .info {
  position: relative;
  z-index: 4;
  width: 54%;
  min-height: 370px;
  padding: 122px 30px 30px;
}

.tournament .info .h1 {
  font-size: clamp(26px, 3vw, 46px);
  line-height: 1;
  font-weight: 950;
}

.tournament .rewards {
  margin: 18px 0;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tournament .h2 {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 950;
  background: rgba(43, 144, 254, 0.15);
  border: 1px solid rgba(65, 198, 255, 0.32);
}

.tournament p {
  max-width: 560px;
  color: var(--text-soft);
  line-height: 1.55;
}

.tournament .about {
  position: absolute;
  left: 30px;
  bottom: 30px;
  z-index: 5;
}

.tournament .character {
  position: absolute;
  z-index: 3;
  right: 4%;
  bottom: 0;
  max-height: 92%;
  max-width: 44%;
  object-fit: contain;
}

.tournament .backHolder {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.tournament .backHolder .back {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tournament .backHolder::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 11, 20, 0.92), rgba(7, 11, 20, 0.18)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.56));
}

.glow {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  filter: blur(70px);
  background: rgba(43, 144, 254, 0.22);
  pointer-events: none;
}

.glow.two {
  right: 8%;
  top: 16%;
  background: rgba(157, 107, 255, 0.18);
}

.glow.three {
  left: 25%;
  bottom: -10%;
  background: rgba(255, 214, 102, 0.12);
}

/* =========================
   SEO TEXT SECTION
========================= */

.section_text {
  position: relative;
  z-index: 3;
  padding: 30px 0 58px;
}

.section_text .content {
  width: min(1100px, calc(100% - 40px));
  padding: 34px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
}

.section_text h1 {
  margin: 0 0 18px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.section_text h2 {
  margin: 30px 0 12px;
  font-size: clamp(21px, 2.4vw, 32px);
  line-height: 1.15;
}

.section_text p {
  margin: 0 0 14px;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.7;
}

/* =========================
   FOOTER
========================= */

.footer {
  padding: 56px 0 calc(60px + env(safe-area-inset-bottom));
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    #070b14;
  border-top: 1px solid var(--border);
}

.footer .wrap {
  width: min(var(--container), calc(100% - 40px));
}

.footer .row {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1.1fr;
  gap: 28px;
  margin-bottom: 34px;
}

.footer .col {
  min-width: 0;
}

.footer .logo {
  width: 158px;
  margin-bottom: 18px;
}

.footer p {
  margin: 0 0 12px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.footer .h2 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 17px;
  font-weight: 950;
}

.footer .list a {
  width: max-content;
  max-width: 100%;
  margin: 0 0 10px;
  display: block;
  color: var(--text-muted);
  font-size: 14px;
  transition: var(--transition);
}

.footer .list a:hover,
.subLink:hover {
  color: var(--blue-2);
}

.subLink {
  color: #fff;
  cursor: pointer;
}

.footer .row.simple {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.footer .row.simple a {
  width: 86px;
  height: 42px;
  padding: 8px 12px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.footer .row.simple a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.09);
}

.footer .icon {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0.82;
}

.footer .last {
  margin-top: 26px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--border);
}

.footer .inLine {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer .inLine svg {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
}

.footer .inLine p {
  max-width: 720px;
}

.footer .inLine.top {
  flex-shrink: 0;
}

.rate {
  padding: 12px 16px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

/* =========================
   TABLET
========================= */

@media (max-width: 1180px) {
  :root {
    --container: 100%;
  }

  .searchGames .list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .banner .inside {
    width: 66%;
  }

  .slotBanner .inside {
    width: 78%;
  }

  .slotBanner .list {
    grid-template-columns: repeat(4, minmax(90px, 1fr));
  }

  .slotBanner .list .slot:nth-child(5) {
    display: none;
  }

  .jackpotBlock {
    align-items: stretch;
    flex-direction: column;
  }

  .jackpotBlock .title {
    flex: auto;
  }

  .footer .row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .header {
    display: none;
  }

  .headerMobile {
    position: sticky;
    top: 0;
    z-index: 120;
    height: 68px;
    display: block;
    background: rgba(7, 11, 20, 0.82);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(22px);
  }

  .headerMobile .wrapper {
    width: calc(100% - 28px);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .headerMobile .logo img {
    width: 108px;
  }

  .headerMobile .anAuth .mainBtn {
    min-height: 40px;
    padding: 0 14px;
  }

  .sandwichMenu {
    position: fixed;
    inset: 68px 0 auto 0;
    z-index: 115;
    display: block;
    padding: 16px 14px 22px;
    background: rgba(7, 11, 20, 0.97);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(22px);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }

  .sandwichMenu.opened {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .searchSandwich {
    padding: 18px;
    border-radius: 22px;
    background:
      linear-gradient(135deg, rgba(43, 144, 254, 0.22), rgba(26, 100, 252, 0.08)),
      rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
  }

  .searchSandwich p {
    margin: 0 0 14px;
    color: var(--text-soft);
    line-height: 1.45;
  }

  .authButtons {
    margin: 12px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .sandwichMenu .elements {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .sandwichMenu .elements a {
    min-height: 58px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 800;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
  }

  .sandwichMenu .elements svg {
    width: 24px;
    height: 24px;
  }

  .bottomMenuMobile {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    z-index: 130;
    height: 68px;
    padding: 7px 8px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
    border-radius: 26px;
    background: rgba(10, 15, 29, 0.92);
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(22px);
  }

  .bottomMenuMobile a,
  .bottomMenuMobile > .mainBtn {
    min-width: 0;
    min-height: 0;
    height: 54px;
    padding: 4px 3px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 800;
    border-radius: 18px;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .bottomMenuMobile a.active,
  .bottomMenuMobile a:hover {
    color: #fff;
    background: rgba(43, 144, 254, 0.16);
  }

  .bottomMenuMobile svg {
    width: 22px;
    height: 22px;
  }

  .bottomMenuMobile .mainBtn.blue {
    margin-top: -18px;
    width: 58px;
    height: 58px;
    justify-self: center;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--blue-2), var(--blue-dark));
    box-shadow: var(--shadow-blue);
  }

  .contentWrapper > .content,
  .wrapper,
  .content,
  .wrap {
    width: calc(100% - 28px);
  }

  .start {
    padding-top: 18px;
    padding-bottom: 72px;
  }

  .banner {
    min-height: 460px;
    border-radius: 28px;
  }

  .banner .inside {
    width: 100%;
    min-height: 460px;
    padding: 28px 22px;
    justify-content: flex-start;
  }

  .banner .mainImg {
    right: -6%;
    max-width: 72%;
    max-height: 58%;
  }

  .banner .back::after {
    background:
      linear-gradient(180deg, rgba(7, 11, 20, 0.9), rgba(7, 11, 20, 0.25)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.25), transparent);
  }

  .bonusBanner .info {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .iblock {
    min-height: 76px;
    padding: 12px;
  }

  .iblock img {
    width: 44px;
    height: 44px;
  }

  .slotBanner .inside {
    width: 100%;
  }

  .slotBanner .list {
    width: 70%;
    grid-template-columns: repeat(2, minmax(80px, 1fr));
  }

  .slotBanner .list .slot:nth-child(n + 5) {
    display: none;
  }

  .categoriesBlock {
    display: block;
  }

  .categoriesWrapper {
    gap: 8px;
  }

  .providers {
    display: none !important;
  }

  .searchWrapper {
    display: none;
  }

  .searchMobile {
    position: relative;
    min-height: 170px;
    margin-top: 18px;
    padding: 22px;
    display: block;
    overflow: hidden;
    border-radius: 28px;
    background: #11182b;
    border: 1px solid var(--border);
  }

  .searchMobile .inside {
    position: relative;
    z-index: 3;
    width: 62%;
  }

  .searchMobile .h1 {
    margin-bottom: 14px;
    font-size: 24px;
    line-height: 1.05;
    font-weight: 950;
  }

  .searchMobile .mainImg {
    position: absolute;
    right: -8px;
    bottom: 0;
    z-index: 2;
    width: 44%;
    max-height: 100%;
    object-fit: contain;
  }

  .searchMobile .back {
    position: absolute;
    inset: 0;
    z-index: 1;
  }

  .searchMobile .back::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 11, 20, 0.86), rgba(7, 11, 20, 0.24));
  }

  .searchMobile .backImg {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .gameList {
    margin: 32px 0;
  }

  .gameList .top {
    margin-bottom: 14px;
  }

  .arrows {
    display: none;
  }

  .gameSwiper {
    overflow: visible;
  }

  .gameSwiper .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    transform: none !important;
  }

  .gameSwiper .swiper-slide {
    width: auto !important;
    margin-right: 0 !important;
  }

  .gameSwiper .swiper-slide:nth-child(n + 10) {
    display: none;
  }

  .slot .play {
    opacity: 1;
    padding: 10px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.62), transparent 58%);
  }

  .slot .play .mainBtn,
  .slot .down {
    display: none;
  }

  .slot .h1 {
    font-size: 12px;
  }

  .slot p {
    font-size: 10px;
  }

  .demo {
    display: none;
  }

  .jackpotBlock {
    padding: 22px;
    border-radius: 28px;
  }

  .jackpotBlock .items {
    grid-template-columns: 1fr;
  }

  .jackpotBlock .item {
    padding: 14px;
  }

  .tournament {
    min-height: 500px;
  }

  .tournament .info {
    width: 100%;
    min-height: 500px;
    padding: 116px 22px 86px;
  }

  .tournament .character {
    right: -10%;
    max-width: 76%;
    max-height: 44%;
  }

  .tournament .about {
    left: 22px;
    bottom: 22px;
  }

  .tournament .activeBlock {
    left: 18px;
    top: 18px;
  }

  .footer {
    padding-bottom: calc(96px + env(safe-area-inset-bottom));
  }

  .footer .row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer .last {
    flex-direction: column;
  }
}

/* =========================
   MOBILE SMALL
========================= */

@media (max-width: 620px) {
  .contentWrapper > .content,
  .wrapper,
  .content,
  .wrap,
  .footer .wrap,
  .section_text .content {
    width: calc(100% - 24px);
  }

  .headerMobile .anAuth {
    display: none;
  }

  .banner {
    min-height: 430px;
    border-radius: 24px;
  }

  .banner .inside {
    min-height: 430px;
    padding: 24px 18px;
    gap: 18px;
  }

  .banner .h1,
  .banner .inside .h1 {
    font-size: 34px;
  }

  .banner .h2 {
    font-size: 26px;
  }

  .banner .mainImg {
    right: -12%;
    max-width: 86%;
    max-height: 52%;
  }

  .bonusBanner .info {
    grid-template-columns: 1fr;
  }

  .iblock[style] {
    grid-area: auto !important;
  }

  .slotBanner .list {
    width: 64%;
    gap: 8px;
  }

  .slotBanner .slot:nth-child(n + 3) {
    display: none;
  }

  .liveBets {
    margin: 18px 0;
  }

  .bet {
    border-radius: 18px;
  }

  .category {
    min-height: 48px;
  }

  .category .inner {
    height: 36px;
    font-size: 12px;
  }

  .count {
    display: none;
  }

  .arrow {
    width: 38px;
    height: 38px;
    min-height: 38px;
  }

  .searchMobile {
    min-height: 154px;
    padding: 18px;
    border-radius: 22px;
  }

  .searchMobile .inside {
    width: 68%;
  }

  .searchMobile .h1 {
    font-size: 21px;
  }

  .searchMobile .mainBtn {
    min-height: 38px;
    padding: 0 14px;
  }

  .gameList .title img {
    width: 25px;
    height: 25px;
  }

  .gameList .h3,
  .gameList .title .h3 {
    font-size: 22px;
  }

  .gameSwiper .swiper-wrapper {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .slotInner {
    border-radius: 16px;
  }

  .slot .play {
    padding: 8px;
  }

  .slot .h1 {
    font-size: 10.5px;
    line-height: 1.15;
  }

  .slot p {
    margin-top: 3px;
    font-size: 9px;
  }

  .jackpotBlock {
    margin: 32px 0;
    padding: 18px;
    border-radius: 24px;
  }

  .jackpotBlock .title .h1 {
    font-size: 38px;
  }

  .jackpotBlock .icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .jackpotBlock .h3 {
    font-size: 15px;
  }

  .jackpotBlock .bank {
    font-size: 22px;
  }

  .gameList.tour {
    padding: 16px;
    border-radius: 24px;
  }

  .tournament {
    min-height: 520px;
    border-radius: 22px;
  }

  .tournament .info {
    min-height: 520px;
    padding: 110px 18px 86px;
  }

  .tournament .info .h1 {
    font-size: 28px;
  }

  .tournament .h2 {
    font-size: 14px;
  }

  .tournament p {
    font-size: 13px;
  }

  .countdown .item {
    min-width: 44px;
    padding: 7px 5px;
  }

  .countdown span {
    font-size: 15px;
  }

  .section_text {
    padding: 20px 0 42px;
  }

  .section_text .content {
    padding: 22px;
    border-radius: 24px;
  }

  .section_text h1 {
    font-size: 28px;
  }

  .section_text h2 {
    font-size: 22px;
  }

  .section_text p {
    font-size: 14px;
  }

  .footer .row.simple a {
    width: calc(25% - 8px);
    height: 38px;
    padding: 7px;
  }

  .footer .inLine {
    align-items: flex-start;
  }

  .footer .inLine.top {
    align-items: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 420px) {
  .gameSwiper .swiper-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gameSwiper .swiper-slide:nth-child(n + 9) {
    display: none;
  }

  .slotInner {
    aspect-ratio: 3 / 4.05;
  }

  .bottomMenuMobile {
    left: 6px;
    right: 6px;
    height: 64px;
    border-radius: 22px;
  }

  .bottomMenuMobile a,
  .bottomMenuMobile > .mainBtn {
    height: 50px;
    font-size: 9px;
  }

  .bottomMenuMobile .mainBtn.blue {
    width: 54px;
    height: 54px;
  }

  .footer .row.simple a {
    width: calc(33.333% - 7px);
  }
}

/* =========================
   ACCESSIBILITY / REDUCED MOTION
========================= */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}



.desktopNav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.desktopNav a {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 800;
  transition: 0.22s ease;
}

.desktopNav a:hover {
  color: #fff;
}

.sectionHead {
  margin-bottom: 16px;
}

.sectionHead h2 {
  margin: 0;
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 950;
}

.liveBetsGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.gameGrid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.tournamentGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.tourCard {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
}

.tourCard .rewards {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.tourCard .h6 {
  font-weight: 900;
  color: #fff;
}

.tourCard .h5 {
  color: var(--text-soft);
  font-weight: 800;
}

@media (max-width: 1180px) {
  .gameGrid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .liveBetsGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .desktopNav {
    display: none;
  }

  .gameGrid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }
}

@media (max-width: 560px) {
  .liveBetsGrid {
    grid-template-columns: 1fr;
  }

  .gameGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}