/* overflow-guard */
:root {
  --brand-primary: #800020;
  --brand-primary-hover: #94112B;
  --brand-secondary: #C0C0C0;
  --brand-secondary-hover: #D3D3D3;
  --brand-accent: #A5D8FF;
  --background-main: #0B1426;
  --background-surface: #15203A;
  --background-elevated: #1F2B4A;
  --background-overlay: rgba(11, 20, 38, 0.75);
  --text-primary: #FDFDFD;
  --text-secondary: #E0E0E0;
  --text-muted: #BDBDBD;
  --text-brand-contrast: #FFFFFF;
  --text-link: #CDEBFF;
  --text-link-hover: #E6F4FF;
  --button-bg: #A5D8FF;
  --button-text: #0B1426;
  --button-hover-bg: #BCE3FF;
  --button-hover-text: #0B1426;
  --semantic-success: #2ECC71;
  --success: #2ECC71;
  --semantic-error: #E74C3C;
  --error: #E74C3C;
  --semantic-warning: #F1C40F;
  --warning: #F1C40F;
  --semantic-info: #3498DB;
  --info: #3498DB;
  --border-default: #1C2B47;
  --border-strong: #2A3B5C;
  --border-brand: #800020;
  --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.25;
  --line-height-body: 1.6;
  --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: 75rem;
  --content-max-width: 75rem;
  --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 #060A13;
  --shadow-elevated: 6px 6px 0 #060A13;
  --shadow-glow: 0 0 0 1px rgba(165, 216, 255, 0.35), 0 6px 18px rgba(165, 216, 255, 0.35);
  --shadow-inset: inset 0 1px 0 rgba(255,255,255,.05);
  --gradient-brand: linear-gradient(135deg, #800020 0%, #94112B 100%);
  --gradient-hero: linear-gradient(180deg, #2D1934 0%, #0B1426 100%);
  --gradient-surface: linear-gradient(#1F2B4A, #1F2B4A);
  --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: #0B1426;
  color: #E0E0E0;
  font-family: Noto Sans Bengali, Source Sans 3, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  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: Hind Siliguri, Sora, sans-serif;
  line-height: 1.25;
  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: #CDEBFF;
  text-decoration: none;
  transition: color 180ms, background-color 180ms, box-shadow 180ms, border-color 180ms, transform 180ms;
}
a:hover {
  color: #E6F4FF;
}
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid #A5D8FF;
  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 > * + *, .shell > * + *, .measure > * + *, .column > * + *, .column-center > * + * {
  margin-block-start: 1rem;
}
@media (max-width: 48rem) {
  main > section {
    padding-block: 1.5rem;
  }
  main > section > * + *, main > article > * + *, .shell > * + *, .measure > * + *, .column > * + *, .column-center > * + * {
    margin-block-start: 0.75rem;
  }
}

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

.note, .note-warning, .note-info, .note-success, .note-error {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 8px;
  background: #15203A;
  border: 1px solid #1C2B47;
  border-left: 4px solid #A5D8FF;
}
.note > i, .note-warning > i, .note-info > i, .note-success > i, .note-error > i {
  flex: 0 0 auto;
  margin-top: .2em;
  color: #A5D8FF;
}
.note-success {
  border-left-color: #2ECC71;
}
.note-warning {
  border-left-color: #F1C40F;
}
.note-error {
  border-left-color: #E74C3C;
}
.note-info {
  border-left-color: #3498DB;
}
.note-success > i {
  color: #2ECC71;
}
.note-warning > i {
  color: #F1C40F;
}
.note-error > i {
  color: #E74C3C;
}
.note-info > i {
  color: #3498DB;
}

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

.sub {
  font-size: 0.875rem;
}
.dim {
  color: #BDBDBD;
}
.middle {
  text-align: center;
}
.ink-accent {
  color: #A5D8FF;
}
.ink-success {
  color: #2ECC71;
}
.ink-warning {
  color: #F1C40F;
}
.ink-error {
  color: #E74C3C;
}
.ink-info {
  color: #3498DB;
}

.action, .action-sm, .action-full, .action-outline {
  background: #A5D8FF;
  color: #0B1426;
  border-radius: 4px;
  min-height: 44px;
  font-weight: 700;
  box-shadow: 0 0 0 1px rgba(165, 216, 255, 0.35), 0 6px 18px rgba(165, 216, 255, 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 180ms, background-color 180ms, box-shadow 180ms, border-color 180ms, transform 180ms;
}
.action:hover, .action-sm:hover, .action-full:hover, .action-outline:hover {
  background: #BCE3FF;
  box-shadow: 0 0 0 1px rgba(165, 216, 255, 0.5), 0 8px 26px rgba(165, 216, 255, 0.5);
}
.action-sm {
  min-height: 36px;
  padding: 0 1rem;
  font-size: 0.875rem;
}
.action-full {
  display: flex;
  width: 100%;
}
.action-outline {
  background: transparent;
  background-image: none;
  color: #FDFDFD;
  border: 1px solid #2A3B5C;
  box-shadow: none;
}
.action-outline:hover {
  background: transparent;
  border-color: #800020;
  color: #FDFDFD;
  box-shadow: none;
}

.bottombar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 1000;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 4.75rem;
  background: #15203A;
  border-top: 1px solid #1C2B47;
}
.bottombar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  flex: 1 1 0;
  padding: .5rem 0;
  font-size: 0.75rem;
  color: #BDBDBD;
}
.bottombar-item i {
  font-size: 1.25rem;
}
.bottombar-item:hover {
  color: #A5D8FF;
}

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

.play {
  background: #1F2B4A;
  border: 1px solid #1C2B47;
  border-radius: 8px;
  box-shadow: 4px 4px 0 #060A13, 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;
}
.play:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #060A13, inset 0 1px 0 rgba(255,255,255,.05);
}
.play-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.play-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 200ms;
}
.play:hover .play-media img {
  transform: scale(1.04);
}
.play-play {
  position: absolute;
  top: .5rem;
  right: .5rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #A5D8FF;
  color: #0B1426;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 150ms;
}
.play:hover .play-play, .play:focus-visible .play-play {
  opacity: 1;
}
@media (hover: none) {
  .play-play {
    opacity: 1;
  }
}
.play-name {
  padding: .6rem .75rem;
  background: #1F2B4A;
}
.play-name h3 {
  margin: 0;
  font-size: 0.875rem;
  color: #FDFDFD;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 48rem) {
  .play-name h3 {
    white-space: normal;
  }
}

main > section.layer {
  background: #15203A;
  padding-block: 2.5rem;
  margin-inline: -3.1915%;
  padding-inline: 3%;
}
@media (max-width: 48rem) {
  main > section.layer {
    padding-block: 1.5rem;
  }
}
.hero {
  background: linear-gradient(180deg, #2D1934 0%, #0B1426 100%);
  padding-block: 2.5rem;
  text-align: center;
  margin-inline: -3.1915%;
  padding-inline: 3%;
}
@media (max-width: 48rem) {
  .hero {
    padding-block: 1.5rem;
  }
}

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

.pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem 1rem;
  border-radius: 9999px;
  background: #1F2B4A;
  border: 1px solid #2A3B5C;
  color: #FDFDFD;
  font-size: 0.875rem;
}
.pill > i {
  color: #A5D8FF;
}

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

.ticker {
  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;
}
.ticker::-webkit-scrollbar {
  display: none;
}
.ticker-link {
  flex: 0 0 auto;
  white-space: nowrap;
  padding: .5rem 1rem;
  border-radius: 4px;
  background: #15203A;
  border: 1px solid #1C2B47;
  color: #E0E0E0;
  font-size: 0.875rem;
  transition: color 180ms, background-color 180ms, box-shadow 180ms, border-color 180ms, transform 180ms;
}
.ticker-link:hover {
  border-color: #800020;
  color: #FDFDFD;
}

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

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

.disc, .disc-success, .disc-warning, .disc-error, .disc-info {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 4px;
  background: linear-gradient(135deg, #800020 0%, #94112B 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-weight: 700;
}
.disc-success {
  background: #2ECC71;
  color: #FFF;
}
.disc-warning {
  background: #F1C40F;
  color: #FFF;
}
.disc-error {
  background: #E74C3C;
  color: #FFF;
}
.disc-info {
  background: #3498DB;
  color: #FFF;
}

.sheet-wrap {
  background: #1F2B4A;
  border: 1px solid #1C2B47;
  border-radius: 8px;
  box-shadow: 4px 4px 0 #060A13, inset 0 1px 0 rgba(255,255,255,.05);
  overflow-x: auto;
  max-width: 100%;
}
.sheet {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.sheet th, .sheet td {
  padding: 0.75rem;
  text-align: start;
  border-bottom: 1px solid #1C2B47;
  vertical-align: top;
}
.sheet thead th {
  background: #1F2B4A;
  color: #FDFDFD;
  font-weight: 600;
}
.sheet tbody tr:last-child td {
  border-bottom: 0;
}
.sheet td:first-child {
  color: #BDBDBD;
  font-weight: 600;
}

.shell {
  width: 100%;
  max-width: 75rem;
  margin-inline: auto;
}
.measure {
  max-width: 66ch;
  margin-inline: auto;
}
.column, .column-center {
  display: block;
}
.column-center {
  text-align: center;
}
.strip, .strip-center {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}
.strip-center {
  justify-content: center;
}
.lattice {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  gap: 1rem;
}
.showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
.picks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
@media (min-width: 48rem) {
  .showcase {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }
  .picks {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}
.bullets {
  list-style: none;
  padding: 0;
}
.bullets > li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.bullets > li + li {
  margin-block-start: .75rem;
}
.bullets > li > i {
  flex: 0 0 1.25rem;
  text-align: center;
  margin-top: .2em;
  color: #A5D8FF;
}

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