/* overflow-guard */
:root {
  --brand-primary: #363d3f;
  --brand-primary-hover: #454d50;
  --brand-secondary: #7a8285;
  --brand-secondary-hover: #8e9598;
  --brand-accent: #d4e157;
  --background-main: #061c21;
  --background-surface: #0c282e;
  --background-elevated: #12343a;
  --background-overlay: rgba(6, 28, 33, 0.75);
  --text-primary: #fdfdfd;
  --text-secondary: #e0e0e0;
  --text-muted: #bdbdbd;
  --text-brand-contrast: #000000;
  --text-link: #e6f5b5;
  --text-link-hover: #f1fbe0;
  --button-bg: #d4e157;
  --button-text: #000000;
  --button-hover-bg: #bbd444;
  --button-hover-text: #000000;
  --semantic-success: #4caf50;
  --success: #4caf50;
  --semantic-error: #ef5350;
  --error: #ef5350;
  --semantic-warning: #ffb74d;
  --warning: #ffb74d;
  --semantic-info: #4fc3f7;
  --info: #4fc3f7;
  --border-default: #1a3d44;
  --border-strong: #26525b;
  --border-brand: #363d3f;
  --font-family-headings: Noto Serif Bengali, Playfair Display, 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: 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.3;
  --line-height-body: 1.6;
  --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: 62ch;
  --reading-max-width: 62ch;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-pill: 9999px;
  --shadow-card: 0 8px 24px rgba(3, 13, 15, 0.4);
  --shadow-elevated: 0 12px 32px rgba(3, 13, 15, 0.5);
  --shadow-glow: 0 0 0 1px rgba(212, 225, 87, 0.35), 0 6px 18px rgba(212, 225, 87, 0.35);
  --shadow-inset: inset 0 1px 0 rgba(255,255,255,.06);
  --gradient-brand: linear-gradient(135deg, #363d3f 0%, #454d50 100%);
  --gradient-hero: linear-gradient(180deg, #152d32 0%, #061c21 100%);
  --gradient-surface: linear-gradient(135deg, #0c282e 0%, #12343a 100%);
  --gradient-button: linear-gradient(135deg, #dce675 0%, #d4e157 100%);
  --effects-accent-bar: #d4e157;
  --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: #061c21;
  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: Noto Serif Bengali, Playfair Display, serif;
  line-height: 1.3;
  letter-spacing: 0;
  color: #fdfdfd;
}
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: #e0e0e0;
}
ul, ol {
  margin: 0;
}
a {
  color: #e6f5b5;
  text-decoration: none;
  transition: color 120ms, background-color 120ms, box-shadow 120ms, border-color 120ms, transform 120ms;
}
a:hover {
  color: #f1fbe0;
}
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid #d4e157;
  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 > * + *, .kp-wrap > * + *, .kp-prose > * + *, .kp-vlist > * + *, .kp-vlist-center > * + * {
  margin-block-start: 1.5rem;
}
@media (max-width: 48rem) {
  main > section {
    padding-block: 2.5rem;
  }
  main > section > * + *, main > article > * + *, .kp-wrap > * + *, .kp-prose > * + *, .kp-vlist > * + *, .kp-vlist-center > * + * {
    margin-block-start: 1rem;
  }
}

.kp-orb, .kp-orb-success, .kp-orb-warning, .kp-orb-error, .kp-orb-info {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #363d3f 0%, #454d50 100%);
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-weight: 700;
}
.kp-orb-success {
  background: #4caf50;
  color: #fff;
}
.kp-orb-warning {
  background: #ffb74d;
  color: #fff;
}
.kp-orb-error {
  background: #ef5350;
  color: #fff;
}
.kp-orb-info {
  background: #4fc3f7;
  color: #fff;
}

.kp-notice, .kp-notice-warning, .kp-notice-info, .kp-notice-success, .kp-notice-error {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 10px;
  background: #0c282e;
  border: 1px solid #1a3d44;
  border-left: 4px solid #d4e157;
}
.kp-notice > i, .kp-notice-warning > i, .kp-notice-info > i, .kp-notice-success > i, .kp-notice-error > i {
  flex: 0 0 auto;
  margin-top: .2em;
  color: #d4e157;
}
.kp-notice-success {
  border-left-color: #4caf50;
}
.kp-notice-warning {
  border-left-color: #ffb74d;
}
.kp-notice-error {
  border-left-color: #ef5350;
}
.kp-notice-info {
  border-left-color: #4fc3f7;
}
.kp-notice-success > i {
  color: #4caf50;
}
.kp-notice-warning > i {
  color: #ffb74d;
}
.kp-notice-error > i {
  color: #ef5350;
}
.kp-notice-info > i {
  color: #4fc3f7;
}

.kp-ledger-wrap {
  background: linear-gradient(135deg, #0c282e 0%, #12343a 100%);
  border: 1px solid #1a3d44;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(3, 13, 15, 0.4), inset 0 1px 0 rgba(255,255,255,.06);
  border-top: 3px solid #d4e157;
  overflow-x: auto;
  max-width: 100%;
}
.kp-ledger {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.kp-ledger th, .kp-ledger td {
  padding: 1rem;
  text-align: start;
  border-bottom: 1px solid #1a3d44;
  vertical-align: top;
}
.kp-ledger thead th {
  background: #12343a;
  color: #fdfdfd;
  font-weight: 600;
}
.kp-ledger tbody tr:last-child td {
  border-bottom: 0;
}
.kp-ledger td:first-child {
  color: #bdbdbd;
  font-weight: 600;
}

.kp-token {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem 1rem;
  border-radius: 9999px;
  background: #12343a;
  border: 1px solid #26525b;
  color: #fdfdfd;
  font-size: 0.875rem;
}
.kp-token > i {
  color: #d4e157;
}

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

.kp-sub {
  font-size: 0.875rem;
}
.kp-soft {
  color: #bdbdbd;
}
.kp-centered {
  text-align: center;
}
.kp-tint-accent {
  color: #d4e157;
}
.kp-tint-success {
  color: #4caf50;
}
.kp-tint-warning {
  color: #ffb74d;
}
.kp-tint-error {
  color: #ef5350;
}
.kp-tint-info {
  color: #4fc3f7;
}

main > section.kp-belt {
  background: linear-gradient(180deg, #0c282e 0%, #061c21 100%);
  padding-block: 4.5rem;
  margin-inline: -3.1915%;
  padding-inline: 3%;
}
@media (max-width: 48rem) {
  main > section.kp-belt {
    padding-block: 2.5rem;
  }
}
.kp-splash {
  background: linear-gradient(180deg, #152d32 0%, #061c21 100%);
  padding-block: 4.5rem;
  text-align: center;
  margin-inline: -3.1915%;
  padding-inline: 3%;
}
@media (max-width: 48rem) {
  .kp-splash {
    padding-block: 2.5rem;
  }
}

.kp-fold {
  background: linear-gradient(135deg, #0c282e 0%, #12343a 100%);
  border: 1px solid #1a3d44;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(3, 13, 15, 0.4), inset 0 1px 0 rgba(255,255,255,.06);
  border-top: 3px solid #d4e157;
  transition: color 120ms, background-color 120ms, box-shadow 120ms, border-color 120ms, transform 120ms;
}
.kp-fold + .kp-fold {
  margin-block-start: 1rem;
}
.kp-fold[open] {
  border-color: #363d3f;
}
.kp-fold-q {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 2rem;
  cursor: pointer;
  list-style: none;
}
.kp-fold-q::-webkit-details-marker {
  display: none;
}
.kp-fold-q h3 {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
}
.kp-fold-q::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  flex: 0 0 auto;
  color: #d4e157;
  transition: transform 200ms;
}
.kp-fold[open] .kp-fold-q::after {
  transform: rotate(180deg);
}
.kp-fold-a {
  margin: 0;
  padding: 0 2rem 2rem;
}
@media (max-width: 48rem) {
  .kp-fold-q {
    padding: 1.25rem;
  }
  .kp-fold-a {
    padding: 0 1.25rem 1.25rem;
  }
}

.kp-play {
  background: linear-gradient(135deg, #0c282e 0%, #12343a 100%);
  border: 1px solid #1a3d44;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(3, 13, 15, 0.4), inset 0 1px 0 rgba(255,255,255,.06);
  border-top: 3px solid #d4e157;
  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;
}
.kp-play:hover {
  background: linear-gradient(135deg, #0c282e 0%, #204046 100%);
  box-shadow: 0 12px 32px rgba(3, 13, 15, 0.5), inset 0 1px 0 rgba(255,255,255,.06);
}
.kp-play-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.kp-play-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 200ms;
}
.kp-play:hover .kp-play-media img {
  transform: scale(1.04);
}
.kp-play-play {
  position: absolute;
  bottom: .5rem;
  right: .5rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #d4e157;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 150ms;
}
.kp-play:hover .kp-play-play, .kp-play:focus-visible .kp-play-play {
  opacity: 1;
}
@media (hover: none) {
  .kp-play-play {
    opacity: 1;
  }
}
.kp-play {
  position: relative;
}
.kp-play-name {
  position: absolute;
  inset: auto 0 0 0;
  padding: .6rem .75rem;
  background: linear-gradient(180deg, transparent 0%, rgba(6, 28, 33, 0.75) 100%);
}
.kp-play-name h3 {
  margin: 0;
  font-size: 0.875rem;
  color: #fdfdfd;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 48rem) {
  .kp-play-name h3 {
    white-space: normal;
  }
}

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

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

.kp-wrap {
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
}
.kp-prose {
  max-width: 62ch;
  margin-inline: auto;
}
.kp-vlist, .kp-vlist-center {
  display: block;
}
.kp-vlist-center {
  text-align: center;
}
.kp-strip, .kp-strip-center {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.kp-strip-center {
  justify-content: center;
}
.kp-cells {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  gap: 1.5rem;
}
.kp-deck {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.kp-menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
@media (min-width: 48rem) {
  .kp-deck {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
  }
  .kp-menu {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}
.kp-bullets {
  list-style: none;
  padding: 0;
}
.kp-bullets > li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.kp-bullets > li + li {
  margin-block-start: .75rem;
}
.kp-bullets > li > i {
  flex: 0 0 1.25rem;
  text-align: center;
  margin-top: .2em;
  color: #d4e157;
}

.kp-panel {
  background: linear-gradient(135deg, #0c282e 0%, #12343a 100%);
  border: 1px solid #1a3d44;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(3, 13, 15, 0.4), inset 0 1px 0 rgba(255,255,255,.06);
  border-top: 3px solid #d4e157;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: color 120ms, background-color 120ms, box-shadow 120ms, border-color 120ms, transform 120ms;
}
.kp-panel:hover {
  background: linear-gradient(135deg, #0c282e 0%, #204046 100%);
  box-shadow: 0 12px 32px rgba(3, 13, 15, 0.5), inset 0 1px 0 rgba(255,255,255,.06);
}
@media (max-width: 48rem) {
  .kp-panel {
    padding: 1.25rem;
  }
}
.kp-panel > img {
  width: 100%;
  height: auto;
  display: block;
}

.kp-bottombar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 1000;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 4.75rem;
  background: #0c282e;
  border-top: 1px solid #1a3d44;
}
.kp-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;
}
.kp-bottombar-item i {
  font-size: 1.25rem;
}
.kp-bottombar-item:hover {
  color: #d4e157;
}

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

.kp-chips {
  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;
}
.kp-chips::-webkit-scrollbar {
  display: none;
}
.kp-chips-link {
  flex: 0 0 auto;
  white-space: nowrap;
  padding: .5rem 1rem;
  border-radius: 6px;
  background: #0c282e;
  border: 1px solid #1a3d44;
  color: #e0e0e0;
  font-size: 0.875rem;
  transition: color 120ms, background-color 120ms, box-shadow 120ms, border-color 120ms, transform 120ms;
}
.kp-chips-link:hover {
  border-color: #363d3f;
  color: #fdfdfd;
}

.kp-press, .kp-press-sm, .kp-press-full, .kp-press-outline {
  background: linear-gradient(135deg, #dce675 0%, #d4e157 100%);
  color: #000000;
  border-radius: 9999px;
  min-height: 44px;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(212, 225, 87, 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 120ms, background-color 120ms, box-shadow 120ms, border-color 120ms, transform 120ms;
}
.kp-press:hover, .kp-press-sm:hover, .kp-press-full:hover, .kp-press-outline:hover {
  background: #bbd444;
  box-shadow: 0 8px 22px rgba(212, 225, 87, 0.4);
}
.kp-press-sm {
  min-height: 36px;
  padding: 0 1rem;
  font-size: 0.875rem;
}
.kp-press-full {
  display: flex;
  width: 100%;
}
.kp-press-outline {
  background: transparent;
  background-image: none;
  color: #fdfdfd;
  border: 1px solid #26525b;
  box-shadow: none;
}
.kp-press-outline:hover {
  background: transparent;
  border-color: #363d3f;
  color: #fdfdfd;
  box-shadow: none;
}

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

/* page */
.kp-provider-name {
            font-weight: 700;
            letter-spacing: 0.02em;
            font-size: 1.1rem;
            display: block;
            margin-bottom: 0.25rem;
        }
