/* overflow-guard */
:root {
    --brand-primary: #323D42;
    --brand-primary-hover: #3D4B52;
    --brand-secondary: #5C6B71;
    --brand-secondary-hover: #6B7A81;
    --brand-accent: #D4E137;
    --background-main: #081C21;
    --background-surface: #12282D;
    --background-elevated: #1C343A;
    --background-overlay: rgba(8, 28, 33, 0.8);
    --text-primary: #F5F7F2;
    --text-secondary: #DDE1DA;
    --text-muted: #BFC4BC;
    --text-brand-contrast: #000000;
    --text-link: #E2F0B5;
    --text-link-hover: #F1F9D1;
    --button-bg: #D4E137;
    --button-text: #000000;
    --button-hover-bg: #BADA2D;
    --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: #1B3237;
    --border-strong: #2A464D;
    --border-brand: #323D42;
    --font-family-headings: Hind Siliguri, Barlow Condensed, sans-serif;
    --font-family-body: Noto Sans Bengali, Barlow, 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.35;
    --line-height-body: 1.6;
    --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: 80rem;
    --content-max-width: 80rem;
    --spacing-reading-max-width: 64ch;
    --reading-max-width: 64ch;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-pill: 9999px;
    --shadow-card: 0 8px 24px rgba(4, 13, 15, 0.4);
    --shadow-elevated: 0 12px 32px rgba(4, 13, 15, 0.5);
    --shadow-glow: 0 0 0 1px rgba(212, 225, 55, 0.35), 0 6px 18px rgba(212, 225, 55, 0.35);
    --shadow-inset: inset 0 1px 0 rgba(255,255,255,.06);
    --gradient-brand: linear-gradient(135deg, #323D42 0%, #3D4B52 100%);
    --gradient-hero: linear-gradient(180deg, #192D32 0%, #081C21 100%);
    --gradient-surface: linear-gradient(135deg, #12282D 0%, #1C343A 100%);
    --gradient-button: none;
    --effects-accent-bar: #D4E137;
    --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: #081C21;
    color: #DDE1DA;
    font-family: Noto Sans Bengali, Barlow, 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: Hind Siliguri, Barlow Condensed, sans-serif;
    line-height: 1.35;
    letter-spacing: 0;
    color: #F5F7F2;
}
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: #DDE1DA;
}
ul, ol {
    margin: 0;
}
a {
    color: #E2F0B5;
    text-decoration: none;
    transition: color 150ms, background-color 150ms, box-shadow 150ms, border-color 150ms, transform 150ms;
}
a:hover {
    color: #F1F9D1;
}
a:focus-visible, button:focus-visible, summary:focus-visible {
    outline: 2px solid #D4E137;
    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 > * + *, .tg_wrap > * + *, .tg_measure > * + *, .tg_flow > * + *, .tg_flow_center > * + * {
    margin-block-start: 1rem;
}
@media (max-width: 48rem) {
    main > section {
        padding-block: 1.5rem;
    }
    main > section > * + *, main > article > * + *, .tg_wrap > * + *, .tg_measure > * + *, .tg_flow > * + *, .tg_flow_center > * + * {
        margin-block-start: 0.75rem;
    }
}

.tg_gamecard {
    background: linear-gradient(135deg, #12282D 0%, #1C343A 100%);
    border: 1px solid #1B3237;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(4, 13, 15, 0.4), inset 0 1px 0 rgba(255,255,255,.06);
    border-top: 3px solid #D4E137;
    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;
}
.tg_gamecard:hover {
    background: linear-gradient(135deg, #12282D 0%, #2A4046 100%);
    box-shadow: 0 12px 32px rgba(4, 13, 15, 0.5), inset 0 1px 0 rgba(255,255,255,.06);
}
.tg_gamecard_media {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.tg_gamecard_media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 200ms;
}
.tg_gamecard:hover .tg_gamecard_media img {
    transform: scale(1.04);
}
.tg_gamecard_play {
    position: absolute;
    bottom: .5rem;
    right: .5rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #D4E137;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 150ms;
}
.tg_gamecard:hover .tg_gamecard_play, .tg_gamecard:focus-visible .tg_gamecard_play {
    opacity: 1;
}
@media (hover: none) {
    .tg_gamecard_play {
        opacity: 1;
    }
}
.tg_gamecard {
    position: relative;
}
.tg_gamecard_name {
    position: absolute;
    inset: auto 0 0 0;
    padding: .6rem .75rem;
    background: linear-gradient(180deg, transparent 0%, rgba(8, 28, 33, 0.8) 100%);
}
.tg_gamecard_name h3 {
    margin: 0;
    font-size: 0.875rem;
    color: #F5F7F2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media (min-width: 48rem) {
    .tg_gamecard_name h3 {
        white-space: normal;
    }
}

.tg_scroller {
    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;
}
.tg_scroller::-webkit-scrollbar {
    display: none;
}
.tg_scroller_link {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: .5rem 1rem;
    border-radius: 6px;
    background: #12282D;
    border: 1px solid #1B3237;
    color: #DDE1DA;
    font-size: 0.875rem;
    transition: color 150ms, background-color 150ms, box-shadow 150ms, border-color 150ms, transform 150ms;
}
.tg_scroller_link:hover {
    border-color: #323D42;
    color: #F5F7F2;
}

.tg_table_wrap {
    background: linear-gradient(135deg, #12282D 0%, #1C343A 100%);
    border: 1px solid #1B3237;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(4, 13, 15, 0.4), inset 0 1px 0 rgba(255,255,255,.06);
    border-top: 3px solid #D4E137;
    overflow-x: auto;
    max-width: 100%;
}
.tg_table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}
.tg_table th, .tg_table td {
    padding: 0.75rem;
    text-align: start;
    border-bottom: 1px solid #1B3237;
    vertical-align: top;
}
.tg_table thead th {
    background: #1C343A;
    color: #F5F7F2;
    font-weight: 600;
}
.tg_table tbody tr:last-child td {
    border-bottom: 0;
}
.tg_table td:first-child {
    color: #BFC4BC;
    font-weight: 600;
}

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

.tg_medal, .tg_medal_success, .tg_medal_warning, .tg_medal_error, .tg_medal_info {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #323D42 0%, #3D4B52 100%);
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-weight: 700;
}
.tg_medal_success {
    background: #4CAF50;
    color: #FFF;
}
.tg_medal_warning {
    background: #FFB300;
    color: #FFF;
}
.tg_medal_error {
    background: #E53935;
    color: #FFF;
}
.tg_medal_info {
    background: #2196F3;
    color: #FFF;
}

.tg_wrap {
    width: 100%;
    max-width: 80rem;
    margin-inline: auto;
}
.tg_measure {
    max-width: 64ch;
    margin-inline: auto;
}
.tg_flow, .tg_flow_center {
    display: block;
}
.tg_flow_center {
    text-align: center;
}
.tg_cluster, .tg_cluster_center {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}
.tg_cluster_center {
    justify-content: center;
}
.tg_matrix {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
    gap: 1rem;
}
.tg_deck {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}
.tg_tiles {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}
@media (min-width: 48rem) {
    .tg_deck {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1rem;
    }
    .tg_tiles {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1rem;
    }
}
.tg_checklist {
    list-style: none;
    padding: 0;
}
.tg_checklist > li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
}
.tg_checklist > li + li {
    margin-block-start: .75rem;
}
.tg_checklist > li > i {
    flex: 0 0 1.25rem;
    text-align: center;
    margin-top: .2em;
    color: #D4E137;
}

.tg_topbar {
    background: #081C21;
    border-bottom: 1px solid #1B3237;
    padding: .75rem 3%;
    position: sticky;
    top: 0;
    z-index: 100;
}
.tg_topbar_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.tg_topbar_brand {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: #F5F7F2;
}
.tg_topbar_brand img {
    border-radius: 6px;
}
.tg_topbar_brand strong {
    font-size: 16px;
    font-weight: 400;
}
.tg_topbar_actions {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.tg_small {
    font-size: 0.875rem;
}
.tg_muted {
    color: #BFC4BC;
}
.tg_centered {
    text-align: center;
}
.tg_hue_accent {
    color: #D4E137;
}
.tg_hue_success {
    color: #4CAF50;
}
.tg_hue_warning {
    color: #FFB300;
}
.tg_hue_error {
    color: #E53935;
}
.tg_hue_info {
    color: #2196F3;
}

.tg_colophon {
    background: #081C21;
    border-top: 1px solid #1B3237;
    padding: 3rem 3% 2rem;
    color: #BFC4BC;
}
.tg_colophon_grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    text-align: center;
}
.tg_colophon_col > p, .tg_colophon_col > h3 {
    font-size: 0.875rem;
    font-weight: 700;
    color: #F5F7F2;
    margin: 0 0 .75rem;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.tg_colophon_col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.tg_colophon_col li + li {
    margin-block-start: .5rem;
}
.tg_colophon_col a {
    color: #BFC4BC;
    font-size: 0.875rem;
}
.tg_colophon_col a:hover {
    color: #F1F9D1;
}
.tg_colophon_meta {
    margin-block-start: 2rem;
    padding-block-start: 1.5rem;
    border-top: 1px solid #1B3237;
    text-align: center;
    font-size: 0.875rem;
}
.tg_colophon_meta > * + * {
    margin-block-start: .5rem;
}

.tg_bottombar {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 1000;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 4.75rem;
    background: #12282D;
    border-top: 1px solid #1B3237;
}
.tg_bottombar_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .25rem;
    flex: 1 1 0;
    padding: .5rem 0;
    font-size: 0.75rem;
    color: #BFC4BC;
}
.tg_bottombar_item i {
    font-size: 1.25rem;
}
.tg_bottombar_item:hover {
    color: #D4E137;
}

.tg_cta, .tg_cta_sm, .tg_cta_full, .tg_cta_outline {
    background: #D4E137;
    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, 13, 15, 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;
}
.tg_cta:hover, .tg_cta_sm:hover, .tg_cta_full:hover, .tg_cta_outline:hover {
    background: #BADA2D;
    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, 13, 15, 0.45);
}
.tg_cta_sm {
    min-height: 36px;
    padding: 0 1rem;
    font-size: 0.875rem;
}
.tg_cta_full {
    display: flex;
    width: 100%;
}
.tg_cta_outline {
    background: transparent;
    background-image: none;
    color: #F5F7F2;
    border: 1px solid #2A464D;
    box-shadow: none;
}
.tg_cta_outline:hover {
    background: transparent;
    border-color: #323D42;
    color: #F5F7F2;
    box-shadow: none;
}

.tg_reveal {
    background: linear-gradient(135deg, #12282D 0%, #1C343A 100%);
    border: 1px solid #1B3237;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(4, 13, 15, 0.4), inset 0 1px 0 rgba(255,255,255,.06);
    border-top: 3px solid #D4E137;
    transition: color 150ms, background-color 150ms, box-shadow 150ms, border-color 150ms, transform 150ms;
}
.tg_reveal + .tg_reveal {
    margin-block-start: 0.75rem;
}
.tg_reveal[open] {
    border-color: #323D42;
}
.tg_reveal_q {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    cursor: pointer;
    list-style: none;
}
.tg_reveal_q::-webkit-details-marker {
    display: none;
}
.tg_reveal_q h3 {
    margin: 0;
    flex: 1 1 auto;
    min-width: 0;
}
.tg_reveal_q::after {
    content: "\f0d7";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    flex: 0 0 auto;
    color: #D4E137;
    transition: transform 200ms;
}
.tg_reveal[open] .tg_reveal_q::after {
    transform: rotate(180deg);
}
.tg_reveal_a {
    margin: 0;
    padding: 0 1rem 1rem;
}
@media (max-width: 48rem) {
    .tg_reveal_q {
        padding: 1rem;
    }
    .tg_reveal_a {
        padding: 0 1rem 1rem;
    }
}

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

.tg_token {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .4rem 1rem;
    border-radius: 9999px;
    background: #1C343A;
    border: 1px solid #2A464D;
    color: #F5F7F2;
    font-size: 0.875rem;
}
.tg_token > i {
    color: #D4E137;
}

main > section.tg_band {
    background: linear-gradient(180deg, #12282D 0%, #081C21 100%);
    padding-block: 2.5rem;
}
@media (max-width: 48rem) {
    main > section.tg_band {
        padding-block: 1.5rem;
    }
}
.tg_intro {
    background: linear-gradient(180deg, #192D32 0%, #081C21 100%);
    padding-block: 2.5rem;
    text-align: center;
    margin-inline: -3.1915%;
    padding-inline: 3%;
}
@media (max-width: 48rem) {
    .tg_intro {
        padding-block: 1.5rem;
    }
}

.tg_route {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .5rem;
    padding: 1rem 0;
    font-size: 0.875rem;
    color: #DDE1DA;
}
.tg_route a {
    color: #E2F0B5;
}
.tg_route span {
    color: #F5F7F2;
}

.tg_callout, .tg_callout_warning, .tg_callout_info, .tg_callout_success, .tg_callout_error {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    background: #12282D;
    border: 1px solid #1B3237;
    border-left: 4px solid #D4E137;
}
.tg_callout > i, .tg_callout_warning > i, .tg_callout_info > i, .tg_callout_success > i, .tg_callout_error > i {
    flex: 0 0 auto;
    margin-top: .2em;
    color: #D4E137;
}
.tg_callout_success {
    border-left-color: #4CAF50;
}
.tg_callout_warning {
    border-left-color: #FFB300;
}
.tg_callout_error {
    border-left-color: #E53935;
}
.tg_callout_info {
    border-left-color: #2196F3;
}
.tg_callout_success > i {
    color: #4CAF50;
}
.tg_callout_warning > i {
    color: #FFB300;
}
.tg_callout_error > i {
    color: #E53935;
}
.tg_callout_info > i {
    color: #2196F3;
}

.tg_plate {
    background: linear-gradient(135deg, #12282D 0%, #1C343A 100%);
    border: 1px solid #1B3237;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(4, 13, 15, 0.4), inset 0 1px 0 rgba(255,255,255,.06);
    border-top: 3px solid #D4E137;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: color 150ms, background-color 150ms, box-shadow 150ms, border-color 150ms, transform 150ms;
}
.tg_plate:hover {
    background: linear-gradient(135deg, #12282D 0%, #2A4046 100%);
    box-shadow: 0 12px 32px rgba(4, 13, 15, 0.5), inset 0 1px 0 rgba(255,255,255,.06);
}
@media (max-width: 48rem) {
    .tg_plate {
        padding: 1rem;
    }
}
.tg_plate > img {
    width: 100%;
    height: auto;
    display: block;
}

/* page */
.tg_provider_name {
            font-weight: 700;
            letter-spacing: 0.5px;
        }
