/* overflow-guard */
:root {
  --brand-primary: #1B5E20;
  --brand-primary-hover: #2E7D32;
  --brand-secondary: #A5D6A7;
  --brand-secondary-hover: #C8E6C9;
  --brand-accent: #FFB347;
  --background-main: #0A1A0D;
  --background-surface: #112514;
  --background-elevated: #18301B;
  --background-overlay: rgba(10, 26, 13, 0.75);
  --text-primary: #FDFCFB;
  --text-secondary: #E0E0E0;
  --text-muted: #BDBDBD;
  --text-brand-contrast: #000000;
  --text-link: #FFE4B5;
  --text-link-hover: #FFF3D6;
  --button-bg: #FFB347;
  --button-text: #000000;
  --button-hover-bg: #FFC97A;
  --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: #1B321E;
  --border-strong: #2D4D31;
  --border-brand: #1B5E20;
  --font-family-headings: Noto Sans Bengali, Space Grotesk, 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.3;
  --line-height-body: 1.65;
  --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: 72rem;
  --content-max-width: 72rem;
  --spacing-reading-max-width: 66ch;
  --reading-max-width: 66ch;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-pill: 9999px;
  --shadow-card: 0 8px 24px rgba(4, 12, 6, 0.4);
  --shadow-elevated: 0 12px 32px rgba(4, 12, 6, 0.5);
  --shadow-glow: 0 0 0 1px rgba(255, 179, 71, 0.35), 0 6px 18px rgba(255, 179, 71, 0.35);
  --shadow-inset: inset 0 1px 0 rgba(255,255,255,.06);
  --gradient-brand: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
  --gradient-hero: linear-gradient(180deg, #133217 0%, #0A1A0D 100%);
  --gradient-surface: linear-gradient(135deg, #112514 0%, #18301B 100%);
  --gradient-button: none;
  --effects-accent-bar: #FFB347;
  --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: #0A1A0D;
  color: #E0E0E0;
  font-family: Noto Sans Bengali, Source Sans 3, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  padding-bottom: 4.5rem;
  -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, Space Grotesk, sans-serif;
  line-height: 1.3;
  letter-spacing: 0;
  color: #FDFCFB;
}
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: #E0E0E0;
}
ul, ol {
  margin: 0;
}
a {
  color: #FFE4B5;
  text-decoration: none;
  transition: color 180ms, background-color 180ms, box-shadow 180ms, border-color 180ms, transform 180ms;
}
a:hover {
  color: #FFF3D6;
}
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid #FFB347;
  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 > * + *, .kzjHolder > * + *, .kzjNarrow > * + *, .kzjColumn > * + *, .kzjColumnCenter > * + * {
  margin-block-start: 1.5rem;
}
@media (max-width: 48rem) {
  main > section {
    padding-block: 2.5rem;
  }
  main > section > * + *, main > article > * + *, .kzjHolder > * + *, .kzjNarrow > * + *, .kzjColumn > * + *, .kzjColumnCenter > * + * {
    margin-block-start: 1rem;
  }
}

.kzjSmall {
  font-size: 0.875rem;
}
.kzjMuted {
  color: #BDBDBD;
}
.kzjCenter {
  text-align: center;
}
.kzjHueAccent {
  color: #FFB347;
}
.kzjHueSuccess {
  color: #4CAF50;
}
.kzjHueWarning {
  color: #FFB74D;
}
.kzjHueError {
  color: #EF5350;
}
.kzjHueInfo {
  color: #4FC3F7;
}

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

.kzjBox {
  background: linear-gradient(135deg, #112514 0%, #18301B 100%);
  border: 1px solid #1B321E;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(4, 12, 6, 0.4), inset 0 1px 0 rgba(255,255,255,.06);
  border-top: 3px solid #FFB347;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: color 180ms, background-color 180ms, box-shadow 180ms, border-color 180ms, transform 180ms;
}
.kzjBox:hover {
  background: linear-gradient(135deg, #112514 0%, #263C29 100%);
  box-shadow: 0 12px 32px rgba(4, 12, 6, 0.5), inset 0 1px 0 rgba(255,255,255,.06);
}
@media (max-width: 48rem) {
  .kzjBox {
    padding: 1.25rem;
  }
}
.kzjBox > img {
  width: 100%;
  height: auto;
  display: block;
}

.kzjQa {
  background: linear-gradient(135deg, #112514 0%, #18301B 100%);
  border: 1px solid #1B321E;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(4, 12, 6, 0.4), inset 0 1px 0 rgba(255,255,255,.06);
  border-top: 3px solid #FFB347;
  transition: color 180ms, background-color 180ms, box-shadow 180ms, border-color 180ms, transform 180ms;
}
.kzjQa + .kzjQa {
  margin-block-start: 1rem;
}
.kzjQa[open] {
  border-color: #1B5E20;
}
.kzjQaQ {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 2rem;
  cursor: pointer;
  list-style: none;
}
.kzjQaQ::-webkit-details-marker {
  display: none;
}
.kzjQaQ h3 {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
}
.kzjQaQ::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  flex: 0 0 auto;
  color: #FFB347;
  transition: transform 200ms;
}
.kzjQa[open] .kzjQaQ::after {
  transform: rotate(180deg);
}
.kzjQaA {
  margin: 0;
  padding: 0 2rem 2rem;
}
@media (max-width: 48rem) {
  .kzjQaQ {
    padding: 1.25rem;
  }
  .kzjQaA {
    padding: 0 1.25rem 1.25rem;
  }
}

.kzjCallout, .kzjCalloutWarning, .kzjCalloutInfo, .kzjCalloutSuccess, .kzjCalloutError {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 12px;
  background: #112514;
  border: 1px solid #1B321E;
  border-left: 4px solid #FFB347;
}
.kzjCallout > i, .kzjCalloutWarning > i, .kzjCalloutInfo > i, .kzjCalloutSuccess > i, .kzjCalloutError > i {
  flex: 0 0 auto;
  margin-top: .2em;
  color: #FFB347;
}
.kzjCalloutSuccess {
  border-left-color: #4CAF50;
}
.kzjCalloutWarning {
  border-left-color: #FFB74D;
}
.kzjCalloutError {
  border-left-color: #EF5350;
}
.kzjCalloutInfo {
  border-left-color: #4FC3F7;
}
.kzjCalloutSuccess > i {
  color: #4CAF50;
}
.kzjCalloutWarning > i {
  color: #FFB74D;
}
.kzjCalloutError > i {
  color: #EF5350;
}
.kzjCalloutInfo > i {
  color: #4FC3F7;
}

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

.kzjMedal, .kzjMedalSuccess, .kzjMedalWarning, .kzjMedalError, .kzjMedalInfo {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-weight: 700;
}
.kzjMedalSuccess {
  background: #4CAF50;
  color: #FFF;
}
.kzjMedalWarning {
  background: #FFB74D;
  color: #FFF;
}
.kzjMedalError {
  background: #EF5350;
  color: #FFF;
}
.kzjMedalInfo {
  background: #4FC3F7;
  color: #FFF;
}

.kzjBtn, .kzjBtnSm, .kzjBtnFull, .kzjBtnOutline {
  background: #FFB347;
  color: #000000;
  border-radius: 12px;
  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, 12, 6, 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;
}
.kzjBtn:hover, .kzjBtnSm:hover, .kzjBtnFull:hover, .kzjBtnOutline:hover {
  background: #FFC97A;
  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, 12, 6, 0.45);
}
.kzjBtnSm {
  min-height: 36px;
  padding: 0 1rem;
  font-size: 0.875rem;
}
.kzjBtnFull {
  display: flex;
  width: 100%;
}
.kzjBtnOutline {
  background: transparent;
  background-image: none;
  color: #FDFCFB;
  border: 1px solid #2D4D31;
  box-shadow: none;
}
.kzjBtnOutline:hover {
  background: transparent;
  border-color: #1B5E20;
  color: #FDFCFB;
  box-shadow: none;
}

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

.kzjTableWrap {
  background: linear-gradient(135deg, #112514 0%, #18301B 100%);
  border: 1px solid #1B321E;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(4, 12, 6, 0.4), inset 0 1px 0 rgba(255,255,255,.06);
  border-top: 3px solid #FFB347;
  overflow-x: auto;
  max-width: 100%;
}
.kzjTable {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.kzjTable th, .kzjTable td {
  padding: 1rem;
  text-align: start;
  border-bottom: 1px solid #1B321E;
  vertical-align: top;
}
.kzjTable thead th {
  background: #18301B;
  color: #FDFCFB;
  font-weight: 600;
}
.kzjTable tbody tr:last-child td {
  border-bottom: 0;
}
.kzjTable td:first-child {
  color: #BDBDBD;
  font-weight: 600;
}

main > section.kzjZone {
  background: linear-gradient(180deg, #112514 0%, #0A1A0D 100%);
  padding-block: 4.5rem;
}
@media (max-width: 48rem) {
  main > section.kzjZone {
    padding-block: 2.5rem;
  }
}
.kzjSplash {
  background: linear-gradient(180deg, #133217 0%, #0A1A0D 100%);
  padding-block: 4.5rem;
  text-align: center;
  margin-inline: -3.1915%;
  padding-inline: 3%;
}
@media (max-width: 48rem) {
  .kzjSplash {
    padding-block: 2.5rem;
  }
}

.kzjHead {
  background: #0A1A0D;
  border-bottom: 1px solid #1B321E;
  padding: .75rem 3%;
  position: sticky;
  top: 0;
  z-index: 100;
}
.kzjHeadInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.kzjHeadBrand {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: #FDFCFB;
}
.kzjHeadBrand img {
  border-radius: 6px;
}
.kzjHeadBrand strong {
  font-size: 16px;
  font-weight: 400;
}
.kzjHeadActions {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.kzjHolder {
  width: 100%;
  max-width: 72rem;
  margin-inline: auto;
}
.kzjNarrow {
  max-width: 66ch;
  margin-inline: auto;
}
.kzjColumn, .kzjColumnCenter {
  display: block;
}
.kzjColumnCenter {
  text-align: center;
}
.kzjRow, .kzjRowCenter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.kzjRowCenter {
  justify-content: center;
}
.kzjCells {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  gap: 1.5rem;
}
.kzjShowcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.kzjTiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
@media (min-width: 48rem) {
  .kzjShowcase {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
  }
  .kzjTiles {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}
.kzjTicks {
  list-style: none;
  padding: 0;
}
.kzjTicks > li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.kzjTicks > li + li {
  margin-block-start: .75rem;
}
.kzjTicks > li > i {
  flex: 0 0 1.25rem;
  text-align: center;
  margin-top: .2em;
  color: #FFB347;
}

.kzjJumpbar {
  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;
}
.kzjJumpbar::-webkit-scrollbar {
  display: none;
}
.kzjJumpbarLink {
  flex: 0 0 auto;
  white-space: nowrap;
  padding: .5rem 1rem;
  border-radius: 6px;
  background: #112514;
  border: 1px solid #1B321E;
  color: #E0E0E0;
  font-size: 0.875rem;
  transition: color 180ms, background-color 180ms, box-shadow 180ms, border-color 180ms, transform 180ms;
}
.kzjJumpbarLink:hover {
  border-color: #1B5E20;
  color: #FDFCFB;
}

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

.kzjTabbar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 1000;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 4.5rem;
  background: #112514;
  border-top: 1px solid #1B321E;
}
.kzjTabbarItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  flex: 1 1 0;
  padding: .5rem 0;
  font-size: 0.75rem;
  color: #BDBDBD;
}
.kzjTabbarItem i {
  font-size: 1.25rem;
}
.kzjTabbarItem:hover {
  color: #FFB347;
}

.kzjTag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem 1rem;
  border-radius: 9999px;
  background: #18301B;
  border: 1px solid #2D4D31;
  color: #FDFCFB;
  font-size: 0.875rem;
}
.kzjTag > i {
  color: #FFB347;
}

.kzjGame {
  background: linear-gradient(135deg, #112514 0%, #18301B 100%);
  border: 1px solid #1B321E;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(4, 12, 6, 0.4), inset 0 1px 0 rgba(255,255,255,.06);
  border-top: 3px solid #FFB347;
  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;
}
.kzjGame:hover {
  background: linear-gradient(135deg, #112514 0%, #263C29 100%);
  box-shadow: 0 12px 32px rgba(4, 12, 6, 0.5), inset 0 1px 0 rgba(255,255,255,.06);
}
.kzjGameMedia {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.kzjGameMedia img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 200ms;
}
.kzjGame:hover .kzjGameMedia img {
  transform: scale(1.04);
}
.kzjGamePlay {
  position: absolute;
  top: .5rem;
  right: .5rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #FFB347;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 150ms;
}
.kzjGame:hover .kzjGamePlay, .kzjGame:focus-visible .kzjGamePlay {
  opacity: 1;
}
@media (hover: none) {
  .kzjGamePlay {
    opacity: 1;
  }
}
.kzjGame {
  position: relative;
}
.kzjGameName {
  position: absolute;
  inset: auto 0 0 0;
  padding: .6rem .75rem;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 26, 13, 0.75) 100%);
}
.kzjGameName h3 {
  margin: 0;
  font-size: 0.875rem;
  color: #FDFCFB;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 48rem) {
  .kzjGameName h3 {
    white-space: normal;
  }
}

/* page */
.kzjProviderName {
            font-weight: 700;
            letter-spacing: 0.02em;
        }
