* {
  box-sizing: border-box;
  letter-spacing: 0;
}

:root {
  --shell-width: 960px;
  --shell-half: 480px;
  --page-bg: #060f1f;
  --panel: #17243e;
  --panel-soft: #22324f;
  --line: #1d3558;
  --text: #ffffff;
  --muted: #aab5c9;
  --blue: #2aa8ff;
  --green: #11bf6a;
}

html {
  background: #07101f;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #07101f;
  color: var(--text);
  font-family: "Noto Sans Bengali", "Noto Sans", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.drawer-open {
  overflow: hidden;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  background: #07101f;
}

.phone-page {
  width: min(100%, var(--shell-width));
  min-height: 100vh;
  position: relative;
  background: var(--page-bg);
  overflow-x: hidden;
  box-shadow: 0 0 38px rgba(0, 0, 0, 0.34);
  padding-bottom: 91px;
}

.promo-bar {
    width: 100%;
    min-height: 59px;
    color: white;
    display: grid;
    grid-template-columns: 32px 62px 1fr 128px;
    align-items: center;
    /* gap: 6px; */
    padding: 3px 3px;
    background: linear-gradient(180deg, #183978 0%, #050f2d 100%);
}

.promo-close-btn {
  border: 0;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  padding: 0;
  color: white;
  background: transparent;
  cursor: pointer;
}

.promo-bar svg,
.promo-close-btn svg {
  width: 24px;
  height: 24px;
}

.promo-gift {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.promo-bar span {
  min-width: 0;
  font-size: 13.5px;
  font-weight: 800;
  line-height: 1.25;
  color: #f7df88;
  text-align: left;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.promo-button {
  width: 126px;
  height: auto;
}

.promo-bar.hidden {
  display: none;
}

.top-header {
    height: 43px;
    background: #09152b;
    display: grid;
    grid-template-columns: 44px minmax(120px, 1fr) auto;
    align-items: center;
    gap: 7px;
    padding: 0 9px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.icon-button {
  border: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: white;
  background: transparent;
  cursor: pointer;
}

.icon-button svg {
  width: 32px;
  height: 32px;
  stroke-width: 1;
}

.logo-link img {
  width: 170px;
  max-width: 100%;
  display: block;
}

.auth-actions {
  display: flex;
  gap: 8px;
}

.auth-actions a {
    min-width: 75px;
    height: 31px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.2);
}

.login-btn {
  background: linear-gradient(180deg, #18d879, #0fa45d);
}

.register-btn {
  background: linear-gradient(180deg, #35b6ff, #167cdf);
}

.header-balance-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding: 0 10px;
  border-radius: 10px;
  background: linear-gradient(180deg, #14233f, #0d182c);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.header-balance {
  color: #facc15;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.header-balance-refresh {
  border: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #9ec9ff;
  background: rgba(53, 182, 255, 0.12);
  cursor: pointer;
  flex-shrink: 0;
}

.header-balance-refresh svg {
  width: 16px;
  height: 16px;
}

.header-balance-refresh.is-loading svg {
  animation: header-balance-spin 0.8s linear infinite;
}

@keyframes header-balance-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.home-banner-wrap {
  margin: 5px 9px 0;
  position: relative;
  z-index: 1;
}

.home-banner-slider {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #0d1830;
  box-shadow: inset 0 0 0 1px rgba(84, 122, 183, 0.12);
}

.home-banner-slider.swiper,
.home-banner-slider .swiper-wrapper,
.home-banner-slider .swiper-slide {
  height: auto !important;
}

.home-banner-slider .swiper-slide {
  line-height: 0;
}

.home-banner-slider .swiper-slide img {
  display: block;
  width: 100%;
  height: auto !important;
  max-height: 210px;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.home-banner-slider .swiper-pagination {
  bottom: 6px !important;
}

.home-banner-slider .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.45);
  opacity: 1;
}

.home-banner-slider .swiper-pagination-bullet-active {
  background: #2aa8ff;
}

.notice-strip {
  margin:5px 7px 5px;
  height: 22px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /*gap: 10px;*/
  color: white;
  border-radius: 5px;
  background: #14223c;
  box-shadow: inset 0 0 0 1px rgba(84, 122, 183, 0.08);
  overflow: hidden;
}

.notice-strip span {
  white-space: nowrap;
  animation: marquee 13s linear infinite;
  font-size: 12px;

}

.notice-strip svg {
  flex: 0 0 auto;
  color: var(--blue);
  background: #1e3458;
    z-index: 99;
    height: 36px;
    width: 37px;
    padding: 6px;
    margin-right: -11px;
}

@keyframes marquee {
  from {
    transform: translateX(14%);
  }
  to {
    transform: translateX(-82%);
  }
}

.category-rail {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 80px;
    overflow-x: auto;
    gap: 0px;
    padding: 3px 8px 2px;
    background: #060f1f;
    scrollbar-width: none;
    border-bottom: 3px solid #173358;
}

.category-rail::-webkit-scrollbar {
  display: none;
}

.category-rail button,
.category-rail a {
  position: relative;
  border: 0;
  min-width: 0;
  background: transparent;
  color: white;
  cursor: pointer;
  display: grid;
  justify-items: center;
  gap: 3px;
  padding: 0;
  text-decoration: none;
}

.category-rail img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.category-rail span {
  max-width: 90px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 500;
}

.category-rail button.active::after,
.category-rail a.active::after {
  content: "";
  width: 38px;
  height: 4px;
  border-radius: 999px;
  background: #2d9bf4;
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
}

.content-flow {
  padding: 9px 8px 0;
}

.game-section {
  margin-bottom: 8px;
  border-radius: 6px;
  background: var(--panel);
  overflow: hidden;
}

.game-section[data-home-category]:not(.is-visible) {
  display: none;
}

.content-flow.is-home-overview .game-section[data-home-category] {
  display: block;
}

.section-title {
  min-height: 47px;
  padding: 8px 11px;
  display: grid;
  grid-template-columns: 1fr 70px;
  align-items: center;
  gap: 10px;
  background:
    radial-gradient(circle at 76% 5%, rgba(43, 82, 147, 0.48), transparent 36%),
    linear-gradient(180deg, #223a61 0%, #172641 100%);
}

.section-title h2 {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
}

.section-flame {
  width: 22px;
  height: 22px;
  color: #ff8a00;
  fill: #ff8a00;
  stroke-width: 2.5;
}

.section-count {
  display: grid;
  grid-template-columns: 1px 1fr;
  gap: 14px;
  align-items: center;
}

.section-count::before {
  content: "";
  width: 2px;
  height: 29px;
  background: #259df4;
  transform: skew(-35deg);
}

.section-count b {
  display: block;
  font-size: 24px;
  line-height: 1;
}

.section-count span {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: #c5d0e7;
  font-weight: 800;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 10px;
}

/* Game listings always stay at exactly 4 columns on every device */
.game-grid[data-game-section],
.game-grid[data-cat-games],
.game-grid[data-slots-games-grid],
#slotsProviderGames,
.game-grid:has(> .game-card) {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

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

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

.sports-grid {
  grid-template-columns: 1fr !important;
  gap: 0;
  padding: 6px;
}

.sports-card {
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
}

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

.vendor-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5px;
  padding: 8px;
}

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

.game-card {
  min-width: 0;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, #111c31, #243a5a);
}

.game-card .heart {
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: 2;
  width: 19px;
  height: 19px;
  color: white;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.6));
}

.game-card .thumb {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.vendor-card img,
.wide-card img,
.brand-card img {
  display: block;
  width: 100%;
  height: auto;
}

.vendor-card,
.wide-card,
.brand-card {
  border-radius: 7px;
  overflow: hidden;
  background: #111a2e;
}

.vendor-card[role="button"],
.brand-card[role="button"] {
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, outline-color 0.15s ease;
}

.brand-card[role="button"]:hover {
  transform: translateY(-1px);
}

.vendor-card[role="button"]:hover {
  transform: translateY(-1px);
}

.vendor-card.is-active {
  outline: 2px solid #f0c14b;
  outline-offset: 1px;
}

.game-grid.is-hidden,
.vendor-grid.is-hidden,
.slots-provider-filter.is-hidden,
[data-preview-vendors].is-hidden,
[data-preview-grid].is-hidden {
  display: none !important;
}

.slots-provider-filter {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  padding: 10px 11px 6px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.slots-provider-filter::-webkit-scrollbar {
  display: none;
}

.slots-provider-chip {
  height: 42px;
  flex: 0 0 78px;
  width: 95px;
  margin: 0;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  background: #111a2e;
  color: #fff;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.slots-provider-chip img {
  display: block;
  object-fit: cover;
  background: #0d1526;
}

.slots-provider-chip span {
  display: block;
  padding: 4px 2px 6px;
  text-align: center;
  font-size: 9px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.slots-provider-chip.is-active {
  border-color: #2aa8ff;
  box-shadow: 0 0 12px rgba(42, 168, 255, 0.42);
}

.slots-provider-chip--name-only {
  display: flex;
  align-items: center;
  justify-content: center;
}

.slots-provider-chip--name-only span {
  padding: 6px 4px;
  white-space: normal;
  word-break: break-word;
}

.vendor-card--name-only {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 8px;
  text-align: center;
}

.vendor-card-name {
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  word-break: break-word;
}

.provider-strip {
  height: 26px;
  display: grid;
  place-items: center;
  padding: 2px 4px;
  background: linear-gradient(180deg, #18263f, #2d4768);
  border-radius: 0 0 9px 9px;
}

.provider-strip img {
  height: 22px;
  max-width: 86%;
  object-fit: contain;
}

.game-label {
  display: block;
  padding-top: 3px;
  min-height: 15px;
  font-size: 8px;
  line-height: 1.05;
  text-align: center;
  color: #dce8ff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.see-all {
  display: grid;
  place-items: center;
  padding: 0 0 9px;
}

.see-all a {
  min-width: 54px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: white;
  text-decoration: none;
  background: #1267af;
  font-size: 8px;
  font-weight: 900;
}

.download-section {
  margin: 8px 0;
  border-radius: 5px;
  overflow: hidden;
  background: #151f36;
}

.content-flow:not(.is-home-overview) .download-section {
  display: none;
}

.download-bg {
  min-height: 180px;
  padding: 18px 18px 17px;
  display: grid;
  justify-items: center;
  gap: 6px;
  text-align: center;
  background-image: url("../image/home/imgi_136_home-app-bg-C2tctFBX.png");
  background-size: cover;
  background-position: center;
}

.download-bg h2 {
  margin: 0;
  font-size: 21px;
  font-weight: 950;
  line-height: 1;
}

.download-bg p {
  margin: 0;
  max-width: 300px;
  color: #c7d0df;
  font-size: 10px;
  font-weight: 600;
}

.download-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, 300px);
  margin-top: 3px;
}

.download-buttons img {
  width: 100%;
  height: auto;
}

.page-footer {
  margin: 0 -8px;
  padding: 21px 22px 31px;
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
  background: #0b1528;
}

.page-footer p {
  margin: 0;
  color: white;
  font-size: 10px;
  font-weight: 900;
}

.payment-img {
  width: min(100%, 310px);
}

.vendor-img {
  width: min(100%, 330px);
  opacity: 0.82;
}

.license-img {
  width: 136px;
  margin-top: 2px;
}

.page-footer small {
  color: #7f8ba0;
  font-size: 8px;
}

.bottom-nav {
  position: fixed;
  left: 50%;
  bottom: 0;
  z-index: 30;
  width: min(100%, var(--shell-width));
  height: 117px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  padding: 10px 5px 9px;
  background-image: url("../image/home/footer background.png");
  background-size: 100% 100%;
  background-position: center;
}

.bottom-nav a {
  min-width: 0;
  height: 72px;
  color: white;
  text-decoration: none;
  display: grid;
  justify-items: center;
  align-content: end;
  gap: 3px;
  font-size: 10px;
  font-weight: 600;
}

.bottom-nav img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: grayscale(82%);
}

.bottom-nav .active img {
  filter: none;
}

.bottom-nav .share-link {
  transform: translateY(-12px);
}

.bottom-nav .share-link img {
  width: 86px;
  height: 72px;
  filter: none;
  animation: share-bounce 1.5s ease-in-out infinite;
}

@keyframes share-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.spin-float-wrap {
  position: fixed;
  left: max(8px, calc(50% - var(--shell-half) + 8px));
  bottom: 134px;
  z-index: 1100;
  width: 72px;
}

.spin-float-wrap[hidden] {
  display: none !important;
}

.spin-float-close {
  position: absolute;
  top: -6px;
  right: -6px;
  z-index: 2;
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.spin-float-link {
  position: relative;
  width: 72px;
  height: 72px;
  display: block;
  text-decoration: none;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
  animation: social-float-bob 2.4s ease-in-out infinite;
}

.spin-float-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  pointer-events: none;
}

.social-float-stack {
  position: fixed;
  right: max(10px, calc(50% - var(--shell-half) + 10px));
  bottom: 134px;
  z-index: 29;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  pointer-events: none;
}

.social-float-btn {
  pointer-events: auto;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: block;
  overflow: hidden;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.32);
  animation: social-float-bob 2.4s ease-in-out infinite;
}

.social-float-btn:nth-child(2) {
  animation-delay: 0.35s;
}

.social-float-btn:nth-child(3) {
  animation-delay: 0.7s;
}

.social-float-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes social-float-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

.whatsapp-float {
  position: fixed;
  right: max(14px, calc(50% - var(--shell-half) + 14px));
  bottom: 154px;
  z-index: 29;
  width: 57px;
  height: 57px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: white;
  background: #18c769;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.35);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  stroke-width: 2.7;
}

.side-drawer {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  visibility: hidden;
}

.drawer-panel {
  position: fixed;
  z-index: 3;
  inset: 0 auto 0 max(calc(50% - var(--shell-half)), 0px);
  width: min(58vw, 330px);
  max-width: 330px;
  background: #101a31;
  padding: 31px 18px 120px;
  overflow-y: auto;
  transform: translateX(-104%);
  transition: transform 210ms ease;
  box-shadow: 18px 0 35px rgba(0, 0, 0, 0.34);
}

.drawer-backdrop {
  position: fixed;
  z-index: 1;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.62);
  opacity: 0;
  transition: opacity 180ms ease;
}

.side-drawer.open {
  pointer-events: auto;
  visibility: visible;
}

.side-drawer.open .drawer-panel {
  transform: translateX(0);
}

.side-drawer.open .drawer-backdrop {
  opacity: 1;
}

.drawer-logo {
  width: 196px;
  margin: 0 auto 28px;
  display: block;
}

.drawer-menu {
  display: grid;
  gap: 11px;
}

.drawer-menu a,
.drawer-group-toggle {
  min-height: 37px;
  display: grid;
  grid-template-columns: 36px 1fr 18px;
  align-items: center;
  gap: 2px;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  padding: 0 9px;
  background: #252f4f;
  font-size: 13px;
  line-height: 1.1;
  font-weight: 800;
  width: 100%;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}

.drawer-menu a > svg,
.drawer-group-toggle > svg {
  width: 25px;
  height: 25px;
  stroke-width: 2.8;
}

.drawer-menu .chevron,
.drawer-group-toggle .chevron {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.drawer-group.is-open .drawer-group-toggle .chevron {
  transform: rotate(180deg);
}

.drawer-submenu {
  display: grid;
  gap: 8px;
  margin: 8px 0 0 14px;
}

.drawer-submenu[hidden] {
  display: none;
}

.drawer-submenu a {
  min-height: 34px;
  background: #1c2540;
  font-size: 12px;
  font-weight: 700;
  grid-template-columns: 30px 1fr;
}

.drawer-submenu a > svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.4;
}

.drawer-auth-btn {
  margin-top: 8px;
}

.drawer-auth-btn--login {
  background: #1d4ed8 !important;
}

.drawer-auth-btn--logout {
  background: rgba(185, 28, 28, 0.88) !important;
}

@media (min-width: 431px) {
  :root {
    --shell-width: 560px;
    --shell-half: 280px;
  }

  .phone-page {
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.45);
  }

  .promo-bar {
    grid-template-columns: 38px 70px 1fr 154px;
    min-height: 76px;
    padding-inline: 14px;
  }

  .promo-gift {
    width: 66px;
    height: 62px;
  }

  .promo-button {
    width: 150px;
  }

  .promo-bar span {
    font-size: 16px;
  }

  .top-header {
    height: 76px;
    grid-template-columns: 56px minmax(160px, 1fr) auto;
    padding-inline: 16px;
  }

  .icon-button svg {
    width: 38px;
    height: 38px;
  }

  .logo-link img {
    width: 218px;
  }

  .auth-actions a {
    min-width: 92px;
    height: 42px;
    font-size: 18px;
  }

  .notice-strip {
    min-height: 43px;
    margin-inline: 11px;
  }

  .notice-strip span {
    font-size: 18px;
  }

  .category-rail {
    grid-auto-columns: 100px;
    padding-block: 12px 14px;
  }

  .category-rail img {
    width: 62px;
    height: 50px;
  }

  .category-rail span {
    max-width: 98px;
    font-size: 14px;
  }

  .content-flow {
    padding-inline: 10px;
  }

  .section-title {
    min-height: 54px;
    grid-template-columns: 1fr 86px;
  }

  .section-title h2 {
    font-size: 19px;
  }

  .section-flame {
    width: 25px;
    height: 25px;
  }

  .section-count b {
    font-size: 29px;
  }

  .section-count span {
    font-size: 14px;
  }

  .game-grid {
    gap: 8px;
    padding: 12px;
  }

  .game-grid[data-game-section],
  .game-grid[data-cat-games],
  .game-grid[data-slots-games-grid],
  #slotsProviderGames,
  .game-grid:has(> .game-card) {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

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

  .wide-grid:not([data-game-section]):not([data-cat-games]):not(:has(> .game-card)) {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .brand-row:not([data-game-section]):not([data-cat-games]):not(:has(> .game-card)) {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .provider-strip {
    height: 29px;
  }

  .provider-strip img {
    height: 24px;
  }

  .game-label {
    min-height: 17px;
    font-size: 9px;
  }

  .see-all a {
    min-width: 66px;
    height: 22px;
    font-size: 10px;
  }

  .download-bg {
    min-height: 152px;
  }

  .download-bg h2 {
    font-size: 25px;
  }

  .download-bg p {
    font-size: 12px;
  }

  .bottom-nav {
    height: 145px;
  }

  .bottom-nav a {
    height: 82px;
    font-size: 14px;
  }

  .bottom-nav img {
    width: 51px;
    height: 51px;
  }

  .bottom-nav .share-link img {
    width: 99px;
    height: 84px;
  }

  .drawer-panel {
    width: 360px;
    max-width: 360px;
    padding-inline: 22px;
  }
}

@media (max-width: 374px) {
  .phone-page,
  .bottom-nav {
    width: 100%;
  }

  .promo-bar {
    grid-template-columns: 28px 52px 1fr 108px;
    padding-inline: 7px;
  }

  .promo-button {
    width: 106px;
  }

  .promo-bar span {
    font-size: 11px;
  }

  .top-header {
    grid-template-columns: 38px minmax(90px, 1fr) auto;
    padding-inline: 8px;
    gap: 5px;
  }

  .logo-link img {
    width: 133px;
  }

  .auth-actions {
    gap: 5px;
  }

  .auth-actions a {
    min-width: 62px;
    height: 32px;
    font-size: 13px;
  }

  .game-grid {
    gap: 5px;
    padding: 8px;
  }

  .bottom-nav span {
    font-size: 13px;
  }

  .drawer-panel {
    width: 66vw;
  }
}
