/* overflow-guard */
:root {
  --brand-primary: #1b5e41;
  --brand-primary-hover: #247a54;
  --brand-secondary: #c5b358;
  --brand-secondary-hover: #d4c36a;
  --brand-accent: #ffb366;
  --background-main: #120e2b;
  --background-surface: #1c163b;
  --background-elevated: #26204b;
  --background-overlay: rgba(18, 14, 43, 0.75);
  --text-primary: #fdfbf7;
  --text-secondary: #e2e0d8;
  --text-muted: #bdbbb2;
  --text-brand-contrast: #000000;
  --text-link: #ffe4c4;
  --text-link-hover: #fff5e1;
  --button-bg: #ffb366;
  --button-text: #000000;
  --button-hover-bg: #ffc991;
  --button-hover-text: #000000;
  --semantic-success: #4caf50;
  --success: #4caf50;
  --semantic-error: #ef5350;
  --error: #ef5350;
  --semantic-warning: #ffb74d;
  --warning: #ffb74d;
  --semantic-info: #64b5f6;
  --info: #64b5f6;
  --border-default: #2d2652;
  --border-strong: #3d3568;
  --border-brand: #1b5e41;
  --font-family-headings: Noto Serif Bengali, Playfair Display, serif;
  --font-family-body: Noto Sans Bengali, Source Sans 3, sans-serif;
  --font-family-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-black: 900;
  --role-weight-h1: 800;
  --role-weight-h2: 700;
  --role-weight-h3: 700;
  --role-weight-h4: 600;
  --role-weight-body: 400;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-h4: 1rem;
  --font-size-h3: 1rem;
  --font-size-h2: 1.5rem;
  --font-size-h1: 1.8rem;
  --font-size-display: 2.5rem;
  --line-height-heading: 1.35;
  --line-height-body: 1.6;
  --letter-spacing-heading: 0;
  --letter-spacing-body: 0;
  --spacing-section-desktop: 2.5rem;
  --section-desktop: 2.5rem;
  --spacing-item-desktop: 1rem;
  --item-desktop: 1rem;
  --spacing-section-mobile: 1.5rem;
  --section-mobile: 1.5rem;
  --spacing-item-mobile: 0.75rem;
  --item-mobile: 0.75rem;
  --spacing-container-pad-desktop: 1.5rem;
  --container-pad-desktop: 1.5rem;
  --spacing-container-pad-mobile: 1rem;
  --container-pad-mobile: 1rem;
  --spacing-card-pad-desktop: 1rem;
  --card-pad-desktop: 1rem;
  --spacing-card-pad-mobile: 1rem;
  --card-pad-mobile: 1rem;
  --spacing-content-max-width: 76rem;
  --content-max-width: 76rem;
  --spacing-reading-max-width: 62ch;
  --reading-max-width: 62ch;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-pill: 9999px;
  --shadow-card: 4px 4px 0 #090716;
  --shadow-elevated: 6px 6px 0 #090716;
  --shadow-glow: 0 0 0 1px rgba(255, 179, 102, 0.35), 0 6px 18px rgba(255, 179, 102, 0.35);
  --shadow-inset: inset 0 1px 0 rgba(255,255,255,.05);
  --gradient-brand: linear-gradient(135deg, #1b5e41 0%, #247a54 100%);
  --gradient-hero: linear-gradient(180deg, #1c263c 0%, #120e2b 100%);
  --gradient-surface: linear-gradient(#26204b, #26204b);
  --gradient-button: linear-gradient(135deg, #ffc182 0%, #ffb366 100%);
  --effects-accent-bar: none;
  --recipes-transition: color 120ms, background-color 120ms, box-shadow 120ms, border-color 120ms, transform 120ms;
  --transition: color 120ms, background-color 120ms, box-shadow 120ms, border-color 120ms, transform 120ms;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html, body {
  max-width: 100%;
  overflow-x: clip;
  margin: 0;
  padding: 0;
}
@supports not (overflow-x: clip) {
  html, body {
    overflow-x: hidden;
  }
}
body {
  background: #120e2b;
  color: #e2e0d8;
  font-family: Noto Sans Bengali, Source Sans 3, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  padding-bottom: 4.5rem;
  -webkit-text-size-adjust: 100%;
}
img, video, svg, iframe {
  max-width: 100%;
}
img {
  height: auto;
}
main *, header *, footer *, nav * {
  min-width: 0;
}
p, li, td, th, h1, h2, h3, h4, dd, dt, figcaption, summary, a, span {
  overflow-wrap: anywhere;
}
table {
  width: 100%;
  max-width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
pre {
  white-space: pre-wrap;
  overflow-x: auto;
}
h1, h2, h3, h4 {
  margin: 0;
  font-family: Noto Serif Bengali, Playfair Display, serif;
  line-height: 1.35;
  letter-spacing: 0;
  color: #fdfbf7;
}
h1 {
  font-size: 1.8rem;
  font-weight: 800;
}
h2 {
  font-size: 1.5rem;
  font-weight: 700;
}
h3 {
  font-size: 1rem;
  font-weight: 700;
}
h4 {
  font-size: 1rem;
  font-weight: 600;
}
p {
  margin: 0;
  color: #e2e0d8;
}
ul, ol {
  margin: 0;
}
a {
  color: #ffe4c4;
  text-decoration: none;
  transition: color 120ms, background-color 120ms, box-shadow 120ms, border-color 120ms, transform 120ms;
}
a:hover {
  color: #fff5e1;
}
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid #ffb366;
  outline-offset: 2px;
}
button {
  font: inherit;
  cursor: pointer;
}
h1 a, h2 a, h3 a, h4 a {
  color: inherit;
}
main [id] {
  scroll-margin-block-start: 5rem;
}
main {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding: 0 3%;
}
main > section {
  padding-block: 2.5rem;
}
main > section > * + *, main > article > * + *, .spb-wrap > * + *, .spb-copy > * + *, .spb-stack > * + *, .spb-stack-center > * + * {
  margin-block-start: 1rem;
}
@media (max-width: 48rem) {
  main > section {
    padding-block: 1.5rem;
  }
  main > section > * + *, main > article > * + *, .spb-wrap > * + *, .spb-copy > * + *, .spb-stack > * + *, .spb-stack-center > * + * {
    margin-block-start: 0.75rem;
  }
}

.spb-header {
  background: #120e2b;
  border-bottom: 1px solid #2d2652;
  padding: .75rem 3%;
  position: sticky;
  top: 0;
  z-index: 100;
}
.spb-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.spb-header-brand {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: #fdfbf7;
}
.spb-header-brand img {
  border-radius: 4px;
}
.spb-header-brand strong {
  font-size: 16px;
  font-weight: 400;
}
.spb-header-actions {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.spb-footer {
  background: #120e2b;
  border-top: 1px solid #2d2652;
  padding: 3rem 3% 2rem;
  color: #bdbbb2;
}
.spb-footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  text-align: center;
}
.spb-footer-col > p, .spb-footer-col > h3 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #fdfbf7;
  margin: 0 0 .75rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.spb-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.spb-footer-col li + li {
  margin-block-start: .5rem;
}
.spb-footer-col a {
  color: #bdbbb2;
  font-size: 0.875rem;
}
.spb-footer-col a:hover {
  color: #fff5e1;
}
.spb-footer-meta {
  margin-block-start: 2rem;
  padding-block-start: 1.5rem;
  border-top: 1px solid #2d2652;
  text-align: center;
  font-size: 0.875rem;
}
.spb-footer-meta > * + * {
  margin-block-start: .5rem;
}

.spb-lead, .spb-panel.spb-lead {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
}
.spb-lead-body {
  flex: 1 1 auto;
  min-width: 0;
}
.spb-lead-body > * + * {
  margin-block-start: .5rem;
}

.spb-medal, .spb-medal-success, .spb-medal-warning, .spb-medal-error, .spb-medal-info {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 4px;
  background: linear-gradient(135deg, #1b5e41 0%, #247a54 100%);
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-weight: 700;
}
.spb-medal-success {
  background: #4caf50;
  color: #fff;
}
.spb-medal-warning {
  background: #ffb74d;
  color: #fff;
}
.spb-medal-error {
  background: #ef5350;
  color: #fff;
}
.spb-medal-info {
  background: #64b5f6;
  color: #fff;
}

.spb-fold {
  background: #26204b;
  border: 1px solid #2d2652;
  border-radius: 8px;
  box-shadow: 4px 4px 0 #090716, inset 0 1px 0 rgba(255,255,255,.05);
  transition: color 120ms, background-color 120ms, box-shadow 120ms, border-color 120ms, transform 120ms;
}
.spb-fold + .spb-fold {
  margin-block-start: 0.75rem;
}
.spb-fold[open] {
  border-color: #1b5e41;
}
.spb-fold-q {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  cursor: pointer;
  list-style: none;
}
.spb-fold-q::-webkit-details-marker {
  display: none;
}
.spb-fold-q h3 {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
}
.spb-fold-q::after {
  content: "\f0d7";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  flex: 0 0 auto;
  color: #ffb366;
  transition: transform 200ms;
}
.spb-fold[open] .spb-fold-q::after {
  transform: rotate(180deg);
}
.spb-fold-a {
  margin: 0;
  padding: 0 1rem 1rem;
}
@media (max-width: 48rem) {
  .spb-fold-q {
    padding: 1rem;
  }
  .spb-fold-a {
    padding: 0 1rem 1rem;
  }
}

.spb-bottombar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 1000;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 4.5rem;
  background: #1c163b;
  border-top: 1px solid #2d2652;
}
.spb-bottombar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  flex: 1 1 0;
  padding: .5rem 0;
  font-size: 0.75rem;
  color: #bdbbb2;
}
.spb-bottombar-item i {
  font-size: 1.25rem;
}
.spb-bottombar-item:hover {
  color: #ffb366;
}

.spb-trail {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  padding: 1rem 0;
  font-size: 0.875rem;
  color: #e2e0d8;
}
.spb-trail a {
  color: #ffe4c4;
}
.spb-trail span {
  color: #fdfbf7;
}

.spb-callout, .spb-callout-warning, .spb-callout-info, .spb-callout-success, .spb-callout-error {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 8px;
  background: #1c163b;
  border: 1px solid #2d2652;
  border-left: 4px solid #ffb366;
}
.spb-callout > i, .spb-callout-warning > i, .spb-callout-info > i, .spb-callout-success > i, .spb-callout-error > i {
  flex: 0 0 auto;
  margin-top: .2em;
  color: #ffb366;
}
.spb-callout-success {
  border-left-color: #4caf50;
}
.spb-callout-warning {
  border-left-color: #ffb74d;
}
.spb-callout-error {
  border-left-color: #ef5350;
}
.spb-callout-info {
  border-left-color: #64b5f6;
}
.spb-callout-success > i {
  color: #4caf50;
}
.spb-callout-warning > i {
  color: #ffb74d;
}
.spb-callout-error > i {
  color: #ef5350;
}
.spb-callout-info > i {
  color: #64b5f6;
}

.spb-panel {
  background: #26204b;
  border: 1px solid #2d2652;
  border-radius: 8px;
  box-shadow: 4px 4px 0 #090716, inset 0 1px 0 rgba(255,255,255,.05);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: color 120ms, background-color 120ms, box-shadow 120ms, border-color 120ms, transform 120ms;
}
.spb-panel:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #090716, inset 0 1px 0 rgba(255,255,255,.05);
}
@media (max-width: 48rem) {
  .spb-panel {
    padding: 1rem;
  }
}
.spb-panel > img {
  width: 100%;
  height: auto;
  display: block;
}

.spb-wrap {
  width: 100%;
  max-width: 76rem;
  margin-inline: auto;
}
.spb-copy {
  max-width: 62ch;
  margin-inline: auto;
}
.spb-stack, .spb-stack-center {
  display: block;
}
.spb-stack-center {
  text-align: center;
}
.spb-cluster, .spb-cluster-center {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}
.spb-cluster-center {
  justify-content: center;
}
.spb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  gap: 1rem;
}
.spb-games {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
.spb-menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
@media (min-width: 48rem) {
  .spb-games {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }
  .spb-menu {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}
.spb-items {
  list-style: none;
  padding: 0;
}
.spb-items > li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.spb-items > li + li {
  margin-block-start: .75rem;
}
.spb-items > li > i {
  flex: 0 0 1.25rem;
  text-align: center;
  margin-top: .2em;
  color: #ffb366;
}

.spb-facts-wrap {
  background: #26204b;
  border: 1px solid #2d2652;
  border-radius: 8px;
  box-shadow: 4px 4px 0 #090716, inset 0 1px 0 rgba(255,255,255,.05);
  overflow-x: auto;
  max-width: 100%;
}
.spb-facts {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.spb-facts th, .spb-facts td {
  padding: 0.75rem;
  text-align: start;
  border-bottom: 1px solid #2d2652;
  vertical-align: top;
}
.spb-facts thead th {
  background: #26204b;
  color: #fdfbf7;
  font-weight: 600;
}
.spb-facts tbody tr:last-child td {
  border-bottom: 0;
}
.spb-facts td:first-child {
  color: #bdbbb2;
  font-weight: 600;
}

.spb-jumpbar {
  display: flex;
  flex-wrap: nowrap;
  gap: .5rem;
  overflow-x: auto;
  max-width: 100%;
  min-width: 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-block: .25rem;
}
.spb-jumpbar::-webkit-scrollbar {
  display: none;
}
.spb-jumpbar-link {
  flex: 0 0 auto;
  white-space: nowrap;
  padding: .5rem 1rem;
  border-radius: 4px;
  background: #1c163b;
  border: 1px solid #2d2652;
  color: #e2e0d8;
  font-size: 0.875rem;
  transition: color 120ms, background-color 120ms, box-shadow 120ms, border-color 120ms, transform 120ms;
}
.spb-jumpbar-link:hover {
  border-color: #1b5e41;
  color: #fdfbf7;
}

.spb-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem 1rem;
  border-radius: 9999px;
  background: #26204b;
  border: 1px solid #3d3568;
  color: #fdfbf7;
  font-size: 0.875rem;
}
.spb-tag > i {
  color: #ffb366;
}

.spb-tiny {
  font-size: 0.875rem;
}
.spb-quiet {
  color: #bdbbb2;
}
.spb-centered {
  text-align: center;
}
.spb-tone-accent {
  color: #ffb366;
}
.spb-tone-success {
  color: #4caf50;
}
.spb-tone-warning {
  color: #ffb74d;
}
.spb-tone-error {
  color: #ef5350;
}
.spb-tone-info {
  color: #64b5f6;
}

.spb-game {
  background: #26204b;
  border: 1px solid #2d2652;
  border-radius: 8px;
  box-shadow: 4px 4px 0 #090716, inset 0 1px 0 rgba(255,255,255,.05);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: color 120ms, background-color 120ms, box-shadow 120ms, border-color 120ms, transform 120ms;
}
.spb-game:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #090716, inset 0 1px 0 rgba(255,255,255,.05);
}
.spb-game-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.spb-game-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 200ms;
}
.spb-game:hover .spb-game-media img {
  transform: scale(1.04);
}
.spb-game-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #ffb366;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 150ms;
}
.spb-game:hover .spb-game-play, .spb-game:focus-visible .spb-game-play {
  opacity: 1;
}
@media (hover: none) {
  .spb-game-play {
    opacity: 1;
  }
}
.spb-game-name {
  padding: .6rem .75rem;
  background: #26204b;
}
.spb-game-name h3 {
  margin: 0;
  font-size: 0.875rem;
  color: #fdfbf7;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 48rem) {
  .spb-game-name h3 {
    white-space: normal;
  }
}

.spb-heading {
  text-transform: uppercase;
  letter-spacing: .04em;
}

main > section.spb-zone {
  background: #1c163b;
  padding-block: 2.5rem;
  margin-inline: -3.1915%;
  padding-inline: 3%;
}
@media (max-width: 48rem) {
  main > section.spb-zone {
    padding-block: 1.5rem;
  }
}
.spb-splash {
  background: linear-gradient(180deg, #1c263c 0%, #120e2b 100%);
  padding-block: 2.5rem;
  text-align: center;
  margin-inline: -3.1915%;
  padding-inline: 3%;
}
@media (max-width: 48rem) {
  .spb-splash {
    padding-block: 1.5rem;
  }
}

.spb-btn, .spb-btn-sm, .spb-btn-full, .spb-btn-outline {
  background: linear-gradient(135deg, #ffc182 0%, #ffb366 100%);
  color: #000000;
  border-radius: 4px;
  min-height: 44px;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(255, 179, 102, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 0 1.5rem;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  line-height: 1.2;
  transition: color 120ms, background-color 120ms, box-shadow 120ms, border-color 120ms, transform 120ms;
}
.spb-btn:hover, .spb-btn-sm:hover, .spb-btn-full:hover, .spb-btn-outline:hover {
  background: #ffc991;
  box-shadow: 0 8px 22px rgba(255, 179, 102, 0.4);
}
.spb-btn-sm {
  min-height: 36px;
  padding: 0 1rem;
  font-size: 0.875rem;
}
.spb-btn-full {
  display: flex;
  width: 100%;
}
.spb-btn-outline {
  background: transparent;
  background-image: none;
  color: #fdfbf7;
  border: 1px solid #3d3568;
  box-shadow: none;
}
.spb-btn-outline:hover {
  background: transparent;
  border-color: #1b5e41;
  color: #fdfbf7;
  box-shadow: none;
}

/* page */
.spb-provider-name {
            font-weight: 700;
            letter-spacing: 0.02em;
        }
