/* overflow-guard */
:root {
  --brand-primary: #1b4d3e;
  --brand-primary-hover: #256352;
  --brand-secondary: #a89b8c;
  --brand-secondary-hover: #bdb0a1;
  --brand-accent: #ffb366;
  --background-main: #1c120c;
  --background-surface: #281a13;
  --background-elevated: #34241b;
  --background-overlay: rgba(28, 18, 12, 0.75);
  --text-primary: #fdfbf7;
  --text-secondary: #eae4d9;
  --text-muted: #c8c2b5;
  --text-brand-contrast: #000000;
  --text-link: #ffd8b3;
  --text-link-hover: #ffe4cc;
  --button-bg: #ffb366;
  --button-text: #000000;
  --button-hover-bg: #ffc996;
  --button-hover-text: #000000;
  --semantic-success: #4caf50;
  --success: #4caf50;
  --semantic-error: #e53935;
  --error: #e53935;
  --semantic-warning: #ffb300;
  --warning: #ffb300;
  --semantic-info: #2196f3;
  --info: #2196f3;
  --border-default: #3d2f26;
  --border-strong: #4d3d33;
  --border-brand: #1b4d3e;
  --font-family-headings: Hind Siliguri, Archivo, sans-serif;
  --font-family-body: Noto Sans Bengali, Manrope, 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.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: 72rem;
  --content-max-width: 72rem;
  --spacing-reading-max-width: 62ch;
  --reading-max-width: 62ch;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  --shadow-card: 4px 4px 0 #0e0906;
  --shadow-elevated: 6px 6px 0 #0e0906;
  --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,.05);
  --gradient-brand: linear-gradient(135deg, #1b4d3e 0%, #256352 100%);
  --gradient-hero: linear-gradient(180deg, #25251c 0%, #1c120c 100%);
  --gradient-surface: linear-gradient(#34241b, #34241b);
  --gradient-button: linear-gradient(135deg, #ffc182 0%, #ffb366 100%);
  --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: #1c120c;
  color: #eae4d9;
  font-family: Noto Sans Bengali, Manrope, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  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: Hind Siliguri, Archivo, sans-serif;
  line-height: 1.3;
  letter-spacing: 0;
  color: #fdfbf7;
}
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: #eae4d9;
}
ul, ol {
  margin: 0;
}
a {
  color: #ffd8b3;
  text-decoration: none;
  transition: color 120ms, background-color 120ms, box-shadow 120ms, border-color 120ms, transform 120ms;
}
a:hover {
  color: #ffe4cc;
}
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: 4.5rem;
}
main > section > * + *, main > article > * + *, .vc_frame > * + *, .vc_copy > * + *, .vc_flow > * + *, .vc_flow_center > * + * {
  margin-block-start: 1.5rem;
}
@media (max-width: 48rem) {
  main > section {
    padding-block: 2.5rem;
  }
  main > section > * + *, main > article > * + *, .vc_frame > * + *, .vc_copy > * + *, .vc_flow > * + *, .vc_flow_center > * + * {
    margin-block-start: 1rem;
  }
}

.vc_ticker {
  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;
}
.vc_ticker::-webkit-scrollbar {
  display: none;
}
.vc_ticker_link {
  flex: 0 0 auto;
  white-space: nowrap;
  padding: .5rem 1rem;
  border-radius: 8px;
  background: #281a13;
  border: 1px solid #3d2f26;
  color: #eae4d9;
  font-size: 0.875rem;
  transition: color 120ms, background-color 120ms, box-shadow 120ms, border-color 120ms, transform 120ms;
}
.vc_ticker_link:hover {
  border-color: #1b4d3e;
  color: #fdfbf7;
}

.vc_qa {
  background: rgba(52, 36, 27, 0.65);
  border: 1px solid #3d2f26;
  border-radius: 16px;
  box-shadow: 4px 4px 0 #0e0906, inset 0 1px 0 rgba(255,255,255,.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: color 120ms, background-color 120ms, box-shadow 120ms, border-color 120ms, transform 120ms;
}
.vc_qa + .vc_qa {
  margin-block-start: 1rem;
}
.vc_qa[open] {
  border-color: #1b4d3e;
}
.vc_qa_q {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 2rem;
  cursor: pointer;
  list-style: none;
}
.vc_qa_q::-webkit-details-marker {
  display: none;
}
.vc_qa_q h3 {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
}
.vc_qa_q::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  flex: 0 0 auto;
  color: #ffb366;
  transition: transform 200ms;
}
.vc_qa[open] .vc_qa_q::after {
  transform: rotate(180deg);
}
.vc_qa_a {
  margin: 0;
  padding: 0 2rem 2rem;
}
@media (max-width: 48rem) {
  .vc_qa_q {
    padding: 1.25rem;
  }
  .vc_qa_a {
    padding: 0 1.25rem 1.25rem;
  }
}

main > section.vc_layer {
  background: #281a13;
  padding-block: 4.5rem;
}
@media (max-width: 48rem) {
  main > section.vc_layer {
    padding-block: 2.5rem;
  }
}
.vc_opening {
  background: linear-gradient(180deg, #25251c 0%, #1c120c 100%);
  padding-block: 4.5rem;
  text-align: center;
  margin-inline: -3.1915%;
  padding-inline: 3%;
}
@media (max-width: 48rem) {
  .vc_opening {
    padding-block: 2.5rem;
  }
}

.vc_game {
  background: rgba(52, 36, 27, 0.65);
  border: 1px solid #3d2f26;
  border-radius: 16px;
  box-shadow: 4px 4px 0 #0e0906, inset 0 1px 0 rgba(255,255,255,.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  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;
}
.vc_game:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #0e0906, inset 0 1px 0 rgba(255,255,255,.05);
}
.vc_game_media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.vc_game_media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 200ms;
}
.vc_game:hover .vc_game_media img {
  transform: scale(1.04);
}
.vc_game_play {
  position: absolute;
  top: .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;
}
.vc_game:hover .vc_game_play, .vc_game:focus-visible .vc_game_play {
  opacity: 1;
}
@media (hover: none) {
  .vc_game_play {
    opacity: 1;
  }
}
.vc_game {
  position: relative;
}
.vc_game_name {
  position: absolute;
  inset: auto 0 0 0;
  padding: .6rem .75rem;
  background: linear-gradient(180deg, transparent 0%, rgba(28, 18, 12, 0.75) 100%);
}
.vc_game_name h3 {
  margin: 0;
  font-size: 0.875rem;
  color: #fdfbf7;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 48rem) {
  .vc_game_name h3 {
    white-space: normal;
  }
}

.vc_small {
  font-size: 0.875rem;
}
.vc_faint {
  color: #c8c2b5;
}
.vc_mid {
  text-align: center;
}
.vc_hue_accent {
  color: #ffb366;
}
.vc_hue_success {
  color: #4caf50;
}
.vc_hue_warning {
  color: #ffb300;
}
.vc_hue_error {
  color: #e53935;
}
.vc_hue_info {
  color: #2196f3;
}

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

.vc_slab {
  background: rgba(52, 36, 27, 0.65);
  border: 1px solid #3d2f26;
  border-radius: 16px;
  box-shadow: 4px 4px 0 #0e0906, inset 0 1px 0 rgba(255,255,255,.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: color 120ms, background-color 120ms, box-shadow 120ms, border-color 120ms, transform 120ms;
}
.vc_slab:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #0e0906, inset 0 1px 0 rgba(255,255,255,.05);
}
@media (max-width: 48rem) {
  .vc_slab {
    padding: 1.25rem;
  }
}
.vc_slab > img {
  width: 100%;
  height: auto;
  display: block;
}

.vc_marker {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem 1rem;
  border-radius: 9999px;
  background: #34241b;
  border: 1px solid #4d3d33;
  color: #fdfbf7;
  font-size: 0.875rem;
}
.vc_marker > i {
  color: #ffb366;
}

.vc_topbar {
  background: #1c120c;
  border-bottom: 1px solid #3d2f26;
  padding: .75rem 3%;
  position: sticky;
  top: 0;
  z-index: 100;
}
.vc_topbar_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.vc_topbar_brand {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: #fdfbf7;
}
.vc_topbar_brand img {
  border-radius: 8px;
}
.vc_topbar_brand strong {
  font-size: 16px;
  font-weight: 400;
}
.vc_topbar_actions {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.vc_frame {
  width: 100%;
  max-width: 72rem;
  margin-inline: auto;
}
.vc_copy {
  max-width: 62ch;
  margin-inline: auto;
}
.vc_flow, .vc_flow_center {
  display: block;
}
.vc_flow_center {
  text-align: center;
}
.vc_row, .vc_row_center {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.vc_row_center {
  justify-content: center;
}
.vc_matrix {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  gap: 1.5rem;
}
.vc_deck {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.vc_picks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
@media (min-width: 48rem) {
  .vc_deck {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
  }
  .vc_picks {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}
.vc_checklist {
  list-style: none;
  padding: 0;
}
.vc_checklist > li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.vc_checklist > li + li {
  margin-block-start: .75rem;
}
.vc_checklist > li > i {
  flex: 0 0 1.25rem;
  text-align: center;
  margin-top: .2em;
  color: #ffb366;
}

.vc_dock {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 1000;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 4.25rem;
  background: #281a13;
  border-top: 1px solid #3d2f26;
}
.vc_dock_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  flex: 1 1 0;
  padding: .5rem 0;
  font-size: 0.75rem;
  color: #c8c2b5;
}
.vc_dock_item i {
  font-size: 1.25rem;
}
.vc_dock_item:hover {
  color: #ffb366;
}

.vc_disc, .vc_disc_success, .vc_disc_warning, .vc_disc_error, .vc_disc_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;
}
.vc_disc_success {
  background: #4caf50;
  color: #fff;
}
.vc_disc_warning {
  background: #ffb300;
  color: #fff;
}
.vc_disc_error {
  background: #e53935;
  color: #fff;
}
.vc_disc_info {
  background: #2196f3;
  color: #fff;
}

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

.vc_path {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  padding: 1rem 0;
  font-size: 0.875rem;
  color: #eae4d9;
}
.vc_path a {
  color: #ffd8b3;
}
.vc_path span {
  color: #fdfbf7;
}

.vc_table_wrap {
  background: rgba(52, 36, 27, 0.65);
  border: 1px solid #3d2f26;
  border-radius: 16px;
  box-shadow: 4px 4px 0 #0e0906, inset 0 1px 0 rgba(255,255,255,.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow-x: auto;
  max-width: 100%;
}
.vc_table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.vc_table th, .vc_table td {
  padding: 1rem;
  text-align: start;
  border-bottom: 1px solid #3d2f26;
  vertical-align: top;
}
.vc_table thead th {
  background: #34241b;
  color: #fdfbf7;
  font-weight: 600;
}
.vc_table tbody tr:last-child td {
  border-bottom: 0;
}
.vc_table td:first-child {
  color: #c8c2b5;
  font-weight: 600;
}

.vc_foot {
  background: #1c120c;
  border-top: 1px solid #3d2f26;
  padding: 3rem 3% 2rem;
  color: #c8c2b5;
}
.vc_foot_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  text-align: center;
}
.vc_foot_col > p, .vc_foot_col > h3 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #fdfbf7;
  margin: 0 0 .75rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.vc_foot_col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.vc_foot_col li + li {
  margin-block-start: .5rem;
}
.vc_foot_col a {
  color: #c8c2b5;
  font-size: 0.875rem;
}
.vc_foot_col a:hover {
  color: #ffe4cc;
}
.vc_foot_meta {
  margin-block-start: 2rem;
  padding-block-start: 1.5rem;
  border-top: 1px solid #3d2f26;
  text-align: center;
  font-size: 0.875rem;
}
.vc_foot_meta > * + * {
  margin-block-start: .5rem;
}

.vc_note, .vc_note_warning, .vc_note_info, .vc_note_success, .vc_note_error {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 16px;
  background: #281a13;
  border: 1px solid #3d2f26;
  border-left: 4px solid #ffb366;
}
.vc_note > i, .vc_note_warning > i, .vc_note_info > i, .vc_note_success > i, .vc_note_error > i {
  flex: 0 0 auto;
  margin-top: .2em;
  color: #ffb366;
}
.vc_note_success {
  border-left-color: #4caf50;
}
.vc_note_warning {
  border-left-color: #ffb300;
}
.vc_note_error {
  border-left-color: #e53935;
}
.vc_note_info {
  border-left-color: #2196f3;
}
.vc_note_success > i {
  color: #4caf50;
}
.vc_note_warning > i {
  color: #ffb300;
}
.vc_note_error > i {
  color: #e53935;
}
.vc_note_info > i {
  color: #2196f3;
}

.vc_cta, .vc_cta_sm, .vc_cta_full, .vc_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 120ms, background-color 120ms, box-shadow 120ms, border-color 120ms, transform 120ms;
}
.vc_cta:hover, .vc_cta_sm:hover, .vc_cta_full:hover, .vc_cta_outline:hover {
  background: #ffc996;
  box-shadow: 0 8px 22px rgba(255, 179, 102, 0.4);
}
.vc_cta_sm {
  min-height: 36px;
  padding: 0 1rem;
  font-size: 0.875rem;
}
.vc_cta_full {
  display: flex;
  width: 100%;
}
.vc_cta_outline {
  background: transparent;
  background-image: none;
  color: #fdfbf7;
  border: 1px solid #4d3d33;
  box-shadow: none;
}
.vc_cta_outline:hover {
  background: transparent;
  border-color: #1b4d3e;
  color: #fdfbf7;
  box-shadow: none;
}

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