/* overflow-guard */
:root {
  --brand-primary: #3f48c9;
  --brand-primary-hover: #525bdb;
  --brand-secondary: #a8b0d1;
  --brand-secondary-hover: #c0c8e0;
  --brand-accent: #e8f23d;
  --background-main: #1b110b;
  --background-surface: #251a12;
  --background-elevated: #30241a;
  --background-overlay: rgba(27, 17, 11, 0.75);
  --text-primary: #f5f5f5;
  --text-secondary: #dcdcdc;
  --text-muted: #bdbdbd;
  --text-brand-contrast: #000000;
  --text-link: #d1e3ff;
  --text-link-hover: #eaf2ff;
  --button-bg: #e8f23d;
  --button-text: #000000;
  --button-hover-bg: #c7d62b;
  --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: #2d2118;
  --border-strong: #3d3025;
  --border-brand: #3f48c9;
  --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: 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.25;
  --line-height-body: 1.55;
  --letter-spacing-heading: 0;
  --letter-spacing-body: 0;
  --spacing-section-desktop: 2.5rem;
  --section-desktop: 2.5rem;
  --spacing-item-desktop: 1rem;
  --item-desktop: 1rem;
  --spacing-section-mobile: 1.5rem;
  --section-mobile: 1.5rem;
  --spacing-item-mobile: 0.75rem;
  --item-mobile: 0.75rem;
  --spacing-container-pad-desktop: 1.5rem;
  --container-pad-desktop: 1.5rem;
  --spacing-container-pad-mobile: 1rem;
  --container-pad-mobile: 1rem;
  --spacing-card-pad-desktop: 1rem;
  --card-pad-desktop: 1rem;
  --spacing-card-pad-mobile: 1rem;
  --card-pad-mobile: 1rem;
  --spacing-content-max-width: 74rem;
  --content-max-width: 74rem;
  --spacing-reading-max-width: 62ch;
  --reading-max-width: 62ch;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  --shadow-card: 0 8px 24px rgba(12, 8, 5, 0.4);
  --shadow-elevated: 0 12px 32px rgba(12, 8, 5, 0.5);
  --shadow-glow: 0 0 0 1px rgba(232, 242, 61, 0.35), 0 6px 18px rgba(232, 242, 61, 0.35);
  --shadow-inset: inset 0 1px 0 rgba(255,255,255,.06);
  --gradient-brand: linear-gradient(135deg, #3f48c9 0%, #525bdb 100%);
  --gradient-hero: linear-gradient(180deg, #2b243a 0%, #1b110b 100%);
  --gradient-surface: linear-gradient(135deg, #251a12 0%, #30241a 100%);
  --gradient-button: none;
  --effects-accent-bar: #e8f23d;
  --recipes-transition: color 150ms, background-color 150ms, box-shadow 150ms, border-color 150ms, transform 150ms;
  --transition: color 150ms, background-color 150ms, box-shadow 150ms, border-color 150ms, transform 150ms;
}
*, *::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: #1b110b;
  color: #dcdcdc;
  font-family: Noto Sans Bengali, Source Sans 3, 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 Serif Bengali, Playfair Display, serif;
  line-height: 1.25;
  letter-spacing: 0;
  color: #f5f5f5;
}
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: #dcdcdc;
}
ul, ol {
  margin: 0;
}
a {
  color: #d1e3ff;
  text-decoration: none;
  transition: color 150ms, background-color 150ms, box-shadow 150ms, border-color 150ms, transform 150ms;
}
a:hover {
  color: #eaf2ff;
}
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid #e8f23d;
  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: 2.5rem;
}
main > section > * + *, main > article > * + *, .wwl_shell > * + *, .wwl_copy > * + *, .wwl_vlist > * + *, .wwl_vlist_center > * + * {
  margin-block-start: 1rem;
}
@media (max-width: 48rem) {
  main > section {
    padding-block: 1.5rem;
  }
  main > section > * + *, main > article > * + *, .wwl_shell > * + *, .wwl_copy > * + *, .wwl_vlist > * + *, .wwl_vlist_center > * + * {
    margin-block-start: 0.75rem;
  }
}

.wwl_button, .wwl_button_sm, .wwl_button_full, .wwl_button_outline {
  background: #e8f23d;
  color: #000000;
  border-radius: 16px;
  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(12, 8, 5, 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 150ms, background-color 150ms, box-shadow 150ms, border-color 150ms, transform 150ms;
}
.wwl_button:hover, .wwl_button_sm:hover, .wwl_button_full:hover, .wwl_button_outline:hover {
  background: #c7d62b;
  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(12, 8, 5, 0.45);
}
.wwl_button_sm {
  min-height: 36px;
  padding: 0 1rem;
  font-size: 0.875rem;
}
.wwl_button_full {
  display: flex;
  width: 100%;
}
.wwl_button_outline {
  background: transparent;
  background-image: none;
  color: #f5f5f5;
  border: 1px solid #3d3025;
  box-shadow: none;
}
.wwl_button_outline:hover {
  background: transparent;
  border-color: #3f48c9;
  color: #f5f5f5;
  box-shadow: none;
}

.wwl_cover {
  background: rgba(48, 36, 26, 0.65);
  border: 1px solid #2d2118;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(12, 8, 5, 0.4), inset 0 1px 0 rgba(255,255,255,.06);
  border-top: 3px solid #e8f23d;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: color 150ms, background-color 150ms, box-shadow 150ms, border-color 150ms, transform 150ms;
}
.wwl_cover:hover {
  border-color: #3f48c9;
  box-shadow: 0 12px 32px rgba(12, 8, 5, 0.5), inset 0 1px 0 rgba(255,255,255,.06);
}
.wwl_cover_media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.wwl_cover_media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 200ms;
}
.wwl_cover:hover .wwl_cover_media img {
  transform: scale(1.04);
}
.wwl_cover_play {
  position: absolute;
  bottom: .5rem;
  right: .5rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #e8f23d;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 150ms;
}
.wwl_cover:hover .wwl_cover_play, .wwl_cover:focus-visible .wwl_cover_play {
  opacity: 1;
}
@media (hover: none) {
  .wwl_cover_play {
    opacity: 1;
  }
}
.wwl_cover_name {
  padding: .6rem .75rem;
  background: #30241a;
}
.wwl_cover_name h3 {
  margin: 0;
  font-size: 0.875rem;
  color: #f5f5f5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 48rem) {
  .wwl_cover_name h3 {
    white-space: normal;
  }
}

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

.wwl_fine {
  font-size: 0.875rem;
}
.wwl_dim {
  color: #bdbdbd;
}
.wwl_axis {
  text-align: center;
}
.wwl_tint_accent {
  color: #e8f23d;
}
.wwl_tint_success {
  color: #4caf50;
}
.wwl_tint_warning {
  color: #ffb74d;
}
.wwl_tint_error {
  color: #ef5350;
}
.wwl_tint_info {
  color: #4fc3f7;
}

.wwl_bottom {
  background: #1b110b;
  border-top: 1px solid #2d2118;
  padding: 3rem 3% 2rem;
  color: #bdbdbd;
}
.wwl_bottom_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  text-align: center;
}
.wwl_bottom_col > p, .wwl_bottom_col > h3 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #f5f5f5;
  margin: 0 0 .75rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.wwl_bottom_col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.wwl_bottom_col li + li {
  margin-block-start: .5rem;
}
.wwl_bottom_col a {
  color: #bdbdbd;
  font-size: 0.875rem;
}
.wwl_bottom_col a:hover {
  color: #eaf2ff;
}
.wwl_bottom_meta {
  margin-block-start: 2rem;
  padding-block-start: 1.5rem;
  border-top: 1px solid #2d2118;
  text-align: center;
  font-size: 0.875rem;
}
.wwl_bottom_meta > * + * {
  margin-block-start: .5rem;
}

.wwl_reveal {
  background: rgba(48, 36, 26, 0.65);
  border: 1px solid #2d2118;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(12, 8, 5, 0.4), inset 0 1px 0 rgba(255,255,255,.06);
  border-top: 3px solid #e8f23d;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: color 150ms, background-color 150ms, box-shadow 150ms, border-color 150ms, transform 150ms;
}
.wwl_reveal + .wwl_reveal {
  margin-block-start: 0.75rem;
}
.wwl_reveal[open] {
  border-color: #3f48c9;
}
.wwl_reveal_q {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  cursor: pointer;
  list-style: none;
}
.wwl_reveal_q::-webkit-details-marker {
  display: none;
}
.wwl_reveal_q h3 {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
}
.wwl_reveal_q::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  flex: 0 0 auto;
  color: #e8f23d;
  transition: transform 200ms;
}
.wwl_reveal[open] .wwl_reveal_q::after {
  transform: rotate(180deg);
}
.wwl_reveal_a {
  margin: 0;
  padding: 0 1rem 1rem;
}
@media (max-width: 48rem) {
  .wwl_reveal_q {
    padding: 1rem;
  }
  .wwl_reveal_a {
    padding: 0 1rem 1rem;
  }
}

.wwl_orb, .wwl_orb_success, .wwl_orb_warning, .wwl_orb_error, .wwl_orb_info {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #3f48c9 0%, #525bdb 100%);
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-weight: 700;
}
.wwl_orb_success {
  background: #4caf50;
  color: #fff;
}
.wwl_orb_warning {
  background: #ffb74d;
  color: #fff;
}
.wwl_orb_error {
  background: #ef5350;
  color: #fff;
}
.wwl_orb_info {
  background: #4fc3f7;
  color: #fff;
}

.wwl_chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem 1rem;
  border-radius: 9999px;
  background: #30241a;
  border: 1px solid #3d3025;
  color: #f5f5f5;
  font-size: 0.875rem;
}
.wwl_chip > i {
  color: #e8f23d;
}

.wwl_tabbar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 1000;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 4.25rem;
  background: #251a12;
  border-top: 1px solid #2d2118;
}
.wwl_tabbar_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  flex: 1 1 0;
  padding: .5rem 0;
  font-size: 0.75rem;
  color: #bdbdbd;
}
.wwl_tabbar_item i {
  font-size: 1.25rem;
}
.wwl_tabbar_item:hover {
  color: #e8f23d;
}

.wwl_panel {
  background: rgba(48, 36, 26, 0.65);
  border: 1px solid #2d2118;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(12, 8, 5, 0.4), inset 0 1px 0 rgba(255,255,255,.06);
  border-top: 3px solid #e8f23d;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: color 150ms, background-color 150ms, box-shadow 150ms, border-color 150ms, transform 150ms;
}
.wwl_panel:hover {
  border-color: #3f48c9;
  box-shadow: 0 12px 32px rgba(12, 8, 5, 0.5), inset 0 1px 0 rgba(255,255,255,.06);
}
@media (max-width: 48rem) {
  .wwl_panel {
    padding: 1rem;
  }
}
.wwl_panel > img {
  width: 100%;
  height: auto;
  display: block;
}

.wwl_masthead {
  background: #1b110b;
  border-bottom: 1px solid #2d2118;
  padding: .75rem 3%;
  position: sticky;
  top: 0;
  z-index: 100;
}
.wwl_masthead_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.wwl_masthead_brand {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: #f5f5f5;
}
.wwl_masthead_brand img {
  border-radius: 8px;
}
.wwl_masthead_brand strong {
  font-size: 16px;
  font-weight: 400;
}
.wwl_masthead_actions {
  display: flex;
  align-items: center;
  gap: .5rem;
}

main > section.wwl_stripe {
  background: linear-gradient(180deg, #251a12 0%, #1b110b 100%);
  padding-block: 2.5rem;
}
@media (max-width: 48rem) {
  main > section.wwl_stripe {
    padding-block: 1.5rem;
  }
}
.wwl_stage {
  background: linear-gradient(180deg, #2b243a 0%, #1b110b 100%);
  padding-block: 2.5rem;
  text-align: center;
  margin-inline: -3.1915%;
  padding-inline: 3%;
}
@media (max-width: 48rem) {
  .wwl_stage {
    padding-block: 1.5rem;
  }
}

.wwl_shell {
  width: 100%;
  max-width: 74rem;
  margin-inline: auto;
}
.wwl_copy {
  max-width: 62ch;
  margin-inline: auto;
}
.wwl_vlist, .wwl_vlist_center {
  display: block;
}
.wwl_vlist_center {
  text-align: center;
}
.wwl_cluster, .wwl_cluster_center {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}
.wwl_cluster_center {
  justify-content: center;
}
.wwl_cells {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  gap: 1rem;
}
.wwl_lineup {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
.wwl_picks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
@media (min-width: 48rem) {
  .wwl_lineup {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }
  .wwl_picks {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}
.wwl_checklist {
  list-style: none;
  padding: 0;
}
.wwl_checklist > li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.wwl_checklist > li + li {
  margin-block-start: .75rem;
}
.wwl_checklist > li > i {
  flex: 0 0 1.25rem;
  text-align: center;
  margin-top: .2em;
  color: #e8f23d;
}

.wwl_sheet_wrap {
  background: rgba(48, 36, 26, 0.65);
  border: 1px solid #2d2118;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(12, 8, 5, 0.4), inset 0 1px 0 rgba(255,255,255,.06);
  border-top: 3px solid #e8f23d;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow-x: auto;
  max-width: 100%;
}
.wwl_sheet {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.wwl_sheet th, .wwl_sheet td {
  padding: 0.75rem;
  text-align: start;
  border-bottom: 1px solid #2d2118;
  vertical-align: top;
}
.wwl_sheet thead th {
  background: #30241a;
  color: #f5f5f5;
  font-weight: 600;
}
.wwl_sheet tbody tr:last-child td {
  border-bottom: 0;
}
.wwl_sheet td:first-child {
  color: #bdbdbd;
  font-weight: 600;
}

.wwl_topic {
  position: relative;
}
.wwl_topic::before {
  content: "";
  display: block;
  width: 3rem;
  height: 6px;
  background-image: repeating-linear-gradient(90deg, #e8f23d 0 3px, transparent 3px 6px);
  margin-bottom: .6rem;
}

.wwl_jumpbar {
  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;
}
.wwl_jumpbar::-webkit-scrollbar {
  display: none;
}
.wwl_jumpbar_link {
  flex: 0 0 auto;
  white-space: nowrap;
  padding: .5rem 1rem;
  border-radius: 8px;
  background: #251a12;
  border: 1px solid #2d2118;
  color: #dcdcdc;
  font-size: 0.875rem;
  transition: color 150ms, background-color 150ms, box-shadow 150ms, border-color 150ms, transform 150ms;
}
.wwl_jumpbar_link:hover {
  border-color: #3f48c9;
  color: #f5f5f5;
}

.wwl_trail {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  padding: 1rem 0;
  font-size: 0.875rem;
  color: #dcdcdc;
}
.wwl_trail a {
  color: #d1e3ff;
}
.wwl_trail span {
  color: #f5f5f5;
}

.wwl_note, .wwl_note_warning, .wwl_note_info, .wwl_note_success, .wwl_note_error {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 16px;
  background: #251a12;
  border: 1px solid #2d2118;
  border-left: 4px solid #e8f23d;
}
.wwl_note > i, .wwl_note_warning > i, .wwl_note_info > i, .wwl_note_success > i, .wwl_note_error > i {
  flex: 0 0 auto;
  margin-top: .2em;
  color: #e8f23d;
}
.wwl_note_success {
  border-left-color: #4caf50;
}
.wwl_note_warning {
  border-left-color: #ffb74d;
}
.wwl_note_error {
  border-left-color: #ef5350;
}
.wwl_note_info {
  border-left-color: #4fc3f7;
}
.wwl_note_success > i {
  color: #4caf50;
}
.wwl_note_warning > i {
  color: #ffb74d;
}
.wwl_note_error > i {
  color: #ef5350;
}
.wwl_note_info > i {
  color: #4fc3f7;
}

/* page */
.wwl_provider_name {
            font-weight: 700;
            letter-spacing: 0.02em;
            display: block;
            margin-bottom: 0.25rem;
        }
