:root {
  --bg: #111;
  --panel: #18191d;
  --panel2: #24252a;
  --line: rgba(255, 255, 255, .08);
  --gold: #f7a916;
  --text: #f5f5f5;
  --muted: #a7a9af;
  --green: #20a343;
  --red: #9b2230;
  --shadow: 0 18px 50px rgba(0, 0, 0, .42)
}

.bb-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(2px);
}

.bb-popup-overlay.is-open {
  display: flex;
}

.bb-popup-content {
  position: relative;
  max-width: 600px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  animation: popupFadeIn 0.3s ease-out;
}

.bb-popup-content img {
  width: 100%;
  height: auto;
  display: block;
}

.bb-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: black;
  color: white;
  border: 2px solid white;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 20px;
  line-height: 26px;
  text-align: center;
  cursor: pointer;
  z-index: 2;
}

@keyframes popupFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bb-slider {
  position: relative;
  overflow: hidden;
}

.bb-slider-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  height: 100%;
  transition: transform 0.4s ease-in-out;
}

.bb-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  display: block;
}

.bb-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.bb-nav:hover {
  background: rgba(0, 0, 0, 0.8);
}

.bb-prev {
  left: 10px;
}

.bb-next {
  right: 10px;
}

.mobile-only {
  display: none !important
}

.page {
  padding: 12px 0 34px
}

.desktop-only {
  display: block
}

.hero,
.access-banner,
.special-slider {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: #1a1a1a;
  box-shadow: var(--shadow)
}

.hero img,
.access-banner img,
.special-slider img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.hero {
  height: 465px
}

.access-banner {
  height: 96px;
  margin: 22px 0
}

.special-slider {
  height: 420px;
  margin: 26px 0
}

.slide-badge {
  position: absolute;
  right: 18px;
  top: 16px;
  min-width: 72px;
  height: 34px;
  border-radius: 17px;
  background: rgba(0, 0, 0, .75);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 20px 0 12px
}

.section-head h2 {
  font-size: 18px;
  margin: 0
}

.winner-tabs {
  display: flex;
  gap: 8px;
  position: relative;
  z-index: 5
}

.winner-tabs button {
  height: 28px;
  border: 0;
  border-radius: 16px;
  background: #26272d;
  color: #fff;
  padding: 0 15px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer
}

.winner-tabs button.active {
  background: #fff;
  color: #111
}

.winner-track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none
}

.winner-track::-webkit-scrollbar {
  display: none
}

.winner-card {
  min-width: 230px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 8px;
  padding: 9px;
  border-radius: 8px;
  background: #22242a;
  text-decoration: none;
  color: #fff
}

.winner-card img,
.winner-card .winner-thumb {
  grid-row: 1/4;
  width: 52px;
  height: 52px;
  border-radius: 7px;
  background: linear-gradient(135deg, #ff9b2e, #ff49bd);
  object-fit: cover;
  display: block;
  overflow: hidden
}

.winner-card b {
  font-size: 12px;
  color: #92959d
}

.winner-card small {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #ddd;
  font-weight: 800
}

.winner-card strong {
  font-size: 15px
}

.mobile-promo-pair {
  display: none
}

.quick-actions {
  display: none
}

.category-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 0 0 24px
}

.cat-card {
  position: relative;
  height: 154px;
  border-radius: 12px;
  border: 2px solid rgba(247, 169, 22, .35);
  background: linear-gradient(135deg, #21170b, #5b3608);
  padding: 22px;
  text-decoration: none;
  color: #fff;
  overflow: hidden
}

.cat-card:after {
  content: "";
  position: absolute;
  right: -25px;
  bottom: -30px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 169, 22, .6), transparent 65%)
}

.cat-card b,
.cat-card span {
  position: relative;
  z-index: 1;
  display: block;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-style: italic;
  font-weight: 800
}

.cat-card b {
  font-size: 48px;
  color: #ffc23a;
  line-height: .9
}

.cat-card span {
  font-size: 30px;
  color: #e2e2e2;
  line-height: 1
}

.cat-card em {
  position: absolute;
  left: 22px;
  bottom: 16px;
  z-index: 1;
  background: #ffc23a;
  color: #111;
  border-radius: 20px;
  padding: 7px 13px;
  font-style: normal;
  font-size: 12px;
  font-weight: 900
}

.title-center {
  text-align: center;
  margin: 44px 0 18px
}

.title-center h2 {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 32px;
  line-height: .9;
  margin: 0;
  font-weight: 800;
  letter-spacing: .3px
}

.title-center span {
  display: block;
  width: 52px;
  height: 4px;
  background: var(--gold);
  border-radius: 3px;
  margin: 9px auto 0
}

.games-section {
  overflow: hidden
}

.image-game-grid {
  display: grid;
  grid-template-columns: 172px repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto 36px
}

.image-game-card {
  display: block;
  aspect-ratio: 203/141;
  border-radius: 8px;
  overflow: hidden;
  background: #222;
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .22);
  text-decoration: none;
  min-width: 0
}

.image-game-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover
}

.image-game-card.feature-card {
  grid-row: span 2;
  aspect-ratio: auto;
  height: 296px
}

.featured-board,
.live-board {
  margin-top: 12px
}

.show-all {
  display: block;
  margin: 4px auto 0;
  height: 40px;
  padding: 0 30px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(#ffc242, #e69400);
  color: #111;
  font-weight: 900;
  cursor: pointer
}

.sponsors {
  margin: 54px 0 26px;
  border: 2px solid var(--gold);
  border-radius: 14px;
  padding: 34px 22px 24px;
  position: relative
}

.sponsors h2 {
  position: absolute;
  top: -23px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  background: var(--gold);
  color: #fff;
  border-radius: 22px;
  padding: 7px 60px;
  font-size: 26px
}

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

.sponsor-row img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  border-radius: 12px;
  background: #342309;
  border: 1px solid rgba(255, 255, 255, .12)
}

.chat-btn {
  position: fixed;
  right: 22px;
  bottom: 28px;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  background: #ffba21;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  z-index: 90
}

.nav-floating-btn {
  position: fixed;
  left: 50%;
  bottom: 92px;
  transform: translateX(-50%);
  width: 52px;
  height: 52px;
  border: 0 !important;
  border-radius: 50%;
  background: rgba(92, 92, 92, .85) !important;
  z-index: 95;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 !important
}

.nav-floating-btn.is-visible {
  display: flex
}

.nav-floating-btn:before {
  content: "";
  width: 19px;
  height: 19px;
  border-left: 4px solid #fff;
  border-top: 4px solid #fff;
  transform: rotate(45deg);
  margin-top: 8px
}

.mobile-bottom {
  display: none
}

.mobile-menu {
  display: none
}

/* Auth */
.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none
}

.auth-modal.is-open {
  display: block
}

.auth-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .75);
  backdrop-filter: blur(2px)
}

.auth-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(760px, calc(100vw - 30px));
  max-height: 88vh;
  background: #17181d;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, .55)
}

.auth-modal[data-mode="login"] .auth-box {
  width: min(470px, calc(100vw - 28px))
}

.auth-head {
  height: 58px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  border-bottom: 1px solid var(--line)
}

.auth-brand {
  font-size: 27px
}

.auth-switch {
  margin-left: auto;
  height: 34px;
  min-width: 100px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(#ffc242, #e8990e);
  color: #111;
  font-weight: 900
}

.auth-close {
  margin-left: 12px;
  border: 0;
  background: none;
  color: #d6d7db;
  font-size: 34px;
  line-height: 1;
  cursor: pointer
}

.auth-form {
  display: none;
  padding: 18px
}

.auth-modal[data-mode="register"] [data-auth-form="register"],
.auth-modal[data-mode="login"] [data-auth-form="login"] {
  display: block
}

.auth-form small {
  display: block;
  color: #a9abb2;
  font-weight: 800;
  margin-bottom: 6px
}

.auth-form h2 {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 32px;
  line-height: .95;
  margin: 0 0 14px;
  font-weight: 800
}

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

.auth-form input,
.select-button {
  width: 100%;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 7px;
  background: #3a3c42;
  color: #fff;
  padding: 0 12px;
  font-weight: 800;
  outline: none
}

.auth-form input::placeholder {
  color: #c0c2c7
}

.custom-select {
  position: relative;
  margin-top: 10px
}

.select-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left
}

.select-button em {
  font-style: normal
}

.select-menu {
  position: absolute;
  z-index: 360;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  display: none;
  background: #303138;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 8px;
  padding: 5px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, .45)
}

.custom-select.is-open .select-menu {
  display: grid;
  gap: 3px
}

.select-menu button {
  height: 32px;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: #fff;
  text-align: left;
  padding: 0 10px;
  font-weight: 800
}

.select-menu button:hover {
  background: #3e788a
}

.phone-row {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 8px;
  margin-top: 10px
}

.phone-row .custom-select {
  margin: 0
}

.warn {
  margin-top: 10px;
  border-radius: 7px;
  background: #841e2b;
  color: #fff;
  text-align: center;
  padding: 9px;
  font-size: 12px;
  font-weight: 900
}

.check {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 11px 0;
  color: #fff;
  font-size: 12px;
  font-weight: 800
}

.check input {
  appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 4px;
  background: #5a5d63;
  border: 1px solid rgba(255, 255, 255, .1);
  margin: 0;
  padding: 0;
  position: relative
}

.check input:checked {
  background: #23a146
}

.check input:checked:after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 13px;
  font-weight: 900
}

.auth-submit {
  width: 100%;
  height: 42px;
  border: 0;
  border-radius: 7px;
  background: #249b3b;
  color: #fff;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 24px;
  font-weight: 800
}

.forgot {
  display: block;
  text-align: center;
  color: #fff;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 24px;
  font-weight: 800;
  margin: 18px 0 12px
}

.live-support {
  display: block;
  text-align: center;
  color: #bfc1c8;
  border-top: 2px solid rgba(255, 255, 255, .75);
  padding-top: 14px;
  font-weight: 900
}

.login-form {
  padding: 22px 26px 20px
}

.login-form input {
  margin-bottom: 10px
}

.login-form .check {
  margin: 4px 0 12px
}

@media(max-width:1180px) {
  .image-game-grid {
    grid-template-columns: 150px repeat(4, minmax(0, 1fr))
  }

  .image-game-card.feature-card {
    height: 238px
  }

  .sponsor-row {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(max-width:720px) {
  body {
    padding-bottom: 72px
  }

  .desktop-only {
    display: none !important
  }

  .mobile-only {
    display: block !important
  }

  .page {
    padding: 8px 0 24px
  }

  .mobile-slider {
    position: relative;
    border-radius: 7px;
    overflow: hidden
  }

  .mobile-slider img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 390/170;
    object-fit: cover
  }

  .mobile-slider .slide-badge-mobile {
    position: absolute;
    bottom: 15px;
    right: 20px;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    border-radius: 15px;
    color: #fff;
    font-size: 12px;
    z-index: 10;
    display: inline-block;
    height: auto;
    min-width: auto;
    line-height: 1;
    font-weight: normal;
  }

  .mobile-access {
    margin-top: 8px
  }

  .mobile-access img {
    width: 100%;
    height: auto;
    aspect-ratio: 406/74;
    object-fit: cover;
    border-radius: 6px
  }

  .quick-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    margin: 8px 0 10px
  }

  .quick-actions a {
    height: 48px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-family: 'Barlow Condensed';
    font-size: 20px;
    font-weight: 800
  }

  .deposit {
    background: #129138
  }

  .withdraw {
    background: #9b2230
  }

  .telegram {
    background: #0e75ba
  }

  .download {
    background: #b87008
  }

  .section-head {
    margin: 12px 0 8px
  }

  .section-head h2 {
    font-size: 14px;
    white-space: nowrap
  }

  .winner-tabs {
    gap: 5px;
    overflow: auto;
    scrollbar-width: none
  }

  .winner-tabs button {
    height: 26px;
    padding: 0 12px;
    font-size: 11px;
    flex: 0 0 auto
  }

  .winner-card {
    min-width: 168px;
    grid-template-columns: 42px 1fr;
    padding: 7px
  }

  .winner-card img,
  .winner-card .winner-thumb {
    width: 42px;
    height: 42px
  }

  .winner-card b,
  .winner-card small {
    font-size: 10px
  }

  .mobile-promo-pair {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    margin: 8px 0 16px
  }

  .mobile-promo-pair img {
    display: block;
    width: 100%;
    aspect-ratio: 199/98;
    object-fit: cover;
    border-radius: 6px
  }

  .title-center {
    margin: 28px 0 14px
  }

  .title-center h2 {
    font-size: 24px
  }

  .image-game-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin-bottom: 22px
  }

  .image-game-card {
    aspect-ratio: 130/91.8;
    border-radius: 6px
  }

  .image-game-card.feature-card {
    display: none !important
  }

  .show-all {
    height: 36px;
    margin-top: 2px
  }

  .chat-btn {
    width: 44px;
    height: 44px;
    right: 12px;
    bottom: 88px
  }

  .nav-floating-btn {
    bottom: 126px;
    width: 46px;
    height: 46px
  }

  .nav-floating-btn:before {
    width: 16px;
    height: 16px;
    border-width: 3px
  }

  .mobile-bottom {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 130;
    height: 66px;
    background: rgba(21, 22, 25, .98);
    border-top: 1px solid rgba(255, 255, 255, .09);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: end;
    padding-bottom: 5px
  }

  .mobile-bottom a,
  .mobile-menu-trigger {
    position: relative;
    height: 56px;
    border: 0;
    background: none;
    text-decoration: none;
    color: #c5c7cc;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    font-size: 11px;
    font-weight: 900
  }

  .mb-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #6e727b;
    display: grid;
    place-items: center;
    font-size: 13px
  }

  .mb-icon.support {
    border-color: #18bb64;
    color: #18bb64
  }

  .mobile-bottom i {
    position: absolute;
    top: 3px;
    left: 50%;
    transform: translateX(-4px);
    background: #ffbc1f;
    color: #111;
    border-radius: 50%;
    font-size: 9px;
    min-width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    font-style: normal
  }

  .mobile-menu-trigger b {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #f6ad16;
    color: #111;
    display: grid;
    place-items: center;
    font-size: 28px;
    font-style: italic;
    line-height: 1;
    margin-top: -25px;
    box-shadow: 0 0 0 6px rgba(0, 0, 0, .25)
  }

  .mobile-menu-trigger small {
    margin-top: -2px;
    color: #fff
  }

  .mobile-menu {
    position: fixed;
    left: 0;
    right: 0;
    top: 52px;
    bottom: 66px;
    z-index: 125;
    display: none;
    background: #222;
    overflow-y: auto;
    padding: 8px 14px 18px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(247, 169, 22, .35)
  }

  .mobile-menu.is-open {
    display: block
  }

  .mobile-menu-head {
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
  }

  .drag-line {
    width: 30px;
    height: 2px;
    background: #575757;
    border-radius: 2px
  }

  .mobile-menu-close {
    position: absolute;
    right: 0;
    top: -3px;
    width: 30px;
    height: 30px;
    border: 0;
    background: #333;
    color: #fff;
    border-radius: 50%;
    font-size: 22px
  }

  .menu-search {
    display: flex;
    align-items: center;
    height: 38px;
    background: #333;
    border-radius: 7px;
    margin: 6px 0 10px;
    padding: 0 10px
  }

  .menu-search input {
    flex: 1;
    min-width: 0;
    background: transparent;
    border: 0;
    outline: 0;
    color: #fff
  }

  .mobile-menu-list {
    display: grid;
    gap: 7px
  }

  .mobile-menu-list a {
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(#2d2d2d, #272727);
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 12px;
    color: #d7d7d7;
    text-decoration: none;
    font-weight: 800
  }

  .mobile-menu-list i {
    width: 24px;
    text-align: center;
    font-style: normal;
    font-size: 19px;
    color: #bfc1c7
  }

  .auth-box {
    width: calc(100vw - 18px);
    max-height: calc(100dvh - 18px);
    border-radius: 0
  }

  .auth-head {
    height: 46px;
    padding: 0 10px
  }

  .auth-brand {
    font-size: 22px
  }

  .auth-switch {
    background: none;
    color: #fff;
    text-decoration: underline;
    min-width: auto;
    height: auto
  }

  .auth-close {
    font-size: 30px
  }

  .auth-form {
    padding: 10px 8px
  }

  .auth-form h2 {
    font-size: 18px
  }

  .auth-grid {
    grid-template-columns: 1fr;
    gap: 7px
  }

  .auth-form input,
  .select-button {
    height: 36px;
    border-radius: 5px;
    font-size: 11px
  }

  .select-menu {
    max-height: 130px;
    overflow: auto
  }

  .phone-row {
    grid-template-columns: 74px 1fr;
    gap: 6px
  }

  .warn {
    font-size: 10px;
    padding: 7px
  }

  .check {
    font-size: 10px;
    margin: 8px 0
  }

  .check input {
    width: 17px;
    height: 17px;
    min-width: 17px
  }

  .auth-submit {
    height: 36px;
    font-size: 20px
  }

  .forgot {
    font-size: 19px;
    margin: 12px 0
  }

  .live-support {
    padding-top: 10px
  }

  .register-form {
    max-height: calc(100dvh - 46px);
    overflow-y: auto
  }

  .login-form {
    padding: 18px 16px 16px
  }

  .login-form .check {
    font-size: 11px
  }
}

/* Game Card Hover Overlay & Buttons */
.slot-game-card,
.image-game-card,
.game-card {
  position: relative !important;
  overflow: hidden !important;
}

.slot-game-card img,
.image-game-card img,
.game-card img {
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.slot-game-card:hover img,
.image-game-card:hover img,
.game-card:hover img {
  transform: scale(1.08) !important;
}

.game-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 13, 17, 0.84);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 10;
  border-radius: inherit;
}

.slot-game-card:hover .game-hover-overlay,
.image-game-card:hover .game-hover-overlay,
.game-card:hover .game-hover-overlay {
  opacity: 1;
  visibility: visible;
}

.btn-game-hover {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88%;
  max-width: 120px;
  height: 32px;
  border-radius: 6px;
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.btn-game-hover.btn-play {
  background: linear-gradient(135deg, #ffc700 0%, #e69d00 100%);
  color: #0d0e12 !important;
  box-shadow: 0 4px 14px rgba(255, 183, 0, 0.4);
  border: none;
}

.btn-game-hover.btn-play:hover {
  background: linear-gradient(135deg, #ffd426 0%, #ffab0d 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 183, 0, 0.6);
  color: #000 !important;
}

.btn-game-hover.btn-demo {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.btn-game-hover.btn-demo:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.7);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.25);
}

/* === SPONSOR SECTION FIX 2026-06-30 === */
@media (min-width:721px) {
  .sponsors {
    width: min(1368px, 100%);
    margin: 58px auto 28px;
    padding: 42px 38px 28px;
    border: 2px solid var(--gold);
    border-radius: 18px;
    background: #111;
    position: relative;
    overflow: visible;
  }

  .sponsors h2 {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 310px;
    margin: 0;
    padding: 7px 48px;
    border-radius: 24px;
    background: var(--gold);
    color: #fff;
    text-align: center;
    font-family: 'Barlow Condensed', Arial, sans-serif;
    font-size: 30px;
    line-height: 1;
    font-weight: 800;
    white-space: nowrap;
  }

  .sponsor-row {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 26px;
    align-items: center;
    justify-items: center;
  }

  .sponsor-row img {
    display: block;
    width: 100%;
    max-width: 174px;
    aspect-ratio: 164/220;
    height: auto;
    max-height: 232px;
    object-fit: contain;
    object-position: center;
    padding: 0;
    margin: 0 auto;
    background: transparent;
    border: 0;
    border-radius: 14px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, .28);
  }
}

@media (min-width:721px) and (max-width:1180px) {
  .sponsor-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px
  }
}


/* === MOBILE SLIDER FIX: 390x164 style === */
@media(max-width:720px) {
  .mobile-slider {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    background: #1a0b05;
  }

  .mobile-slider .bb-slide,
  .mobile-slider .bb-slide img {
    height: auto !important;
  }

  .mobile-slider img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}