/* overflow-guard */
:root {
  --brand-primary: #1B4D3E;
  --brand-primary-hover: #256352;
  --brand-secondary: #A89F91;
  --brand-secondary-hover: #BDB5A7;
  --brand-accent: #FFB366;
  --background-main: #1A110B;
  --background-surface: #231812;
  --background-elevated: #2D2218;
  --background-overlay: rgba(26, 17, 11, 0.75);
  --text-primary: #FDFBFA;
  --text-secondary: #E8E4E0;
  --text-muted: #BDBBBA;
  --text-brand-contrast: #000000;
  --text-link: #FFE4C4;
  --text-link-hover: #FFF5E6;
  --button-bg: #FFB366;
  --button-text: #000000;
  --button-hover-bg: #FFC994;
  --button-hover-text: #000000;
  --semantic-success: #4CAF50;
  --success: #4CAF50;
  --semantic-error: #EF5350;
  --error: #EF5350;
  --semantic-warning: #FFB74D;
  --warning: #FFB74D;
  --semantic-info: #64B5F6;
  --info: #64B5F6;
  --border-default: #2D2218;
  --border-strong: #3D3127;
  --border-brand: #1B4D3E;
  --font-family-headings: Sora, Noto Sans Bengali, sans-serif;
  --font-family-body: Source Sans 3, Noto Sans Bengali, 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: 600;
  --role-weight-h2: 600;
  --role-weight-h3: 500;
  --role-weight-h4: 500;
  --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.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: 80rem;
  --content-max-width: 80rem;
  --spacing-reading-max-width: 68ch;
  --reading-max-width: 68ch;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --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(255, 179, 102, 0.35), 0 6px 18px rgba(255, 179, 102, 0.35);
  --shadow-inset: inset 0 1px 0 rgba(255,255,255,.08);
  --gradient-brand: linear-gradient(135deg, #1B4D3E 0%, #256352 100%);
  --gradient-hero: linear-gradient(180deg, #21241C 0%, #1A110B 100%);
  --gradient-surface: linear-gradient(#2D2218, #2D2218);
  --gradient-button: linear-gradient(135deg, #FFC182 0%, #FFB366 100%);
  --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: #1A110B;
  color: #E8E4E0;
  font-family: Source Sans 3, Noto Sans Bengali, 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: Sora, Noto Sans Bengali, sans-serif;
  line-height: 1.35;
  letter-spacing: 0;
  color: #FDFBFA;
}
h1 {
  font-size: 1.8rem;
  font-weight: 600;
}
h2 {
  font-size: 1.5rem;
  font-weight: 600;
}
h3 {
  font-size: 1rem;
  font-weight: 500;
}
h4 {
  font-size: 1rem;
  font-weight: 500;
}
p {
  margin: 0;
  color: #E8E4E0;
}
ul, ol {
  margin: 0;
}
a {
  color: #FFE4C4;
  text-decoration: none;
  transition: color 180ms, background-color 180ms, box-shadow 180ms, border-color 180ms, transform 180ms;
}
a:hover {
  color: #FFF5E6;
}
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid #FFB366;
  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 > * + *, .zbl_holder > * + *, .zbl_copy > * + *, .zbl_stack > * + *, .zbl_stack_center > * + * {
  margin-block-start: 1.25rem;
}
@media (max-width: 48rem) {
  main > section {
    padding-block: 2rem;
  }
  main > section > * + *, main > article > * + *, .zbl_holder > * + *, .zbl_copy > * + *, .zbl_stack > * + *, .zbl_stack_center > * + * {
    margin-block-start: 1rem;
  }
}

.zbl_cta, .zbl_cta_sm, .zbl_cta_full, .zbl_cta_outline {
  background: linear-gradient(135deg, #FFC182 0%, #FFB366 100%);
  color: #000000;
  border-radius: 16px;
  min-height: 44px;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(255, 179, 102, 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 180ms, background-color 180ms, box-shadow 180ms, border-color 180ms, transform 180ms;
}
.zbl_cta:hover, .zbl_cta_sm:hover, .zbl_cta_full:hover, .zbl_cta_outline:hover {
  background: #FFC994;
  box-shadow: 0 8px 22px rgba(255, 179, 102, 0.4);
}
.zbl_cta_sm {
  min-height: 36px;
  padding: 0 1rem;
  font-size: 0.875rem;
}
.zbl_cta_full {
  display: flex;
  width: 100%;
}
.zbl_cta_outline {
  background: transparent;
  background-image: none;
  color: #FDFBFA;
  border: 1px solid #3D3127;
  box-shadow: none;
}
.zbl_cta_outline:hover {
  background: transparent;
  border-color: #1B4D3E;
  color: #FDFBFA;
  box-shadow: none;
}

.zbl_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;
}
.zbl_chips::-webkit-scrollbar {
  display: none;
}
.zbl_chips_link {
  flex: 0 0 auto;
  white-space: nowrap;
  padding: .5rem 1rem;
  border-radius: 8px;
  background: #231812;
  border: 1px solid #2D2218;
  color: #E8E4E0;
  font-size: 0.875rem;
  transition: color 180ms, background-color 180ms, box-shadow 180ms, border-color 180ms, transform 180ms;
}
.zbl_chips_link:hover {
  border-color: #1B4D3E;
  color: #FDFBFA;
}

.zbl_memo, .zbl_memo_warning, .zbl_memo_info, .zbl_memo_success, .zbl_memo_error {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 16px;
  background: #231812;
  border: 1px solid #2D2218;
  border-left: 4px solid #FFB366;
}
.zbl_memo > i, .zbl_memo_warning > i, .zbl_memo_info > i, .zbl_memo_success > i, .zbl_memo_error > i {
  flex: 0 0 auto;
  margin-top: .2em;
  color: #FFB366;
}
.zbl_memo_success {
  border-left-color: #4CAF50;
}
.zbl_memo_warning {
  border-left-color: #FFB74D;
}
.zbl_memo_error {
  border-left-color: #EF5350;
}
.zbl_memo_info {
  border-left-color: #64B5F6;
}
.zbl_memo_success > i {
  color: #4CAF50;
}
.zbl_memo_warning > i {
  color: #FFB74D;
}
.zbl_memo_error > i {
  color: #EF5350;
}
.zbl_memo_info > i {
  color: #64B5F6;
}

.zbl_appbar {
  background: #1A110B;
  border-bottom: 1px solid #2D2218;
  padding: .75rem 3%;
  position: sticky;
  top: 0;
  z-index: 100;
}
.zbl_appbar_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.zbl_appbar_brand {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: #FDFBFA;
}
.zbl_appbar_brand img {
  border-radius: 8px;
}
.zbl_appbar_brand strong {
  font-size: 16px;
  font-weight: 400;
}
.zbl_appbar_actions {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.zbl_badge, .zbl_badge_success, .zbl_badge_warning, .zbl_badge_error, .zbl_badge_info {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #1B4D3E 0%, #256352 100%);
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-weight: 700;
}
.zbl_badge_success {
  background: #4CAF50;
  color: #FFF;
}
.zbl_badge_warning {
  background: #FFB74D;
  color: #FFF;
}
.zbl_badge_error {
  background: #EF5350;
  color: #FFF;
}
.zbl_badge_info {
  background: #64B5F6;
  color: #FFF;
}

.zbl_table_wrap {
  background: rgba(45, 34, 24, 0.65);
  border: 1px solid #3D3127;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(12, 8, 5, 0.35), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow-x: auto;
  max-width: 100%;
}
.zbl_table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.zbl_table th, .zbl_table td {
  padding: 1rem;
  text-align: start;
  border-bottom: 1px solid #2D2218;
  vertical-align: top;
}
.zbl_table thead th {
  background: #2D2218;
  color: #FDFBFA;
  font-weight: 600;
}
.zbl_table tbody tr:last-child td {
  border-bottom: 0;
}
.zbl_table td:first-child {
  color: #BDBBBA;
  font-weight: 600;
}

.zbl_foot {
  background: #1A110B;
  border-top: 1px solid #2D2218;
  padding: 3rem 3% 2rem;
  color: #BDBBBA;
}
.zbl_foot_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  text-align: center;
}
.zbl_foot_col > p, .zbl_foot_col > h3 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #FDFBFA;
  margin: 0 0 .75rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.zbl_foot_col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.zbl_foot_col li + li {
  margin-block-start: .5rem;
}
.zbl_foot_col a {
  color: #BDBBBA;
  font-size: 0.875rem;
}
.zbl_foot_col a:hover {
  color: #FFF5E6;
}
.zbl_foot_meta {
  margin-block-start: 2rem;
  padding-block-start: 1.5rem;
  border-top: 1px solid #2D2218;
  text-align: center;
  font-size: 0.875rem;
}
.zbl_foot_meta > * + * {
  margin-block-start: .5rem;
}

.zbl_title {
  text-transform: uppercase;
  letter-spacing: .04em;
}

.zbl_crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  padding: 1rem 0;
  font-size: 0.875rem;
  color: #E8E4E0;
}
.zbl_crumbs a {
  color: #FFE4C4;
}
.zbl_crumbs span {
  color: #FDFBFA;
}

.zbl_token {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem 1rem;
  border-radius: 9999px;
  background: #2D2218;
  border: 1px solid #3D3127;
  color: #FDFBFA;
  font-size: 0.875rem;
}
.zbl_token > i {
  color: #FFB366;
}

.zbl_gamecard {
  background: rgba(45, 34, 24, 0.65);
  border: 1px solid #3D3127;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(12, 8, 5, 0.35), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  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;
}
.zbl_gamecard:hover {
  border-color: #1B4D3E;
  box-shadow: 0 0 0 1px rgba(255, 179, 102, 0.35), 0 6px 18px rgba(255, 179, 102, 0.35), inset 0 1px 0 rgba(255,255,255,.08);
}
.zbl_gamecard_media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.zbl_gamecard_media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 200ms;
}
.zbl_gamecard:hover .zbl_gamecard_media img {
  transform: scale(1.04);
}
.zbl_gamecard_play {
  position: absolute;
  bottom: .5rem;
  right: .5rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #FFB366;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 150ms;
}
.zbl_gamecard:hover .zbl_gamecard_play, .zbl_gamecard:focus-visible .zbl_gamecard_play {
  opacity: 1;
}
@media (hover: none) {
  .zbl_gamecard_play {
    opacity: 1;
  }
}
.zbl_gamecard_name {
  padding: .6rem .75rem;
  background: #2D2218;
}
.zbl_gamecard_name h3 {
  margin: 0;
  font-size: 0.875rem;
  color: #FDFBFA;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 48rem) {
  .zbl_gamecard_name h3 {
    white-space: normal;
  }
}

.zbl_holder {
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
}
.zbl_copy {
  max-width: 68ch;
  margin-inline: auto;
}
.zbl_stack, .zbl_stack_center {
  display: block;
}
.zbl_stack_center {
  text-align: center;
}
.zbl_inline, .zbl_inline_center {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.zbl_inline_center {
  justify-content: center;
}
.zbl_mosaic {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  gap: 1.25rem;
}
.zbl_shelf {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.zbl_picks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
@media (min-width: 48rem) {
  .zbl_shelf {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
  }
  .zbl_picks {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
}
.zbl_items {
  list-style: none;
  padding: 0;
}
.zbl_items > li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.zbl_items > li + li {
  margin-block-start: .75rem;
}
.zbl_items > li > i {
  flex: 0 0 1.25rem;
  text-align: center;
  margin-top: .2em;
  color: #FFB366;
}

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

.zbl_reveal {
  background: rgba(45, 34, 24, 0.65);
  border: 1px solid #3D3127;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(12, 8, 5, 0.35), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: color 180ms, background-color 180ms, box-shadow 180ms, border-color 180ms, transform 180ms;
}
.zbl_reveal + .zbl_reveal {
  margin-block-start: 1rem;
}
.zbl_reveal[open] {
  border-color: #1B4D3E;
}
.zbl_reveal_q {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  cursor: pointer;
  list-style: none;
}
.zbl_reveal_q::-webkit-details-marker {
  display: none;
}
.zbl_reveal_q h3 {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
}
.zbl_reveal_q::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  flex: 0 0 auto;
  color: #FFB366;
  transition: transform 200ms;
}
.zbl_reveal[open] .zbl_reveal_q::after {
  transform: rotate(180deg);
}
.zbl_reveal_a {
  margin: 0;
  padding: 0 1.5rem 1.5rem;
}
@media (max-width: 48rem) {
  .zbl_reveal_q {
    padding: 1rem;
  }
  .zbl_reveal_a {
    padding: 0 1rem 1rem;
  }
}

.zbl_slab {
  background: rgba(45, 34, 24, 0.65);
  border: 1px solid #3D3127;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(12, 8, 5, 0.35), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: color 180ms, background-color 180ms, box-shadow 180ms, border-color 180ms, transform 180ms;
}
.zbl_slab:hover {
  border-color: #1B4D3E;
  box-shadow: 0 0 0 1px rgba(255, 179, 102, 0.35), 0 6px 18px rgba(255, 179, 102, 0.35), inset 0 1px 0 rgba(255,255,255,.08);
}
@media (max-width: 48rem) {
  .zbl_slab {
    padding: 1rem;
  }
}
.zbl_slab > img {
  width: 100%;
  height: auto;
  display: block;
}

.zbl_tabbar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 1000;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 4.75rem;
  background: #231812;
  border-top: 1px solid #2D2218;
}
.zbl_tabbar_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  flex: 1 1 0;
  padding: .5rem 0;
  font-size: 0.75rem;
  color: #BDBBBA;
}
.zbl_tabbar_item i {
  font-size: 1.25rem;
}
.zbl_tabbar_item:hover {
  color: #FFB366;
}

main > section.zbl_belt {
  background: #231812;
  border-top: 1px solid #2D2218;
  border-bottom: 1px solid #2D2218;
  padding-block: 3.5rem;
  margin-inline: -3.1915%;
  padding-inline: 3%;
}
@media (max-width: 48rem) {
  main > section.zbl_belt {
    padding-block: 2rem;
  }
}
.zbl_splash {
  background: linear-gradient(180deg, #21241C 0%, #1A110B 100%);
  padding-block: 3.5rem;
  text-align: center;
  margin-inline: -3.1915%;
  padding-inline: 3%;
}
@media (max-width: 48rem) {
  .zbl_splash {
    padding-block: 2rem;
  }
}

.zbl_minor {
  font-size: 0.875rem;
}
.zbl_soft {
  color: #BDBBBA;
}
.zbl_centered {
  text-align: center;
}
.zbl_tone_accent {
  color: #FFB366;
}
.zbl_tone_success {
  color: #4CAF50;
}
.zbl_tone_warning {
  color: #FFB74D;
}
.zbl_tone_error {
  color: #EF5350;
}
.zbl_tone_info {
  color: #64B5F6;
}

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