/* overflow-guard */
:root {
  --brand-primary: #5D327C;
  --brand-primary-hover: #724196;
  --brand-secondary: #B8B0C5;
  --brand-secondary-hover: #D1CBDE;
  --brand-accent: #4FFFB0;
  --background-main: #0D162B;
  --background-surface: #18223D;
  --background-elevated: #222E51;
  --background-overlay: rgba(13, 22, 43, 0.75);
  --text-primary: #FDFDFD;
  --text-secondary: #E0E0E0;
  --text-muted: #BDBDBD;
  --text-brand-contrast: #FFFFFF;
  --text-link: #C8FFEB;
  --text-link-hover: #E0FFF5;
  --button-bg: #4FFFB0;
  --button-text: #0D162B;
  --button-hover-bg: #3ED99B;
  --button-hover-text: #0D162B;
  --semantic-success: #2ECC71;
  --success: #2ECC71;
  --semantic-error: #E74C3C;
  --error: #E74C3C;
  --semantic-warning: #F1C40F;
  --warning: #F1C40F;
  --semantic-info: #3498DB;
  --info: #3498DB;
  --border-default: #233154;
  --border-strong: #344575;
  --border-brand: #5D327C;
  --font-family-headings: Hind Siliguri, Archivo, sans-serif;
  --font-family-body: Noto Sans Bengali, Manrope, 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: 700;
  --role-weight-h2: 700;
  --role-weight-h3: 600;
  --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.3;
  --line-height-body: 1.55;
  --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: 75rem;
  --content-max-width: 75rem;
  --spacing-reading-max-width: 64ch;
  --reading-max-width: 64ch;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-pill: 9999px;
  --shadow-card: 0 1px 2px rgba(6, 10, 19, 0.5), 0 16px 32px rgba(6, 10, 19, 0.4);
  --shadow-elevated: 0 2px 4px rgba(6, 10, 19, 0.5), 0 24px 48px rgba(6, 10, 19, 0.5);
  --shadow-glow: 0 0 0 1px rgba(79, 255, 176, 0.35), 0 6px 18px rgba(79, 255, 176, 0.35);
  --shadow-inset: inset 0 1px 0 rgba(255,255,255,.06);
  --gradient-brand: linear-gradient(135deg, #5D327C 0%, #724196 100%);
  --gradient-hero: linear-gradient(180deg, #27264B 0%, #0D162B 100%);
  --gradient-surface: linear-gradient(180deg, #222E51 0%, #18223D 100%);
  --gradient-button: none;
  --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: #0D162B;
  color: #E0E0E0;
  font-family: Noto Sans Bengali, Manrope, sans-serif;
  font-weight: 400;
  line-height: 1.55;
  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: Hind Siliguri, Archivo, sans-serif;
  line-height: 1.3;
  letter-spacing: 0;
  color: #FDFDFD;
}
h1 {
  font-size: 1.8rem;
  font-weight: 700;
}
h2 {
  font-size: 1.5rem;
  font-weight: 700;
}
h3 {
  font-size: 1rem;
  font-weight: 600;
}
h4 {
  font-size: 1rem;
  font-weight: 600;
}
p {
  margin: 0;
  color: #E0E0E0;
}
ul, ol {
  margin: 0;
}
a {
  color: #C8FFEB;
  text-decoration: none;
  transition: color 120ms, background-color 120ms, box-shadow 120ms, border-color 120ms, transform 120ms;
}
a:hover {
  color: #E0FFF5;
}
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid #4FFFB0;
  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 > * + *, .inner > * + *, .prose > * + *, .column > * + *, .column--center > * + * {
  margin-block-start: 1.5rem;
}
@media (max-width: 48rem) {
  main > section {
    padding-block: 2.5rem;
  }
  main > section > * + *, main > article > * + *, .inner > * + *, .prose > * + *, .column > * + *, .column--center > * + * {
    margin-block-start: 1rem;
  }
}

.sub {
  font-size: 0.875rem;
}
.soft {
  color: #BDBDBD;
}
.mid {
  text-align: center;
}
.tint--accent {
  color: #4FFFB0;
}
.tint--success {
  color: #2ECC71;
}
.tint--warning {
  color: #F1C40F;
}
.tint--error {
  color: #E74C3C;
}
.tint--info {
  color: #3498DB;
}

.marker {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem 1rem;
  border-radius: 9999px;
  background: #222E51;
  border: 1px solid #344575;
  color: #FDFDFD;
  font-size: 0.875rem;
}
.marker > i {
  color: #4FFFB0;
}

.item, .slab.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;
}

.notice, .notice--warning, .notice--info, .notice--success, .notice--error {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 10px;
  background: #18223D;
  border: 1px solid #233154;
  border-left: 4px solid #4FFFB0;
}
.notice > i, .notice--warning > i, .notice--info > i, .notice--success > i, .notice--error > i {
  flex: 0 0 auto;
  margin-top: .2em;
  color: #4FFFB0;
}
.notice--success {
  border-left-color: #2ECC71;
}
.notice--warning {
  border-left-color: #F1C40F;
}
.notice--error {
  border-left-color: #E74C3C;
}
.notice--info {
  border-left-color: #3498DB;
}
.notice--success > i {
  color: #2ECC71;
}
.notice--warning > i {
  color: #F1C40F;
}
.notice--error > i {
  color: #E74C3C;
}
.notice--info > i {
  color: #3498DB;
}

.quicknav {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 1000;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 4.25rem;
  background: #18223D;
  border-top: 1px solid #233154;
}
.quicknav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  flex: 1 1 0;
  padding: .5rem 0;
  font-size: 0.75rem;
  color: #BDBDBD;
}
.quicknav__item i {
  font-size: 1.25rem;
}
.quicknav__item:hover {
  color: #4FFFB0;
}

.game {
  background: linear-gradient(180deg, #222E51 0%, #18223D 100%);
  border: 1px solid #233154;
  border-radius: 10px;
  box-shadow: 0 1px 2px rgba(6, 10, 19, 0.5), 0 16px 32px rgba(6, 10, 19, 0.4), inset 0 1px 0 rgba(255,255,255,.06);
  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;
}
.game:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(6, 10, 19, 0.5), 0 24px 48px rgba(6, 10, 19, 0.5), inset 0 1px 0 rgba(255,255,255,.06);
}
.game__media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.game__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 200ms;
}
.game:hover .game__media img {
  transform: scale(1.04);
}
.game__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #4FFFB0;
  color: #0D162B;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 150ms;
}
.game:hover .game__play, .game:focus-visible .game__play {
  opacity: 1;
}
@media (hover: none) {
  .game__play {
    opacity: 1;
  }
}
.game {
  position: relative;
}
.game__name {
  position: absolute;
  inset: auto 0 0 0;
  padding: .6rem .75rem;
  background: linear-gradient(180deg, transparent 0%, rgba(13, 22, 43, 0.75) 100%);
}
.game__name h3 {
  margin: 0;
  font-size: 0.875rem;
  color: #FDFDFD;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 48rem) {
  .game__name h3 {
    white-space: normal;
  }
}

.cta, .cta--sm, .cta--full, .cta--outline {
  background: #4FFFB0;
  color: #0D162B;
  border-radius: 9999px;
  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(6, 10, 19, 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: #3ED99B;
  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(6, 10, 19, 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 #344575;
  box-shadow: none;
}
.cta--outline:hover {
  background: transparent;
  border-color: #5D327C;
  color: #FDFDFD;
  box-shadow: none;
}

.foot {
  background: #0D162B;
  border-top: 1px solid #233154;
  padding: 3rem 3% 2rem;
  color: #BDBDBD;
}
.foot__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  text-align: center;
}
.foot__col > p, .foot__col > h3 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #FDFDFD;
  margin: 0 0 .75rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.foot__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.foot__col li + li {
  margin-block-start: .5rem;
}
.foot__col a {
  color: #BDBDBD;
  font-size: 0.875rem;
}
.foot__col a:hover {
  color: #E0FFF5;
}
.foot__meta {
  margin-block-start: 2rem;
  padding-block-start: 1.5rem;
  border-top: 1px solid #233154;
  text-align: center;
  font-size: 0.875rem;
}
.foot__meta > * + * {
  margin-block-start: .5rem;
}

.badge, .badge--success, .badge--warning, .badge--error, .badge--info {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #5D327C 0%, #724196 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-weight: 700;
}
.badge--success {
  background: #2ECC71;
  color: #FFF;
}
.badge--warning {
  background: #F1C40F;
  color: #FFF;
}
.badge--error {
  background: #E74C3C;
  color: #FFF;
}
.badge--info {
  background: #3498DB;
  color: #FFF;
}

main > section.layer {
  background: #18223D;
  padding-block: 4.5rem;
  margin-inline: -3.1915%;
  padding-inline: 3%;
}
@media (max-width: 48rem) {
  main > section.layer {
    padding-block: 2.5rem;
  }
}
.opening {
  background: linear-gradient(180deg, #27264B 0%, #0D162B 100%);
  padding-block: 4.5rem;
  text-align: center;
  margin-inline: -3.1915%;
  padding-inline: 3%;
}
@media (max-width: 48rem) {
  .opening {
    padding-block: 2.5rem;
  }
}

.caption {
  position: relative;
}
.caption::before {
  content: "";
  display: block;
  width: 2.5rem;
  height: 3px;
  background: #4FFFB0;
  border-radius: 2px;
  margin-bottom: .6rem;
}

.chips {
  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;
}
.chips::-webkit-scrollbar {
  display: none;
}
.chips__link {
  flex: 0 0 auto;
  white-space: nowrap;
  padding: .5rem 1rem;
  border-radius: 6px;
  background: #18223D;
  border: 1px solid #233154;
  color: #E0E0E0;
  font-size: 0.875rem;
  transition: color 120ms, background-color 120ms, box-shadow 120ms, border-color 120ms, transform 120ms;
}
.chips__link:hover {
  border-color: #5D327C;
  color: #FDFDFD;
}

.fold {
  background: linear-gradient(180deg, #222E51 0%, #18223D 100%);
  border: 1px solid #233154;
  border-radius: 10px;
  box-shadow: 0 1px 2px rgba(6, 10, 19, 0.5), 0 16px 32px rgba(6, 10, 19, 0.4), inset 0 1px 0 rgba(255,255,255,.06);
  transition: color 120ms, background-color 120ms, box-shadow 120ms, border-color 120ms, transform 120ms;
}
.fold + .fold {
  margin-block-start: 1rem;
}
.fold[open] {
  border-color: #5D327C;
}
.fold__q {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 2rem;
  cursor: pointer;
  list-style: none;
}
.fold__q::-webkit-details-marker {
  display: none;
}
.fold__q h3 {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
}
.fold__q::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  flex: 0 0 auto;
  color: #4FFFB0;
  transition: transform 200ms;
}
.fold[open] .fold__q::after {
  transform: rotate(180deg);
}
.fold__a {
  margin: 0;
  padding: 0 2rem 2rem;
}
@media (max-width: 48rem) {
  .fold__q {
    padding: 1.25rem;
  }
  .fold__a {
    padding: 0 1.25rem 1.25rem;
  }
}

.head {
  background: #0D162B;
  border-bottom: 1px solid #233154;
  padding: .75rem 3%;
  position: sticky;
  top: 0;
  z-index: 100;
}
.head__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.head__brand {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: #FDFDFD;
}
.head__brand img {
  border-radius: 6px;
}
.head__brand strong {
  font-size: 16px;
  font-weight: 400;
}
.head__actions {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.path {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  padding: 1rem 0;
  font-size: 0.875rem;
  color: #E0E0E0;
}
.path a {
  color: #C8FFEB;
}
.path span {
  color: #FDFDFD;
}

.datatable__wrap {
  background: linear-gradient(180deg, #222E51 0%, #18223D 100%);
  border: 1px solid #233154;
  border-radius: 10px;
  box-shadow: 0 1px 2px rgba(6, 10, 19, 0.5), 0 16px 32px rgba(6, 10, 19, 0.4), inset 0 1px 0 rgba(255,255,255,.06);
  overflow-x: auto;
  max-width: 100%;
}
.datatable {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.datatable th, .datatable td {
  padding: 1rem;
  text-align: start;
  border-bottom: 1px solid #233154;
  vertical-align: top;
}
.datatable thead th {
  background: #222E51;
  color: #FDFDFD;
  font-weight: 600;
}
.datatable tbody tr:last-child td {
  border-bottom: 0;
}
.datatable td:first-child {
  color: #BDBDBD;
  font-weight: 600;
}

.inner {
  width: 100%;
  max-width: 75rem;
  margin-inline: auto;
}
.prose {
  max-width: 64ch;
  margin-inline: auto;
}
.column, .column--center {
  display: block;
}
.column--center {
  text-align: center;
}
.inline, .inline--center {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.inline--center {
  justify-content: center;
}
.matrix {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  gap: 1.5rem;
}
.shelf {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
@media (min-width: 48rem) {
  .shelf {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
  }
  .menu {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}
.bullets {
  list-style: none;
  padding: 0;
}
.bullets > li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.bullets > li + li {
  margin-block-start: .75rem;
}
.bullets > li > i {
  flex: 0 0 1.25rem;
  text-align: center;
  margin-top: .2em;
  color: #4FFFB0;
}

.slab {
  background: linear-gradient(180deg, #222E51 0%, #18223D 100%);
  border: 1px solid #233154;
  border-radius: 10px;
  box-shadow: 0 1px 2px rgba(6, 10, 19, 0.5), 0 16px 32px rgba(6, 10, 19, 0.4), inset 0 1px 0 rgba(255,255,255,.06);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: color 120ms, background-color 120ms, box-shadow 120ms, border-color 120ms, transform 120ms;
}
.slab:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(6, 10, 19, 0.5), 0 24px 48px rgba(6, 10, 19, 0.5), inset 0 1px 0 rgba(255,255,255,.06);
}
@media (max-width: 48rem) {
  .slab {
    padding: 1.25rem;
  }
}
.slab > img {
  width: 100%;
  height: auto;
  display: block;
}

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