/* overflow-guard */
:root {
  --brand-primary: #b21e31;
  --brand-primary-hover: #c42a3d;
  --brand-secondary: #a8a9ad;
  --brand-secondary-hover: #bdbcc1;
  --brand-accent: #008b8b;
  --background-main: #0d1021;
  --background-surface: #181c30;
  --background-elevated: #222742;
  --background-overlay: rgba(13, 16, 33, 0.75);
  --text-primary: #f5f5f7;
  --text-secondary: #d1d1d6;
  --text-muted: #b0b0b8;
  --text-brand-contrast: #ffffff;
  --text-link: #b2ebf2;
  --text-link-hover: #e0f7fa;
  --button-bg: #008b8b;
  --button-text: #ffffff;
  --button-hover-bg: #00a8a8;
  --button-hover-text: #ffffff;
  --semantic-success: #2e7d32;
  --success: #2e7d32;
  --semantic-error: #c62828;
  --error: #c62828;
  --semantic-warning: #f9a825;
  --warning: #f9a825;
  --semantic-info: #1565c0;
  --info: #1565c0;
  --border-default: #242a45;
  --border-strong: #353c5c;
  --border-brand: #b21e31;
  --font-family-headings: Hind Siliguri, Sora, sans-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: 600;
  --role-weight-h2: 600;
  --role-weight-h3: 500;
  --role-weight-h4: 500;
  --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.25;
  --line-height-body: 1.55;
  --letter-spacing-heading: 0;
  --letter-spacing-body: 0;
  --spacing-section-desktop: 3.5rem;
  --section-desktop: 3.5rem;
  --spacing-item-desktop: 1.25rem;
  --item-desktop: 1.25rem;
  --spacing-section-mobile: 2rem;
  --section-mobile: 2rem;
  --spacing-item-mobile: 1rem;
  --item-mobile: 1rem;
  --spacing-container-pad-desktop: 2rem;
  --container-pad-desktop: 2rem;
  --spacing-container-pad-mobile: 1rem;
  --container-pad-mobile: 1rem;
  --spacing-card-pad-desktop: 1.5rem;
  --card-pad-desktop: 1.5rem;
  --spacing-card-pad-mobile: 1rem;
  --card-pad-mobile: 1rem;
  --spacing-content-max-width: 80rem;
  --content-max-width: 80rem;
  --spacing-reading-max-width: 68ch;
  --reading-max-width: 68ch;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  --shadow-card: 0 8px 24px rgba(6, 7, 15, 0.4);
  --shadow-elevated: 0 12px 32px rgba(6, 7, 15, 0.5);
  --shadow-glow: 0 0 0 1px rgba(0, 139, 139, 0.35), 0 6px 18px rgba(0, 139, 139, 0.35);
  --shadow-inset: inset 0 1px 0 rgba(255,255,255,.06);
  --gradient-brand: linear-gradient(135deg, #b21e31 0%, #c42a3d 100%);
  --gradient-hero: linear-gradient(180deg, #3a1c30 0%, #0d1021 100%);
  --gradient-surface: linear-gradient(135deg, #181c30 0%, #222742 100%);
  --gradient-button: none;
  --effects-accent-bar: #008b8b;
  --recipes-transition: color 180ms, background-color 180ms, box-shadow 180ms, border-color 180ms, transform 180ms;
  --transition: color 180ms, background-color 180ms, box-shadow 180ms, border-color 180ms, transform 180ms;
}
*, *::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: #0d1021;
  color: #d1d1d6;
  font-family: Noto Sans Bengali, Source Sans 3, sans-serif;
  font-weight: 400;
  line-height: 1.55;
  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: Hind Siliguri, Sora, sans-serif;
  line-height: 1.25;
  letter-spacing: 0;
  color: #f5f5f7;
}
h1 {
  font-size: 1.8rem;
  font-weight: 600;
}
h2 {
  font-size: 1.5rem;
  font-weight: 600;
}
h3 {
  font-size: 1rem;
  font-weight: 500;
}
h4 {
  font-size: 1rem;
  font-weight: 500;
}
p {
  margin: 0;
  color: #d1d1d6;
}
ul, ol {
  margin: 0;
}
a {
  color: #b2ebf2;
  text-decoration: none;
  transition: color 180ms, background-color 180ms, box-shadow 180ms, border-color 180ms, transform 180ms;
}
a:hover {
  color: #e0f7fa;
}
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid #008b8b;
  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: 3.5rem;
}
main > section > * + *, main > article > * + *, .slxInner > * + *, .slxMeasure > * + *, .slxFlow > * + *, .slxFlowCenter > * + * {
  margin-block-start: 1.25rem;
}
@media (max-width: 48rem) {
  main > section {
    padding-block: 2rem;
  }
  main > section > * + *, main > article > * + *, .slxInner > * + *, .slxMeasure > * + *, .slxFlow > * + *, .slxFlowCenter > * + * {
    margin-block-start: 1rem;
  }
}

.slxInner {
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
}
.slxMeasure {
  max-width: 68ch;
  margin-inline: auto;
}
.slxFlow, .slxFlowCenter {
  display: block;
}
.slxFlowCenter {
  text-align: center;
}
.slxRow, .slxRowCenter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.slxRowCenter {
  justify-content: center;
}
.slxGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  gap: 1.25rem;
}
.slxLineup {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.slxPicks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
@media (min-width: 48rem) {
  .slxLineup {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
  }
  .slxPicks {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
}
.slxItems {
  list-style: none;
  padding: 0;
}
.slxItems > li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.slxItems > li + li {
  margin-block-start: .75rem;
}
.slxItems > li > i {
  flex: 0 0 1.25rem;
  text-align: center;
  margin-top: .2em;
  color: #008b8b;
}

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

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

.slxTiny {
  font-size: 0.875rem;
}
.slxQuiet {
  color: #b0b0b8;
}
.slxCentered {
  text-align: center;
}
.slxToneAccent {
  color: #008b8b;
}
.slxToneSuccess {
  color: #2e7d32;
}
.slxToneWarning {
  color: #f9a825;
}
.slxToneError {
  color: #c62828;
}
.slxToneInfo {
  color: #1565c0;
}

.slxHead {
  background: #0d1021;
  border-bottom: 1px solid #242a45;
  padding: .75rem 3%;
  position: sticky;
  top: 0;
  z-index: 100;
}
.slxHeadInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.slxHeadBrand {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: #f5f5f7;
}
.slxHeadBrand img {
  border-radius: 8px;
}
.slxHeadBrand strong {
  font-size: 16px;
  font-weight: 400;
}
.slxHeadActions {
  display: flex;
  align-items: center;
  gap: .5rem;
}

main > section.slxStripe {
  background: linear-gradient(180deg, #181c30 0%, #0d1021 100%);
  padding-block: 3.5rem;
}
@media (max-width: 48rem) {
  main > section.slxStripe {
    padding-block: 2rem;
  }
}
.slxIntro {
  background: linear-gradient(180deg, #3a1c30 0%, #0d1021 100%);
  padding-block: 3.5rem;
  text-align: center;
  margin-inline: -3.1915%;
  padding-inline: 3%;
}
@media (max-width: 48rem) {
  .slxIntro {
    padding-block: 2rem;
  }
}

.slxBreadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  padding: 1rem 0;
  font-size: 0.875rem;
  color: #d1d1d6;
}
.slxBreadcrumb a {
  color: #b2ebf2;
}
.slxBreadcrumb span {
  color: #f5f5f7;
}

.slxScroller {
  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;
}
.slxScroller::-webkit-scrollbar {
  display: none;
}
.slxScrollerLink {
  flex: 0 0 auto;
  white-space: nowrap;
  padding: .5rem 1rem;
  border-radius: 8px;
  background: #181c30;
  border: 1px solid #242a45;
  color: #d1d1d6;
  font-size: 0.875rem;
  transition: color 180ms, background-color 180ms, box-shadow 180ms, border-color 180ms, transform 180ms;
}
.slxScrollerLink:hover {
  border-color: #b21e31;
  color: #f5f5f7;
}

.slxGamecard {
  background: rgba(34, 39, 66, 0.65);
  border: 1px solid #242a45;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(6, 7, 15, 0.4), inset 0 1px 0 rgba(255,255,255,.06);
  border-top: 3px solid #008b8b;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: color 180ms, background-color 180ms, box-shadow 180ms, border-color 180ms, transform 180ms;
}
.slxGamecard:hover {
  border-color: #b21e31;
  box-shadow: 0 12px 32px rgba(6, 7, 15, 0.5), inset 0 1px 0 rgba(255,255,255,.06);
}
.slxGamecardMedia {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.slxGamecardMedia img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 200ms;
}
.slxGamecard:hover .slxGamecardMedia img {
  transform: scale(1.04);
}
.slxGamecardPlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #008b8b;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 150ms;
}
.slxGamecard:hover .slxGamecardPlay, .slxGamecard:focus-visible .slxGamecardPlay {
  opacity: 1;
}
@media (hover: none) {
  .slxGamecardPlay {
    opacity: 1;
  }
}
.slxGamecardName {
  padding: .6rem .75rem;
  background: #222742;
}
.slxGamecardName h3 {
  margin: 0;
  font-size: 0.875rem;
  color: #f5f5f7;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 48rem) {
  .slxGamecardName h3 {
    white-space: normal;
  }
}

.slxTableWrap {
  background: rgba(34, 39, 66, 0.65);
  border: 1px solid #242a45;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(6, 7, 15, 0.4), inset 0 1px 0 rgba(255,255,255,.06);
  border-top: 3px solid #008b8b;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow-x: auto;
  max-width: 100%;
}
.slxTable {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.slxTable th, .slxTable td {
  padding: 1rem;
  text-align: start;
  border-bottom: 1px solid #242a45;
  vertical-align: top;
}
.slxTable thead th {
  background: #222742;
  color: #f5f5f7;
  font-weight: 600;
}
.slxTable tbody tr:last-child td {
  border-bottom: 0;
}
.slxTable td:first-child {
  color: #b0b0b8;
  font-weight: 600;
}

.slxBox {
  background: rgba(34, 39, 66, 0.65);
  border: 1px solid #242a45;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(6, 7, 15, 0.4), inset 0 1px 0 rgba(255,255,255,.06);
  border-top: 3px solid #008b8b;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: color 180ms, background-color 180ms, box-shadow 180ms, border-color 180ms, transform 180ms;
}
.slxBox:hover {
  border-color: #b21e31;
  box-shadow: 0 12px 32px rgba(6, 7, 15, 0.5), inset 0 1px 0 rgba(255,255,255,.06);
}
@media (max-width: 48rem) {
  .slxBox {
    padding: 1rem;
  }
}
.slxBox > img {
  width: 100%;
  height: auto;
  display: block;
}

.slxFold {
  background: rgba(34, 39, 66, 0.65);
  border: 1px solid #242a45;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(6, 7, 15, 0.4), inset 0 1px 0 rgba(255,255,255,.06);
  border-top: 3px solid #008b8b;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: color 180ms, background-color 180ms, box-shadow 180ms, border-color 180ms, transform 180ms;
}
.slxFold + .slxFold {
  margin-block-start: 1rem;
}
.slxFold[open] {
  border-color: #b21e31;
}
.slxFoldQ {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  cursor: pointer;
  list-style: none;
}
.slxFoldQ::-webkit-details-marker {
  display: none;
}
.slxFoldQ h3 {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
}
.slxFoldQ::after {
  content: "\f0d7";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  flex: 0 0 auto;
  color: #008b8b;
  transition: transform 200ms;
}
.slxFold[open] .slxFoldQ::after {
  transform: rotate(180deg);
}
.slxFoldA {
  margin: 0;
  padding: 0 1.5rem 1.5rem;
}
@media (max-width: 48rem) {
  .slxFoldQ {
    padding: 1rem;
  }
  .slxFoldA {
    padding: 0 1rem 1rem;
  }
}

.slxNotice, .slxNoticeWarning, .slxNoticeInfo, .slxNoticeSuccess, .slxNoticeError {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 16px;
  background: #181c30;
  border: 1px solid #242a45;
  border-left: 4px solid #008b8b;
}
.slxNotice > i, .slxNoticeWarning > i, .slxNoticeInfo > i, .slxNoticeSuccess > i, .slxNoticeError > i {
  flex: 0 0 auto;
  margin-top: .2em;
  color: #008b8b;
}
.slxNoticeSuccess {
  border-left-color: #2e7d32;
}
.slxNoticeWarning {
  border-left-color: #f9a825;
}
.slxNoticeError {
  border-left-color: #c62828;
}
.slxNoticeInfo {
  border-left-color: #1565c0;
}
.slxNoticeSuccess > i {
  color: #2e7d32;
}
.slxNoticeWarning > i {
  color: #f9a825;
}
.slxNoticeError > i {
  color: #c62828;
}
.slxNoticeInfo > i {
  color: #1565c0;
}

.slxNavbar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 1000;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 4.5rem;
  background: #181c30;
  border-top: 1px solid #242a45;
}
.slxNavbarItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  flex: 1 1 0;
  padding: .5rem 0;
  font-size: 0.75rem;
  color: #b0b0b8;
}
.slxNavbarItem i {
  font-size: 1.25rem;
}
.slxNavbarItem:hover {
  color: #008b8b;
}

.slxEmblem, .slxEmblemSuccess, .slxEmblemWarning, .slxEmblemError, .slxEmblemInfo {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #b21e31 0%, #c42a3d 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-weight: 700;
}
.slxEmblemSuccess {
  background: #2e7d32;
  color: #fff;
}
.slxEmblemWarning {
  background: #f9a825;
  color: #fff;
}
.slxEmblemError {
  background: #c62828;
  color: #fff;
}
.slxEmblemInfo {
  background: #1565c0;
  color: #fff;
}

.slxPill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem 1rem;
  border-radius: 9999px;
  background: #222742;
  border: 1px solid #353c5c;
  color: #f5f5f7;
  font-size: 0.875rem;
}
.slxPill > i {
  color: #008b8b;
}

.slxBase {
  background: #0d1021;
  border-top: 1px solid #242a45;
  padding: 3rem 3% 2rem;
  color: #b0b0b8;
}
.slxBaseGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  text-align: center;
}
.slxBaseCol > p, .slxBaseCol > h3 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #f5f5f7;
  margin: 0 0 .75rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.slxBaseCol ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.slxBaseCol li + li {
  margin-block-start: .5rem;
}
.slxBaseCol a {
  color: #b0b0b8;
  font-size: 0.875rem;
}
.slxBaseCol a:hover {
  color: #e0f7fa;
}
.slxBaseMeta {
  margin-block-start: 2rem;
  padding-block-start: 1.5rem;
  border-top: 1px solid #242a45;
  text-align: center;
  font-size: 0.875rem;
}
.slxBaseMeta > * + * {
  margin-block-start: .5rem;
}

.slxPress, .slxPressSm, .slxPressFull, .slxPressOutline {
  background: #008b8b;
  color: #ffffff;
  border-radius: 16px;
  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, 7, 15, 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 180ms, background-color 180ms, box-shadow 180ms, border-color 180ms, transform 180ms;
}
.slxPress:hover, .slxPressSm:hover, .slxPressFull:hover, .slxPressOutline:hover {
  background: #00a8a8;
  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, 7, 15, 0.45);
}
.slxPressSm {
  min-height: 36px;
  padding: 0 1rem;
  font-size: 0.875rem;
}
.slxPressFull {
  display: flex;
  width: 100%;
}
.slxPressOutline {
  background: transparent;
  background-image: none;
  color: #f5f5f7;
  border: 1px solid #353c5c;
  box-shadow: none;
}
.slxPressOutline:hover {
  background: transparent;
  border-color: #b21e31;
  color: #f5f5f7;
  box-shadow: none;
}

/* page */
.slxProviderName {
            font-weight: 700;
            letter-spacing: 0.02em;
            font-size: 1.1rem;
        }
