/* overflow-guard */
:root {
  --brand-primary: #2C3E50;
  --brand-primary-hover: #34495E;
  --brand-secondary: #7F8C8D;
  --brand-secondary-hover: #95A5A6;
  --brand-accent: #BFFF00;
  --background-main: #0B0D1A;
  --background-surface: #15182B;
  --background-elevated: #1F233D;
  --background-overlay: rgba(11, 13, 26, 0.8);
  --text-primary: #FDFDFD;
  --text-secondary: #E0E0E0;
  --text-muted: #BDBDBD;
  --text-brand-contrast: #000000;
  --text-link: #DFFFBF;
  --text-link-hover: #EFFFDB;
  --button-bg: #BFFF00;
  --button-text: #000000;
  --button-hover-bg: #AADD00;
  --button-hover-text: #000000;
  --semantic-success: #2ECC71;
  --success: #2ECC71;
  --semantic-error: #E74C3C;
  --error: #E74C3C;
  --semantic-warning: #F1C40F;
  --warning: #F1C40F;
  --semantic-info: #3498DB;
  --info: #3498DB;
  --border-default: #252A45;
  --border-strong: #3D4463;
  --border-brand: #2C3E50;
  --font-family-headings: Noto Sans Bengali, Archivo, 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.35;
  --line-height-body: 1.55;
  --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: 74rem;
  --content-max-width: 74rem;
  --spacing-reading-max-width: 62ch;
  --reading-max-width: 62ch;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-pill: 9999px;
  --shadow-card: 0 1px 2px rgba(5, 6, 12, 0.5), 0 16px 32px rgba(5, 6, 12, 0.4);
  --shadow-elevated: 0 2px 4px rgba(5, 6, 12, 0.5), 0 24px 48px rgba(5, 6, 12, 0.5);
  --shadow-glow: 0 0 0 1px rgba(191, 255, 0, 0.35), 0 6px 18px rgba(191, 255, 0, 0.35);
  --shadow-inset: inset 0 1px 0 rgba(255,255,255,.06);
  --gradient-brand: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  --gradient-hero: linear-gradient(180deg, #1A2033 0%, #0B0D1A 100%);
  --gradient-surface: linear-gradient(180deg, #1F233D 0%, #15182B 100%);
  --gradient-button: linear-gradient(135deg, #CBFF2E 0%, #BFFF00 100%);
  --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: #0B0D1A;
  color: #E0E0E0;
  font-family: Noto Sans Bengali, Manrope, sans-serif;
  font-weight: 400;
  line-height: 1.55;
  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: Noto Sans Bengali, Archivo, sans-serif;
  line-height: 1.35;
  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: #DFFFBF;
  text-decoration: none;
  transition: color 150ms, background-color 150ms, box-shadow 150ms, border-color 150ms, transform 150ms;
}
a:hover {
  color: #EFFFDB;
}
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid #BFFF00;
  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 > * + *, .rhcHolder > * + *, .rhcProse > * + *, .rhcFlow > * + *, .rhcFlowCenter > * + * {
  margin-block-start: 1.25rem;
}
@media (max-width: 48rem) {
  main > section {
    padding-block: 2rem;
  }
  main > section > * + *, main > article > * + *, .rhcHolder > * + *, .rhcProse > * + *, .rhcFlow > * + *, .rhcFlowCenter > * + * {
    margin-block-start: 1rem;
  }
}

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

.rhcSheetWrap {
  background: linear-gradient(180deg, #1F233D 0%, #15182B 100%);
  border: 1px solid #252A45;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(5, 6, 12, 0.5), 0 16px 32px rgba(5, 6, 12, 0.4), inset 0 1px 0 rgba(255,255,255,.06);
  overflow-x: auto;
  max-width: 100%;
}
.rhcSheet {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.rhcSheet th, .rhcSheet td {
  padding: 1rem;
  text-align: start;
  border-bottom: 1px solid #252A45;
  vertical-align: top;
}
.rhcSheet thead th {
  background: #1F233D;
  color: #FDFDFD;
  font-weight: 600;
}
.rhcSheet tbody tr:last-child td {
  border-bottom: 0;
}
.rhcSheet td:first-child {
  color: #BDBDBD;
  font-weight: 600;
}

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

.rhcFaq {
  background: linear-gradient(180deg, #1F233D 0%, #15182B 100%);
  border: 1px solid #252A45;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(5, 6, 12, 0.5), 0 16px 32px rgba(5, 6, 12, 0.4), inset 0 1px 0 rgba(255,255,255,.06);
  transition: color 150ms, background-color 150ms, box-shadow 150ms, border-color 150ms, transform 150ms;
}
.rhcFaq + .rhcFaq {
  margin-block-start: 1rem;
}
.rhcFaq[open] {
  border-color: #2C3E50;
}
.rhcFaqQ {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  cursor: pointer;
  list-style: none;
}
.rhcFaqQ::-webkit-details-marker {
  display: none;
}
.rhcFaqQ h3 {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
}
.rhcFaqQ::after {
  content: "\f0d7";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  flex: 0 0 auto;
  color: #BFFF00;
  transition: transform 200ms;
}
.rhcFaq[open] .rhcFaqQ::after {
  transform: rotate(180deg);
}
.rhcFaqA {
  margin: 0;
  padding: 0 1.5rem 1.5rem;
}
@media (max-width: 48rem) {
  .rhcFaqQ {
    padding: 1rem;
  }
  .rhcFaqA {
    padding: 0 1rem 1rem;
  }
}

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

.rhcCta, .rhcCtaSm, .rhcCtaFull, .rhcCtaOutline {
  background: linear-gradient(135deg, #CBFF2E 0%, #BFFF00 100%);
  color: #000000;
  border-radius: 4px;
  min-height: 44px;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(191, 255, 0, 0.3);
  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;
}
.rhcCta:hover, .rhcCtaSm:hover, .rhcCtaFull:hover, .rhcCtaOutline:hover {
  background: #AADD00;
  box-shadow: 0 8px 22px rgba(191, 255, 0, 0.4);
}
.rhcCtaSm {
  min-height: 36px;
  padding: 0 1rem;
  font-size: 0.875rem;
}
.rhcCtaFull {
  display: flex;
  width: 100%;
}
.rhcCtaOutline {
  background: transparent;
  background-image: none;
  color: #FDFDFD;
  border: 1px solid #3D4463;
  box-shadow: none;
}
.rhcCtaOutline:hover {
  background: transparent;
  border-color: #2C3E50;
  color: #FDFDFD;
  box-shadow: none;
}

.rhcAlert, .rhcAlertWarning, .rhcAlertInfo, .rhcAlertSuccess, .rhcAlertError {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 8px;
  background: #15182B;
  border: 1px solid #252A45;
  border-left: 4px solid #BFFF00;
}
.rhcAlert > i, .rhcAlertWarning > i, .rhcAlertInfo > i, .rhcAlertSuccess > i, .rhcAlertError > i {
  flex: 0 0 auto;
  margin-top: .2em;
  color: #BFFF00;
}
.rhcAlertSuccess {
  border-left-color: #2ECC71;
}
.rhcAlertWarning {
  border-left-color: #F1C40F;
}
.rhcAlertError {
  border-left-color: #E74C3C;
}
.rhcAlertInfo {
  border-left-color: #3498DB;
}
.rhcAlertSuccess > i {
  color: #2ECC71;
}
.rhcAlertWarning > i {
  color: #F1C40F;
}
.rhcAlertError > i {
  color: #E74C3C;
}
.rhcAlertInfo > i {
  color: #3498DB;
}

.rhcPlate {
  background: linear-gradient(180deg, #1F233D 0%, #15182B 100%);
  border: 1px solid #252A45;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(5, 6, 12, 0.5), 0 16px 32px rgba(5, 6, 12, 0.4), inset 0 1px 0 rgba(255,255,255,.06);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: color 150ms, background-color 150ms, box-shadow 150ms, border-color 150ms, transform 150ms;
}
.rhcPlate:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(5, 6, 12, 0.5), 0 24px 48px rgba(5, 6, 12, 0.5), inset 0 1px 0 rgba(255,255,255,.06);
}
@media (max-width: 48rem) {
  .rhcPlate {
    padding: 1rem;
  }
}
.rhcPlate > img {
  width: 100%;
  height: auto;
  display: block;
}

.rhcPill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem 1rem;
  border-radius: 9999px;
  background: #1F233D;
  border: 1px solid #3D4463;
  color: #FDFDFD;
  font-size: 0.875rem;
}
.rhcPill > i {
  color: #BFFF00;
}

.rhcTabbar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 1000;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 4.25rem;
  background: #15182B;
  border-top: 1px solid #252A45;
}
.rhcTabbarItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  flex: 1 1 0;
  padding: .5rem 0;
  font-size: 0.75rem;
  color: #BDBDBD;
}
.rhcTabbarItem i {
  font-size: 1.25rem;
}
.rhcTabbarItem:hover {
  color: #BFFF00;
}

.rhcTiny {
  font-size: 0.875rem;
}
.rhcSoft {
  color: #BDBDBD;
}
.rhcMiddle {
  text-align: center;
}
.rhcHueAccent {
  color: #BFFF00;
}
.rhcHueSuccess {
  color: #2ECC71;
}
.rhcHueWarning {
  color: #F1C40F;
}
.rhcHueError {
  color: #E74C3C;
}
.rhcHueInfo {
  color: #3498DB;
}

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

.rhcTicker {
  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;
}
.rhcTicker::-webkit-scrollbar {
  display: none;
}
.rhcTickerLink {
  flex: 0 0 auto;
  white-space: nowrap;
  padding: .5rem 1rem;
  border-radius: 4px;
  background: #15182B;
  border: 1px solid #252A45;
  color: #E0E0E0;
  font-size: 0.875rem;
  transition: color 150ms, background-color 150ms, box-shadow 150ms, border-color 150ms, transform 150ms;
}
.rhcTickerLink:hover {
  border-color: #2C3E50;
  color: #FDFDFD;
}

.rhcPlay {
  background: linear-gradient(180deg, #1F233D 0%, #15182B 100%);
  border: 1px solid #252A45;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(5, 6, 12, 0.5), 0 16px 32px rgba(5, 6, 12, 0.4), inset 0 1px 0 rgba(255,255,255,.06);
  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;
}
.rhcPlay:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(5, 6, 12, 0.5), 0 24px 48px rgba(5, 6, 12, 0.5), inset 0 1px 0 rgba(255,255,255,.06);
}
.rhcPlayMedia {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.rhcPlayMedia img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 200ms;
}
.rhcPlay:hover .rhcPlayMedia img {
  transform: scale(1.04);
}
.rhcPlayPlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #BFFF00;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 150ms;
}
.rhcPlay:hover .rhcPlayPlay, .rhcPlay:focus-visible .rhcPlayPlay {
  opacity: 1;
}
@media (hover: none) {
  .rhcPlayPlay {
    opacity: 1;
  }
}
.rhcPlayName {
  padding: .6rem .75rem;
  background: #1F233D;
}
.rhcPlayName h3 {
  margin: 0;
  font-size: 0.875rem;
  color: #FDFDFD;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 48rem) {
  .rhcPlayName h3 {
    white-space: normal;
  }
}

main > section.rhcStripe {
  background: #15182B;
  padding-block: 3.5rem;
  margin-inline: -3.1915%;
  padding-inline: 3%;
}
@media (max-width: 48rem) {
  main > section.rhcStripe {
    padding-block: 2rem;
  }
}
.rhcStage {
  background: linear-gradient(180deg, #1A2033 0%, #0B0D1A 100%);
  padding-block: 3.5rem;
  text-align: center;
  margin-inline: -3.1915%;
  padding-inline: 3%;
}
@media (max-width: 48rem) {
  .rhcStage {
    padding-block: 2rem;
  }
}

.rhcHeader {
  background: #0B0D1A;
  border-bottom: 1px solid #252A45;
  padding: .75rem 3%;
  position: sticky;
  top: 0;
  z-index: 100;
}
.rhcHeaderInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.rhcHeaderBrand {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: #FDFDFD;
}
.rhcHeaderBrand img {
  border-radius: 4px;
}
.rhcHeaderBrand strong {
  font-size: 16px;
  font-weight: 400;
}
.rhcHeaderActions {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.rhcOrb, .rhcOrbSuccess, .rhcOrbWarning, .rhcOrbError, .rhcOrbInfo {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 4px;
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-weight: 700;
}
.rhcOrbSuccess {
  background: #2ECC71;
  color: #FFF;
}
.rhcOrbWarning {
  background: #F1C40F;
  color: #FFF;
}
.rhcOrbError {
  background: #E74C3C;
  color: #FFF;
}
.rhcOrbInfo {
  background: #3498DB;
  color: #FFF;
}

.rhcHolder {
  width: 100%;
  max-width: 74rem;
  margin-inline: auto;
}
.rhcProse {
  max-width: 62ch;
  margin-inline: auto;
}
.rhcFlow, .rhcFlowCenter {
  display: block;
}
.rhcFlowCenter {
  text-align: center;
}
.rhcCluster, .rhcClusterCenter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.rhcClusterCenter {
  justify-content: center;
}
.rhcMatrix {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  gap: 1.25rem;
}
.rhcLineup {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.rhcMenu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
@media (min-width: 48rem) {
  .rhcLineup {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
  }
  .rhcMenu {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
}
.rhcTicks {
  list-style: none;
  padding: 0;
}
.rhcTicks > li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.rhcTicks > li + li {
  margin-block-start: .75rem;
}
.rhcTicks > li > i {
  flex: 0 0 1.25rem;
  text-align: center;
  margin-top: .2em;
  color: #BFFF00;
}

/* page */
.rhcProviderName { font-weight: 700; letter-spacing: 0.5px; font-size: 1.1rem; }
