/* overflow-guard */
:root {
  --brand-primary: #800020;
  --brand-primary-hover: #990026;
  --brand-secondary: #C0B2B2;
  --brand-secondary-hover: #D1C4C4;
  --brand-accent: #70D1FF;
  --background-main: #081C21;
  --background-surface: #12282D;
  --background-elevated: #1C343A;
  --background-overlay: rgba(8, 28, 33, 0.75);
  --text-primary: #F5F5F5;
  --text-secondary: #DCDCDC;
  --text-muted: #BDBDBD;
  --text-brand-contrast: #FFFFFF;
  --text-link: #BBEBFF;
  --text-link-hover: #D0F0FF;
  --button-bg: #70D1FF;
  --button-text: #081C21;
  --button-hover-bg: #4EB8FF;
  --button-hover-text: #081C21;
  --semantic-success: #2ECC71;
  --success: #2ECC71;
  --semantic-error: #E74C3C;
  --error: #E74C3C;
  --semantic-warning: #F1C40F;
  --warning: #F1C40F;
  --semantic-info: #3498DB;
  --info: #3498DB;
  --border-default: #1C343A;
  --border-strong: #2A454D;
  --border-brand: #800020;
  --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: 700;
  --role-weight-h2: 700;
  --role-weight-h3: 600;
  --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: 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: 74rem;
  --content-max-width: 74rem;
  --spacing-reading-max-width: 66ch;
  --reading-max-width: 66ch;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-pill: 9999px;
  --shadow-card: 0 1px 2px rgba(4, 13, 15, 0.5), 0 16px 32px rgba(4, 13, 15, 0.4);
  --shadow-elevated: 0 2px 4px rgba(4, 13, 15, 0.5), 0 24px 48px rgba(4, 13, 15, 0.5);
  --shadow-glow: 0 0 0 1px rgba(112, 209, 255, 0.35), 0 6px 18px rgba(112, 209, 255, 0.35);
  --shadow-inset: inset 0 1px 0 rgba(255,255,255,.06);
  --gradient-brand: linear-gradient(135deg, #800020 0%, #990026 100%);
  --gradient-hero: linear-gradient(180deg, #2A1F2A 0%, #081C21 100%);
  --gradient-surface: linear-gradient(180deg, #1C343A 0%, #12282D 100%);
  --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: #081C21;
  color: #DCDCDC;
  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: #F5F5F5;
}
h1 {
  font-size: 1.8rem;
  font-weight: 700;
}
h2 {
  font-size: 1.5rem;
  font-weight: 700;
}
h3 {
  font-size: 1rem;
  font-weight: 600;
}
h4 {
  font-size: 1rem;
  font-weight: 600;
}
p {
  margin: 0;
  color: #DCDCDC;
}
ul, ol {
  margin: 0;
}
a {
  color: #BBEBFF;
  text-decoration: none;
  transition: color 180ms, background-color 180ms, box-shadow 180ms, border-color 180ms, transform 180ms;
}
a:hover {
  color: #D0F0FF;
}
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid #70D1FF;
  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 > * + *, .kpqShell > * + *, .kpqProse > * + *, .kpqColumn > * + *, .kpqColumnCenter > * + * {
  margin-block-start: 1.5rem;
}
@media (max-width: 48rem) {
  main > section {
    padding-block: 2.5rem;
  }
  main > section > * + *, main > article > * + *, .kpqShell > * + *, .kpqProse > * + *, .kpqColumn > * + *, .kpqColumnCenter > * + * {
    margin-block-start: 1rem;
  }
}

.kpqShell {
  width: 100%;
  max-width: 74rem;
  margin-inline: auto;
}
.kpqProse {
  max-width: 66ch;
  margin-inline: auto;
}
.kpqColumn, .kpqColumnCenter {
  display: block;
}
.kpqColumnCenter {
  text-align: center;
}
.kpqCluster, .kpqClusterCenter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.kpqClusterCenter {
  justify-content: center;
}
.kpqLattice {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  gap: 1.5rem;
}
.kpqDeck {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.kpqPicks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
@media (min-width: 48rem) {
  .kpqDeck {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
  }
  .kpqPicks {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}
.kpqPoints {
  list-style: none;
  padding: 0;
}
.kpqPoints > li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.kpqPoints > li + li {
  margin-block-start: .75rem;
}
.kpqPoints > li > i {
  flex: 0 0 1.25rem;
  text-align: center;
  margin-top: .2em;
  color: #70D1FF;
}

.kpqPoster {
  background: linear-gradient(180deg, #1C343A 0%, #12282D 100%);
  border: 1px solid #1C343A;
  border-radius: 10px;
  box-shadow: 0 1px 2px rgba(4, 13, 15, 0.5), 0 16px 32px rgba(4, 13, 15, 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 180ms, background-color 180ms, box-shadow 180ms, border-color 180ms, transform 180ms;
}
.kpqPoster:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(4, 13, 15, 0.5), 0 24px 48px rgba(4, 13, 15, 0.5), inset 0 1px 0 rgba(255,255,255,.06);
}
.kpqPosterMedia {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.kpqPosterMedia img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 200ms;
}
.kpqPoster:hover .kpqPosterMedia img {
  transform: scale(1.04);
}
.kpqPosterPlay {
  position: absolute;
  bottom: .5rem;
  right: .5rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #70D1FF;
  color: #081C21;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 150ms;
}
.kpqPoster:hover .kpqPosterPlay, .kpqPoster:focus-visible .kpqPosterPlay {
  opacity: 1;
}
@media (hover: none) {
  .kpqPosterPlay {
    opacity: 1;
  }
}
.kpqPoster {
  position: relative;
}
.kpqPosterName {
  position: absolute;
  inset: auto 0 0 0;
  padding: .6rem .75rem;
  background: linear-gradient(180deg, transparent 0%, rgba(8, 28, 33, 0.75) 100%);
}
.kpqPosterName h3 {
  margin: 0;
  font-size: 0.875rem;
  color: #F5F5F5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 48rem) {
  .kpqPosterName h3 {
    white-space: normal;
  }
}

.kpqHead {
  background: #081C21;
  border-bottom: 1px solid #1C343A;
  padding: .75rem 3%;
  position: sticky;
  top: 0;
  z-index: 100;
}
.kpqHeadInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.kpqHeadBrand {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: #F5F5F5;
}
.kpqHeadBrand img {
  border-radius: 6px;
}
.kpqHeadBrand strong {
  font-size: 16px;
  font-weight: 400;
}
.kpqHeadActions {
  display: flex;
  align-items: center;
  gap: .5rem;
}

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

.kpqEmblem, .kpqEmblemSuccess, .kpqEmblemWarning, .kpqEmblemError, .kpqEmblemInfo {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #800020 0%, #990026 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-weight: 700;
}
.kpqEmblemSuccess {
  background: #2ECC71;
  color: #FFF;
}
.kpqEmblemWarning {
  background: #F1C40F;
  color: #FFF;
}
.kpqEmblemError {
  background: #E74C3C;
  color: #FFF;
}
.kpqEmblemInfo {
  background: #3498DB;
  color: #FFF;
}

.kpqFaq {
  background: linear-gradient(180deg, #1C343A 0%, #12282D 100%);
  border: 1px solid #1C343A;
  border-radius: 10px;
  box-shadow: 0 1px 2px rgba(4, 13, 15, 0.5), 0 16px 32px rgba(4, 13, 15, 0.4), inset 0 1px 0 rgba(255,255,255,.06);
  transition: color 180ms, background-color 180ms, box-shadow 180ms, border-color 180ms, transform 180ms;
}
.kpqFaq + .kpqFaq {
  margin-block-start: 1rem;
}
.kpqFaq[open] {
  border-color: #800020;
}
.kpqFaqQ {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 2rem;
  cursor: pointer;
  list-style: none;
}
.kpqFaqQ::-webkit-details-marker {
  display: none;
}
.kpqFaqQ h3 {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
}
.kpqFaqQ::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  flex: 0 0 auto;
  color: #70D1FF;
  transition: transform 200ms;
}
.kpqFaq[open] .kpqFaqQ::after {
  transform: rotate(180deg);
}
.kpqFaqA {
  margin: 0;
  padding: 0 2rem 2rem;
}
@media (max-width: 48rem) {
  .kpqFaqQ {
    padding: 1.25rem;
  }
  .kpqFaqA {
    padding: 0 1.25rem 1.25rem;
  }
}

.kpqSheetWrap {
  background: linear-gradient(180deg, #1C343A 0%, #12282D 100%);
  border: 1px solid #1C343A;
  border-radius: 10px;
  box-shadow: 0 1px 2px rgba(4, 13, 15, 0.5), 0 16px 32px rgba(4, 13, 15, 0.4), inset 0 1px 0 rgba(255,255,255,.06);
  overflow-x: auto;
  max-width: 100%;
}
.kpqSheet {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.kpqSheet th, .kpqSheet td {
  padding: 1rem;
  text-align: start;
  border-bottom: 1px solid #1C343A;
  vertical-align: top;
}
.kpqSheet thead th {
  background: #1C343A;
  color: #F5F5F5;
  font-weight: 600;
}
.kpqSheet tbody tr:last-child td {
  border-bottom: 0;
}
.kpqSheet td:first-child {
  color: #BDBDBD;
  font-weight: 600;
}

.kpqSub {
  font-size: 0.875rem;
}
.kpqDim {
  color: #BDBDBD;
}
.kpqMid {
  text-align: center;
}
.kpqToneAccent {
  color: #70D1FF;
}
.kpqToneSuccess {
  color: #2ECC71;
}
.kpqToneWarning {
  color: #F1C40F;
}
.kpqToneError {
  color: #E74C3C;
}
.kpqToneInfo {
  color: #3498DB;
}

.kpqMemo, .kpqMemoWarning, .kpqMemoInfo, .kpqMemoSuccess, .kpqMemoError {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 10px;
  background: #12282D;
  border: 1px solid #1C343A;
  border-left: 4px solid #70D1FF;
}
.kpqMemo > i, .kpqMemoWarning > i, .kpqMemoInfo > i, .kpqMemoSuccess > i, .kpqMemoError > i {
  flex: 0 0 auto;
  margin-top: .2em;
  color: #70D1FF;
}
.kpqMemoSuccess {
  border-left-color: #2ECC71;
}
.kpqMemoWarning {
  border-left-color: #F1C40F;
}
.kpqMemoError {
  border-left-color: #E74C3C;
}
.kpqMemoInfo {
  border-left-color: #3498DB;
}
.kpqMemoSuccess > i {
  color: #2ECC71;
}
.kpqMemoWarning > i {
  color: #F1C40F;
}
.kpqMemoError > i {
  color: #E74C3C;
}
.kpqMemoInfo > i {
  color: #3498DB;
}

main > section.kpqLayer {
  background: #12282D;
  padding-block: 4.5rem;
}
@media (max-width: 48rem) {
  main > section.kpqLayer {
    padding-block: 2.5rem;
  }
}
.kpqSplash {
  background: linear-gradient(180deg, #2A1F2A 0%, #081C21 100%);
  padding-block: 4.5rem;
  text-align: center;
  margin-inline: -3.1915%;
  padding-inline: 3%;
}
@media (max-width: 48rem) {
  .kpqSplash {
    padding-block: 2.5rem;
  }
}

.kpqAction, .kpqActionSm, .kpqActionFull, .kpqActionOutline {
  background: #70D1FF;
  color: #081C21;
  border-radius: 9999px;
  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(4, 13, 15, 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 180ms, background-color 180ms, box-shadow 180ms, border-color 180ms, transform 180ms;
}
.kpqAction:hover, .kpqActionSm:hover, .kpqActionFull:hover, .kpqActionOutline:hover {
  background: #4EB8FF;
  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(4, 13, 15, 0.45);
}
.kpqActionSm {
  min-height: 36px;
  padding: 0 1rem;
  font-size: 0.875rem;
}
.kpqActionFull {
  display: flex;
  width: 100%;
}
.kpqActionOutline {
  background: transparent;
  background-image: none;
  color: #F5F5F5;
  border: 1px solid #2A454D;
  box-shadow: none;
}
.kpqActionOutline:hover {
  background: transparent;
  border-color: #800020;
  color: #F5F5F5;
  box-shadow: none;
}

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

.kpqTicker {
  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;
}
.kpqTicker::-webkit-scrollbar {
  display: none;
}
.kpqTickerLink {
  flex: 0 0 auto;
  white-space: nowrap;
  padding: .5rem 1rem;
  border-radius: 6px;
  background: #12282D;
  border: 1px solid #1C343A;
  color: #DCDCDC;
  font-size: 0.875rem;
  transition: color 180ms, background-color 180ms, box-shadow 180ms, border-color 180ms, transform 180ms;
}
.kpqTickerLink:hover {
  border-color: #800020;
  color: #F5F5F5;
}

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

.kpqBox {
  background: linear-gradient(180deg, #1C343A 0%, #12282D 100%);
  border: 1px solid #1C343A;
  border-radius: 10px;
  box-shadow: 0 1px 2px rgba(4, 13, 15, 0.5), 0 16px 32px rgba(4, 13, 15, 0.4), inset 0 1px 0 rgba(255,255,255,.06);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: color 180ms, background-color 180ms, box-shadow 180ms, border-color 180ms, transform 180ms;
}
.kpqBox:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(4, 13, 15, 0.5), 0 24px 48px rgba(4, 13, 15, 0.5), inset 0 1px 0 rgba(255,255,255,.06);
}
@media (max-width: 48rem) {
  .kpqBox {
    padding: 1.25rem;
  }
}
.kpqBox > img {
  width: 100%;
  height: auto;
  display: block;
}

.kpqToken {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem 1rem;
  border-radius: 9999px;
  background: #1C343A;
  border: 1px solid #2A454D;
  color: #F5F5F5;
  font-size: 0.875rem;
}
.kpqToken > i {
  color: #70D1FF;
}

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

.kpqQuicknav {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 1000;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 4.25rem;
  background: #12282D;
  border-top: 1px solid #1C343A;
}
.kpqQuicknavItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  flex: 1 1 0;
  padding: .5rem 0;
  font-size: 0.75rem;
  color: #BDBDBD;
}
.kpqQuicknavItem i {
  font-size: 1.25rem;
}
.kpqQuicknavItem:hover {
  color: #70D1FF;
}

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