/* overflow-guard */
:root {
  --brand-primary: #2E5BFF;
  --brand-primary-hover: #4D7CFF;
  --brand-secondary: #A8B2D1;
  --brand-secondary-hover: #C1C9E3;
  --brand-accent: #FF8C32;
  --background-main: #220B12;
  --background-surface: #2D121B;
  --background-elevated: #381822;
  --background-overlay: rgba(34, 11, 18, 0.75);
  --text-primary: #FDFDFD;
  --text-secondary: #E0E0E0;
  --text-muted: #BDBDBD;
  --text-brand-contrast: #FFFFFF;
  --text-link: #D1E4FF;
  --text-link-hover: #F0F5FF;
  --button-bg: #FF8C32;
  --button-text: #000000;
  --button-hover-bg: #FF9D4D;
  --button-hover-text: #000000;
  --semantic-success: #4CAF50;
  --success: #4CAF50;
  --semantic-error: #F44336;
  --error: #F44336;
  --semantic-warning: #FFB300;
  --warning: #FFB300;
  --semantic-info: #2196F3;
  --info: #2196F3;
  --border-default: #3D1A25;
  --border-strong: #522633;
  --border-brand: #2E5BFF;
  --font-family-headings: Noto Serif Bengali, Playfair Display, 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: 700;
  --role-weight-h2: 600;
  --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.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: 75rem;
  --content-max-width: 75rem;
  --spacing-reading-max-width: 64ch;
  --reading-max-width: 64ch;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-pill: 9999px;
  --shadow-card: 4px 4px 0 #110609;
  --shadow-elevated: 6px 6px 0 #110609;
  --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,.05);
  --gradient-brand: linear-gradient(135deg, #2E5BFF 0%, #4D7CFF 100%);
  --gradient-hero: linear-gradient(180deg, #2D224D 0%, #220B12 100%);
  --gradient-surface: linear-gradient(#381822, #381822);
  --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: #220B12;
  color: #E0E0E0;
  font-family: Noto Sans Bengali, Source Sans 3, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  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: Noto Serif Bengali, Playfair Display, 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: 600;
}
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: #D1E4FF;
  text-decoration: none;
  transition: color 180ms, background-color 180ms, box-shadow 180ms, border-color 180ms, transform 180ms;
}
a:hover {
  color: #F0F5FF;
}
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: 3.5rem;
}
main > section > * + *, main > article > * + *, .njInner > * + *, .njProse > * + *, .njFlow > * + *, .njFlowCenter > * + * {
  margin-block-start: 1.25rem;
}
@media (max-width: 48rem) {
  main > section {
    padding-block: 2rem;
  }
  main > section > * + *, main > article > * + *, .njInner > * + *, .njProse > * + *, .njFlow > * + *, .njFlowCenter > * + * {
    margin-block-start: 1rem;
  }
}

.njGame {
  background: #381822;
  border: 1px solid #3D1A25;
  border-radius: 12px;
  box-shadow: 4px 4px 0 #110609, inset 0 1px 0 rgba(255,255,255,.05);
  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;
}
.njGame:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #110609, inset 0 1px 0 rgba(255,255,255,.05);
}
.njGameMedia {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.njGameMedia img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 200ms;
}
.njGame:hover .njGameMedia img {
  transform: scale(1.04);
}
.njGamePlay {
  position: absolute;
  top: .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;
}
.njGame:hover .njGamePlay, .njGame:focus-visible .njGamePlay {
  opacity: 1;
}
@media (hover: none) {
  .njGamePlay {
    opacity: 1;
  }
}
.njGameName {
  padding: .6rem .75rem;
  background: #381822;
}
.njGameName h3 {
  margin: 0;
  font-size: 0.875rem;
  color: #FDFDFD;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 48rem) {
  .njGameName h3 {
    white-space: normal;
  }
}

.njTag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem 1rem;
  border-radius: 9999px;
  background: #381822;
  border: 1px solid #522633;
  color: #FDFDFD;
  font-size: 0.875rem;
}
.njTag > i {
  color: #FF8C32;
}

.njTicker {
  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;
}
.njTicker::-webkit-scrollbar {
  display: none;
}
.njTickerLink {
  flex: 0 0 auto;
  white-space: nowrap;
  padding: .5rem 1rem;
  border-radius: 6px;
  background: #2D121B;
  border: 1px solid #3D1A25;
  color: #E0E0E0;
  font-size: 0.875rem;
  transition: color 180ms, background-color 180ms, box-shadow 180ms, border-color 180ms, transform 180ms;
}
.njTickerLink:hover {
  border-color: #2E5BFF;
  color: #FDFDFD;
}

.njInner {
  width: 100%;
  max-width: 75rem;
  margin-inline: auto;
}
.njProse {
  max-width: 64ch;
  margin-inline: auto;
}
.njFlow, .njFlowCenter {
  display: block;
}
.njFlowCenter {
  text-align: center;
}
.njLine, .njLineCenter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.njLineCenter {
  justify-content: center;
}
.njCells {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  gap: 1.25rem;
}
.njLineup {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.njPicks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
@media (min-width: 48rem) {
  .njLineup {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
  }
  .njPicks {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
}
.njItems {
  list-style: none;
  padding: 0;
}
.njItems > li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.njItems > li + li {
  margin-block-start: .75rem;
}
.njItems > li > i {
  flex: 0 0 1.25rem;
  text-align: center;
  margin-top: .2em;
  color: #FF8C32;
}

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

.njNotice, .njNoticeWarning, .njNoticeInfo, .njNoticeSuccess, .njNoticeError {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 12px;
  background: #2D121B;
  border: 1px solid #3D1A25;
  border-left: 4px solid #FF8C32;
}
.njNotice > i, .njNoticeWarning > i, .njNoticeInfo > i, .njNoticeSuccess > i, .njNoticeError > i {
  flex: 0 0 auto;
  margin-top: .2em;
  color: #FF8C32;
}
.njNoticeSuccess {
  border-left-color: #4CAF50;
}
.njNoticeWarning {
  border-left-color: #FFB300;
}
.njNoticeError {
  border-left-color: #F44336;
}
.njNoticeInfo {
  border-left-color: #2196F3;
}
.njNoticeSuccess > i {
  color: #4CAF50;
}
.njNoticeWarning > i {
  color: #FFB300;
}
.njNoticeError > i {
  color: #F44336;
}
.njNoticeInfo > i {
  color: #2196F3;
}

.njLedgerWrap {
  background: #381822;
  border: 1px solid #3D1A25;
  border-radius: 12px;
  box-shadow: 4px 4px 0 #110609, inset 0 1px 0 rgba(255,255,255,.05);
  overflow-x: auto;
  max-width: 100%;
}
.njLedger {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.njLedger th, .njLedger td {
  padding: 1rem;
  text-align: start;
  border-bottom: 1px solid #3D1A25;
  vertical-align: top;
}
.njLedger thead th {
  background: #381822;
  color: #FDFDFD;
  font-weight: 600;
}
.njLedger tbody tr:last-child td {
  border-bottom: 0;
}
.njLedger td:first-child {
  color: #BDBDBD;
  font-weight: 600;
}

.njPanel {
  background: #381822;
  border: 1px solid #3D1A25;
  border-radius: 12px;
  box-shadow: 4px 4px 0 #110609, inset 0 1px 0 rgba(255,255,255,.05);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: color 180ms, background-color 180ms, box-shadow 180ms, border-color 180ms, transform 180ms;
}
.njPanel:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #110609, inset 0 1px 0 rgba(255,255,255,.05);
}
@media (max-width: 48rem) {
  .njPanel {
    padding: 1rem;
  }
}
.njPanel > img {
  width: 100%;
  height: auto;
  display: block;
}

main > section.njZone {
  background: #2D121B;
  padding-block: 3.5rem;
}
@media (max-width: 48rem) {
  main > section.njZone {
    padding-block: 2rem;
  }
}
.njStage {
  background: linear-gradient(180deg, #2D224D 0%, #220B12 100%);
  padding-block: 3.5rem;
  text-align: center;
  margin-inline: -3.1915%;
  padding-inline: 3%;
}
@media (max-width: 48rem) {
  .njStage {
    padding-block: 2rem;
  }
}

.njButton, .njButtonSm, .njButtonFull, .njButtonOutline {
  background: #FF8C32;
  color: #000000;
  border-radius: 12px;
  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(15, 5, 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 180ms, background-color 180ms, box-shadow 180ms, border-color 180ms, transform 180ms;
}
.njButton:hover, .njButtonSm:hover, .njButtonFull:hover, .njButtonOutline:hover {
  background: #FF9D4D;
  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(15, 5, 8, 0.45);
}
.njButtonSm {
  min-height: 36px;
  padding: 0 1rem;
  font-size: 0.875rem;
}
.njButtonFull {
  display: flex;
  width: 100%;
}
.njButtonOutline {
  background: transparent;
  background-image: none;
  color: #FDFDFD;
  border: 1px solid #522633;
  box-shadow: none;
}
.njButtonOutline:hover {
  background: transparent;
  border-color: #2E5BFF;
  color: #FDFDFD;
  box-shadow: none;
}

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

.njMinor {
  font-size: 0.875rem;
}
.njQuiet {
  color: #BDBDBD;
}
.njAxis {
  text-align: center;
}
.njTintAccent {
  color: #FF8C32;
}
.njTintSuccess {
  color: #4CAF50;
}
.njTintWarning {
  color: #FFB300;
}
.njTintError {
  color: #F44336;
}
.njTintInfo {
  color: #2196F3;
}

.njAccordion {
  background: #381822;
  border: 1px solid #3D1A25;
  border-radius: 12px;
  box-shadow: 4px 4px 0 #110609, inset 0 1px 0 rgba(255,255,255,.05);
  transition: color 180ms, background-color 180ms, box-shadow 180ms, border-color 180ms, transform 180ms;
}
.njAccordion + .njAccordion {
  margin-block-start: 1rem;
}
.njAccordion[open] {
  border-color: #2E5BFF;
}
.njAccordionQ {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  cursor: pointer;
  list-style: none;
}
.njAccordionQ::-webkit-details-marker {
  display: none;
}
.njAccordionQ h3 {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
}
.njAccordionQ::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  flex: 0 0 auto;
  color: #FF8C32;
  transition: transform 200ms;
}
.njAccordion[open] .njAccordionQ::after {
  transform: rotate(180deg);
}
.njAccordionA {
  margin: 0;
  padding: 0 1.5rem 1.5rem;
}
@media (max-width: 48rem) {
  .njAccordionQ {
    padding: 1rem;
  }
  .njAccordionA {
    padding: 0 1rem 1rem;
  }
}

.njDock {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 1000;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 4.5rem;
  background: #2D121B;
  border-top: 1px solid #3D1A25;
}
.njDockItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  flex: 1 1 0;
  padding: .5rem 0;
  font-size: 0.75rem;
  color: #BDBDBD;
}
.njDockItem i {
  font-size: 1.25rem;
}
.njDockItem:hover {
  color: #FF8C32;
}

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

.njTopbar {
  background: #220B12;
  border-bottom: 1px solid #3D1A25;
  padding: .75rem 3%;
  position: sticky;
  top: 0;
  z-index: 100;
}
.njTopbarInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.njTopbarBrand {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: #FDFDFD;
}
.njTopbarBrand img {
  border-radius: 6px;
}
.njTopbarBrand strong {
  font-size: 16px;
  font-weight: 400;
}
.njTopbarActions {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.njDisc, .njDiscSuccess, .njDiscWarning, .njDiscError, .njDiscInfo {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #2E5BFF 0%, #4D7CFF 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-weight: 700;
}
.njDiscSuccess {
  background: #4CAF50;
  color: #FFF;
}
.njDiscWarning {
  background: #FFB300;
  color: #FFF;
}
.njDiscError {
  background: #F44336;
  color: #FFF;
}
.njDiscInfo {
  background: #2196F3;
  color: #FFF;
}

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

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