/* overflow-guard */
:root {
  --brand-primary: #2e5bff;
  --brand-primary-hover: #1e4bcc;
  --brand-secondary: #a5b4fc;
  --brand-secondary-hover: #c7d2fe;
  --brand-accent: #ff8c32;
  --background-main: #1d0a12;
  --background-surface: #29101a;
  --background-elevated: #351622;
  --background-overlay: rgba(29, 10, 18, 0.8);
  --text-primary: #fdfdfd;
  --text-secondary: #e0e0e0;
  --text-muted: #bdbdbd;
  --text-brand-contrast: #ffffff;
  --text-link: #d1e4ff;
  --text-link-hover: #b0c8ff;
  --button-bg: #ff8c32;
  --button-text: #000000;
  --button-hover-bg: #e67a20;
  --button-hover-text: #000000;
  --semantic-success: #4ade80;
  --success: #4ade80;
  --semantic-error: #f87171;
  --error: #f87171;
  --semantic-warning: #fbbf24;
  --warning: #fbbf24;
  --semantic-info: #60a5fa;
  --info: #60a5fa;
  --border-default: #3d1c2b;
  --border-strong: #522638;
  --border-brand: #2e5bff;
  --font-family-headings: Oswald, Noto Sans Bengali, sans-serif;
  --font-family-body: Source Sans 3, Noto Sans Bengali, 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.65;
  --letter-spacing-heading: 0;
  --letter-spacing-body: 0;
  --spacing-section-desktop: 4.5rem;
  --section-desktop: 4.5rem;
  --spacing-item-desktop: 1.5rem;
  --item-desktop: 1.5rem;
  --spacing-section-mobile: 2.5rem;
  --section-mobile: 2.5rem;
  --spacing-item-mobile: 1rem;
  --item-mobile: 1rem;
  --spacing-container-pad-desktop: 2.5rem;
  --container-pad-desktop: 2.5rem;
  --spacing-container-pad-mobile: 1.25rem;
  --container-pad-mobile: 1.25rem;
  --spacing-card-pad-desktop: 2rem;
  --card-pad-desktop: 2rem;
  --spacing-card-pad-mobile: 1.25rem;
  --card-pad-mobile: 1.25rem;
  --spacing-content-max-width: 80rem;
  --content-max-width: 80rem;
  --spacing-reading-max-width: 70ch;
  --reading-max-width: 70ch;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-pill: 9999px;
  --shadow-card: 0 8px 24px rgba(13, 4, 8, 0.4);
  --shadow-elevated: 0 12px 32px rgba(13, 4, 8, 0.5);
  --shadow-glow: 0 0 0 1px rgba(255, 140, 50, 0.35), 0 6px 18px rgba(255, 140, 50, 0.35);
  --shadow-inset: inset 0 1px 0 rgba(255,255,255,.06);
  --gradient-brand: linear-gradient(135deg, #2e5bff 0%, #1e4bcc 100%);
  --gradient-hero: linear-gradient(180deg, #2a204c 0%, #1d0a12 100%);
  --gradient-surface: linear-gradient(135deg, #29101a 0%, #351622 100%);
  --gradient-button: none;
  --effects-accent-bar: #ff8c32;
  --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: #1d0a12;
  color: #e0e0e0;
  font-family: Source Sans 3, Noto Sans Bengali, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  padding-bottom: 4.25rem;
  -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: Oswald, Noto Sans Bengali, sans-serif;
  line-height: 1.35;
  letter-spacing: 0;
  color: #fdfdfd;
}
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: #e0e0e0;
}
ul, ol {
  margin: 0;
}
a {
  color: #d1e4ff;
  text-decoration: none;
  transition: color 120ms, background-color 120ms, box-shadow 120ms, border-color 120ms, transform 120ms;
}
a:hover {
  color: #b0c8ff;
}
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid #ff8c32;
  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: 4.5rem;
}
main > section > * + *, main > article > * + *, .frame > * + *, .narrow > * + *, .stack > * + *, .stack-center > * + * {
  margin-block-start: 1.5rem;
}
@media (max-width: 48rem) {
  main > section {
    padding-block: 2.5rem;
  }
  main > section > * + *, main > article > * + *, .frame > * + *, .narrow > * + *, .stack > * + *, .stack-center > * + * {
    margin-block-start: 1rem;
  }
}

.cta, .cta-sm, .cta-full, .cta-outline {
  background: #ff8c32;
  color: #000000;
  border-radius: 4px;
  min-height: 44px;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.22), inset 0 -1px 0 rgba(0,0,0,.35), 0 2px 6px rgba(13, 4, 8, 0.4);
  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;
}
.cta:hover, .cta-sm:hover, .cta-full:hover, .cta-outline:hover {
  background: #e67a20;
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.22), inset 0 -1px 0 rgba(0,0,0,.35), 0 4px 10px rgba(13, 4, 8, 0.45);
}
.cta-sm {
  min-height: 36px;
  padding: 0 1rem;
  font-size: 0.875rem;
}
.cta-full {
  display: flex;
  width: 100%;
}
.cta-outline {
  background: transparent;
  background-image: none;
  color: #fdfdfd;
  border: 1px solid #522638;
  box-shadow: none;
}
.cta-outline:hover {
  background: transparent;
  border-color: #2e5bff;
  color: #fdfdfd;
  box-shadow: none;
}

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

.tabbar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 1000;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 4.25rem;
  background: #29101a;
  border-top: 1px solid #3d1c2b;
}
.tabbar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  flex: 1 1 0;
  padding: .5rem 0;
  font-size: 0.75rem;
  color: #bdbdbd;
}
.tabbar-item i {
  font-size: 1.25rem;
}
.tabbar-item:hover {
  color: #ff8c32;
}

.small {
  font-size: 0.875rem;
}
.muted {
  color: #bdbdbd;
}
.centered {
  text-align: center;
}
.shade-accent {
  color: #ff8c32;
}
.shade-success {
  color: #4ade80;
}
.shade-warning {
  color: #fbbf24;
}
.shade-error {
  color: #f87171;
}
.shade-info {
  color: #60a5fa;
}

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

.disc, .disc-success, .disc-warning, .disc-error, .disc-info {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 4px;
  background: linear-gradient(135deg, #2e5bff 0%, #1e4bcc 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-weight: 700;
}
.disc-success {
  background: #4ade80;
  color: #fff;
}
.disc-warning {
  background: #fbbf24;
  color: #fff;
}
.disc-error {
  background: #f87171;
  color: #fff;
}
.disc-info {
  background: #60a5fa;
  color: #fff;
}

.gamecard {
  background: linear-gradient(135deg, #29101a 0%, #351622 100%);
  border: 1px solid #3d1c2b;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(13, 4, 8, 0.4), inset 0 1px 0 rgba(255,255,255,.06);
  border-top: 3px solid #ff8c32;
  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;
}
.gamecard:hover {
  background: linear-gradient(135deg, #29101a 0%, #41242f 100%);
  box-shadow: 0 12px 32px rgba(13, 4, 8, 0.5), inset 0 1px 0 rgba(255,255,255,.06);
}
.gamecard-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.gamecard-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 200ms;
}
.gamecard:hover .gamecard-media img {
  transform: scale(1.04);
}
.gamecard-play {
  position: absolute;
  bottom: .5rem;
  right: .5rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #ff8c32;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 150ms;
}
.gamecard:hover .gamecard-play, .gamecard:focus-visible .gamecard-play {
  opacity: 1;
}
@media (hover: none) {
  .gamecard-play {
    opacity: 1;
  }
}
.gamecard-name {
  padding: .6rem .75rem;
  background: #351622;
}
.gamecard-name h3 {
  margin: 0;
  font-size: 0.875rem;
  color: #fdfdfd;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 48rem) {
  .gamecard-name h3 {
    white-space: normal;
  }
}

.notice, .notice-warning, .notice-info, .notice-success, .notice-error {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 8px;
  background: #29101a;
  border: 1px solid #3d1c2b;
  border-left: 4px solid #ff8c32;
}
.notice > i, .notice-warning > i, .notice-info > i, .notice-success > i, .notice-error > i {
  flex: 0 0 auto;
  margin-top: .2em;
  color: #ff8c32;
}
.notice-success {
  border-left-color: #4ade80;
}
.notice-warning {
  border-left-color: #fbbf24;
}
.notice-error {
  border-left-color: #f87171;
}
.notice-info {
  border-left-color: #60a5fa;
}
.notice-success > i {
  color: #4ade80;
}
.notice-warning > i {
  color: #fbbf24;
}
.notice-error > i {
  color: #f87171;
}
.notice-info > i {
  color: #60a5fa;
}

.accordion {
  background: linear-gradient(135deg, #29101a 0%, #351622 100%);
  border: 1px solid #3d1c2b;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(13, 4, 8, 0.4), inset 0 1px 0 rgba(255,255,255,.06);
  border-top: 3px solid #ff8c32;
  transition: color 120ms, background-color 120ms, box-shadow 120ms, border-color 120ms, transform 120ms;
}
.accordion + .accordion {
  margin-block-start: 1rem;
}
.accordion[open] {
  border-color: #2e5bff;
}
.accordion-q {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 2rem;
  cursor: pointer;
  list-style: none;
}
.accordion-q::-webkit-details-marker {
  display: none;
}
.accordion-q h3 {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
}
.accordion-q::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  flex: 0 0 auto;
  color: #ff8c32;
  transition: transform 200ms;
}
.accordion[open] .accordion-q::after {
  transform: rotate(180deg);
}
.accordion-a {
  margin: 0;
  padding: 0 2rem 2rem;
}
@media (max-width: 48rem) {
  .accordion-q {
    padding: 1.25rem;
  }
  .accordion-a {
    padding: 0 1.25rem 1.25rem;
  }
}

.panel {
  background: linear-gradient(135deg, #29101a 0%, #351622 100%);
  border: 1px solid #3d1c2b;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(13, 4, 8, 0.4), inset 0 1px 0 rgba(255,255,255,.06);
  border-top: 3px solid #ff8c32;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: color 120ms, background-color 120ms, box-shadow 120ms, border-color 120ms, transform 120ms;
}
.panel:hover {
  background: linear-gradient(135deg, #29101a 0%, #41242f 100%);
  box-shadow: 0 12px 32px rgba(13, 4, 8, 0.5), inset 0 1px 0 rgba(255,255,255,.06);
}
@media (max-width: 48rem) {
  .panel {
    padding: 1.25rem;
  }
}
.panel > img {
  width: 100%;
  height: auto;
  display: block;
}

main > section.zone {
  background: linear-gradient(180deg, #29101a 0%, #1d0a12 100%);
  padding-block: 4.5rem;
}
@media (max-width: 48rem) {
  main > section.zone {
    padding-block: 2.5rem;
  }
}
.stage {
  background: linear-gradient(180deg, #2a204c 0%, #1d0a12 100%);
  padding-block: 4.5rem;
  text-align: center;
  margin-inline: -3.1915%;
  padding-inline: 3%;
}
@media (max-width: 48rem) {
  .stage {
    padding-block: 2.5rem;
  }
}

.facts-wrap {
  background: linear-gradient(135deg, #29101a 0%, #351622 100%);
  border: 1px solid #3d1c2b;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(13, 4, 8, 0.4), inset 0 1px 0 rgba(255,255,255,.06);
  border-top: 3px solid #ff8c32;
  overflow-x: auto;
  max-width: 100%;
}
.facts {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.facts th, .facts td {
  padding: 1rem;
  text-align: start;
  border-bottom: 1px solid #3d1c2b;
  vertical-align: top;
}
.facts thead th {
  background: #351622;
  color: #fdfdfd;
  font-weight: 600;
}
.facts tbody tr:last-child td {
  border-bottom: 0;
}
.facts td:first-child {
  color: #bdbdbd;
  font-weight: 600;
}

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

.frame {
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
}
.narrow {
  max-width: 70ch;
  margin-inline: auto;
}
.stack, .stack-center {
  display: block;
}
.stack-center {
  text-align: center;
}
.line, .line-center {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.line-center {
  justify-content: center;
}
.matrix {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  gap: 1.5rem;
}
.games {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.blocks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
@media (min-width: 48rem) {
  .games {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
  }
  .blocks {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}
.ticks {
  list-style: none;
  padding: 0;
}
.ticks > li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.ticks > li + li {
  margin-block-start: .75rem;
}
.ticks > li > i {
  flex: 0 0 1.25rem;
  text-align: center;
  margin-top: .2em;
  color: #ff8c32;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  padding: 1rem 0;
  font-size: 0.875rem;
  color: #e0e0e0;
}
.breadcrumb a {
  color: #d1e4ff;
}
.breadcrumb span {
  color: #fdfdfd;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem 1rem;
  border-radius: 9999px;
  background: #351622;
  border: 1px solid #522638;
  color: #fdfdfd;
  font-size: 0.875rem;
}
.tag > i {
  color: #ff8c32;
}

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

.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;
}
.jumpbar::-webkit-scrollbar {
  display: none;
}
.jumpbar-link {
  flex: 0 0 auto;
  white-space: nowrap;
  padding: .5rem 1rem;
  border-radius: 4px;
  background: #29101a;
  border: 1px solid #3d1c2b;
  color: #e0e0e0;
  font-size: 0.875rem;
  transition: color 120ms, background-color 120ms, box-shadow 120ms, border-color 120ms, transform 120ms;
}
.jumpbar-link:hover {
  border-color: #2e5bff;
  color: #fdfdfd;
}

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