/* overflow-guard */
:root {
  --brand-primary: #B21E31;
  --brand-primary-hover: #C9253B;
  --brand-secondary: #D1D5DB;
  --brand-secondary-hover: #E5E7EB;
  --brand-accent: #00C2B2;
  --background-main: #061B20;
  --background-surface: #0C262B;
  --background-elevated: #123137;
  --background-overlay: rgba(6, 27, 32, 0.75);
  --text-primary: #F5F5F5;
  --text-secondary: #DCDCDC;
  --text-muted: #BDBDBD;
  --text-brand-contrast: #FFFFFF;
  --text-link: #B2F0EF;
  --text-link-hover: #D1FFFF;
  --button-bg: #00C2B2;
  --button-text: #000000;
  --button-hover-bg: #00E0D1;
  --button-hover-text: #000000;
  --semantic-success: #28A745;
  --success: #28A745;
  --semantic-error: #DC3545;
  --error: #DC3545;
  --semantic-warning: #FFC107;
  --warning: #FFC107;
  --semantic-info: #17A2B8;
  --info: #17A2B8;
  --border-default: #1A3A40;
  --border-strong: #264D54;
  --border-brand: #B21E31;
  --font-family-headings: Noto Sans Bengali, 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: 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: 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: 80rem;
  --content-max-width: 80rem;
  --spacing-reading-max-width: 66ch;
  --reading-max-width: 66ch;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-pill: 9999px;
  --shadow-card: 0 4px 12px rgba(3, 12, 14, 0.35);
  --shadow-elevated: 0 8px 24px rgba(3, 12, 14, 0.45);
  --shadow-glow: 0 0 0 1px rgba(0, 194, 178, 0.35), 0 6px 18px rgba(0, 194, 178, 0.35);
  --shadow-inset: inset 0 1px 0 rgba(255,255,255,.08);
  --gradient-brand: linear-gradient(135deg, #B21E31 0%, #C9253B 100%);
  --gradient-hero: linear-gradient(180deg, #31242C 0%, #061B20 100%);
  --gradient-surface: linear-gradient(#123137, #123137);
  --gradient-button: none;
  --effects-accent-bar: none;
  --recipes-transition: color 120ms, background-color 120ms, box-shadow 120ms, border-color 120ms, transform 120ms;
  --transition: color 120ms, background-color 120ms, box-shadow 120ms, border-color 120ms, transform 120ms;
}
*, *::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: #061B20;
  color: #DCDCDC;
  font-family: Noto Sans Bengali, Source Sans 3, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  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: Noto Sans Bengali, Space Grotesk, sans-serif;
  line-height: 1.25;
  letter-spacing: 0;
  color: #F5F5F5;
}
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: #DCDCDC;
}
ul, ol {
  margin: 0;
}
a {
  color: #B2F0EF;
  text-decoration: none;
  transition: color 120ms, background-color 120ms, box-shadow 120ms, border-color 120ms, transform 120ms;
}
a:hover {
  color: #D1FFFF;
}
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid #00C2B2;
  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 > * + *, .prFrame > * + *, .prCopy > * + *, .prStack > * + *, .prStackCenter > * + * {
  margin-block-start: 1.5rem;
}
@media (max-width: 48rem) {
  main > section {
    padding-block: 2.5rem;
  }
  main > section > * + *, main > article > * + *, .prFrame > * + *, .prCopy > * + *, .prStack > * + *, .prStackCenter > * + * {
    margin-block-start: 1rem;
  }
}

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

.prQa {
  background: #123137;
  border: 1px solid #264D54;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(3, 12, 14, 0.35), inset 0 1px 0 rgba(255,255,255,.08);
  transition: color 120ms, background-color 120ms, box-shadow 120ms, border-color 120ms, transform 120ms;
}
.prQa + .prQa {
  margin-block-start: 1rem;
}
.prQa[open] {
  border-color: #B21E31;
}
.prQaQ {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 2rem;
  cursor: pointer;
  list-style: none;
}
.prQaQ::-webkit-details-marker {
  display: none;
}
.prQaQ h3 {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
}
.prQaQ::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  flex: 0 0 auto;
  color: #00C2B2;
  transition: transform 200ms;
}
.prQa[open] .prQaQ::after {
  transform: rotate(180deg);
}
.prQaA {
  margin: 0;
  padding: 0 2rem 2rem;
}
@media (max-width: 48rem) {
  .prQaQ {
    padding: 1.25rem;
  }
  .prQaA {
    padding: 0 1.25rem 1.25rem;
  }
}

.prNavbar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 1000;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 4.75rem;
  background: #0C262B;
  border-top: 1px solid #1A3A40;
}
.prNavbarItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  flex: 1 1 0;
  padding: .5rem 0;
  font-size: 0.75rem;
  color: #BDBDBD;
}
.prNavbarItem i {
  font-size: 1.25rem;
}
.prNavbarItem:hover {
  color: #00C2B2;
}

.prBox {
  background: #123137;
  border: 1px solid #264D54;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(3, 12, 14, 0.35), inset 0 1px 0 rgba(255,255,255,.08);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: color 120ms, background-color 120ms, box-shadow 120ms, border-color 120ms, transform 120ms;
}
.prBox:hover {
  border-color: #B21E31;
  box-shadow: 0 0 0 1px rgba(0, 194, 178, 0.35), 0 6px 18px rgba(0, 194, 178, 0.35), inset 0 1px 0 rgba(255,255,255,.08);
}
@media (max-width: 48rem) {
  .prBox {
    padding: 1.25rem;
  }
}
.prBox > img {
  width: 100%;
  height: auto;
  display: block;
}

.prDisc, .prDiscSuccess, .prDiscWarning, .prDiscError, .prDiscInfo {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 4px;
  background: linear-gradient(135deg, #B21E31 0%, #C9253B 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-weight: 700;
}
.prDiscSuccess {
  background: #28A745;
  color: #FFF;
}
.prDiscWarning {
  background: #FFC107;
  color: #FFF;
}
.prDiscError {
  background: #DC3545;
  color: #FFF;
}
.prDiscInfo {
  background: #17A2B8;
  color: #FFF;
}

.prPlay {
  background: #123137;
  border: 1px solid #264D54;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(3, 12, 14, 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 120ms, background-color 120ms, box-shadow 120ms, border-color 120ms, transform 120ms;
}
.prPlay:hover {
  border-color: #B21E31;
  box-shadow: 0 0 0 1px rgba(0, 194, 178, 0.35), 0 6px 18px rgba(0, 194, 178, 0.35), inset 0 1px 0 rgba(255,255,255,.08);
}
.prPlayMedia {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.prPlayMedia img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 200ms;
}
.prPlay:hover .prPlayMedia img {
  transform: scale(1.04);
}
.prPlayPlay {
  position: absolute;
  bottom: .5rem;
  right: .5rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #00C2B2;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 150ms;
}
.prPlay:hover .prPlayPlay, .prPlay:focus-visible .prPlayPlay {
  opacity: 1;
}
@media (hover: none) {
  .prPlayPlay {
    opacity: 1;
  }
}
.prPlayName {
  padding: .6rem .75rem;
  background: #123137;
}
.prPlayName h3 {
  margin: 0;
  font-size: 0.875rem;
  color: #F5F5F5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 48rem) {
  .prPlayName h3 {
    white-space: normal;
  }
}

.prFrame {
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
}
.prCopy {
  max-width: 66ch;
  margin-inline: auto;
}
.prStack, .prStackCenter {
  display: block;
}
.prStackCenter {
  text-align: center;
}
.prInline, .prInlineCenter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.prInlineCenter {
  justify-content: center;
}
.prLattice {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  gap: 1.5rem;
}
.prDeck {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.prCats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
@media (min-width: 48rem) {
  .prDeck {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
  }
  .prCats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}
.prItems {
  list-style: none;
  padding: 0;
}
.prItems > li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.prItems > li + li {
  margin-block-start: .75rem;
}
.prItems > li > i {
  flex: 0 0 1.25rem;
  text-align: center;
  margin-top: .2em;
  color: #00C2B2;
}

.prTag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem 1rem;
  border-radius: 9999px;
  background: #123137;
  border: 1px solid #264D54;
  color: #F5F5F5;
  font-size: 0.875rem;
}
.prTag > i {
  color: #00C2B2;
}

.prPress, .prPressSm, .prPressFull, .prPressOutline {
  background: #00C2B2;
  color: #000000;
  border-radius: 4px;
  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(3, 12, 14, 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 120ms, background-color 120ms, box-shadow 120ms, border-color 120ms, transform 120ms;
}
.prPress:hover, .prPressSm:hover, .prPressFull:hover, .prPressOutline:hover {
  background: #00E0D1;
  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(3, 12, 14, 0.45);
}
.prPressSm {
  min-height: 36px;
  padding: 0 1rem;
  font-size: 0.875rem;
}
.prPressFull {
  display: flex;
  width: 100%;
}
.prPressOutline {
  background: transparent;
  background-image: none;
  color: #F5F5F5;
  border: 1px solid #264D54;
  box-shadow: none;
}
.prPressOutline:hover {
  background: transparent;
  border-color: #B21E31;
  color: #F5F5F5;
  box-shadow: none;
}

.prRail {
  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;
}
.prRail::-webkit-scrollbar {
  display: none;
}
.prRailLink {
  flex: 0 0 auto;
  white-space: nowrap;
  padding: .5rem 1rem;
  border-radius: 4px;
  background: #0C262B;
  border: 1px solid #1A3A40;
  color: #DCDCDC;
  font-size: 0.875rem;
  transition: color 120ms, background-color 120ms, box-shadow 120ms, border-color 120ms, transform 120ms;
}
.prRailLink:hover {
  border-color: #B21E31;
  color: #F5F5F5;
}

main > section.prZone {
  background: #0C262B;
  border-top: 1px solid #1A3A40;
  border-bottom: 1px solid #1A3A40;
  padding-block: 4.5rem;
  margin-inline: -3.1915%;
  padding-inline: 3%;
}
@media (max-width: 48rem) {
  main > section.prZone {
    padding-block: 2.5rem;
  }
}
.prStage {
  background: linear-gradient(180deg, #31242C 0%, #061B20 100%);
  padding-block: 4.5rem;
  text-align: center;
  margin-inline: -3.1915%;
  padding-inline: 3%;
}
@media (max-width: 48rem) {
  .prStage {
    padding-block: 2.5rem;
  }
}

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

.prBottom {
  background: #061B20;
  border-top: 1px solid #1A3A40;
  padding: 3rem 3% 2rem;
  color: #BDBDBD;
}
.prBottomGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  text-align: center;
}
.prBottomCol > p, .prBottomCol > h3 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #F5F5F5;
  margin: 0 0 .75rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.prBottomCol ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.prBottomCol li + li {
  margin-block-start: .5rem;
}
.prBottomCol a {
  color: #BDBDBD;
  font-size: 0.875rem;
}
.prBottomCol a:hover {
  color: #D1FFFF;
}
.prBottomMeta {
  margin-block-start: 2rem;
  padding-block-start: 1.5rem;
  border-top: 1px solid #1A3A40;
  text-align: center;
  font-size: 0.875rem;
}
.prBottomMeta > * + * {
  margin-block-start: .5rem;
}

.prAppbar {
  background: #061B20;
  border-bottom: 1px solid #1A3A40;
  padding: .75rem 3%;
  position: sticky;
  top: 0;
  z-index: 100;
}
.prAppbarInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.prAppbarBrand {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: #F5F5F5;
}
.prAppbarBrand img {
  border-radius: 4px;
}
.prAppbarBrand strong {
  font-size: 16px;
  font-weight: 400;
}
.prAppbarActions {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.prCrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  padding: 1rem 0;
  font-size: 0.875rem;
  color: #DCDCDC;
}
.prCrumbs a {
  color: #B2F0EF;
}
.prCrumbs span {
  color: #F5F5F5;
}

.prLedgerWrap {
  background: #123137;
  border: 1px solid #264D54;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(3, 12, 14, 0.35), inset 0 1px 0 rgba(255,255,255,.08);
  overflow-x: auto;
  max-width: 100%;
}
.prLedger {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.prLedger th, .prLedger td {
  padding: 1rem;
  text-align: start;
  border-bottom: 1px solid #1A3A40;
  vertical-align: top;
}
.prLedger thead th {
  background: #123137;
  color: #F5F5F5;
  font-weight: 600;
}
.prLedger tbody tr:last-child td {
  border-bottom: 0;
}
.prLedger td:first-child {
  color: #BDBDBD;
  font-weight: 600;
}

.prAlert, .prAlertWarning, .prAlertInfo, .prAlertSuccess, .prAlertError {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 8px;
  background: #0C262B;
  border: 1px solid #1A3A40;
  border-left: 4px solid #00C2B2;
}
.prAlert > i, .prAlertWarning > i, .prAlertInfo > i, .prAlertSuccess > i, .prAlertError > i {
  flex: 0 0 auto;
  margin-top: .2em;
  color: #00C2B2;
}
.prAlertSuccess {
  border-left-color: #28A745;
}
.prAlertWarning {
  border-left-color: #FFC107;
}
.prAlertError {
  border-left-color: #DC3545;
}
.prAlertInfo {
  border-left-color: #17A2B8;
}
.prAlertSuccess > i {
  color: #28A745;
}
.prAlertWarning > i {
  color: #FFC107;
}
.prAlertError > i {
  color: #DC3545;
}
.prAlertInfo > i {
  color: #17A2B8;
}

.prFine {
  font-size: 0.875rem;
}
.prSoft {
  color: #BDBDBD;
}
.prMid {
  text-align: center;
}
.prToneAccent {
  color: #00C2B2;
}
.prToneSuccess {
  color: #28A745;
}
.prToneWarning {
  color: #FFC107;
}
.prToneError {
  color: #DC3545;
}
.prToneInfo {
  color: #17A2B8;
}

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