/* overflow-guard */
:root {
  --brand-primary: #1b5e45;
  --brand-primary-hover: #247a5b;
  --brand-secondary: #a8b5b2;
  --brand-secondary-hover: #bccbca;
  --brand-accent: #ffb366;
  --background-main: #121b26;
  --background-surface: #1b2532;
  --background-elevated: #253141;
  --background-overlay: rgba(18, 27, 38, 0.75);
  --text-primary: #fdfbfa;
  --text-secondary: #e2e2e2;
  --text-muted: #bdbdbd;
  --text-brand-contrast: #ffffff;
  --text-link: #ffe5b4;
  --text-link-hover: #fff2d6;
  --button-bg: #ffb366;
  --button-text: #121b26;
  --button-hover-bg: #ffc991;
  --button-hover-text: #121b26;
  --semantic-success: #4caf50;
  --success: #4caf50;
  --semantic-error: #ef5350;
  --error: #ef5350;
  --semantic-warning: #ffb74d;
  --warning: #ffb74d;
  --semantic-info: #64b5f6;
  --info: #64b5f6;
  --border-default: #2a3748;
  --border-strong: #3d4d61;
  --border-brand: #1b5e45;
  --font-family-headings: Hind Siliguri, Rajdhani, 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: 800;
  --role-weight-h2: 700;
  --role-weight-h3: 700;
  --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.25;
  --line-height-body: 1.65;
  --letter-spacing-heading: 0;
  --letter-spacing-body: 0;
  --spacing-section-desktop: 2.5rem;
  --section-desktop: 2.5rem;
  --spacing-item-desktop: 1rem;
  --item-desktop: 1rem;
  --spacing-section-mobile: 1.5rem;
  --section-mobile: 1.5rem;
  --spacing-item-mobile: 0.75rem;
  --item-mobile: 0.75rem;
  --spacing-container-pad-desktop: 1.5rem;
  --container-pad-desktop: 1.5rem;
  --spacing-container-pad-mobile: 1rem;
  --container-pad-mobile: 1rem;
  --spacing-card-pad-desktop: 1rem;
  --card-pad-desktop: 1rem;
  --spacing-card-pad-mobile: 1rem;
  --card-pad-mobile: 1rem;
  --spacing-content-max-width: 74rem;
  --content-max-width: 74rem;
  --spacing-reading-max-width: 66ch;
  --reading-max-width: 66ch;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-pill: 9999px;
  --shadow-card: 4px 4px 0 #090e13;
  --shadow-elevated: 6px 6px 0 #090e13;
  --shadow-glow: 0 0 0 1px rgba(255, 179, 102, 0.35), 0 6px 18px rgba(255, 179, 102, 0.35);
  --shadow-inset: inset 0 1px 0 rgba(255,255,255,.05);
  --gradient-brand: linear-gradient(135deg, #1b5e45 0%, #247a5b 100%);
  --gradient-hero: linear-gradient(180deg, #1b3236 0%, #121b26 100%);
  --gradient-surface: linear-gradient(#253141, #253141);
  --gradient-button: none;
  --effects-accent-bar: none;
  --recipes-transition: color 150ms, background-color 150ms, box-shadow 150ms, border-color 150ms, transform 150ms;
  --transition: color 150ms, background-color 150ms, box-shadow 150ms, border-color 150ms, transform 150ms;
}
*, *::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: #121b26;
  color: #e2e2e2;
  font-family: Noto Sans Bengali, Manrope, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  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, Rajdhani, sans-serif;
  line-height: 1.25;
  letter-spacing: 0;
  color: #fdfbfa;
}
h1 {
  font-size: 1.8rem;
  font-weight: 800;
}
h2 {
  font-size: 1.5rem;
  font-weight: 700;
}
h3 {
  font-size: 1rem;
  font-weight: 700;
}
h4 {
  font-size: 1rem;
  font-weight: 600;
}
p {
  margin: 0;
  color: #e2e2e2;
}
ul, ol {
  margin: 0;
}
a {
  color: #ffe5b4;
  text-decoration: none;
  transition: color 150ms, background-color 150ms, box-shadow 150ms, border-color 150ms, transform 150ms;
}
a:hover {
  color: #fff2d6;
}
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid #ffb366;
  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: 2.5rem;
}
main > section > * + *, main > article > * + *, .njvHolder > * + *, .njvNarrow > * + *, .njvFlow > * + *, .njvFlowCenter > * + * {
  margin-block-start: 1rem;
}
@media (max-width: 48rem) {
  main > section {
    padding-block: 1.5rem;
  }
  main > section > * + *, main > article > * + *, .njvHolder > * + *, .njvNarrow > * + *, .njvFlow > * + *, .njvFlowCenter > * + * {
    margin-block-start: 0.75rem;
  }
}

.njvRoute {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  padding: 1rem 0;
  font-size: 0.875rem;
  color: #e2e2e2;
}
.njvRoute a {
  color: #ffe5b4;
}
.njvRoute span {
  color: #fdfbfa;
}

.njvCaption {
  position: relative;
}
.njvCaption::before {
  content: "";
  display: block;
  width: 3rem;
  height: 6px;
  background-image: repeating-linear-gradient(90deg, #ffb366 0 3px, transparent 3px 6px);
  margin-bottom: .6rem;
}

.njvCallout, .njvCalloutWarning, .njvCalloutInfo, .njvCalloutSuccess, .njvCalloutError {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 8px;
  background: #1b2532;
  border: 1px solid #2a3748;
  border-left: 4px solid #ffb366;
}
.njvCallout > i, .njvCalloutWarning > i, .njvCalloutInfo > i, .njvCalloutSuccess > i, .njvCalloutError > i {
  flex: 0 0 auto;
  margin-top: .2em;
  color: #ffb366;
}
.njvCalloutSuccess {
  border-left-color: #4caf50;
}
.njvCalloutWarning {
  border-left-color: #ffb74d;
}
.njvCalloutError {
  border-left-color: #ef5350;
}
.njvCalloutInfo {
  border-left-color: #64b5f6;
}
.njvCalloutSuccess > i {
  color: #4caf50;
}
.njvCalloutWarning > i {
  color: #ffb74d;
}
.njvCalloutError > i {
  color: #ef5350;
}
.njvCalloutInfo > i {
  color: #64b5f6;
}

.njvDock {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 1000;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 4.5rem;
  background: #1b2532;
  border-top: 1px solid #2a3748;
}
.njvDockItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  flex: 1 1 0;
  padding: .5rem 0;
  font-size: 0.75rem;
  color: #bdbdbd;
}
.njvDockItem i {
  font-size: 1.25rem;
}
.njvDockItem:hover {
  color: #ffb366;
}

.njvHolder {
  width: 100%;
  max-width: 74rem;
  margin-inline: auto;
}
.njvNarrow {
  max-width: 66ch;
  margin-inline: auto;
}
.njvFlow, .njvFlowCenter {
  display: block;
}
.njvFlowCenter {
  text-align: center;
}
.njvCluster, .njvClusterCenter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}
.njvClusterCenter {
  justify-content: center;
}
.njvGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  gap: 1rem;
}
.njvLineup {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
.njvPicks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
@media (min-width: 48rem) {
  .njvLineup {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }
  .njvPicks {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}
.njvPoints {
  list-style: none;
  padding: 0;
}
.njvPoints > li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.njvPoints > li + li {
  margin-block-start: .75rem;
}
.njvPoints > li > i {
  flex: 0 0 1.25rem;
  text-align: center;
  margin-top: .2em;
  color: #ffb366;
}

.njvFooter {
  background: #121b26;
  border-top: 1px solid #2a3748;
  padding: 3rem 3% 2rem;
  color: #bdbdbd;
}
.njvFooterGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  text-align: center;
}
.njvFooterCol > p, .njvFooterCol > h3 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #fdfbfa;
  margin: 0 0 .75rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.njvFooterCol ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.njvFooterCol li + li {
  margin-block-start: .5rem;
}
.njvFooterCol a {
  color: #bdbdbd;
  font-size: 0.875rem;
}
.njvFooterCol a:hover {
  color: #fff2d6;
}
.njvFooterMeta {
  margin-block-start: 2rem;
  padding-block-start: 1.5rem;
  border-top: 1px solid #2a3748;
  text-align: center;
  font-size: 0.875rem;
}
.njvFooterMeta > * + * {
  margin-block-start: .5rem;
}

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

.njvAction, .njvActionSm, .njvActionFull, .njvActionOutline {
  background: #ffb366;
  color: #121b26;
  border-radius: 4px;
  min-height: 44px;
  font-weight: 700;
  box-shadow: 0 0 0 1px rgba(255, 179, 102, 0.35), 0 6px 18px rgba(255, 179, 102, 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 150ms, background-color 150ms, box-shadow 150ms, border-color 150ms, transform 150ms;
}
.njvAction:hover, .njvActionSm:hover, .njvActionFull:hover, .njvActionOutline:hover {
  background: #ffc991;
  box-shadow: 0 0 0 1px rgba(255, 179, 102, 0.5), 0 8px 26px rgba(255, 179, 102, 0.5);
}
.njvActionSm {
  min-height: 36px;
  padding: 0 1rem;
  font-size: 0.875rem;
}
.njvActionFull {
  display: flex;
  width: 100%;
}
.njvActionOutline {
  background: transparent;
  background-image: none;
  color: #fdfbfa;
  border: 1px solid #3d4d61;
  box-shadow: none;
}
.njvActionOutline:hover {
  background: transparent;
  border-color: #1b5e45;
  color: #fdfbfa;
  box-shadow: none;
}

.njvRail {
  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;
}
.njvRail::-webkit-scrollbar {
  display: none;
}
.njvRailLink {
  flex: 0 0 auto;
  white-space: nowrap;
  padding: .5rem 1rem;
  border-radius: 4px;
  background: #1b2532;
  border: 1px solid #2a3748;
  color: #e2e2e2;
  font-size: 0.875rem;
  transition: color 150ms, background-color 150ms, box-shadow 150ms, border-color 150ms, transform 150ms;
}
.njvRailLink:hover {
  border-color: #1b5e45;
  color: #fdfbfa;
}

.njvPanel {
  background: #253141;
  border: 1px solid #2a3748;
  border-radius: 8px;
  box-shadow: 4px 4px 0 #090e13, inset 0 1px 0 rgba(255,255,255,.05);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: color 150ms, background-color 150ms, box-shadow 150ms, border-color 150ms, transform 150ms;
}
.njvPanel:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #090e13, inset 0 1px 0 rgba(255,255,255,.05);
}
@media (max-width: 48rem) {
  .njvPanel {
    padding: 1rem;
  }
}
.njvPanel > img {
  width: 100%;
  height: auto;
  display: block;
}

.njvLedgerWrap {
  background: #253141;
  border: 1px solid #2a3748;
  border-radius: 8px;
  box-shadow: 4px 4px 0 #090e13, inset 0 1px 0 rgba(255,255,255,.05);
  overflow-x: auto;
  max-width: 100%;
}
.njvLedger {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.njvLedger th, .njvLedger td {
  padding: 0.75rem;
  text-align: start;
  border-bottom: 1px solid #2a3748;
  vertical-align: top;
}
.njvLedger thead th {
  background: #253141;
  color: #fdfbfa;
  font-weight: 600;
}
.njvLedger tbody tr:last-child td {
  border-bottom: 0;
}
.njvLedger td:first-child {
  color: #bdbdbd;
  font-weight: 600;
}

.njvMinor {
  font-size: 0.875rem;
}
.njvSoft {
  color: #bdbdbd;
}
.njvAxis {
  text-align: center;
}
.njvShadeAccent {
  color: #ffb366;
}
.njvShadeSuccess {
  color: #4caf50;
}
.njvShadeWarning {
  color: #ffb74d;
}
.njvShadeError {
  color: #ef5350;
}
.njvShadeInfo {
  color: #64b5f6;
}

.njvHead {
  background: #121b26;
  border-bottom: 1px solid #2a3748;
  padding: .75rem 3%;
  position: sticky;
  top: 0;
  z-index: 100;
}
.njvHeadInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.njvHeadBrand {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: #fdfbfa;
}
.njvHeadBrand img {
  border-radius: 4px;
}
.njvHeadBrand strong {
  font-size: 16px;
  font-weight: 400;
}
.njvHeadActions {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.njvFaq {
  background: #253141;
  border: 1px solid #2a3748;
  border-radius: 8px;
  box-shadow: 4px 4px 0 #090e13, inset 0 1px 0 rgba(255,255,255,.05);
  transition: color 150ms, background-color 150ms, box-shadow 150ms, border-color 150ms, transform 150ms;
}
.njvFaq + .njvFaq {
  margin-block-start: 0.75rem;
}
.njvFaq[open] {
  border-color: #1b5e45;
}
.njvFaqQ {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  cursor: pointer;
  list-style: none;
}
.njvFaqQ::-webkit-details-marker {
  display: none;
}
.njvFaqQ h3 {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
}
.njvFaqQ::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  flex: 0 0 auto;
  color: #ffb366;
  transition: transform 200ms;
}
.njvFaq[open] .njvFaqQ::after {
  transform: rotate(180deg);
}
.njvFaqA {
  margin: 0;
  padding: 0 1rem 1rem;
}
@media (max-width: 48rem) {
  .njvFaqQ {
    padding: 1rem;
  }
  .njvFaqA {
    padding: 0 1rem 1rem;
  }
}

.njvTag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem 1rem;
  border-radius: 9999px;
  background: #253141;
  border: 1px solid #3d4d61;
  color: #fdfbfa;
  font-size: 0.875rem;
}
.njvTag > i {
  color: #ffb366;
}

.njvEmblem, .njvEmblemSuccess, .njvEmblemWarning, .njvEmblemError, .njvEmblemInfo {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 4px;
  background: linear-gradient(135deg, #1b5e45 0%, #247a5b 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-weight: 700;
}
.njvEmblemSuccess {
  background: #4caf50;
  color: #fff;
}
.njvEmblemWarning {
  background: #ffb74d;
  color: #fff;
}
.njvEmblemError {
  background: #ef5350;
  color: #fff;
}
.njvEmblemInfo {
  background: #64b5f6;
  color: #fff;
}

.njvPlay {
  background: #253141;
  border: 1px solid #2a3748;
  border-radius: 8px;
  box-shadow: 4px 4px 0 #090e13, inset 0 1px 0 rgba(255,255,255,.05);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: color 150ms, background-color 150ms, box-shadow 150ms, border-color 150ms, transform 150ms;
}
.njvPlay:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #090e13, inset 0 1px 0 rgba(255,255,255,.05);
}
.njvPlayMedia {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.njvPlayMedia img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 200ms;
}
.njvPlay:hover .njvPlayMedia img {
  transform: scale(1.04);
}
.njvPlayPlay {
  position: absolute;
  bottom: .5rem;
  right: .5rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #ffb366;
  color: #121b26;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 150ms;
}
.njvPlay:hover .njvPlayPlay, .njvPlay:focus-visible .njvPlayPlay {
  opacity: 1;
}
@media (hover: none) {
  .njvPlayPlay {
    opacity: 1;
  }
}
.njvPlayName {
  padding: .6rem .75rem;
  background: #253141;
}
.njvPlayName h3 {
  margin: 0;
  font-size: 0.875rem;
  color: #fdfbfa;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 48rem) {
  .njvPlayName h3 {
    white-space: normal;
  }
}

main > section.njvStripe {
  background: #1b2532;
  padding-block: 2.5rem;
  margin-inline: -3.1915%;
  padding-inline: 3%;
}
@media (max-width: 48rem) {
  main > section.njvStripe {
    padding-block: 1.5rem;
  }
}
.njvHero {
  background: linear-gradient(180deg, #1b3236 0%, #121b26 100%);
  padding-block: 2.5rem;
  text-align: center;
  margin-inline: -3.1915%;
  padding-inline: 3%;
}
@media (max-width: 48rem) {
  .njvHero {
    padding-block: 1.5rem;
  }
}

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