/* overflow-guard */
:root {
  --brand-primary: #b21f3d;
  --brand-primary-hover: #d12a4b;
  --brand-secondary: #c8b9b0;
  --brand-secondary-hover: #e2d9d1;
  --brand-accent: #00b2a9;
  --background-main: #0a1a0d;
  --background-surface: #122615;
  --background-elevated: #1b341c;
  --background-overlay: rgba(10, 26, 13, 0.8);
  --text-primary: #fdfdfd;
  --text-secondary: #e0e0e0;
  --text-muted: #bdbdbd;
  --text-brand-contrast: #ffffff;
  --text-link: #b2f2ef;
  --text-link-hover: #d1ffff;
  --button-bg: #00b2a9;
  --button-text: #000000;
  --button-hover-bg: #00d8c9;
  --button-hover-text: #000000;
  --semantic-success: #4caf50;
  --success: #4caf50;
  --semantic-error: #ef5350;
  --error: #ef5350;
  --semantic-warning: #ffb74d;
  --warning: #ffb74d;
  --semantic-info: #64b5f6;
  --info: #64b5f6;
  --border-default: #1c3622;
  --border-strong: #2d5234;
  --border-brand: #b21f3d;
  --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: 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.3;
  --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: 80rem;
  --content-max-width: 80rem;
  --spacing-reading-max-width: 62ch;
  --reading-max-width: 62ch;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-pill: 9999px;
  --shadow-card: 0 4px 12px rgba(4, 12, 6, 0.35);
  --shadow-elevated: 0 8px 24px rgba(4, 12, 6, 0.45);
  --shadow-glow: 0 0 0 1px rgba(0, 178, 169, 0.35), 0 6px 18px rgba(0, 178, 169, 0.35);
  --shadow-inset: inset 0 1px 0 rgba(255,255,255,.08);
  --gradient-brand: linear-gradient(135deg, #b21f3d 0%, #d12a4b 100%);
  --gradient-hero: linear-gradient(180deg, #35241e 0%, #0a1a0d 100%);
  --gradient-surface: linear-gradient(#1b341c, #1b341c);
  --gradient-button: none;
  --effects-accent-bar: none;
  --recipes-transition: color 200ms, background-color 200ms, box-shadow 200ms, border-color 200ms, transform 200ms;
  --transition: color 200ms, background-color 200ms, box-shadow 200ms, border-color 200ms, transform 200ms;
}
*, *::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: #0a1a0d;
  color: #e0e0e0;
  font-family: Noto Sans Bengali, Source Sans 3, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  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: Hind Siliguri, Sora, sans-serif;
  line-height: 1.3;
  letter-spacing: 0;
  color: #fdfdfd;
}
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: #e0e0e0;
}
ul, ol {
  margin: 0;
}
a {
  color: #b2f2ef;
  text-decoration: none;
  transition: color 200ms, background-color 200ms, box-shadow 200ms, border-color 200ms, transform 200ms;
}
a:hover {
  color: #d1ffff;
}
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid #00b2a9;
  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 > * + *, .vpb-shell > * + *, .vpb-reading > * + *, .vpb-flow > * + *, .vpb-flow-center > * + * {
  margin-block-start: 1rem;
}
@media (max-width: 48rem) {
  main > section {
    padding-block: 1.5rem;
  }
  main > section > * + *, main > article > * + *, .vpb-shell > * + *, .vpb-reading > * + *, .vpb-flow > * + *, .vpb-flow-center > * + * {
    margin-block-start: 0.75rem;
  }
}

.vpb-poster {
  background: #1b341c;
  border: 1px solid #2d5234;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(4, 12, 6, 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 200ms, background-color 200ms, box-shadow 200ms, border-color 200ms, transform 200ms;
}
.vpb-poster:hover {
  border-color: #b21f3d;
  box-shadow: 0 0 0 1px rgba(0, 178, 169, 0.35), 0 6px 18px rgba(0, 178, 169, 0.35), inset 0 1px 0 rgba(255,255,255,.08);
}
.vpb-poster-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.vpb-poster-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 200ms;
}
.vpb-poster:hover .vpb-poster-media img {
  transform: scale(1.04);
}
.vpb-poster-play {
  position: absolute;
  top: .5rem;
  right: .5rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #00b2a9;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 150ms;
}
.vpb-poster:hover .vpb-poster-play, .vpb-poster:focus-visible .vpb-poster-play {
  opacity: 1;
}
@media (hover: none) {
  .vpb-poster-play {
    opacity: 1;
  }
}
.vpb-poster-name {
  padding: .6rem .75rem;
  background: #1b341c;
}
.vpb-poster-name h3 {
  margin: 0;
  font-size: 0.875rem;
  color: #fdfdfd;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 48rem) {
  .vpb-poster-name h3 {
    white-space: normal;
  }
}

.vpb-callout, .vpb-callout-warning, .vpb-callout-info, .vpb-callout-success, .vpb-callout-error {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 8px;
  background: #122615;
  border: 1px solid #1c3622;
  border-left: 4px solid #00b2a9;
}
.vpb-callout > i, .vpb-callout-warning > i, .vpb-callout-info > i, .vpb-callout-success > i, .vpb-callout-error > i {
  flex: 0 0 auto;
  margin-top: .2em;
  color: #00b2a9;
}
.vpb-callout-success {
  border-left-color: #4caf50;
}
.vpb-callout-warning {
  border-left-color: #ffb74d;
}
.vpb-callout-error {
  border-left-color: #ef5350;
}
.vpb-callout-info {
  border-left-color: #64b5f6;
}
.vpb-callout-success > i {
  color: #4caf50;
}
.vpb-callout-warning > i {
  color: #ffb74d;
}
.vpb-callout-error > i {
  color: #ef5350;
}
.vpb-callout-info > i {
  color: #64b5f6;
}

.vpb-plate {
  background: #1b341c;
  border: 1px solid #2d5234;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(4, 12, 6, 0.35), inset 0 1px 0 rgba(255,255,255,.08);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: color 200ms, background-color 200ms, box-shadow 200ms, border-color 200ms, transform 200ms;
}
.vpb-plate:hover {
  border-color: #b21f3d;
  box-shadow: 0 0 0 1px rgba(0, 178, 169, 0.35), 0 6px 18px rgba(0, 178, 169, 0.35), inset 0 1px 0 rgba(255,255,255,.08);
}
@media (max-width: 48rem) {
  .vpb-plate {
    padding: 1rem;
  }
}
.vpb-plate > img {
  width: 100%;
  height: auto;
  display: block;
}

.vpb-action, .vpb-action-sm, .vpb-action-full, .vpb-action-outline {
  background: #00b2a9;
  color: #000000;
  border-radius: 4px;
  min-height: 44px;
  font-weight: 700;
  box-shadow: 0 0 0 1px rgba(0, 178, 169, 0.35), 0 6px 18px rgba(0, 178, 169, 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 200ms, background-color 200ms, box-shadow 200ms, border-color 200ms, transform 200ms;
}
.vpb-action:hover, .vpb-action-sm:hover, .vpb-action-full:hover, .vpb-action-outline:hover {
  background: #00d8c9;
  box-shadow: 0 0 0 1px rgba(0, 178, 169, 0.5), 0 8px 26px rgba(0, 178, 169, 0.5);
}
.vpb-action-sm {
  min-height: 36px;
  padding: 0 1rem;
  font-size: 0.875rem;
}
.vpb-action-full {
  display: flex;
  width: 100%;
}
.vpb-action-outline {
  background: transparent;
  background-image: none;
  color: #fdfdfd;
  border: 1px solid #2d5234;
  box-shadow: none;
}
.vpb-action-outline:hover {
  background: transparent;
  border-color: #b21f3d;
  color: #fdfdfd;
  box-shadow: none;
}

.vpb-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;
}
.vpb-scroller::-webkit-scrollbar {
  display: none;
}
.vpb-scroller-link {
  flex: 0 0 auto;
  white-space: nowrap;
  padding: .5rem 1rem;
  border-radius: 4px;
  background: #122615;
  border: 1px solid #1c3622;
  color: #e0e0e0;
  font-size: 0.875rem;
  transition: color 200ms, background-color 200ms, box-shadow 200ms, border-color 200ms, transform 200ms;
}
.vpb-scroller-link:hover {
  border-color: #b21f3d;
  color: #fdfdfd;
}

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

.vpb-minor {
  font-size: 0.875rem;
}
.vpb-faint {
  color: #bdbdbd;
}
.vpb-axis {
  text-align: center;
}
.vpb-shade-accent {
  color: #00b2a9;
}
.vpb-shade-success {
  color: #4caf50;
}
.vpb-shade-warning {
  color: #ffb74d;
}
.vpb-shade-error {
  color: #ef5350;
}
.vpb-shade-info {
  color: #64b5f6;
}

.vpb-ledger-wrap {
  background: #1b341c;
  border: 1px solid #2d5234;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(4, 12, 6, 0.35), inset 0 1px 0 rgba(255,255,255,.08);
  overflow-x: auto;
  max-width: 100%;
}
.vpb-ledger {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.vpb-ledger th, .vpb-ledger td {
  padding: 0.75rem;
  text-align: start;
  border-bottom: 1px solid #1c3622;
  vertical-align: top;
}
.vpb-ledger thead th {
  background: #1b341c;
  color: #fdfdfd;
  font-weight: 600;
}
.vpb-ledger tbody tr:last-child td {
  border-bottom: 0;
}
.vpb-ledger td:first-child {
  color: #bdbdbd;
  font-weight: 600;
}

main > section.vpb-stripe {
  background: #122615;
  border-top: 1px solid #1c3622;
  border-bottom: 1px solid #1c3622;
  padding-block: 2.5rem;
}
@media (max-width: 48rem) {
  main > section.vpb-stripe {
    padding-block: 1.5rem;
  }
}
.vpb-hero {
  background: linear-gradient(180deg, #35241e 0%, #0a1a0d 100%);
  padding-block: 2.5rem;
  text-align: center;
  margin-inline: -3.1915%;
  padding-inline: 3%;
}
@media (max-width: 48rem) {
  .vpb-hero {
    padding-block: 1.5rem;
  }
}

.vpb-reveal {
  background: #1b341c;
  border: 1px solid #2d5234;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(4, 12, 6, 0.35), inset 0 1px 0 rgba(255,255,255,.08);
  transition: color 200ms, background-color 200ms, box-shadow 200ms, border-color 200ms, transform 200ms;
}
.vpb-reveal + .vpb-reveal {
  margin-block-start: 0.75rem;
}
.vpb-reveal[open] {
  border-color: #b21f3d;
}
.vpb-reveal-q {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  cursor: pointer;
  list-style: none;
}
.vpb-reveal-q::-webkit-details-marker {
  display: none;
}
.vpb-reveal-q h3 {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
}
.vpb-reveal-q::after {
  content: "\f0d7";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  flex: 0 0 auto;
  color: #00b2a9;
  transition: transform 200ms;
}
.vpb-reveal[open] .vpb-reveal-q::after {
  transform: rotate(180deg);
}
.vpb-reveal-a {
  margin: 0;
  padding: 0 1rem 1rem;
}
@media (max-width: 48rem) {
  .vpb-reveal-q {
    padding: 1rem;
  }
  .vpb-reveal-a {
    padding: 0 1rem 1rem;
  }
}

.vpb-navbar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 1000;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 4.25rem;
  background: #122615;
  border-top: 1px solid #1c3622;
}
.vpb-navbar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  flex: 1 1 0;
  padding: .5rem 0;
  font-size: 0.75rem;
  color: #bdbdbd;
}
.vpb-navbar-item i {
  font-size: 1.25rem;
}
.vpb-navbar-item:hover {
  color: #00b2a9;
}

.vpb-disc, .vpb-disc-success, .vpb-disc-warning, .vpb-disc-error, .vpb-disc-info {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 4px;
  background: linear-gradient(135deg, #b21f3d 0%, #d12a4b 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-weight: 700;
}
.vpb-disc-success {
  background: #4caf50;
  color: #fff;
}
.vpb-disc-warning {
  background: #ffb74d;
  color: #fff;
}
.vpb-disc-error {
  background: #ef5350;
  color: #fff;
}
.vpb-disc-info {
  background: #64b5f6;
  color: #fff;
}

.vpb-header {
  background: #0a1a0d;
  border-bottom: 1px solid #1c3622;
  padding: .75rem 3%;
  position: sticky;
  top: 0;
  z-index: 100;
}
.vpb-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.vpb-header-brand {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: #fdfdfd;
}
.vpb-header-brand img {
  border-radius: 4px;
}
.vpb-header-brand strong {
  font-size: 16px;
  font-weight: 400;
}
.vpb-header-actions {
  display: flex;
  align-items: center;
  gap: .5rem;
}

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

.vpb-shell {
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
}
.vpb-reading {
  max-width: 62ch;
  margin-inline: auto;
}
.vpb-flow, .vpb-flow-center {
  display: block;
}
.vpb-flow-center {
  text-align: center;
}
.vpb-row, .vpb-row-center {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}
.vpb-row-center {
  justify-content: center;
}
.vpb-mosaic {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  gap: 1rem;
}
.vpb-deck {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
.vpb-blocks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
@media (min-width: 48rem) {
  .vpb-deck {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }
  .vpb-blocks {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}
.vpb-bullets {
  list-style: none;
  padding: 0;
}
.vpb-bullets > li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.vpb-bullets > li + li {
  margin-block-start: .75rem;
}
.vpb-bullets > li > i {
  flex: 0 0 1.25rem;
  text-align: center;
  margin-top: .2em;
  color: #00b2a9;
}

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

.vpb-marker {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem 1rem;
  border-radius: 9999px;
  background: #1b341c;
  border: 1px solid #2d5234;
  color: #fdfdfd;
  font-size: 0.875rem;
}
.vpb-marker > i {
  color: #00b2a9;
}

.vpb-media, .vpb-plate.vpb-media {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
}
.vpb-media-body {
  flex: 1 1 auto;
  min-width: 0;
}
.vpb-media-body > * + * {
  margin-block-start: .5rem;
}

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