/* All 14 providers and all 126 game slots remain visible on one page. */
.providers {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 7px;
  overflow: visible;
  margin-top: 12px;
  padding: 0;
}

.provider {
  display: grid;
  gap: 4px;
  place-items: center;
  min-width: 0;
  color: #9da8af;
  font-size: 8px;
  text-align: center;
}

.provider-logo {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid #2d3e4a;
  border-radius: 9px;
  background: #24333e;
  color: #eceff1;
  font-size: 9px;
  font-weight: 900;
  font-style: italic;
}

.provider.is-active .provider-logo {
  border-color: rgba(196, 241, 90, .45);
  color: var(--lime);
  box-shadow: inset 0 -3px 0 var(--lime);
}

.provider small {
  overflow: hidden;
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.provider-logo img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.provider.is-active .provider-logo img {
  filter: drop-shadow(0 0 4px rgba(196, 241, 90, .2));
}

.provider-title {
  min-width: 0;
  height: 35px;
}

.provider-title > img {
  display: block;
  width: auto;
  max-width: 132px;
  height: 35px;
  object-fit: contain;
  object-position: left center;
}

.games-section { margin-top: 20px; }
.game-controls button { width: auto; }
.game-controls .more-button { padding-inline: 14px; }

.legal-footer {
  margin: 0 -9px;
  border-top: 1px solid rgba(255, 255, 255, .06);
  background: #0d1822;
  color: #91a6b4;
}

.legal-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 26px;
  background: #172530;
}

.legal-brand-row img {
  width: 154px;
  height: 52px;
  object-fit: contain;
  object-position: left center;
}

.legal-brand-row button {
  flex: 0 0 auto;
  border: 0;
  border-radius: 999px;
  padding: 13px 18px;
  background: #2b3945;
  color: #d9e2e8;
  font-size: 11px;
  font-weight: 800;
}

.legal-copy {
  padding: 30px 26px 16px;
  font-size: 12px;
  line-height: 1.75;
}

.legal-copy p { margin: 0 0 23px; }
.legal-copy strong { color: #d6e0e6; }
.legal-copy span { color: #b8c8d2; }
.legal-copy ol { margin: 0; padding-left: 19px; }
.legal-copy li { padding-left: 2px; }

.copyright {
  margin: 0;
  padding: 20px 26px 28px;
  border-top: 1px solid rgba(255, 255, 255, .05);
  color: #c3d0d8;
  font-size: 11px;
  text-align: center;
}

.copyright strong { color: #ffffff; }

/* Bottom app dock — matched to the supplied casino-app reference. */
.bottom-nav {
  z-index: 40;
  min-height: 73px;
  padding: 9px 3px max(6px, env(safe-area-inset-bottom));
  border-top: 2px solid #8fba22;
  background:
    linear-gradient(180deg, rgba(45, 45, 39, .98) 0%, rgba(25, 24, 31, .99) 46%, #17161e 100%);
  box-shadow: 0 -7px 19px rgba(0, 0, 0, .48), inset 0 1px rgba(255, 255, 255, .04);
}

.bottom-nav button {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 2px;
  padding: 0 1px;
  color: #c5c3c7;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.05;
  text-shadow: 0 1px 2px #000;
}

.bottom-nav .nav-icon {
  position: relative;
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
}

.bottom-nav .nav-icon svg {
  width: 29px;
  height: 29px;
  filter: drop-shadow(0 1px 1px #0008);
}

.bottom-nav button.is-active {
  color: #b8ef42;
}

.bottom-nav .nav-promo i {
  position: absolute;
  top: -5px;
  right: -6px;
  display: grid;
  width: 15px;
  height: 15px;
  place-items: center;
  border: 1px solid #fff;
  border-radius: 50%;
  background: #ef101b;
  color: #fff;
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
  text-shadow: none;
}

.bottom-nav .deposit-nav {
  top: -29px;
  z-index: 2;
  justify-content: flex-start;
  color: #e3e1e4;
}

.bottom-nav .deposit-nav::before {
  position: absolute;
  z-index: -1;
  top: -2px;
  left: 50%;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: #1b1c20;
  box-shadow: 0 3px 7px #0009;
  content: "";
  transform: translateX(-50%);
}

.bottom-nav .deposit-nav b {
  width: 64px;
  height: 64px;
  border: 3px solid #e6bc62;
  background:
    radial-gradient(circle at 50% 35%, #536b29 0%, #2d361e 54%, #171a16 100%);
  color: #b9f244;
  box-shadow:
    0 0 0 2px #a7d635,
    0 0 0 6px #22221f,
    0 6px 13px #0009,
    inset 0 2px 4px #ffffff20;
}

.bottom-nav .deposit-nav b svg {
  width: 38px;
  height: 38px;
  stroke-width: 2.1;
  filter: drop-shadow(0 2px 1px #0008);
}

.bottom-nav .deposit-nav > span {
  margin-top: 3px;
  font-size: 10px;
}

@media (max-width: 374px) {
  .bottom-nav button { font-size: 9px; }
  .bottom-nav .deposit-nav > span { font-size: 9px; }
}

/* App-download strip based on the supplied green patterned reference. */
.install-strip {
  position: relative;
  isolation: isolate;
  grid-template-columns: 56px minmax(0, 1fr) 45px auto 25px;
  gap: 7px;
  min-height: 64px;
  overflow: hidden;
  padding: 6px 8px;
  background-color: #acd354;
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, .08) 25%, transparent 25%),
    linear-gradient(225deg, rgba(255, 255, 255, .08) 25%, transparent 25%),
    linear-gradient(45deg, rgba(82, 112, 25, .07) 25%, transparent 25%),
    linear-gradient(315deg, rgba(82, 112, 25, .07) 25%, #acd354 25%);
  background-position: 12px 0, 12px 0, 0 0, 0 0;
  background-size: 24px 24px;
  box-shadow: inset 0 -1px rgba(42, 66, 13, .22);
}

.install-strip::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(74, 97, 33, .25), transparent 32%, rgba(229, 255, 145, .12));
  content: "";
  pointer-events: none;
}

.install-strip img {
  width: 56px;
  height: 49px;
  object-fit: contain;
  filter: drop-shadow(0 2px 2px rgba(61, 50, 9, .34));
}

.install-strip p {
  overflow: hidden;
  margin: 0;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
  text-overflow: ellipsis;
  text-shadow: 0 1px 2px rgba(52, 66, 22, .5);
  white-space: nowrap;
}

.install-strip p strong {
  color: #fff;
  font-weight: 600;
}

.gift-icon {
  display: grid;
  width: 42px;
  height: 46px;
  place-items: center;
  color: #fff1d0;
  filter: drop-shadow(0 2px 1px rgba(107, 42, 12, .35));
}

.gift-icon svg {
  width: 42px;
  height: 42px;
  fill: #f34a38;
  stroke: #ffd75c;
  stroke-width: 2.4;
}

.install-button {
  min-width: 72px;
  border-radius: 13px;
  padding: 12px 15px;
  background: linear-gradient(180deg, #10202d, #071521);
  box-shadow: 0 4px 10px rgba(37, 63, 16, .24), inset 0 1px rgba(255, 255, 255, .09);
  color: #fff;
  font-size: 11px;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.install-button:active {
  transform: translateY(1px) scale(.97);
  box-shadow: 0 2px 5px rgba(37, 63, 16, .22), inset 0 1px 3px rgba(0, 0, 0, .25);
}

.close-install {
  width: 22px;
  height: 22px;
  border: 2px solid rgba(255, 255, 255, .42);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 2px 6px rgba(49, 72, 17, .2);
  color: #9bbb52;
  font-size: 16px;
  font-weight: 900;
  transition: transform .18s ease;
}

.close-install:active { transform: scale(.88); }

/* Softer, native-like dock motion and a continuous center arch. */
.bottom-nav {
  overflow: visible;
  border-radius: 15px 15px 0 0;
  background:
    linear-gradient(180deg, rgba(49, 49, 43, .96), rgba(21, 20, 27, .99) 58%),
    radial-gradient(circle at 50% -12%, rgba(169, 216, 54, .09), transparent 34%);
  backdrop-filter: blur(14px) saturate(1.18);
  animation: dock-rise .45s cubic-bezier(.22, 1, .36, 1) both;
}

.bottom-nav::before {
  position: absolute;
  z-index: -1;
  top: -33px;
  left: 50%;
  width: 88px;
  height: 53px;
  border: 2px solid #91bf26;
  border-bottom: 0;
  border-radius: 48px 48px 0 0;
  background: linear-gradient(180deg, #303129, #202026 75%);
  box-shadow: 0 -7px 16px rgba(0, 0, 0, .27);
  content: "";
  transform: translateX(-50%);
}

.bottom-nav button {
  transition: color .22s ease, filter .22s ease, transform .18s cubic-bezier(.2, .8, .2, 1);
}

.bottom-nav button:not(.deposit-nav):active {
  filter: brightness(1.25);
  transform: translateY(1px) scale(.93);
}

.bottom-nav button.is-active .nav-icon {
  filter: drop-shadow(0 0 5px rgba(184, 239, 66, .28));
}

.bottom-nav .deposit-nav {
  transition: color .22s ease, transform .2s cubic-bezier(.2, .8, .2, 1);
}

.bottom-nav .deposit-nav:active { transform: scale(.95); }

.bottom-nav .deposit-nav b {
  transition: box-shadow .22s ease, filter .22s ease, transform .22s cubic-bezier(.2, .8, .2, 1);
  animation: deposit-breathe 3.2s ease-in-out infinite;
}

@keyframes dock-rise {
  from { opacity: .3; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes deposit-breathe {
  0%, 100% { box-shadow: 0 0 0 2px #a7d635, 0 0 0 6px #22221f, 0 6px 13px #0009, inset 0 2px 4px #ffffff20; }
  50% { box-shadow: 0 0 0 2px #b9ec43, 0 0 0 6px #22221f, 0 0 15px rgba(181, 232, 57, .18), 0 7px 15px #000a, inset 0 2px 4px #ffffff26; }
}

@media (max-width: 374px) {
  .install-strip { grid-template-columns: 48px minmax(0, 1fr) 36px auto 22px; gap: 5px; }
  .install-strip img { width: 48px; }
  .gift-icon, .gift-icon svg { width: 35px; height: 35px; }
  .install-button { min-width: 64px; padding-inline: 11px; }
}

@media (prefers-reduced-motion: reduce) {
  .bottom-nav, .bottom-nav .deposit-nav b { animation: none !important; }
}

/* Localized image modules. */
.hero-slide > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promotion-section {
  margin-top: 13px;
}

.promotion-section h2 {
  margin: 0 0 8px;
  color: #eef4f6;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .01em;
}

.mini-promos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin-top: 0;
}

.mini-promos button {
  overflow: hidden;
  min-width: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 8px;
  background: #1b2934;
  box-shadow: 0 3px 8px rgba(0, 0, 0, .23);
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}

.mini-promos button:active {
  filter: brightness(1.08);
  transform: scale(.98);
}

.mini-promos img {
  display: block;
  width: 100%;
  height: auto;
}

.mini-promos button:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.games-section {
  scroll-margin-top: 12px;
  transition: box-shadow .25s ease;
}

.games-section.is-target {
  border-radius: 10px;
  box-shadow: 0 0 0 2px rgba(196, 241, 90, .58), 0 0 22px rgba(196, 241, 90, .16);
}

.prize-wheel-fab {
  position: fixed;
  z-index: 19;
  right: max(12px, calc((100vw - 424px) / 2 + 12px));
  bottom: 83px;
  display: grid;
  place-items: center;
  width: 61px;
  height: 61px;
  padding: 5px;
  border: 2px solid var(--lime);
  border-radius: 50%;
  background: linear-gradient(145deg, #20352a, #0d1814);
  color: var(--lime);
  box-shadow: 0 0 0 3px rgba(13, 24, 20, .88), 0 6px 20px rgba(0, 0, 0, .48), 0 0 18px rgba(196, 241, 90, .28);
}

.prize-wheel-fab span {
  font-size: 23px;
  line-height: 1;
}

.prize-wheel-fab strong {
  font-size: 8px;
  line-height: 1;
}

.prize-wheel-fab:active {
  transform: scale(.96);
}

.main-logo,
.install-strip img,
.legal-brand-row img {
  object-fit: contain;
}
