/* overflow-guard */
:root {
  --brand-primary: #800020;
  --brand-primary-hover: #9a0028;
  --brand-secondary: #b2a5b5;
  --brand-secondary-hover: #c4b8c6;
  --brand-accent: #70d1ff;
  --background-main: #081c16;
  --background-surface: #122821;
  --background-elevated: #1c342d;
  --background-overlay: rgba(8, 28, 22, 0.8);
  --text-primary: #fdfdfd;
  --text-secondary: #e0e0e0;
  --text-muted: #bdbdbd;
  --text-brand-contrast: #ffffff;
  --text-link: #c0e8ff;
  --text-link-hover: #e0f4ff;
  --button-bg: #70d1ff;
  --button-text: #081c16;
  --button-hover-bg: #4db8ff;
  --button-hover-text: #081c16;
  --semantic-success: #2ecc71;
  --success: #2ecc71;
  --semantic-error: #e74c3c;
  --error: #e74c3c;
  --semantic-warning: #f1c40f;
  --warning: #f1c40f;
  --semantic-info: #3498db;
  --info: #3498db;
  --border-default: #1c342d;
  --border-strong: #2a453d;
  --border-brand: #800020;
  --font-family-headings: Hind Siliguri, Space Grotesk, 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.6;
  --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: 68ch;
  --reading-max-width: 68ch;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  --shadow-card: 4px 4px 0 #040e0b;
  --shadow-elevated: 6px 6px 0 #040e0b;
  --shadow-glow: 0 0 0 1px rgba(112, 209, 255, 0.35), 0 6px 18px rgba(112, 209, 255, 0.35);
  --shadow-inset: inset 0 1px 0 rgba(255,255,255,.05);
  --gradient-brand: linear-gradient(135deg, #800020 0%, #9a0028 100%);
  --gradient-hero: linear-gradient(180deg, #2a1f21 0%, #081c16 100%);
  --gradient-surface: linear-gradient(#1c342d, #1c342d);
  --gradient-button: none;
  --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: #081c16;
  color: #e0e0e0;
  font-family: Noto Sans Bengali, Source Sans 3, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  padding-bottom: 4.75rem;
  -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, Space Grotesk, sans-serif;
  line-height: 1.25;
  letter-spacing: 0;
  color: #fdfdfd;
}
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: #e0e0e0;
}
ul, ol {
  margin: 0;
}
a {
  color: #c0e8ff;
  text-decoration: none;
  transition: color 180ms, background-color 180ms, box-shadow 180ms, border-color 180ms, transform 180ms;
}
a:hover {
  color: #e0f4ff;
}
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid #70d1ff;
  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 > * + *, .jzxFrame > * + *, .jzxMeasure > * + *, .jzxPile > * + *, .jzxPileCenter > * + * {
  margin-block-start: 1.5rem;
}
@media (max-width: 48rem) {
  main > section {
    padding-block: 2.5rem;
  }
  main > section > * + *, main > article > * + *, .jzxFrame > * + *, .jzxMeasure > * + *, .jzxPile > * + *, .jzxPileCenter > * + * {
    margin-block-start: 1rem;
  }
}

.jzxDatatableWrap {
  background: rgba(28, 52, 45, 0.65);
  border: 1px solid #1c342d;
  border-radius: 16px;
  box-shadow: 4px 4px 0 #040e0b, inset 0 1px 0 rgba(255,255,255,.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow-x: auto;
  max-width: 100%;
}
.jzxDatatable {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.jzxDatatable th, .jzxDatatable td {
  padding: 1rem;
  text-align: start;
  border-bottom: 1px solid #1c342d;
  vertical-align: top;
}
.jzxDatatable thead th {
  background: #1c342d;
  color: #fdfdfd;
  font-weight: 600;
}
.jzxDatatable tbody tr:last-child td {
  border-bottom: 0;
}
.jzxDatatable td:first-child {
  color: #bdbdbd;
  font-weight: 600;
}

.jzxOrb, .jzxOrbSuccess, .jzxOrbWarning, .jzxOrbError, .jzxOrbInfo {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #800020 0%, #9a0028 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-weight: 700;
}
.jzxOrbSuccess {
  background: #2ecc71;
  color: #fff;
}
.jzxOrbWarning {
  background: #f1c40f;
  color: #fff;
}
.jzxOrbError {
  background: #e74c3c;
  color: #fff;
}
.jzxOrbInfo {
  background: #3498db;
  color: #fff;
}

.jzxMarker {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem 1rem;
  border-radius: 9999px;
  background: #1c342d;
  border: 1px solid #2a453d;
  color: #fdfdfd;
  font-size: 0.875rem;
}
.jzxMarker > i {
  color: #70d1ff;
}

.jzxFaq {
  background: rgba(28, 52, 45, 0.65);
  border: 1px solid #1c342d;
  border-radius: 16px;
  box-shadow: 4px 4px 0 #040e0b, inset 0 1px 0 rgba(255,255,255,.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: color 180ms, background-color 180ms, box-shadow 180ms, border-color 180ms, transform 180ms;
}
.jzxFaq + .jzxFaq {
  margin-block-start: 1rem;
}
.jzxFaq[open] {
  border-color: #800020;
}
.jzxFaqQ {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 2rem;
  cursor: pointer;
  list-style: none;
}
.jzxFaqQ::-webkit-details-marker {
  display: none;
}
.jzxFaqQ h3 {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
}
.jzxFaqQ::after {
  content: "\f0d7";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  flex: 0 0 auto;
  color: #70d1ff;
  transition: transform 200ms;
}
.jzxFaq[open] .jzxFaqQ::after {
  transform: rotate(180deg);
}
.jzxFaqA {
  margin: 0;
  padding: 0 2rem 2rem;
}
@media (max-width: 48rem) {
  .jzxFaqQ {
    padding: 1.25rem;
  }
  .jzxFaqA {
    padding: 0 1.25rem 1.25rem;
  }
}

.jzxFine {
  font-size: 0.875rem;
}
.jzxMuted {
  color: #bdbdbd;
}
.jzxCentered {
  text-align: center;
}
.jzxShadeAccent {
  color: #70d1ff;
}
.jzxShadeSuccess {
  color: #2ecc71;
}
.jzxShadeWarning {
  color: #f1c40f;
}
.jzxShadeError {
  color: #e74c3c;
}
.jzxShadeInfo {
  color: #3498db;
}

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

.jzxTopbar {
  background: #081c16;
  border-bottom: 1px solid #1c342d;
  padding: .75rem 3%;
  position: sticky;
  top: 0;
  z-index: 100;
}
.jzxTopbarInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.jzxTopbarBrand {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: #fdfdfd;
}
.jzxTopbarBrand img {
  border-radius: 8px;
}
.jzxTopbarBrand strong {
  font-size: 16px;
  font-weight: 400;
}
.jzxTopbarActions {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.jzxFrame {
  width: 100%;
  max-width: 75rem;
  margin-inline: auto;
}
.jzxMeasure {
  max-width: 68ch;
  margin-inline: auto;
}
.jzxPile, .jzxPileCenter {
  display: block;
}
.jzxPileCenter {
  text-align: center;
}
.jzxLine, .jzxLineCenter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.jzxLineCenter {
  justify-content: center;
}
.jzxMosaic {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  gap: 1.5rem;
}
.jzxShowcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.jzxMenu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
@media (min-width: 48rem) {
  .jzxShowcase {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
  }
  .jzxMenu {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}
.jzxChecklist {
  list-style: none;
  padding: 0;
}
.jzxChecklist > li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.jzxChecklist > li + li {
  margin-block-start: .75rem;
}
.jzxChecklist > li > i {
  flex: 0 0 1.25rem;
  text-align: center;
  margin-top: .2em;
  color: #70d1ff;
}

.jzxPress, .jzxPressSm, .jzxPressFull, .jzxPressOutline {
  background: #70d1ff;
  color: #081c16;
  border-radius: 16px;
  min-height: 44px;
  font-weight: 700;
  box-shadow: 0 0 0 1px rgba(112, 209, 255, 0.35), 0 6px 18px rgba(112, 209, 255, 0.35);
  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;
}
.jzxPress:hover, .jzxPressSm:hover, .jzxPressFull:hover, .jzxPressOutline:hover {
  background: #4db8ff;
  box-shadow: 0 0 0 1px rgba(112, 209, 255, 0.5), 0 8px 26px rgba(112, 209, 255, 0.5);
}
.jzxPressSm {
  min-height: 36px;
  padding: 0 1rem;
  font-size: 0.875rem;
}
.jzxPressFull {
  display: flex;
  width: 100%;
}
.jzxPressOutline {
  background: transparent;
  background-image: none;
  color: #fdfdfd;
  border: 1px solid #2a453d;
  box-shadow: none;
}
.jzxPressOutline:hover {
  background: transparent;
  border-color: #800020;
  color: #fdfdfd;
  box-shadow: none;
}

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

.jzxBox {
  background: rgba(28, 52, 45, 0.65);
  border: 1px solid #1c342d;
  border-radius: 16px;
  box-shadow: 4px 4px 0 #040e0b, inset 0 1px 0 rgba(255,255,255,.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: color 180ms, background-color 180ms, box-shadow 180ms, border-color 180ms, transform 180ms;
}
.jzxBox:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #040e0b, inset 0 1px 0 rgba(255,255,255,.05);
}
@media (max-width: 48rem) {
  .jzxBox {
    padding: 1.25rem;
  }
}
.jzxBox > img {
  width: 100%;
  height: auto;
  display: block;
}

.jzxTopic {
  position: relative;
}
.jzxTopic::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #70d1ff 0, #70d1ff 2.5rem, #1c342d 2.5rem, #1c342d 100%);
  margin-bottom: .6rem;
}

.jzxMemo, .jzxMemoWarning, .jzxMemoInfo, .jzxMemoSuccess, .jzxMemoError {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 16px;
  background: #122821;
  border: 1px solid #1c342d;
  border-left: 4px solid #70d1ff;
}
.jzxMemo > i, .jzxMemoWarning > i, .jzxMemoInfo > i, .jzxMemoSuccess > i, .jzxMemoError > i {
  flex: 0 0 auto;
  margin-top: .2em;
  color: #70d1ff;
}
.jzxMemoSuccess {
  border-left-color: #2ecc71;
}
.jzxMemoWarning {
  border-left-color: #f1c40f;
}
.jzxMemoError {
  border-left-color: #e74c3c;
}
.jzxMemoInfo {
  border-left-color: #3498db;
}
.jzxMemoSuccess > i {
  color: #2ecc71;
}
.jzxMemoWarning > i {
  color: #f1c40f;
}
.jzxMemoError > i {
  color: #e74c3c;
}
.jzxMemoInfo > i {
  color: #3498db;
}

.jzxDock {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 1000;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 4.75rem;
  background: #122821;
  border-top: 1px solid #1c342d;
}
.jzxDockItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  flex: 1 1 0;
  padding: .5rem 0;
  font-size: 0.75rem;
  color: #bdbdbd;
}
.jzxDockItem i {
  font-size: 1.25rem;
}
.jzxDockItem:hover {
  color: #70d1ff;
}

.jzxTicker {
  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;
}
.jzxTicker::-webkit-scrollbar {
  display: none;
}
.jzxTickerLink {
  flex: 0 0 auto;
  white-space: nowrap;
  padding: .5rem 1rem;
  border-radius: 8px;
  background: #122821;
  border: 1px solid #1c342d;
  color: #e0e0e0;
  font-size: 0.875rem;
  transition: color 180ms, background-color 180ms, box-shadow 180ms, border-color 180ms, transform 180ms;
}
.jzxTickerLink:hover {
  border-color: #800020;
  color: #fdfdfd;
}

main > section.jzxStripe {
  background: #122821;
  padding-block: 4.5rem;
}
@media (max-width: 48rem) {
  main > section.jzxStripe {
    padding-block: 2.5rem;
  }
}
.jzxHero {
  background: linear-gradient(180deg, #2a1f21 0%, #081c16 100%);
  padding-block: 4.5rem;
  text-align: center;
  margin-inline: -3.1915%;
  padding-inline: 3%;
}
@media (max-width: 48rem) {
  .jzxHero {
    padding-block: 2.5rem;
  }
}

.jzxPoster {
  background: rgba(28, 52, 45, 0.65);
  border: 1px solid #1c342d;
  border-radius: 16px;
  box-shadow: 4px 4px 0 #040e0b, inset 0 1px 0 rgba(255,255,255,.05);
  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;
}
.jzxPoster:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #040e0b, inset 0 1px 0 rgba(255,255,255,.05);
}
.jzxPosterMedia {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.jzxPosterMedia img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 200ms;
}
.jzxPoster:hover .jzxPosterMedia img {
  transform: scale(1.04);
}
.jzxPosterPlay {
  position: absolute;
  top: .5rem;
  right: .5rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #70d1ff;
  color: #081c16;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 150ms;
}
.jzxPoster:hover .jzxPosterPlay, .jzxPoster:focus-visible .jzxPosterPlay {
  opacity: 1;
}
@media (hover: none) {
  .jzxPosterPlay {
    opacity: 1;
  }
}
.jzxPosterName {
  padding: .6rem .75rem;
  background: #1c342d;
}
.jzxPosterName h3 {
  margin: 0;
  font-size: 0.875rem;
  color: #fdfdfd;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 48rem) {
  .jzxPosterName h3 {
    white-space: normal;
  }
}

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

/* page */
.jzxProviderName { font-weight: 700; letter-spacing: 0.02em; color: var(--text-primary); }
