* {
  box-sizing: border-box;
}

:root {
  --bg-main: #062815;
  --panel-main: #0f4527;
  --panel-soft: #152118;
  --panel-card: #191a1f;
  --text-gold: #f2dc58;
  --text-soft: #d8e3d9;
  --line-soft: #325741;
  --grad-green: linear-gradient(180deg, #191e32 0%, #0f1221 100%);
  --grad-shell: #131919;
}
 
html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: 'Hind Siliguri', sans-serif;
  overflow-x: hidden;
  background:#131919;
  color: #fff;
}

.page-bg {
  display: flex;
  justify-content: center;
  min-height: 100vh;
}

.app-shell {
  position: relative;
  width: 100%;
  max-width: 480px;
  min-height: 100vh;
  background: var(--grad-shell);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  overflow: visible;
}

.section-shell {
  position: relative;
}

.download-strip {
  background: linear-gradient(180deg, #242e2f 0%, #242e2f 100%);
    border-bottom: 1px solid #000000;
}

.download-btn {
  border: 0;
  border-radius: 999px;
  color: #ecffef;
  background: #061c33;
  box-shadow: inset 0 -2px 0 rgba(221, 213, 213, 0.2);
}

.top-control-bar {
  background: #000000;
  overflow: hidden;
}

.app-home .top-control-bar {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 80;
  min-height: 54px;
  width: 100%;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  /* aspect-ratio: 16 / 5; */
  background: #070c10;
  user-select: none;
  touch-action: pan-y;
  padding-top: 5px;
  padding-bottom: 12px;
  height: 140px;
}

.slider-track {
  display: flex;
  gap: 8px;
  height: 100%;
  transition: transform 560ms cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.slider-item {
  flex: 0 0 86%;
  height: 100%;
  overflow: hidden;
  border-radius: 2px;
  background: #0d1419;
}

.slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.slider-nav {
  display: none;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 6px;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
}

.slider-dot {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.42);
}

.slider-dot.is-active {
  background: #fff;
}

.hot-games-section {
  padding: 0 8px;
}

.hot-games-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 4px 6px;
}

.hot-games-title {
  font-family: 'Teko', sans-serif;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #ffd86a;
  text-transform: uppercase;
}

.hot-games-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff4040;
  box-shadow: 0 0 0 4px rgba(255, 64, 64, 0.2);
}

.hot-games-marquee {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  padding: 8px 0;
}

.hot-games-marquee::before,
.hot-games-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 26px;
  z-index: 2;
  pointer-events: none;
}

.hot-games-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #131d20 0%, rgba(19, 29, 32, 0) 100%);
}

.hot-games-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #131d20 0%, rgba(19, 29, 32, 0) 100%);
}

.hot-games-track {
  display: flex;
  align-items: stretch;
  gap: 10px;
  width: max-content;
  padding: 0 10px;
  animation: hotGamesTicker 24s linear infinite;
  will-change: transform;
}

.hot-games-track.is-static {
  width: 100%;
  justify-content: center;
  animation: none;
}

.hot-games-item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100px;
  min-width: 100px;
  border: 0;
  border-radius: 9px;
  background: linear-gradient(180deg, #243439 0%, #1a282c 100%);
  text-decoration: none;
  color: #f0fff2;
  padding: 6px 6px 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hot-games-thumb {
  display: block;
  width: 100%;
  height: 78px;
  border-radius: 7px;
  overflow: hidden;
  background: #0f181b;
}

.hot-games-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hot-games-name {
  margin-top: 6px;
  width: 100%;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}

.hot-games-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.popular-games-section {
  padding: 0 8px;
}

.popular-games-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 2px 8px;
}

.popular-games-marker {
  width: 4px;
  height: 18px;
  border-radius: 4px;
  background: #d5b44e;
}

.popular-games-title {
  font-family: 'Hind Siliguri', sans-serif;
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  color: #f0f2f3;
}

.popular-games-viewport {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 10px) / 2);
  gap: 10px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 1px 0 3px;
}

.popular-games-viewport::-webkit-scrollbar {
  display: none;
}

.popular-game-card {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid #38505a;
  padding: 0;
  margin: 0;
  min-width: 0;
  text-align: left;
  background: #1b272f;
  border-radius: 2px;
  overflow: hidden;
  scroll-snap-align: start;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.popular-game-card:hover {
  border-color: #4f7380;
}

.popular-game-card.is-featured {
  border-color: #d4b86a;
  box-shadow: inset 0 0 0 1px rgba(212, 184, 106, 0.26);
}

.popular-game-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #11181d;
  overflow: hidden;
}

.popular-game-thumb img {
  width: 100%;
  height: 100%;
  display: block;
}

.popular-game-name {
  display: block;
  background: #212d34;
  color: #eef6fb;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 500;
  padding: 7px 8px 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@keyframes hotGamesTicker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hot-games-track {
    animation: none;
  }
}

.notice-strip {
  background:#dfae3d;
    /* border-top: 1px solid #1b4d34; */
    /* border-bottom: 1px solid #1b4d34; */
    padding: 5px 0px 5px;
}

.quick-actions {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1.2fr;
  gap: 6px;
  align-items: center;
}
.quick-actions2 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 6px;
  align-items: center;
}

.pill-btn {
  display: block;
  text-align: center;
  border-radius: 999px;
  color: #ebfce8;
  background: var(--grad-green);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.2;
  padding: 8px 10px;
}
.pill-btn-index {
  display: block;
  text-align: center;
  border-radius: 999px;
  color: #ebfce8;
  background: var(--grad-green);
  font-weight: 600;
  font-size: 12px;
  line-height: 1.2;
  padding: 4px 5px;
}

.quick-icon-item {
  display: block;
  text-align: center;
  color: var(--text-gold);
  text-decoration: none;
  font-size: 19px;
  line-height: 1.1;
}

.quick-icon-item i {
  display: block;
  font-size: 30px;
  margin-bottom: 4px;
}

.game-area {
  display: flex;
  gap: 2px;
}

.category-rail {
  width: 96px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

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

.category-pill {
  width: 100%;
  border: none;
  /* background: linear-gradient(180deg, #0b1b47 0%, #08143d 100%); */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    gap: 1px;
    padding: 6px 4px;
    border-radius: 20px;
    font-size: 16pt;
    font-weight: 700;
}

.category-pill img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.category-pill span {
  font-size: 18px;
  line-height: 1.2;
}

.app-home .game-area {
  gap: 10px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.app-home .category-rail {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 8px;
  background: #242e2f;
  border-right: 0;
  padding-left: 15px;
  padding-right: 15px;
  position: static;
  top: auto;
  align-self: stretch;
  z-index: 30;
  overflow-x: auto;
  overflow-y: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-top: 6px;
  padding-bottom:6px;
}

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

.app-home .category-pill {
  width: 62px;
  min-width: 70px;
  height: 62px;
}


.app-home .category-pill.is-active {
    background: #2e3c39;
    border-radius: 0px;
    height: 89px;
    color: #ffffff;
    margin-top: -15px;
    margin-bottom: -15px;
}

.jackpot-card {
  position: relative;
}

.jackpot-amount {
  position: absolute;
  top: 54%;
  left: 54%;
  transform: translate(-50%, -50%);
  font-family: 'Teko', sans-serif;
  letter-spacing: 2px;
  font-size: 54px;
  line-height: 1;
  color: #ffe859;
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.5);
  margin: 0;
}
/* মোমাইল ডিভাইসের জন্য এই সি এস এস কোড কাজ করবে। */
@media (min-width: 480px) {
  .game-card {
  border-radius: 10px;
  overflow: hidden;
  background: #061c33;
  box-shadow: inset 0 0 0 1px rgba(49, 212, 132, 0.35);
  height: 113px;
}
}
.game-card {
  /* border-radius: 10px; */
  overflow: hidden;
  background: #2a3838;
  /* box-shadow: inset 0 0 0 1px rgba(15, 14, 65, 0.35); */
  height: 97px;
}


.game-card img {
    display: block;
    width: 60px;
    height: 60px;
}

.game-card h3 {
  margin: 0;
  text-align: center;
  background: var(--grad-green);
  color: #d8ffe4;
  font-weight: 500;
  font-size: 23px;
  line-height: 1.25;
  padding: 2px 4px;
}

.download-panel {
  border-radius: 14px;
  padding: 12px;
  display: flex;
  align-items: end;
  gap: 10px;
  background: linear-gradient(180deg, #1b0f5f 0%, #140847 100%);
}

.app-home .app-download-panel {
  position: relative;
  overflow: hidden;
  min-height: 116px;
  border-radius: 8px;
  padding: 10px 12px;
  align-items: center;
  background: linear-gradient(180deg, #121070 0%, #1719a2 52%, #1d0f6e 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.app-home .app-download-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(7, 43, 25, 0.42) 0%, rgba(7, 43, 25, 0) 42%);
}

.app-home .app-download-panel::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 20px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(6, 52, 29, 0) 0%, rgba(6, 52, 29, 0.55) 100%);
}

.app-home .app-download-content {
  position: relative;
  z-index: 2;
  flex: 1;
  min-width: 0;
  max-width: 60%;
}

.app-home .app-download-title {
  margin: 0 0 6px;
  color: #f8da4f;
  font-size: 34px;
  font-weight: 700;
  line-height: 0.92;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.32);
}

.app-home .app-download-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.app-home .app-download-btn {
  min-width: 84px;
  min-height: 44px;
  border-radius: 4px;
  padding: 3px 8px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(180deg, #261970 0%, #150d5e 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.app-home .app-download-btn i {
  font-size: 13px;
  line-height: 1;
}

.app-home .app-download-btn span {
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0;
}

.app-home .app-download-phone {
  position: absolute;
  z-index: 1;
  right: -14px;
  bottom: -30px;
  width: 164px;
  max-width: 52%;
  height: auto;
  object-fit: contain;
  object-position: center bottom;
  flex-shrink: 0;
}

.app-home .footer-section {
  position: relative;
}

.app-home .footer-container {
  /* background: linear-gradient(180deg, #1b2039 0%, #0c1c41 100%); */
  /* border: 1px solid rgba(76, 166, 108, 0.35); */
  /* border-radius: 10px; */
  /* padding: 12px 10px 14px; */
  color: #daffe6;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.app-home .ft-title {
  display: block;
  margin-bottom: 7px;
  color: #f5dc63;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 14px;
}

.app-home .pay-icons {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 5px;
}

.app-home .pay-icons img {
  width: 100%;
  height: auto;
  aspect-ratio: 8 / 5;
  border-radius: 4px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.06);
  padding: 2px;
  display: block;
}

.app-home .ft-grid-2 {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.app-home .ft-icons-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.app-home .ft-icons-row img {
  width: 38px;
  height: 24px;
  object-fit: contain;
}

.app-home .social-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.app-home .social-icons a {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  text-decoration: none;
  color: #e9ffef;
  border: 1px solid rgba(115, 108, 205, 0.45);
  background: rgba(33, 28, 109, 0.45);
  font-size: 14px;
}

.app-home .ft-separator {
  margin: 11px 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(126, 211, 157, 0.45) 15%, rgba(126, 211, 157, 0.45) 85%, rgba(255, 255, 255, 0) 100%);
}

.app-home .ft-links-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.app-home .ft-link-col {
  display: grid;
  gap: 8px;
}

.app-home .ft-link-item a {
  display: inline-block;
  text-decoration: none;
  color: #ffc107;
  font-size: 11px;
  line-height: 1.25;
  font-weight: 700;
}

.app-home .license-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.app-home .license-row img {
  width: 56px;
  max-width: 24%;
  height: auto;
  object-fit: contain;
}

.app-home .partner-app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: end;
}

.app-home .partner-logo {
  height: 13px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.app-home .app-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    padding: 4px 8px;
}


  .app-home .app-btn img {
    width: 42px;
    height: 10px;
    object-fit: contain;
}


.app-home .ft-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.app-home .bb-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Teko', sans-serif;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #0b2c16;
  background: linear-gradient(180deg, #f7e26f 0%, #d8b838 100%);
}

.app-home .brand-text h4 {
  margin: 0;
  color: #ebffef;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 600;
}

.app-home .brand-text p {
  margin: 2px 0 0;
  color: #b9e9c8;
  font-size: 10px;
  line-height: 1.25;
}

.app-home .seo-content {
  margin-top: 12px;
  border-radius: 8px;
  padding: 10px;
}

.app-home .seo-content h3 {
  margin: 0 0 7px;
  color: #f4de6a;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 700;
}

.app-home .seo-content p {
  margin: 0 0 7px;
  color: #ffff;
  font-size: 11px;
  line-height: 1.35;
}

.app-home .seo-content p:last-child {
  margin-bottom: 0;
}

.floating-social {
  position: fixed;
  right: max(calc((100vw - 480px) / 2 + 10px), 10px);
  bottom: 110px;
  z-index: 28;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.floating-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #1ace6800;
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.bottom-nav {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
    padding: 8px 6px 10px;
    background: linear-gradient(180deg, #191e32 0%, #14182a 40%, #0f1221 100%);
    box-shadow: 0 -4px 20px rgb(12 94 109 / 0%);
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #eef8ee;
  gap: 2px;
}

.bottom-nav-item img {
  width: 27px;
  height: 27px;
  object-fit: contain;
}

.bottom-nav-item .nav-fa-icon {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  font-size: 24px;
  line-height: 1;
}

.bottom-nav-item span {
  font-size: 17px;
  line-height: 1.2;
}

.bottom-nav-item.is-current {
  color: #ffffff;
}

.bottom-nav-dashboard {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  padding: 8px 6px 10px;
  background: linear-gradient(180deg, #2cd484 0% 0%, #0b813e 50%, #000000 100%);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.35);
}

.bottom-nav-dashboard-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #eef8ee;
  gap: 2px;
}

.bottom-nav-dashboard-item img {
  width: 27px;
  height: 27px;
  object-fit: contain;
}

.bottom-nav-dashboard-item .nav-fa-icon {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  font-size: 24px;
  line-height: 1;
}

.bottom-nav-dashboard-item span {
  font-size: 11px;
  line-height: 1.1;
  text-align: center;
}

.bottom-nav-dashboard-item.is-current {
  color: #ffffff;
}

.home-footer-nav {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 30;
  width: min(100vw, 480px);
  max-width: 480px;
  height: 56px;
  display: grid;
  grid-template-columns: 0.9fr 1.05fr 1.05fr;
  background: #132127;
  border-top: 1px solid #53686c;
  box-sizing: border-box;
  overflow: hidden;
}

.home-footer-pill {
  position: relative;
  height: 100%;
  border-radius: 0;
  color: #f7f6f5;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  border-left: 1px solid rgba(16, 30, 34, 0.95);
  font-family: 'Hind Siliguri', sans-serif;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.28);
}

.home-footer-pill-lang {
  border-left: 0;
  justify-content: flex-start;
  gap: 7px;
  padding: 0 10px;
  background: linear-gradient(180deg, #3d5157 0%, #2f4147 100%);
  color: #f2fff8;
}

.home-footer-pill-login {
  color: #fff9e7;
  text-transform: none;
  background: linear-gradient(180deg, #d0b24a 0%, #bd9a37 100%);
}

.home-footer-pill-signup {
  color: #ffffff;
  text-transform: none;
  background: linear-gradient(180deg, #2c3c42 0%, #213036 100%);
}

.home-footer-lang-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle at 45% 45%, #ef4a4a 0%, #b51226 78%);
  box-shadow: 0 0 0 2px #47b456, inset 0 0 0 1px rgba(255, 255, 255, 0.35);
  flex: 0 0 auto;
}

.home-footer-lang-label {
  display: inline-block;
  margin-right: auto;
  max-width: 46px;
  font-size: 14px;
  line-height: 1.02;
  font-weight: 600;
  color: #eefcf3;
  white-space: normal;
}

.home-footer-lang-caret {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #f1d85c;
}

.home-footer-pill:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 1px;
}

/* Player index.php page-level overrides moved from inline style */
/* .app-home .category-pill {
  border-radius: 20px;
} */

.app-home .category-pill .cat-fa-icon {
  font-size: 26px;
  color: currentColor;
  line-height: 1;
}

.app-home .games-grid .game-card {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-home .games-grid .game-card h3 {
  text-transform: capitalize;
}

.app-home .game-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.app-home .game-page-link {
  min-width: 34px;
  height: 30px;
  border-radius: 8px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  background: #213c2d;
  color: #eaf8ea;
  border: 1px solid rgba(108, 182, 130, 0.45);
}

.app-home .game-page-link.is-active {
  background: linear-gradient(180deg, #2fe06f 0%, #0f963f 100%);
  color: #082010;
  border-color: #4df592;
}

.app-home .games-badge {
  font-size: 11px;
  color: #f2dc58;
  border: 1px solid #2f6f4b;
  border-radius: 999px;
  padding: 4px 10px;
  line-height: 1;
  background: rgba(8, 35, 20, 0.5);
}

.app-home .provider-control-box {
  padding: 8px;
  border-radius: 12px;
  border: 1px solid rgba(77, 170, 111, 0.4);
  background: linear-gradient(180deg, rgba(11, 75, 45, 0.88) 0%, rgba(6, 52, 30, 0.88) 100%);
}

.app-home .provider-mode-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.app-home .provider-mode-btn {
  border: 1px solid #0b7f4d;
  border-radius: 8px;
  height: 25px;
  font-size: 12px;
  color: #cef6dc;
  background: linear-gradient(180deg, #178f5a 0%, #0e6a40 100%);
}

.app-home .provider-mode-btn.is-active {
  color: #fff79c;
  border-color: #46de8a;
  box-shadow: inset 0 0 0 1px rgba(255, 245, 163, 0.28);
}

.app-home .provider-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.app-home .provider-strip::-webkit-scrollbar {
  display: none;
}

.app-home .provider-launch-dot {
  width: 25px;
  height: 25px;
  border-radius: 999px;
  flex: 0 0 auto;
  border: 1px solid #6defa1;
  background: radial-gradient(circle at 35% 30%, #65f7a0 0%, #1aa55f 100%);
  color: #ffffff;
  font-size: 18px;
}

.app-home .provider-chip {
  width: 60px;
  height: 25px;
  flex: 0 0 auto;
  border-radius: 999px;
  border: 1px solid #1f6844;
  background: #123623;
  display: grid;
  place-items: center;
  padding: 4px 8px;
}

.app-home .provider-chip img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.app-home .provider-chip.is-active {
  border-color: #5df6a2;
  box-shadow: 0 0 0 1px rgba(93, 246, 162, 0.45);
}

.app-home .provider-empty {
  color: #dbfce8;
  font-size: 13px;
  white-space: nowrap;
  padding: 0 6px;
}

.app-home .provider-option-select {
  width: 100%;
  height: 25px;
  border-radius: 8px;
  border: 1px solid #82a99a;
  padding: 0 10px;
  color: #2b3440;
  background: #f2f4f3;
  font-size: 12px;
  outline: none;
}

.app-home .provider-search-row {
  display: flex;
  gap: 8px;
}

.app-home .provider-search-input {
  width: 100%;
  height: 25px;
  border-radius: 8px;
  border: 1px solid #7ea699;
  padding: 0 10px;
  color: #2b3440;
  font-size: 12px;
  outline: none;
  background: #f2f4f3;
}

.app-home .provider-search-btn {
  width: 40px;
  height: 25px;
  border-radius: 8px;
  border: 1px solid #7ea699;
  background: #f2f4f3;
  color: #1f2a37;
  font-size: 12px;
  flex: 0 0 auto;
}

.app-home .bottom-nav {
  grid-template-columns: repeat(4, 1fr);
}

.app-home .bottom-nav-item i {
  font-size: 22px;
  line-height: 1;
}

.sidebar-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 44;
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.sidebar-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: min(52vw, 183px);
  min-width: 170px;
  max-width: 183px;
  height: 100dvh;
  overflow-y: auto;
  background: linear-gradient(180deg, #2f454b 0%, #2a3f45 42%, #273a40 100%);
  border-right: 1px solid rgba(182, 206, 210, 0.5);
  box-shadow: 14px 0 30px rgba(0, 0, 0, 0.55);
  z-index: 999;
  transform: translateX(-100%);
  transition: transform 260ms ease;
}

body.sidebar-open {
  overflow: hidden;
}

body.sidebar-open .sidebar-backdrop {
  opacity: 1;
  pointer-events: auto;
}

body.sidebar-open .sidebar-drawer {
  transform: translateX(0);
}

.sidebar-list {
  display: flex;
  flex-direction: column;
}

.sidebar-list-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 8px 10px 8px 11px;
  text-decoration: none;
  background: rgba(44, 66, 72, 0.74);
  color: #f3fbfb;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(8, 18, 21, 0.5);
}

.sidebar-list-item:first-child {
  border-top: 0;
}

.sidebar-list-item.is-active {
  background: rgba(64, 90, 97, 0.9);
}

.sidebar-list-icon {
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
}

.sidebar-list-icon img {
  /* width: 17px;
  height: 17px; */
  object-fit: contain;
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.35));
}

.sidebar-list-icon i {
  font-size: 18px;
  line-height: 1;
  color: #ffffff;
}

.sidebar-list-label {
  display: block;
  font-size: clamp(14px, 4.2vw, 18px);
  line-height: 1.05;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0;
}

@media (max-width: 480px) {
  .sidebar-drawer {
    width: min(52vw, 181px);
    min-width: 164px;
    max-width: 181px;
  }

  .sidebar-list-item {
    min-height: 50px;
    padding: 8px 9px 8px 10px;
  }

  .sidebar-list-icon {
    width: 31px;
    height: 31px;
  }

  .sidebar-list-icon img {
    width: 31px;
    height: 31px;
  }

  .sidebar-list-icon i {
    font-size: 17px;
  }


  .sidebar-list-label {
    font-size: clamp(14px, 4.1vw, 16px);
  }
}

.auth-shell {
  background-image:
    linear-gradient(180deg, rgba(2, 6, 3, 0.95) 0%, rgba(3, 37, 19, 0.65) 30%, rgba(2, 18, 9, 0.82) 100%),
    url('../images/login background.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}

.auth-top {
  background: rgba(0, 0, 0, 0.88);
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 2px solid #ffe251;
}

.auth-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8da07f;
  text-decoration: none;
  font-size: 50px;
  font-weight: 600;
  line-height: 1;
  padding-bottom: 10px;
  position: relative;
}

.auth-tab.is-active {
  color: #f4dd56;
}

.auth-tab.is-active::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -9px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #ffe251;
}

.auth-panel {
  background: rgba(6, 14, 10, 0.72);
  border: 1px solid rgba(128, 175, 135, 0.25);
}

.auth-input-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #48494d;
  border: 2px solid #b7d5cf;
  border-radius: 22px;
  padding: 13px 16px;
}

.auth-input-row i {
  color: #f3f5f4;
  font-size: 32px;
  width: 32px;
  text-align: center;
}

.auth-input-row input {
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
  width: 100%;
  font-size: 44px;
  line-height: 1.2;
  font-family: 'Hind Siliguri', sans-serif;
}

.auth-input-row input::placeholder {
  color: #d4d7dc;
}

.pass-toggle {
  border: 0;
  background: transparent;
  color: #f2f2f2;
  font-size: 36px;
}

.auth-submit-btn {
  width: 100%;
  border: 0;
  border-radius: 11px;
  padding: 12px;
  font-size: 57px;
  font-weight: 500;
  line-height: 1;
  color: #ecffe7;
  background: var(--grad-green);
}

.auth-link {
  color: var(--text-gold);
  text-decoration: none;
  font-size: 40px;
  line-height: 1;
}

.service-btn {
  border: 1.5px solid #e8d74a;
  background: rgba(10, 40, 20, 0.28);
  color: #f4df59;
  border-radius: 14px;
  min-width: 160px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 46px;
  line-height: 1;
  padding: 10px 16px;
}

.copyright {
  text-align: center;
  color: #f4f7f3;
  font-size: 53px;
  line-height: 1.2;
  margin: 36px 0 0;
}

/* The reference files are 870px wide screenshots of a 480px UI.
   Scaled typography keeps proportions close to the source. */
@media (max-width: 520px) {
  .auth-tab {
    font-size: 26px;
  }

  .auth-input-row i {
    font-size: 22px;
    width: 24px;
  }

  .auth-input-row input {
    font-size: 34px;
  }

  .pass-toggle {
    font-size: 25px;
  }

  .auth-submit-btn {
    font-size: 44px;
  }

  .auth-link {
    font-size: 28px;
  }

  .service-btn {
    font-size: 33px;
  }

  .copyright {
    font-size: 38px;
  }
}

@media (max-width: 480px) {
  .app-home .top-control-bar {
    min-height: 48px;
  }

  .app-home .category-rail {
    top: auto;
  }

  .app-home .download-strip h1 {
    font-size: 13px;
    line-height: 1.08;
  }

  .app-home .download-strip .text-yellow-300 {
    font-size: 7px;
    letter-spacing: 0.2em;
  }

  .app-home .download-strip .download-btn {
    font-size: 15px;
    padding: 7px 16px;
  }

  .app-home .notice-strip marquee {
    font-size: 13px;
  }

  .app-home .quick-actions .pill-btn {
    font-size: 12px;
    padding: 4px 6px;
  }

  .app-home .quick-icon-item {
    font-size: 12px;
    line-height: 1.05;
  }

  .app-home .quick-icon-item i {
    font-size: 20px;
    margin-bottom: 2px;
  }

  .app-home .category-rail {
    width: 100%;
    padding-top: 20px;
    padding-left: 15px;
    padding-right: 15px;
    gap: 0px;
  padding-top: 15px;
  padding-bottom:15px;
  }
  .app-home .category-pill span {
    font-size: 14px;
  }

  .app-home .category-pill img {
    width: 30px;
    height: 30px;
  }

  .app-home .jackpot-amount {
    font-size: 38px;
    letter-spacing: 1px;
  }

  .app-home .game-card h3 {
    font-size: 11px;
    line-height: 1.12;
    padding: 4px 2px;
  }

  .app-home .download-panel h2 {
    font-size: 26px;
  }

  .app-home .download-panel .download-btn {
    font-size: 14px;
    padding: 7px 10px;
  }

  .app-home .app-download-panel {
    min-height: 104px;
    border-radius: 9px;
    padding: 9px 10px;
  }

  .app-home .app-download-title {
    font-size: 28px;
    margin-bottom: 5px;
  }

  .app-home .app-download-btn {
    min-width: 76px;
    min-height: 41px;
    padding: 3px 7px;
  }

  .app-home .app-download-btn span {
    font-size: 11px;
  }

  .app-home .app-download-phone {
    width: 136px;
    max-width: 50%;
    right: -12px;
    bottom: -24px;
  }

  .app-home .pay-icons img {
      width: 100%;
      height: auto;
  }

  .app-home .ft-grid-2 {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .app-home .ft-links-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .app-home .license-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    align-items: center;
  }

  .app-home .license-row img {
    width: 58%;
    max-width: 58%;
    height: auto;
    /* margin: 0 auto; */
  }

  .app-home .partner-app-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    align-items: start;
  }

  .app-home .partner-logo {
    width: 52%;
    max-width: 52%;
    height: auto;
    display: block;

  }

    .app-home .app-btn {
        width: 100%;
        justify-content: start;
        /* padding: 5px 6px; */
    }

  .app-home .app-btn img {
    width: 52%;
    height: auto;
    max-width: 62px;
  }

  .app-home .seo-content h3 {
    font-size: 12px;
  }

  .app-home .seo-content p,
  .app-home .ft-link-item a {
    font-size: 10px;
  }

  .app-home .bottom-nav-item span {
    font-size: 12px;
  }
}

@media (max-width: 420px) {
  .app-home .quick-actions {
    grid-template-columns: 1fr 1fr 1.1fr;
    gap: 4px;
    border-bottom: 1px solid #17a94c78;
    padding-bottom: 10px;
    padding-top: 10px;
  }

  .app-home .floating-social {
        right: 10px;
        border-radius: 25px;
        /* background: #00000060; */
        padding: 7px;
  }
  .app-home .category-pill {
        height: 70px;
        width: 70px;
        font-size: 16pt;
        font-weight: 700;
        color: #fffffe;
        box-shadow: inset 0 0 0 1px rgba(10, 31, 20, 0.22);
        padding: 10px;
        margin-top: -5px;
        margin-bottom: -5px;
  }

  .app-home .category-pill img {
    width: 40px;
    height: 40px;
  }

  .app-home .category-pill span {
    font-size: 14px;
    margin-top: 14px;
  }

  .app-home .quick-icon-item {
    font-size: 11px;
  }

  .app-home .quick-icon-item i {
    font-size: 17px;
  }

  .app-home .bottom-nav-item span {
    font-size: 11px;
  }

  .app-home .jackpot-amount {
    font-size: 34px;
  }

  .app-home .game-card h3 {
    font-size: 10px;
  }

  .app-home .app-download-title {
    font-size: 24px;
  }

  .app-home .app-download-actions {
    gap: 5px;
  }

  .app-home .app-download-btn {
    min-width: 70px;
    min-height: 39px;
    border-radius: 5px;
  }

  .app-home .app-download-btn span {
    font-size: 10px;
  }

  .app-home .app-download-phone {
    width: 124px;
    right: -12px;
    bottom: -20px;
  }
}

@media (min-width: 481px) {
  .app-home .download-strip h1 {
    font-size: 18px;
    line-height: 1.1;
  }

  .app-home .download-strip .text-yellow-300 {
    font-size: 12px;
    letter-spacing: 0.22em;
  }

  .app-home .download-strip .download-btn {
    font-size: 18px;
    padding: 8px 16px;
  }

  .app-home .notice-strip marquee {
    font-size: 14px;
  }

  .app-home .quick-actions .pill-btn {
    font-size: 17px;
    padding: 7px 9px;
  }

  .app-home .quick-icon-item {
    font-size: 13px;
    line-height: 1.05;
  }

  .app-home .quick-icon-item i {
    font-size: 22px;
    margin-bottom: 3px;
  }

  .app-home .category-rail {
    width: 100%;
    gap: 8px;
  }

  .app-home .category-pill {
    
    height: 60px;
    width: 60px;
  }

  .app-home .category-pill span {
    font-size: 14px;
    margin-top: 14px;
  }

  .app-home .category-pill img {
    width: 34px;
    height: 34px;
  }

  .app-home .jackpot-amount {
    font-size: 40px;
    letter-spacing: 1px;
  }

  .app-home .game-card h3 {
    font-size: 12px;
    line-height: 1.15;
    padding: 4px 2px;
  }

  .app-home .download-panel h2 {
    font-size: 28px;
  }

  .app-home .download-panel .download-btn {
    font-size: 15px;
    padding: 7px 11px;
  }

  .app-home .app-download-panel {
    min-height: 124px;
  }

  .app-home .app-download-title {
    font-size: 36px;
  }

  .app-home .app-download-btn {
    min-width: 92px;
    min-height: 46px;
  }

  .app-home .app-download-btn span {
    font-size: 12px;
  }

  .app-home .app-download-phone {
    width: 176px;
    right: -16px;
    bottom: -34px;
  }

  .app-home .bottom-nav-item span {
    font-size: 12px;
  }
}

/* ---------------- Login Page (pixel-tuned to login.jpeg) ---------------- */
.login-shell {
  background-image: url('../images/login background.png');
  background-size: cover;
  background-position: center -34px;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.login-hero {
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-logo {
  width: 184px;
  height: 184px;
}

.login-main {
  padding-top: 10px;
}

.login-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  border-bottom: 2px solid #f1d94d;
}

.login-tab {
  text-decoration: none;
  color: rgba(226, 220, 95, 0.56);
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  padding-bottom: 12px;
  position: relative;
}

.login-tab.is-active {
  color: #f4e055;
}

.login-tab.is-active::after {
  content: '';
  position: absolute;
  left: 22%;
  bottom: -2px;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 8px solid #f1d94d;
}

.login-panel {
  margin-top: 0px;
  background: rgb(2 20 11 / 76%);
  border-radius: 0;
  border: 0;
}

.login-input-row {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  background: #404040;
  border: 1px solid #dadde1;
  border-radius: 10px;
  padding: 12px 14px;
}

.login-input-row i {
  color: #f4f8fb;
  font-size: 14px;
  width: 24px;
  text-align: center;
}

.login-input-row input {
  border: 0;
  outline: 0;
  width: 100%;
  background: transparent;
  color: #eef5fb;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 500;
}

.login-input-row input::placeholder {
  color: #d1d6dd;
}

.login-input-row .pass-toggle {
  color: #ffffff;
  font-size: 21px;
  line-height: 1;
  padding: 0;
}

.login-submit-btn {
  width: 100%;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(180deg, #28d764 0%, #089846 100%);
  color: #eef9ef;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  padding: 14px 12px;
}

.login-forgot-link {
  color: #f4df55;
  font-size: 17px;
  line-height: 1;
  text-decoration: none;
}

.login-service-btn {
  border: 1.5px solid #f0db52;
  background: rgba(7, 34, 20, 0.42);
  color: #f6de4f;
  border-radius: 12px;
  min-width: 156px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 26px;
  font-weight: 500;
  line-height: 1;
  padding: 10px 16px;
}

.login-copyright {
  margin-top: 74px;
  text-align: center;
  color: #f3f7f5;
  font-size: 47px;
  line-height: 1.15;
}

@media (max-width: 480px) {
  .login-shell {
    background-image: url('../images/login background.png');
    background-position: center -28px;
    background-attachment: fixed;
  }

  .login-hero {
    height: 26vh;
    min-height: 169px;
    max-height: 174px;
  }

  .login-logo {
    width: 100px;
    height: 100px;
  }

  .login-main {
    padding-left: 22px;
    padding-right: 22px;
  }

  .login-tab {
    font-size: 17px;
  }

  .login-input-row {
    min-height: 38px;
    padding: 6px 9px;
  }

  .login-input-row input {
    font-size: 12px;
  }

  .login-submit-btn {
    font-size: 14px;
  }

  .login-forgot-link {
    font-size: 13px;
  }

  .login-service-btn {
    font-size: 16px;
  }

  .login-copyright {
    margin-top: 30px;
    font-size: 14px;
  }
}

/* ---------------- Signup Page (pixel-tuned to signup.jpeg) ---------------- */
.signup-shell {
  background-image: url('../images/login background.png');
  background-size: cover;
  background-position: center -42px;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.signup-hero {
  height: 214px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.signup-logo {
  width: 184px;
  height: 184px;
}

.signup-main {
  padding-top: 12px;
}

.signup-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  border-bottom: 2px solid #f1d94d;
}

.signup-tab {
  text-decoration: none;
  color: rgba(186, 194, 121, 0.68);
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  padding-bottom: 12px;
  position: relative;
}

.signup-tab.is-active {
  color: #f2dc51;
}

.signup-tab.is-active::after {
  content: '';
  position: absolute;
  right: 22%;
  bottom: -2px;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 8px solid #ecd34a;
}

.signup-panel {
  margin-top: 0px;
  background: rgb(2 20 11 / 76%);
  border-radius: 0;
  border: 0;
}

.signup-input-row {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  background: #404040;
  border: 2px solid #dadde1;
  border-radius: 10px;
  padding: 12px 14px;
}

.signup-input-row i {
  color: #f4f8fb;
  font-size: 21px;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.signup-input-row input {
  border: 0;
  outline: 0;
  width: 100%;
  background: transparent;
  color: #eef5fb;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 500;
}

.signup-input-row input::placeholder {
  color: #d1d6dd;
}

.signup-input-row .pass-toggle {
  color: #ffffff;
  font-size: 21px;
  line-height: 1;
  padding: 0;
}

.signup-flag {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.signup-country-code {
  color: #f3f6f4;
  font-size: 15px;
  line-height: 1;
  margin-right: 10px;
}

.signup-code-row {
  justify-content: space-between;
}

.signup-code-btn {
  border: 0;
  background: transparent;
  color: #f0d84d;
  font-size: 15px;
  line-height: 1;
  white-space: nowrap;
  padding: 0;
}

.signup-terms-row {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: start;
  column-gap: 10px;
  row-gap: 0;
  color: #f6f7f6;
  font-size: 15px;
  line-height: 1.38;
}

.signup-terms-row input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.signup-checkmark {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: #12b65a;
  color: #0a2a17;
  display: grid;
  place-items: center;
  font-size: 18px;
  margin-top: 2px;
}

.signup-terms-row > span:last-child {
  grid-column: 2;
}

.signup-terms-link {
  color: #f4e055;
  text-decoration: underline;
}

.signup-submit-btn {
  width: 100%;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(180deg, #28d764 0%, #089846 100%);
  color: #eef9ef;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  padding: 14px 12px;
}

.signup-login-note {
  text-align: center;
  color: #f2f6f3;
  font-size: 15px;
  line-height: 1.35;
  margin: 2px 0 0;
}

.signup-login-note a {
  color: #f4df55;
  text-decoration: underline;
}

.signup-service-btn {
  border: 1.5px solid #f0db52;
  background: rgba(7, 34, 20, 0.42);
  color: #f6de4f;
  border-radius: 12px;
  min-width: 190px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 21px;
  font-weight: 500;
  line-height: 1;
  padding: 10px 18px;
}

.signup-copyright {
  margin-top: 54px;
  text-align: center;
  color: #f3f7f5;
  font-size: 46px;
  line-height: 1.15;
}

@media (max-width: 480px) {
  .signup-shell {
    background-image: url('../images/login background.png');
    background-position: center -36px;
    background-attachment: fixed;
  }

  .signup-hero {
    height: 26vh;
    min-height: 169px;
    max-height: 174px;
  }

  .signup-logo {
    width: 100px;
    height: 100px;
  }

  .signup-main {
    padding-left: 22px;
    padding-right: 22px;
  }

  .signup-tab {
    font-size: 14px;
  }

  .signup-input-row {
    min-height: 49px;
    padding: 6px 9px;
  }

  .signup-input-row input {
    font-size: 13px;
  }

  .signup-country-code {
    font-size: clamp(14px, 3.9vw, 22px);
  }

  .signup-code-btn {
    font-size: clamp(13px, 3.8vw, 20px);
  }

  .signup-terms-row {
    font-size: clamp(13px, 4vw, 22px);
  }

  .signup-submit-btn {
    font-size: clamp(24px, 6.2vw, 36px);
  }

  .signup-login-note {
    font-size: clamp(12px, 3.8vw, 19px);
  }

  .signup-service-btn {
    font-size: clamp(18px, 5.2vw, 30px);
  }

  .signup-copyright {
    margin-top: 30px;
    font-size: 17px;
  }
}
.customheightandwidth {
    width: 55px;
    height: 32px;
}

.pulse-glow {
  animation: pulseGlow 1.5s infinite;
}

@keyframes pulseGlow {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(0, 255, 0, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 255, 0, 0);
  }
}

.custom-text1 {
    font-size: 20px;
}
.custom-y-4> :not([hidden]) ~ :not([hidden]){
  margin-top: 30px;
    margin-bottom: -6px;
}
.cbaf {
    
    border: 1px solid #f8da4f;
    border-radius: 8px;
    padding: 3px;
}

#jackpotBalanceValue {
  display: inline-block;
  min-width: 10ch;
  white-space: nowrap;
  vertical-align: middle;
  font-variant-numeric: tabular-nums;
}

.spin-promo-popup {
  position: fixed;
  right: 15px;
  bottom: 200px;
  width: 70px;
  height: 70px;
  border-radius: 12px;
  overflow: visible;
  z-index: 60;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
  pointer-events: none;
}

.spin-promo-popup.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.spin-promo-popup.is-closing {
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
}

.spin-promo-popup img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.spin-promo-close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 999px;
  background: rgba(7, 9, 14, 0.84);
  color: #ffffff;
  font-size: 14px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.promo-banner-popup {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.promo-banner-popup.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.promo-banner-popup.is-closing {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.promo-banner-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 14, 0.78);
}

.promo-banner-dialog {
  position: relative;
  z-index: 1;
  width: min(92vw, 620px);
}

.promo-banner-image {
  width: 100%;
  max-height: 84vh;
  display: block;
  object-fit: contain;
  border-radius: 12px;
  background: #08210d;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.44);
}

.promo-banner-close {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: rgba(8, 10, 16, 0.9);
  color: #ffffff;
  font-size: 21px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.42);
}

.promo-banner-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.62);
  color: #ffffff;
  font-size: 30px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.promo-banner-nav.is-prev {
  left: -54px;
}

.promo-banner-nav.is-next {
  right: -54px;
}

@media (max-width: 640px) {
  .promo-banner-dialog {
    width: min(94vw, 520px);
  }

  .promo-banner-nav.is-prev {
    left: 6px;
  }

  .promo-banner-nav.is-next {
    right: 6px;
  }

  .promo-banner-close {
    top: 6px;
    right: 6px;
  }
}

.page-preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(2, 17, 10, 0.95);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.page-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-preloader-image {
  width: 100vw;
  height: 100vh;
  display: block;
  object-fit: cover;
}
.home-footer-lang-flag {
    width: 20px;
    height: 20px;
}

.app-home .games-grid .game-card {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  /* border-radius: 10px; */
  overflow: hidden;
  background: #2a3838;
  height: 85px;
  padding: 4px 4px 6px;
}

.app-home .games-grid .game-card .game-image-container {
  flex: 1;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}

.app-home .games-grid .game-card > img,
.app-home .games-grid .game-card .game-image-container > img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-top: 2px;
  flex: 0 0 auto;
  border-radius: 5px;
}

.app-home .games-grid .game-card .game-title,
.app-home .games-grid .game-card h3 {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0 3px;
  text-align: center;
  font-size: 10px;
  line-height: 1.1;
  font-weight: 500;
  color: #ffffff;
  background: transparent;
  text-transform: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 5px;
}

.slft {
    width: 94%;
    margin-left: auto;
    margin-right: auto;
}
.chgs {
    margin-left: 8px;
}