/* overflow-guard */
:root {
  --brand-primary: #3d454d;
  --brand-primary-hover: #4a535c;
  --brand-secondary: #7b838a;
  --brand-secondary-hover: #8c949d;
  --brand-accent: #b4e600;
  --background-main: #1a120c;
  --background-surface: #241911;
  --background-elevated: #2e2218;
  --background-overlay: rgba(26, 18, 12, 0.75);
  --text-primary: #fdfbfa;
  --text-secondary: #e8e4e1;
  --text-muted: #bdb7b3;
  --text-brand-contrast: #000000;
  --text-link: #ddf2aa;
  --text-link-hover: #f2ffcc;
  --button-bg: #b4e600;
  --button-text: #000000;
  --button-hover-bg: #9acd00;
  --button-hover-text: #000000;
  --semantic-success: #4caf50;
  --success: #4caf50;
  --semantic-error: #ef5350;
  --error: #ef5350;
  --semantic-warning: #ffb74d;
  --warning: #ffb74d;
  --semantic-info: #42a5f5;
  --info: #42a5f5;
  --border-default: #2d231c;
  --border-strong: #3d3228;
  --border-brand: #3d454d;
  --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: 700;
  --role-weight-h2: 600;
  --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.25;
  --line-height-body: 1.6;
  --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: 78rem;
  --content-max-width: 78rem;
  --spacing-reading-max-width: 66ch;
  --reading-max-width: 66ch;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-pill: 9999px;
  --shadow-card: 0 4px 12px rgba(12, 8, 5, 0.35);
  --shadow-elevated: 0 8px 24px rgba(12, 8, 5, 0.45);
  --shadow-glow: 0 0 0 1px rgba(180, 230, 0, 0.35), 0 6px 18px rgba(180, 230, 0, 0.35);
  --shadow-inset: inset 0 1px 0 rgba(255,255,255,.08);
  --gradient-brand: linear-gradient(135deg, #3d454d 0%, #4a535c 100%);
  --gradient-hero: linear-gradient(180deg, #2a231e 0%, #1a120c 100%);
  --gradient-surface: linear-gradient(#2e2218, #2e2218);
  --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: #1a120c;
  color: #e8e4e1;
  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: #fdfbfa;
}
h1 {
  font-size: 1.8rem;
  font-weight: 700;
}
h2 {
  font-size: 1.5rem;
  font-weight: 600;
}
h3 {
  font-size: 1rem;
  font-weight: 600;
}
h4 {
  font-size: 1rem;
  font-weight: 600;
}
p {
  margin: 0;
  color: #e8e4e1;
}
ul, ol {
  margin: 0;
}
a {
  color: #ddf2aa;
  text-decoration: none;
  transition: color 120ms, background-color 120ms, box-shadow 120ms, border-color 120ms, transform 120ms;
}
a:hover {
  color: #f2ffcc;
}
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid #b4e600;
  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 > * + *, .kh_shell > * + *, .kh_measure > * + *, .kh_flow > * + *, .kh_flow_center > * + * {
  margin-block-start: 1.25rem;
}
@media (max-width: 48rem) {
  main > section {
    padding-block: 2rem;
  }
  main > section > * + *, main > article > * + *, .kh_shell > * + *, .kh_measure > * + *, .kh_flow > * + *, .kh_flow_center > * + * {
    margin-block-start: 1rem;
  }
}

.kh_topbar {
  background: #1a120c;
  border-bottom: 1px solid #2d231c;
  padding: .75rem 3%;
  position: sticky;
  top: 0;
  z-index: 100;
}
.kh_topbar_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.kh_topbar_brand {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: #fdfbfa;
}
.kh_topbar_brand img {
  border-radius: 6px;
}
.kh_topbar_brand strong {
  font-size: 16px;
  font-weight: 400;
}
.kh_topbar_actions {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.kh_route {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  padding: 1rem 0;
  font-size: 0.875rem;
  color: #e8e4e1;
}
.kh_route a {
  color: #ddf2aa;
}
.kh_route span {
  color: #fdfbfa;
}

.kh_navbar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 1000;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 4.75rem;
  background: #241911;
  border-top: 1px solid #2d231c;
}
.kh_navbar_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  flex: 1 1 0;
  padding: .5rem 0;
  font-size: 0.75rem;
  color: #bdb7b3;
}
.kh_navbar_item i {
  font-size: 1.25rem;
}
.kh_navbar_item:hover {
  color: #b4e600;
}

.kh_qa {
  background: #2e2218;
  border: 1px solid #3d3228;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(12, 8, 5, 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;
}
.kh_qa + .kh_qa {
  margin-block-start: 1rem;
}
.kh_qa[open] {
  border-color: #3d454d;
}
.kh_qa_q {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  cursor: pointer;
  list-style: none;
}
.kh_qa_q::-webkit-details-marker {
  display: none;
}
.kh_qa_q h3 {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
}
.kh_qa_q::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  flex: 0 0 auto;
  color: #b4e600;
  transition: transform 200ms;
}
.kh_qa[open] .kh_qa_q::after {
  transform: rotate(180deg);
}
.kh_qa_a {
  margin: 0;
  padding: 0 1.5rem 1.5rem;
}
@media (max-width: 48rem) {
  .kh_qa_q {
    padding: 1rem;
  }
  .kh_qa_a {
    padding: 0 1rem 1rem;
  }
}

.kh_datatable_wrap {
  background: #2e2218;
  border: 1px solid #3d3228;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(12, 8, 5, 0.35), inset 0 1px 0 rgba(255,255,255,.08);
  overflow-x: auto;
  max-width: 100%;
}
.kh_datatable {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.kh_datatable th, .kh_datatable td {
  padding: 1rem;
  text-align: start;
  border-bottom: 1px solid #2d231c;
  vertical-align: top;
}
.kh_datatable thead th {
  background: #2e2218;
  color: #fdfbfa;
  font-weight: 600;
}
.kh_datatable tbody tr:last-child td {
  border-bottom: 0;
}
.kh_datatable td:first-child {
  color: #bdb7b3;
  font-weight: 600;
}

.kh_cta, .kh_cta_sm, .kh_cta_full, .kh_cta_outline {
  background: #b4e600;
  color: #000000;
  border-radius: 12px;
  min-height: 44px;
  font-weight: 700;
  box-shadow: 0 0 0 1px rgba(180, 230, 0, 0.35), 0 6px 18px rgba(180, 230, 0, 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 120ms, background-color 120ms, box-shadow 120ms, border-color 120ms, transform 120ms;
}
.kh_cta:hover, .kh_cta_sm:hover, .kh_cta_full:hover, .kh_cta_outline:hover {
  background: #9acd00;
  box-shadow: 0 0 0 1px rgba(180, 230, 0, 0.5), 0 8px 26px rgba(180, 230, 0, 0.5);
}
.kh_cta_sm {
  min-height: 36px;
  padding: 0 1rem;
  font-size: 0.875rem;
}
.kh_cta_full {
  display: flex;
  width: 100%;
}
.kh_cta_outline {
  background: transparent;
  background-image: none;
  color: #fdfbfa;
  border: 1px solid #3d3228;
  box-shadow: none;
}
.kh_cta_outline:hover {
  background: transparent;
  border-color: #3d454d;
  color: #fdfbfa;
  box-shadow: none;
}

.kh_sub {
  font-size: 0.875rem;
}
.kh_muted {
  color: #bdb7b3;
}
.kh_mid {
  text-align: center;
}
.kh_shade_accent {
  color: #b4e600;
}
.kh_shade_success {
  color: #4caf50;
}
.kh_shade_warning {
  color: #ffb74d;
}
.kh_shade_error {
  color: #ef5350;
}
.kh_shade_info {
  color: #42a5f5;
}

main > section.kh_stripe {
  background: #241911;
  border-top: 1px solid #2d231c;
  border-bottom: 1px solid #2d231c;
  padding-block: 3.5rem;
}
@media (max-width: 48rem) {
  main > section.kh_stripe {
    padding-block: 2rem;
  }
}
.kh_intro {
  background: linear-gradient(180deg, #2a231e 0%, #1a120c 100%);
  padding-block: 3.5rem;
  text-align: center;
  margin-inline: -3.1915%;
  padding-inline: 3%;
}
@media (max-width: 48rem) {
  .kh_intro {
    padding-block: 2rem;
  }
}

.kh_rail {
  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;
}
.kh_rail::-webkit-scrollbar {
  display: none;
}
.kh_rail_link {
  flex: 0 0 auto;
  white-space: nowrap;
  padding: .5rem 1rem;
  border-radius: 6px;
  background: #241911;
  border: 1px solid #2d231c;
  color: #e8e4e1;
  font-size: 0.875rem;
  transition: color 120ms, background-color 120ms, box-shadow 120ms, border-color 120ms, transform 120ms;
}
.kh_rail_link:hover {
  border-color: #3d454d;
  color: #fdfbfa;
}

.kh_pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem 1rem;
  border-radius: 9999px;
  background: #2e2218;
  border: 1px solid #3d3228;
  color: #fdfbfa;
  font-size: 0.875rem;
}
.kh_pill > i {
  color: #b4e600;
}

.kh_slab {
  background: #2e2218;
  border: 1px solid #3d3228;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(12, 8, 5, 0.35), inset 0 1px 0 rgba(255,255,255,.08);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: color 120ms, background-color 120ms, box-shadow 120ms, border-color 120ms, transform 120ms;
}
.kh_slab:hover {
  border-color: #3d454d;
  box-shadow: 0 0 0 1px rgba(180, 230, 0, 0.35), 0 6px 18px rgba(180, 230, 0, 0.35), inset 0 1px 0 rgba(255,255,255,.08);
}
@media (max-width: 48rem) {
  .kh_slab {
    padding: 1rem;
  }
}
.kh_slab > img {
  width: 100%;
  height: auto;
  display: block;
}

.kh_foot {
  background: #1a120c;
  border-top: 1px solid #2d231c;
  padding: 3rem 3% 2rem;
  color: #bdb7b3;
}
.kh_foot_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  text-align: center;
}
.kh_foot_col > p, .kh_foot_col > h3 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #fdfbfa;
  margin: 0 0 .75rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.kh_foot_col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.kh_foot_col li + li {
  margin-block-start: .5rem;
}
.kh_foot_col a {
  color: #bdb7b3;
  font-size: 0.875rem;
}
.kh_foot_col a:hover {
  color: #f2ffcc;
}
.kh_foot_meta {
  margin-block-start: 2rem;
  padding-block-start: 1.5rem;
  border-top: 1px solid #2d231c;
  text-align: center;
  font-size: 0.875rem;
}
.kh_foot_meta > * + * {
  margin-block-start: .5rem;
}

.kh_callout, .kh_callout_warning, .kh_callout_info, .kh_callout_success, .kh_callout_error {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 12px;
  background: #241911;
  border: 1px solid #2d231c;
  border-left: 4px solid #b4e600;
}
.kh_callout > i, .kh_callout_warning > i, .kh_callout_info > i, .kh_callout_success > i, .kh_callout_error > i {
  flex: 0 0 auto;
  margin-top: .2em;
  color: #b4e600;
}
.kh_callout_success {
  border-left-color: #4caf50;
}
.kh_callout_warning {
  border-left-color: #ffb74d;
}
.kh_callout_error {
  border-left-color: #ef5350;
}
.kh_callout_info {
  border-left-color: #42a5f5;
}
.kh_callout_success > i {
  color: #4caf50;
}
.kh_callout_warning > i {
  color: #ffb74d;
}
.kh_callout_error > i {
  color: #ef5350;
}
.kh_callout_info > i {
  color: #42a5f5;
}

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

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

.kh_shell {
  width: 100%;
  max-width: 78rem;
  margin-inline: auto;
}
.kh_measure {
  max-width: 66ch;
  margin-inline: auto;
}
.kh_flow, .kh_flow_center {
  display: block;
}
.kh_flow_center {
  text-align: center;
}
.kh_strip, .kh_strip_center {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.kh_strip_center {
  justify-content: center;
}
.kh_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  gap: 1.25rem;
}
.kh_showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.kh_picks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
@media (min-width: 48rem) {
  .kh_showcase {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
  }
  .kh_picks {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
}
.kh_ticks {
  list-style: none;
  padding: 0;
}
.kh_ticks > li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.kh_ticks > li + li {
  margin-block-start: .75rem;
}
.kh_ticks > li > i {
  flex: 0 0 1.25rem;
  text-align: center;
  margin-top: .2em;
  color: #b4e600;
}

.kh_gamecard {
  background: #2e2218;
  border: 1px solid #3d3228;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(12, 8, 5, 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;
}
.kh_gamecard:hover {
  border-color: #3d454d;
  box-shadow: 0 0 0 1px rgba(180, 230, 0, 0.35), 0 6px 18px rgba(180, 230, 0, 0.35), inset 0 1px 0 rgba(255,255,255,.08);
}
.kh_gamecard_media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.kh_gamecard_media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 200ms;
}
.kh_gamecard:hover .kh_gamecard_media img {
  transform: scale(1.04);
}
.kh_gamecard_play {
  position: absolute;
  top: .5rem;
  right: .5rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #b4e600;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 150ms;
}
.kh_gamecard:hover .kh_gamecard_play, .kh_gamecard:focus-visible .kh_gamecard_play {
  opacity: 1;
}
@media (hover: none) {
  .kh_gamecard_play {
    opacity: 1;
  }
}
.kh_gamecard {
  position: relative;
}
.kh_gamecard_name {
  position: absolute;
  inset: auto 0 0 0;
  padding: .6rem .75rem;
  background: linear-gradient(180deg, transparent 0%, rgba(26, 18, 12, 0.75) 100%);
}
.kh_gamecard_name h3 {
  margin: 0;
  font-size: 0.875rem;
  color: #fdfbfa;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 48rem) {
  .kh_gamecard_name h3 {
    white-space: normal;
  }
}

.kh_badge, .kh_badge_success, .kh_badge_warning, .kh_badge_error, .kh_badge_info {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #3d454d 0%, #4a535c 100%);
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-weight: 700;
}
.kh_badge_success {
  background: #4caf50;
  color: #fff;
}
.kh_badge_warning {
  background: #ffb74d;
  color: #fff;
}
.kh_badge_error {
  background: #ef5350;
  color: #fff;
}
.kh_badge_info {
  background: #42a5f5;
  color: #fff;
}

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