/* overflow-guard */
:root {
  --brand-primary: #3f48cc;
  --brand-primary-hover: #555ef0;
  --brand-secondary: #bcc6ef;
  --brand-secondary-hover: #d1d8f5;
  --brand-accent: #e6f23e;
  --background-main: #0a1c16;
  --background-surface: #11281e;
  --background-elevated: #18352a;
  --background-overlay: rgba(10, 28, 22, 0.8);
  --text-primary: #f5f5f5;
  --text-secondary: #dcdcdc;
  --text-muted: #bdbdbd;
  --text-brand-contrast: #000000;
  --text-link: #e0efff;
  --text-link-hover: #ffffff;
  --button-bg: #e6f23e;
  --button-text: #000000;
  --button-hover-bg: #c8d635;
  --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: #1c3b2e;
  --border-strong: #2a4d3f;
  --border-brand: #3f48cc;
  --font-family-headings: Hind Siliguri, Montserrat, sans-serif;
  --font-family-body: Noto Sans Bengali, Lato, 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.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: 70ch;
  --reading-max-width: 70ch;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-pill: 9999px;
  --shadow-card: 0 4px 12px rgba(4, 13, 10, 0.35);
  --shadow-elevated: 0 8px 24px rgba(4, 13, 10, 0.45);
  --shadow-glow: 0 0 0 1px rgba(230, 242, 62, 0.35), 0 6px 18px rgba(230, 242, 62, 0.35);
  --shadow-inset: inset 0 1px 0 rgba(255,255,255,.08);
  --gradient-brand: linear-gradient(135deg, #3f48cc 0%, #555ef0 100%);
  --gradient-hero: linear-gradient(180deg, #1b2f44 0%, #0a1c16 100%);
  --gradient-surface: linear-gradient(#18352a, #18352a);
  --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: #0a1c16;
  color: #dcdcdc;
  font-family: Noto Sans Bengali, Lato, 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: Hind Siliguri, Montserrat, sans-serif;
  line-height: 1.25;
  letter-spacing: 0;
  color: #f5f5f5;
}
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: #dcdcdc;
}
ul, ol {
  margin: 0;
}
a {
  color: #e0efff;
  text-decoration: none;
  transition: color 120ms, background-color 120ms, box-shadow 120ms, border-color 120ms, transform 120ms;
}
a:hover {
  color: #ffffff;
}
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid #e6f23e;
  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 > * + *, .gmx-frame > * + *, .gmx-copy > * + *, .gmx-stack > * + *, .gmx-stack-center > * + * {
  margin-block-start: 1.5rem;
}
@media (max-width: 48rem) {
  main > section {
    padding-block: 2.5rem;
  }
  main > section > * + *, main > article > * + *, .gmx-frame > * + *, .gmx-copy > * + *, .gmx-stack > * + *, .gmx-stack-center > * + * {
    margin-block-start: 1rem;
  }
}

.gmx-pair, .gmx-box.gmx-pair {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
}
.gmx-pair-body {
  flex: 1 1 auto;
  min-width: 0;
}
.gmx-pair-body > * + * {
  margin-block-start: .5rem;
}

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

.gmx-head {
  background: #0a1c16;
  border-bottom: 1px solid #1c3b2e;
  padding: .75rem 3%;
  position: sticky;
  top: 0;
  z-index: 100;
}
.gmx-head-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.gmx-head-brand {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: #f5f5f5;
}
.gmx-head-brand img {
  border-radius: 6px;
}
.gmx-head-brand strong {
  font-size: 16px;
  font-weight: 400;
}
.gmx-head-actions {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.gmx-fine {
  font-size: 0.875rem;
}
.gmx-faint {
  color: #bdbdbd;
}
.gmx-centered {
  text-align: center;
}
.gmx-ink-accent {
  color: #e6f23e;
}
.gmx-ink-success {
  color: #4caf50;
}
.gmx-ink-warning {
  color: #ffb74d;
}
.gmx-ink-error {
  color: #ef5350;
}
.gmx-ink-info {
  color: #4fc3f7;
}

.gmx-notice, .gmx-notice-warning, .gmx-notice-info, .gmx-notice-success, .gmx-notice-error {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 12px;
  background: #11281e;
  border: 1px solid #1c3b2e;
  border-left: 4px solid #e6f23e;
}
.gmx-notice > i, .gmx-notice-warning > i, .gmx-notice-info > i, .gmx-notice-success > i, .gmx-notice-error > i {
  flex: 0 0 auto;
  margin-top: .2em;
  color: #e6f23e;
}
.gmx-notice-success {
  border-left-color: #4caf50;
}
.gmx-notice-warning {
  border-left-color: #ffb74d;
}
.gmx-notice-error {
  border-left-color: #ef5350;
}
.gmx-notice-info {
  border-left-color: #4fc3f7;
}
.gmx-notice-success > i {
  color: #4caf50;
}
.gmx-notice-warning > i {
  color: #ffb74d;
}
.gmx-notice-error > i {
  color: #ef5350;
}
.gmx-notice-info > i {
  color: #4fc3f7;
}

.gmx-faq {
  background: #18352a;
  border: 1px solid #2a4d3f;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(4, 13, 10, 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;
}
.gmx-faq + .gmx-faq {
  margin-block-start: 1rem;
}
.gmx-faq[open] {
  border-color: #3f48cc;
}
.gmx-faq-q {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 2rem;
  cursor: pointer;
  list-style: none;
}
.gmx-faq-q::-webkit-details-marker {
  display: none;
}
.gmx-faq-q h3 {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
}
.gmx-faq-q::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  flex: 0 0 auto;
  color: #e6f23e;
  transition: transform 200ms;
}
.gmx-faq[open] .gmx-faq-q::after {
  transform: rotate(180deg);
}
.gmx-faq-a {
  margin: 0;
  padding: 0 2rem 2rem;
}
@media (max-width: 48rem) {
  .gmx-faq-q {
    padding: 1.25rem;
  }
  .gmx-faq-a {
    padding: 0 1.25rem 1.25rem;
  }
}

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

.gmx-headline {
  position: relative;
}
.gmx-headline::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #e6f23e 0, #e6f23e 2.5rem, #1c3b2e 2.5rem, #1c3b2e 100%);
  margin-bottom: .6rem;
}

.gmx-datatable-wrap {
  background: #18352a;
  border: 1px solid #2a4d3f;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(4, 13, 10, 0.35), inset 0 1px 0 rgba(255,255,255,.08);
  overflow-x: auto;
  max-width: 100%;
}
.gmx-datatable {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.gmx-datatable th, .gmx-datatable td {
  padding: 1rem;
  text-align: start;
  border-bottom: 1px solid #1c3b2e;
  vertical-align: top;
}
.gmx-datatable thead th {
  background: #18352a;
  color: #f5f5f5;
  font-weight: 600;
}
.gmx-datatable tbody tr:last-child td {
  border-bottom: 0;
}
.gmx-datatable td:first-child {
  color: #bdbdbd;
  font-weight: 600;
}

.gmx-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;
}
.gmx-rail::-webkit-scrollbar {
  display: none;
}
.gmx-rail-link {
  flex: 0 0 auto;
  white-space: nowrap;
  padding: .5rem 1rem;
  border-radius: 6px;
  background: #11281e;
  border: 1px solid #1c3b2e;
  color: #dcdcdc;
  font-size: 0.875rem;
  transition: color 120ms, background-color 120ms, box-shadow 120ms, border-color 120ms, transform 120ms;
}
.gmx-rail-link:hover {
  border-color: #3f48cc;
  color: #f5f5f5;
}

main > section.gmx-belt {
  background: #11281e;
  border-top: 1px solid #1c3b2e;
  border-bottom: 1px solid #1c3b2e;
  padding-block: 4.5rem;
  margin-inline: -3.1915%;
  padding-inline: 3%;
}
@media (max-width: 48rem) {
  main > section.gmx-belt {
    padding-block: 2.5rem;
  }
}
.gmx-hero {
  background: linear-gradient(180deg, #1b2f44 0%, #0a1c16 100%);
  padding-block: 4.5rem;
  text-align: center;
  margin-inline: -3.1915%;
  padding-inline: 3%;
}
@media (max-width: 48rem) {
  .gmx-hero {
    padding-block: 2.5rem;
  }
}

.gmx-button, .gmx-button-sm, .gmx-button-full, .gmx-button-outline {
  background: #e6f23e;
  color: #000000;
  border-radius: 12px;
  min-height: 44px;
  font-weight: 700;
  box-shadow: 0 0 0 1px rgba(230, 242, 62, 0.35), 0 6px 18px rgba(230, 242, 62, 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;
}
.gmx-button:hover, .gmx-button-sm:hover, .gmx-button-full:hover, .gmx-button-outline:hover {
  background: #c8d635;
  box-shadow: 0 0 0 1px rgba(230, 242, 62, 0.5), 0 8px 26px rgba(230, 242, 62, 0.5);
}
.gmx-button-sm {
  min-height: 36px;
  padding: 0 1rem;
  font-size: 0.875rem;
}
.gmx-button-full {
  display: flex;
  width: 100%;
}
.gmx-button-outline {
  background: transparent;
  background-image: none;
  color: #f5f5f5;
  border: 1px solid #2a4d3f;
  box-shadow: none;
}
.gmx-button-outline:hover {
  background: transparent;
  border-color: #3f48cc;
  color: #f5f5f5;
  box-shadow: none;
}

.gmx-frame {
  width: 100%;
  max-width: 72rem;
  margin-inline: auto;
}
.gmx-copy {
  max-width: 70ch;
  margin-inline: auto;
}
.gmx-stack, .gmx-stack-center {
  display: block;
}
.gmx-stack-center {
  text-align: center;
}
.gmx-cluster, .gmx-cluster-center {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.gmx-cluster-center {
  justify-content: center;
}
.gmx-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  gap: 1.5rem;
}
.gmx-deck {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.gmx-picks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
@media (min-width: 48rem) {
  .gmx-deck {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
  }
  .gmx-picks {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}
.gmx-ticks {
  list-style: none;
  padding: 0;
}
.gmx-ticks > li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.gmx-ticks > li + li {
  margin-block-start: .75rem;
}
.gmx-ticks > li > i {
  flex: 0 0 1.25rem;
  text-align: center;
  margin-top: .2em;
  color: #e6f23e;
}

.gmx-box {
  background: #18352a;
  border: 1px solid #2a4d3f;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(4, 13, 10, 0.35), inset 0 1px 0 rgba(255,255,255,.08);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: color 120ms, background-color 120ms, box-shadow 120ms, border-color 120ms, transform 120ms;
}
.gmx-box:hover {
  border-color: #3f48cc;
  box-shadow: 0 0 0 1px rgba(230, 242, 62, 0.35), 0 6px 18px rgba(230, 242, 62, 0.35), inset 0 1px 0 rgba(255,255,255,.08);
}
@media (max-width: 48rem) {
  .gmx-box {
    padding: 1.25rem;
  }
}
.gmx-box > img {
  width: 100%;
  height: auto;
  display: block;
}

.gmx-token {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem 1rem;
  border-radius: 9999px;
  background: #18352a;
  border: 1px solid #2a4d3f;
  color: #f5f5f5;
  font-size: 0.875rem;
}
.gmx-token > i {
  color: #e6f23e;
}

.gmx-game {
  background: #18352a;
  border: 1px solid #2a4d3f;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(4, 13, 10, 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;
}
.gmx-game:hover {
  border-color: #3f48cc;
  box-shadow: 0 0 0 1px rgba(230, 242, 62, 0.35), 0 6px 18px rgba(230, 242, 62, 0.35), inset 0 1px 0 rgba(255,255,255,.08);
}
.gmx-game-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.gmx-game-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 200ms;
}
.gmx-game:hover .gmx-game-media img {
  transform: scale(1.04);
}
.gmx-game-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #e6f23e;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 150ms;
}
.gmx-game:hover .gmx-game-play, .gmx-game:focus-visible .gmx-game-play {
  opacity: 1;
}
@media (hover: none) {
  .gmx-game-play {
    opacity: 1;
  }
}
.gmx-game-name {
  padding: .6rem .75rem;
  background: #18352a;
}
.gmx-game-name h3 {
  margin: 0;
  font-size: 0.875rem;
  color: #f5f5f5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 48rem) {
  .gmx-game-name h3 {
    white-space: normal;
  }
}

.gmx-bottombar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 1000;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 4.5rem;
  background: #11281e;
  border-top: 1px solid #1c3b2e;
}
.gmx-bottombar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  flex: 1 1 0;
  padding: .5rem 0;
  font-size: 0.75rem;
  color: #bdbdbd;
}
.gmx-bottombar-item i {
  font-size: 1.25rem;
}
.gmx-bottombar-item:hover {
  color: #e6f23e;
}

.gmx-emblem, .gmx-emblem-success, .gmx-emblem-warning, .gmx-emblem-error, .gmx-emblem-info {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #3f48cc 0%, #555ef0 100%);
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-weight: 700;
}
.gmx-emblem-success {
  background: #4caf50;
  color: #fff;
}
.gmx-emblem-warning {
  background: #ffb74d;
  color: #fff;
}
.gmx-emblem-error {
  background: #ef5350;
  color: #fff;
}
.gmx-emblem-info {
  background: #4fc3f7;
  color: #fff;
}

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