/* overflow-guard */
:root {
  --brand-primary: #3C4552;
  --brand-primary-hover: #4A5463;
  --brand-secondary: #8E97A3;
  --brand-secondary-hover: #A1A9B5;
  --brand-accent: #D11A3C;
  --background-main: #121A26;
  --background-surface: #1B2432;
  --background-elevated: #252F3F;
  --background-overlay: rgba(18, 26, 38, 0.75);
  --text-primary: #F2F2F2;
  --text-secondary: #D1D1D1;
  --text-muted: #BDBDBD;
  --text-brand-contrast: #FFFFFF;
  --text-link: #FFD6D9;
  --text-link-hover: #FFE4E6;
  --button-bg: #D11A3C;
  --button-text: #FFFFFF;
  --button-hover-bg: #B01534;
  --button-hover-text: #FFFFFF;
  --semantic-success: #2ECC71;
  --success: #2ECC71;
  --semantic-error: #E74C3C;
  --error: #E74C3C;
  --semantic-warning: #F1C40F;
  --warning: #F1C40F;
  --semantic-info: #3498DB;
  --info: #3498DB;
  --border-default: #232D3D;
  --border-strong: #333E4F;
  --border-brand: #D11A3C;
  --font-family-headings: Rajdhani, Noto Sans Bengali, sans-serif;
  --font-family-body: Manrope, 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: 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.35;
  --line-height-body: 1.6;
  --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: 76rem;
  --content-max-width: 76rem;
  --spacing-reading-max-width: 62ch;
  --reading-max-width: 62ch;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-pill: 9999px;
  --shadow-card: 0 4px 12px rgba(8, 12, 17, 0.35);
  --shadow-elevated: 0 8px 24px rgba(8, 12, 17, 0.45);
  --shadow-glow: 0 0 0 1px rgba(209, 26, 60, 0.35), 0 6px 18px rgba(209, 26, 60, 0.35);
  --shadow-inset: inset 0 1px 0 rgba(255,255,255,.08);
  --gradient-brand: linear-gradient(135deg, #3C4552 0%, #4A5463 100%);
  --gradient-hero: linear-gradient(180deg, #222B39 0%, #121A26 100%);
  --gradient-surface: linear-gradient(#252F3F, #252F3F);
  --gradient-button: linear-gradient(135deg, #AB1531 0%, #D11A3C 100%);
  --effects-accent-bar: none;
  --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: #121A26;
  color: #D1D1D1;
  font-family: Manrope, Noto Sans Bengali, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  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: Rajdhani, Noto Sans Bengali, sans-serif;
  line-height: 1.35;
  letter-spacing: 0;
  color: #F2F2F2;
}
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: #D1D1D1;
}
ul, ol {
  margin: 0;
}
a {
  color: #FFD6D9;
  text-decoration: none;
  transition: color 180ms, background-color 180ms, box-shadow 180ms, border-color 180ms, transform 180ms;
}
a:hover {
  color: #FFE4E6;
}
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid #D11A3C;
  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 > * + *, .bx_wrap > * + *, .bx_reading > * + *, .bx_stack > * + *, .bx_stack_center > * + * {
  margin-block-start: 1.25rem;
}
@media (max-width: 48rem) {
  main > section {
    padding-block: 2rem;
  }
  main > section > * + *, main > article > * + *, .bx_wrap > * + *, .bx_reading > * + *, .bx_stack > * + *, .bx_stack_center > * + * {
    margin-block-start: 1rem;
  }
}

.bx_poster {
  background: #252F3F;
  border: 1px solid #333E4F;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(8, 12, 17, 0.35), inset 0 1px 0 rgba(255,255,255,.08);
  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;
}
.bx_poster:hover {
  border-color: #D11A3C;
  box-shadow: 0 0 0 1px rgba(209, 26, 60, 0.35), 0 6px 18px rgba(209, 26, 60, 0.35), inset 0 1px 0 rgba(255,255,255,.08);
}
.bx_poster_media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.bx_poster_media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 200ms;
}
.bx_poster:hover .bx_poster_media img {
  transform: scale(1.04);
}
.bx_poster_play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #D11A3C;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 150ms;
}
.bx_poster:hover .bx_poster_play, .bx_poster:focus-visible .bx_poster_play {
  opacity: 1;
}
@media (hover: none) {
  .bx_poster_play {
    opacity: 1;
  }
}
.bx_poster_name {
  padding: .6rem .75rem;
  background: #252F3F;
}
.bx_poster_name h3 {
  margin: 0;
  font-size: 0.875rem;
  color: #F2F2F2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 48rem) {
  .bx_poster_name h3 {
    white-space: normal;
  }
}

.bx_head {
  background: #121A26;
  border-bottom: 1px solid #232D3D;
  padding: .75rem 3%;
  position: sticky;
  top: 0;
  z-index: 100;
}
.bx_head_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.bx_head_brand {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: #F2F2F2;
}
.bx_head_brand img {
  border-radius: 6px;
}
.bx_head_brand strong {
  font-size: 16px;
  font-weight: 400;
}
.bx_head_actions {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.bx_token {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem 1rem;
  border-radius: 9999px;
  background: #252F3F;
  border: 1px solid #333E4F;
  color: #F2F2F2;
  font-size: 0.875rem;
}
.bx_token > i {
  color: #D11A3C;
}

.bx_cta, .bx_cta_sm, .bx_cta_full, .bx_cta_outline {
  background: linear-gradient(135deg, #AB1531 0%, #D11A3C 100%);
  color: #FFFFFF;
  border-radius: 9999px;
  min-height: 44px;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(209, 26, 60, 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 180ms, background-color 180ms, box-shadow 180ms, border-color 180ms, transform 180ms;
}
.bx_cta:hover, .bx_cta_sm:hover, .bx_cta_full:hover, .bx_cta_outline:hover {
  background: #B01534;
  box-shadow: 0 8px 22px rgba(209, 26, 60, 0.4);
}
.bx_cta_sm {
  min-height: 36px;
  padding: 0 1rem;
  font-size: 0.875rem;
}
.bx_cta_full {
  display: flex;
  width: 100%;
}
.bx_cta_outline {
  background: transparent;
  background-image: none;
  color: #F2F2F2;
  border: 1px solid #333E4F;
  box-shadow: none;
}
.bx_cta_outline:hover {
  background: transparent;
  border-color: #D11A3C;
  color: #F2F2F2;
  box-shadow: none;
}

.bx_crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  padding: 1rem 0;
  font-size: 0.875rem;
  color: #D1D1D1;
}
.bx_crumbs a {
  color: #FFD6D9;
}
.bx_crumbs span {
  color: #F2F2F2;
}

.bx_bottom {
  background: #121A26;
  border-top: 1px solid #232D3D;
  padding: 3rem 3% 2rem;
  color: #BDBDBD;
}
.bx_bottom_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  text-align: center;
}
.bx_bottom_col > p, .bx_bottom_col > h3 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #F2F2F2;
  margin: 0 0 .75rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.bx_bottom_col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.bx_bottom_col li + li {
  margin-block-start: .5rem;
}
.bx_bottom_col a {
  color: #BDBDBD;
  font-size: 0.875rem;
}
.bx_bottom_col a:hover {
  color: #FFE4E6;
}
.bx_bottom_meta {
  margin-block-start: 2rem;
  padding-block-start: 1.5rem;
  border-top: 1px solid #232D3D;
  text-align: center;
  font-size: 0.875rem;
}
.bx_bottom_meta > * + * {
  margin-block-start: .5rem;
}

.bx_alert, .bx_alert_warning, .bx_alert_info, .bx_alert_success, .bx_alert_error {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 10px;
  background: #1B2432;
  border: 1px solid #232D3D;
  border-left: 4px solid #D11A3C;
}
.bx_alert > i, .bx_alert_warning > i, .bx_alert_info > i, .bx_alert_success > i, .bx_alert_error > i {
  flex: 0 0 auto;
  margin-top: .2em;
  color: #D11A3C;
}
.bx_alert_success {
  border-left-color: #2ECC71;
}
.bx_alert_warning {
  border-left-color: #F1C40F;
}
.bx_alert_error {
  border-left-color: #E74C3C;
}
.bx_alert_info {
  border-left-color: #3498DB;
}
.bx_alert_success > i {
  color: #2ECC71;
}
.bx_alert_warning > i {
  color: #F1C40F;
}
.bx_alert_error > i {
  color: #E74C3C;
}
.bx_alert_info > i {
  color: #3498DB;
}

.bx_fold {
  background: #252F3F;
  border: 1px solid #333E4F;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(8, 12, 17, 0.35), inset 0 1px 0 rgba(255,255,255,.08);
  transition: color 180ms, background-color 180ms, box-shadow 180ms, border-color 180ms, transform 180ms;
}
.bx_fold + .bx_fold {
  margin-block-start: 1rem;
}
.bx_fold[open] {
  border-color: #D11A3C;
}
.bx_fold_q {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  cursor: pointer;
  list-style: none;
}
.bx_fold_q::-webkit-details-marker {
  display: none;
}
.bx_fold_q h3 {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
}
.bx_fold_q::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  flex: 0 0 auto;
  color: #D11A3C;
  transition: transform 200ms;
}
.bx_fold[open] .bx_fold_q::after {
  transform: rotate(180deg);
}
.bx_fold_a {
  margin: 0;
  padding: 0 1.5rem 1.5rem;
}
@media (max-width: 48rem) {
  .bx_fold_q {
    padding: 1rem;
  }
  .bx_fold_a {
    padding: 0 1rem 1rem;
  }
}

.bx_minor {
  font-size: 0.875rem;
}
.bx_muted {
  color: #BDBDBD;
}
.bx_axis {
  text-align: center;
}
.bx_hue_accent {
  color: #D11A3C;
}
.bx_hue_success {
  color: #2ECC71;
}
.bx_hue_warning {
  color: #F1C40F;
}
.bx_hue_error {
  color: #E74C3C;
}
.bx_hue_info {
  color: #3498DB;
}

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

.bx_quicknav {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 1000;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 4.25rem;
  background: #1B2432;
  border-top: 1px solid #232D3D;
}
.bx_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;
}
.bx_quicknav_item i {
  font-size: 1.25rem;
}
.bx_quicknav_item:hover {
  color: #D11A3C;
}

.bx_scroller {
  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;
}
.bx_scroller::-webkit-scrollbar {
  display: none;
}
.bx_scroller_link {
  flex: 0 0 auto;
  white-space: nowrap;
  padding: .5rem 1rem;
  border-radius: 6px;
  background: #1B2432;
  border: 1px solid #232D3D;
  color: #D1D1D1;
  font-size: 0.875rem;
  transition: color 180ms, background-color 180ms, box-shadow 180ms, border-color 180ms, transform 180ms;
}
.bx_scroller_link:hover {
  border-color: #D11A3C;
  color: #F2F2F2;
}

.bx_facts_wrap {
  background: #252F3F;
  border: 1px solid #333E4F;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(8, 12, 17, 0.35), inset 0 1px 0 rgba(255,255,255,.08);
  overflow-x: auto;
  max-width: 100%;
}
.bx_facts {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.bx_facts th, .bx_facts td {
  padding: 1rem;
  text-align: start;
  border-bottom: 1px solid #232D3D;
  vertical-align: top;
}
.bx_facts thead th {
  background: #252F3F;
  color: #F2F2F2;
  font-weight: 600;
}
.bx_facts tbody tr:last-child td {
  border-bottom: 0;
}
.bx_facts td:first-child {
  color: #BDBDBD;
  font-weight: 600;
}

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

.bx_orb, .bx_orb_success, .bx_orb_warning, .bx_orb_error, .bx_orb_info {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #3C4552 0%, #4A5463 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-weight: 700;
}
.bx_orb_success {
  background: #2ECC71;
  color: #FFF;
}
.bx_orb_warning {
  background: #F1C40F;
  color: #FFF;
}
.bx_orb_error {
  background: #E74C3C;
  color: #FFF;
}
.bx_orb_info {
  background: #3498DB;
  color: #FFF;
}

.bx_panel {
  background: #252F3F;
  border: 1px solid #333E4F;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(8, 12, 17, 0.35), inset 0 1px 0 rgba(255,255,255,.08);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: color 180ms, background-color 180ms, box-shadow 180ms, border-color 180ms, transform 180ms;
}
.bx_panel:hover {
  border-color: #D11A3C;
  box-shadow: 0 0 0 1px rgba(209, 26, 60, 0.35), 0 6px 18px rgba(209, 26, 60, 0.35), inset 0 1px 0 rgba(255,255,255,.08);
}
@media (max-width: 48rem) {
  .bx_panel {
    padding: 1rem;
  }
}
.bx_panel > img {
  width: 100%;
  height: auto;
  display: block;
}

.bx_wrap {
  width: 100%;
  max-width: 76rem;
  margin-inline: auto;
}
.bx_reading {
  max-width: 62ch;
  margin-inline: auto;
}
.bx_stack, .bx_stack_center {
  display: block;
}
.bx_stack_center {
  text-align: center;
}
.bx_row, .bx_row_center {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.bx_row_center {
  justify-content: center;
}
.bx_lattice {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  gap: 1.25rem;
}
.bx_lineup {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.bx_cats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
@media (min-width: 48rem) {
  .bx_lineup {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
  }
  .bx_cats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
}
.bx_ticks {
  list-style: none;
  padding: 0;
}
.bx_ticks > li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.bx_ticks > li + li {
  margin-block-start: .75rem;
}
.bx_ticks > li > i {
  flex: 0 0 1.25rem;
  text-align: center;
  margin-top: .2em;
  color: #D11A3C;
}

main > section.bx_zone {
  background: #1B2432;
  border-top: 1px solid #232D3D;
  border-bottom: 1px solid #232D3D;
  padding-block: 3.5rem;
  margin-inline: -3.1915%;
  padding-inline: 3%;
}
@media (max-width: 48rem) {
  main > section.bx_zone {
    padding-block: 2rem;
  }
}
.bx_splash {
  background: linear-gradient(180deg, #222B39 0%, #121A26 100%);
  padding-block: 3.5rem;
  text-align: center;
  margin-inline: -3.1915%;
  padding-inline: 3%;
}
@media (max-width: 48rem) {
  .bx_splash {
    padding-block: 2rem;
  }
}

/* page */
.bx_provider_name {
            font-weight: 700;
            letter-spacing: 0.02em;
            font-size: 1.1rem;
            display: block;
            margin-bottom: 0.25rem;
        }
