/* overflow-guard */
:root {
    --brand-primary: #1B5E42;
    --brand-primary-hover: #247A55;
    --brand-secondary: #C5B358;
    --brand-secondary-hover: #D4C36A;
    --brand-accent: #FFB366;
    --background-main: #121B26;
    --background-surface: #1A2432;
    --background-elevated: #222E3E;
    --background-overlay: rgba(18, 27, 38, 0.75);
    --text-primary: #FDFBFA;
    --text-secondary: #E2E2E2;
    --text-muted: #BDBDBD;
    --text-brand-contrast: #FFFFFF;
    --text-link: #FFE4B5;
    --text-link-hover: #FFF5E1;
    --button-bg: #FFB366;
    --button-text: #121B26;
    --button-hover-bg: #FFC991;
    --button-hover-text: #121B26;
    --semantic-success: #4CAF50;
    --success: #4CAF50;
    --semantic-error: #EF5350;
    --error: #EF5350;
    --semantic-warning: #FFB74D;
    --warning: #FFB74D;
    --semantic-info: #4FC3F7;
    --info: #4FC3F7;
    --border-default: #2A3647;
    --border-strong: #3B4A5C;
    --border-brand: #1B5E42;
    --font-family-headings: Noto Sans Bengali, Space Grotesk, sans-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: 700;
    --role-weight-h2: 700;
    --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.3;
    --line-height-body: 1.55;
    --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: 78rem;
    --content-max-width: 78rem;
    --spacing-reading-max-width: 66ch;
    --reading-max-width: 66ch;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-pill: 9999px;
    --shadow-card: 0 8px 24px rgba(8, 12, 17, 0.4);
    --shadow-elevated: 0 12px 32px rgba(8, 12, 17, 0.5);
    --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,.06);
    --gradient-brand: linear-gradient(135deg, #1B5E42 0%, #247A55 100%);
    --gradient-hero: linear-gradient(180deg, #1A3136 0%, #121B26 100%);
    --gradient-surface: linear-gradient(135deg, #1A2432 0%, #222E3E 100%);
    --gradient-button: none;
    --effects-accent-bar: #FFB366;
    --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: #121B26;
    color: #E2E2E2;
    font-family: Noto Sans Bengali, Source Sans 3, sans-serif;
    font-weight: 400;
    line-height: 1.55;
    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: Noto Sans Bengali, Space Grotesk, sans-serif;
    line-height: 1.3;
    letter-spacing: 0;
    color: #FDFBFA;
}
h1 {
    font-size: 1.8rem;
    font-weight: 700;
}
h2 {
    font-size: 1.5rem;
    font-weight: 700;
}
h3 {
    font-size: 1rem;
    font-weight: 600;
}
h4 {
    font-size: 1rem;
    font-weight: 600;
}
p {
    margin: 0;
    color: #E2E2E2;
}
ul, ol {
    margin: 0;
}
a {
    color: #FFE4B5;
    text-decoration: none;
    transition: color 180ms, background-color 180ms, box-shadow 180ms, border-color 180ms, transform 180ms;
}
a:hover {
    color: #FFF5E1;
}
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 > * + *, .tzShell > * + *, .tzReading > * + *, .tzStack > * + *, .tzStackCenter > * + * {
    margin-block-start: 1.5rem;
}
@media (max-width: 48rem) {
    main > section {
        padding-block: 2.5rem;
    }
    main > section > * + *, main > article > * + *, .tzShell > * + *, .tzReading > * + *, .tzStack > * + *, .tzStackCenter > * + * {
        margin-block-start: 1rem;
    }
}

.tzCard {
    background: linear-gradient(135deg, #1A2432 0%, #222E3E 100%);
    border: 1px solid #2A3647;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(8, 12, 17, 0.4), inset 0 1px 0 rgba(255,255,255,.06);
    border-top: 3px solid #FFB366;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: color 180ms, background-color 180ms, box-shadow 180ms, border-color 180ms, transform 180ms;
}
.tzCard:hover {
    background: linear-gradient(135deg, #1A2432 0%, #2F3B4A 100%);
    box-shadow: 0 12px 32px rgba(8, 12, 17, 0.5), inset 0 1px 0 rgba(255,255,255,.06);
}
@media (max-width: 48rem) {
    .tzCard {
        padding: 1.25rem;
    }
}
.tzCard > img {
    width: 100%;
    height: auto;
    display: block;
}

.tzNote, .tzNoteWarning, .tzNoteInfo, .tzNoteSuccess, .tzNoteError {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 10px;
    background: #1A2432;
    border: 1px solid #2A3647;
    border-left: 4px solid #FFB366;
}
.tzNote > i, .tzNoteWarning > i, .tzNoteInfo > i, .tzNoteSuccess > i, .tzNoteError > i {
    flex: 0 0 auto;
    margin-top: .2em;
    color: #FFB366;
}
.tzNoteSuccess {
    border-left-color: #4CAF50;
}
.tzNoteWarning {
    border-left-color: #FFB74D;
}
.tzNoteError {
    border-left-color: #EF5350;
}
.tzNoteInfo {
    border-left-color: #4FC3F7;
}
.tzNoteSuccess > i {
    color: #4CAF50;
}
.tzNoteWarning > i {
    color: #FFB74D;
}
.tzNoteError > i {
    color: #EF5350;
}
.tzNoteInfo > i {
    color: #4FC3F7;
}

.tzBottombar {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 1000;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 4.5rem;
    background: #1A2432;
    border-top: 1px solid #2A3647;
}
.tzBottombarItem {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .25rem;
    flex: 1 1 0;
    padding: .5rem 0;
    font-size: 0.75rem;
    color: #BDBDBD;
}
.tzBottombarItem i {
    font-size: 1.25rem;
}
.tzBottombarItem:hover {
    color: #FFB366;
}

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

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

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

.tzLedgerWrap {
    background: linear-gradient(135deg, #1A2432 0%, #222E3E 100%);
    border: 1px solid #2A3647;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(8, 12, 17, 0.4), inset 0 1px 0 rgba(255,255,255,.06);
    border-top: 3px solid #FFB366;
    overflow-x: auto;
    max-width: 100%;
}
.tzLedger {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}
.tzLedger th, .tzLedger td {
    padding: 1rem;
    text-align: start;
    border-bottom: 1px solid #2A3647;
    vertical-align: top;
}
.tzLedger thead th {
    background: #222E3E;
    color: #FDFBFA;
    font-weight: 600;
}
.tzLedger tbody tr:last-child td {
    border-bottom: 0;
}
.tzLedger td:first-child {
    color: #BDBDBD;
    font-weight: 600;
}

.tzShell {
    width: 100%;
    max-width: 78rem;
    margin-inline: auto;
}
.tzReading {
    max-width: 66ch;
    margin-inline: auto;
}
.tzStack, .tzStackCenter {
    display: block;
}
.tzStackCenter {
    text-align: center;
}
.tzLine, .tzLineCenter {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}
.tzLineCenter {
    justify-content: center;
}
.tzGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
    gap: 1.5rem;
}
.tzShowcase {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
.tzCats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
@media (min-width: 48rem) {
    .tzShowcase {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.5rem;
    }
    .tzCats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.5rem;
    }
}
.tzTicks {
    list-style: none;
    padding: 0;
}
.tzTicks > li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
}
.tzTicks > li + li {
    margin-block-start: .75rem;
}
.tzTicks > li > i {
    flex: 0 0 1.25rem;
    text-align: center;
    margin-top: .2em;
    color: #FFB366;
}

main > section.tzZone {
    background: linear-gradient(180deg, #1A2432 0%, #121B26 100%);
    padding-block: 4.5rem;
    margin-inline: -3.1915%;
    padding-inline: 3%;
}
@media (max-width: 48rem) {
    main > section.tzZone {
        padding-block: 2.5rem;
    }
}
.tzSplash {
    background: linear-gradient(180deg, #1A3136 0%, #121B26 100%);
    padding-block: 4.5rem;
    text-align: center;
    margin-inline: -3.1915%;
    padding-inline: 3%;
}
@media (max-width: 48rem) {
    .tzSplash {
        padding-block: 2.5rem;
    }
}

.tzChips {
    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;
}
.tzChips::-webkit-scrollbar {
    display: none;
}
.tzChipsLink {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: .5rem 1rem;
    border-radius: 6px;
    background: #1A2432;
    border: 1px solid #2A3647;
    color: #E2E2E2;
    font-size: 0.875rem;
    transition: color 180ms, background-color 180ms, box-shadow 180ms, border-color 180ms, transform 180ms;
}
.tzChipsLink:hover {
    border-color: #1B5E42;
    color: #FDFBFA;
}

.tzMedal, .tzMedalSuccess, .tzMedalWarning, .tzMedalError, .tzMedalInfo {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #1B5E42 0%, #247A55 100%);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-weight: 700;
}
.tzMedalSuccess {
    background: #4CAF50;
    color: #FFF;
}
.tzMedalWarning {
    background: #FFB74D;
    color: #FFF;
}
.tzMedalError {
    background: #EF5350;
    color: #FFF;
}
.tzMedalInfo {
    background: #4FC3F7;
    color: #FFF;
}

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

.tzGame {
    background: linear-gradient(135deg, #1A2432 0%, #222E3E 100%);
    border: 1px solid #2A3647;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(8, 12, 17, 0.4), inset 0 1px 0 rgba(255,255,255,.06);
    border-top: 3px solid #FFB366;
    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;
}
.tzGame:hover {
    background: linear-gradient(135deg, #1A2432 0%, #2F3B4A 100%);
    box-shadow: 0 12px 32px rgba(8, 12, 17, 0.5), inset 0 1px 0 rgba(255,255,255,.06);
}
.tzGameMedia {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.tzGameMedia img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 200ms;
}
.tzGame:hover .tzGameMedia img {
    transform: scale(1.04);
}
.tzGamePlay {
    position: absolute;
    top: .5rem;
    right: .5rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #FFB366;
    color: #121B26;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 150ms;
}
.tzGame:hover .tzGamePlay, .tzGame:focus-visible .tzGamePlay {
    opacity: 1;
}
@media (hover: none) {
    .tzGamePlay {
        opacity: 1;
    }
}
.tzGameName {
    padding: .6rem .75rem;
    background: #222E3E;
}
.tzGameName h3 {
    margin: 0;
    font-size: 0.875rem;
    color: #FDFBFA;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media (min-width: 48rem) {
    .tzGameName h3 {
        white-space: normal;
    }
}

.tzReveal {
    background: linear-gradient(135deg, #1A2432 0%, #222E3E 100%);
    border: 1px solid #2A3647;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(8, 12, 17, 0.4), inset 0 1px 0 rgba(255,255,255,.06);
    border-top: 3px solid #FFB366;
    transition: color 180ms, background-color 180ms, box-shadow 180ms, border-color 180ms, transform 180ms;
}
.tzReveal + .tzReveal {
    margin-block-start: 1rem;
}
.tzReveal[open] {
    border-color: #1B5E42;
}
.tzRevealQ {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
    cursor: pointer;
    list-style: none;
}
.tzRevealQ::-webkit-details-marker {
    display: none;
}
.tzRevealQ h3 {
    margin: 0;
    flex: 1 1 auto;
    min-width: 0;
}
.tzRevealQ::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    flex: 0 0 auto;
    color: #FFB366;
    transition: transform 200ms;
}
.tzReveal[open] .tzRevealQ::after {
    transform: rotate(180deg);
}
.tzRevealA {
    margin: 0;
    padding: 0 2rem 2rem;
}
@media (max-width: 48rem) {
    .tzRevealQ {
        padding: 1.25rem;
    }
    .tzRevealA {
        padding: 0 1.25rem 1.25rem;
    }
}

.tzBottom {
    background: #121B26;
    border-top: 1px solid #2A3647;
    padding: 3rem 3% 2rem;
    color: #BDBDBD;
}
.tzBottomGrid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    text-align: center;
}
.tzBottomCol > p, .tzBottomCol > h3 {
    font-size: 0.875rem;
    font-weight: 700;
    color: #FDFBFA;
    margin: 0 0 .75rem;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.tzBottomCol ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.tzBottomCol li + li {
    margin-block-start: .5rem;
}
.tzBottomCol a {
    color: #BDBDBD;
    font-size: 0.875rem;
}
.tzBottomCol a:hover {
    color: #FFF5E1;
}
.tzBottomMeta {
    margin-block-start: 2rem;
    padding-block-start: 1.5rem;
    border-top: 1px solid #2A3647;
    text-align: center;
    font-size: 0.875rem;
}
.tzBottomMeta > * + * {
    margin-block-start: .5rem;
}

.tzMinor {
    font-size: 0.875rem;
}
.tzFaint {
    color: #BDBDBD;
}
.tzMid {
    text-align: center;
}
.tzShadeAccent {
    color: #FFB366;
}
.tzShadeSuccess {
    color: #4CAF50;
}
.tzShadeWarning {
    color: #FFB74D;
}
.tzShadeError {
    color: #EF5350;
}
.tzShadeInfo {
    color: #4FC3F7;
}

.tzCta, .tzCtaSm, .tzCtaFull, .tzCtaOutline {
    background: #FFB366;
    color: #121B26;
    border-radius: 9999px;
    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(8, 12, 17, 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 180ms, background-color 180ms, box-shadow 180ms, border-color 180ms, transform 180ms;
}
.tzCta:hover, .tzCtaSm:hover, .tzCtaFull:hover, .tzCtaOutline:hover {
    background: #FFC991;
    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(8, 12, 17, 0.45);
}
.tzCtaSm {
    min-height: 36px;
    padding: 0 1rem;
    font-size: 0.875rem;
}
.tzCtaFull {
    display: flex;
    width: 100%;
}
.tzCtaOutline {
    background: transparent;
    background-image: none;
    color: #FDFBFA;
    border: 1px solid #3B4A5C;
    box-shadow: none;
}
.tzCtaOutline:hover {
    background: transparent;
    border-color: #1B5E42;
    color: #FDFBFA;
    box-shadow: none;
}

.tzAppbar {
    background: #121B26;
    border-bottom: 1px solid #2A3647;
    padding: .75rem 3%;
    position: sticky;
    top: 0;
    z-index: 100;
}
.tzAppbarInner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.tzAppbarBrand {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: #FDFBFA;
}
.tzAppbarBrand img {
    border-radius: 6px;
}
.tzAppbarBrand strong {
    font-size: 16px;
    font-weight: 400;
}
.tzAppbarActions {
    display: flex;
    align-items: center;
    gap: .5rem;
}

/* page */
.tzProviderName { font-weight: 700; letter-spacing: 0.5px; color: var(--text-primary); }
