/* overflow-guard */
:root {
    --brand-primary: #2F353B;
    --brand-primary-hover: #3D444D;
    --brand-secondary: #5C636A;
    --brand-secondary-hover: #6E757C;
    --brand-accent: #D4E127;
    --background-main: #061C20;
    --background-surface: #0C282D;
    --background-elevated: #123439;
    --background-overlay: rgba(6, 28, 32, 0.8);
    --text-primary: #F2F5F7;
    --text-secondary: #D1D9DB;
    --text-muted: #B0B8B9;
    --text-brand-contrast: #000000;
    --text-link: #E5F2B1;
    --text-link-hover: #F2F9D6;
    --button-bg: #D4E127;
    --button-text: #000000;
    --button-hover-bg: #B8C620;
    --button-hover-text: #000000;
    --semantic-success: #2ECC71;
    --success: #2ECC71;
    --semantic-error: #E74C3C;
    --error: #E74C3C;
    --semantic-warning: #F1C40F;
    --warning: #F1C40F;
    --semantic-info: #3498DB;
    --info: #3498DB;
    --border-default: #1A3A40;
    --border-strong: #264B53;
    --border-brand: #2F353B;
    --font-family-headings: Hind Siliguri, Sora, 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: 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.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: 74rem;
    --content-max-width: 74rem;
    --spacing-reading-max-width: 66ch;
    --reading-max-width: 66ch;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-pill: 9999px;
    --shadow-card: 0 8px 24px rgba(3, 13, 14, 0.4);
    --shadow-elevated: 0 12px 32px rgba(3, 13, 14, 0.5);
    --shadow-glow: 0 0 0 1px rgba(212, 225, 39, 0.35), 0 6px 18px rgba(212, 225, 39, 0.35);
    --shadow-inset: inset 0 1px 0 rgba(255,255,255,.06);
    --gradient-brand: linear-gradient(135deg, #2F353B 0%, #3D444D 100%);
    --gradient-hero: linear-gradient(180deg, #142B30 0%, #061C20 100%);
    --gradient-surface: linear-gradient(135deg, #0C282D 0%, #123439 100%);
    --gradient-button: none;
    --effects-accent-bar: #D4E127;
    --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: #061C20;
    color: #D1D9DB;
    font-family: Noto Sans Bengali, Source Sans 3, sans-serif;
    font-weight: 400;
    line-height: 1.55;
    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, Sora, sans-serif;
    line-height: 1.3;
    letter-spacing: 0;
    color: #F2F5F7;
}
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: #D1D9DB;
}
ul, ol {
    margin: 0;
}
a {
    color: #E5F2B1;
    text-decoration: none;
    transition: color 180ms, background-color 180ms, box-shadow 180ms, border-color 180ms, transform 180ms;
}
a:hover {
    color: #F2F9D6;
}
a:focus-visible, button:focus-visible, summary:focus-visible {
    outline: 2px solid #D4E127;
    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 > * + *, .inner > * + *, .narrow > * + *, .pile > * + *, .pile-center > * + * {
    margin-block-start: 1.5rem;
}
@media (max-width: 48rem) {
    main > section {
        padding-block: 2.5rem;
    }
    main > section > * + *, main > article > * + *, .inner > * + *, .narrow > * + *, .pile > * + *, .pile-center > * + * {
        margin-block-start: 1rem;
    }
}

.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;
}
.rail::-webkit-scrollbar {
    display: none;
}
.rail-link {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: .5rem 1rem;
    border-radius: 6px;
    background: #0C282D;
    border: 1px solid #1A3A40;
    color: #D1D9DB;
    font-size: 0.875rem;
    transition: color 180ms, background-color 180ms, box-shadow 180ms, border-color 180ms, transform 180ms;
}
.rail-link:hover {
    border-color: #2F353B;
    color: #F2F5F7;
}

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

.disc, .disc-success, .disc-warning, .disc-error, .disc-info {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #2F353B 0%, #3D444D 100%);
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-weight: 700;
}
.disc-success {
    background: #2ECC71;
    color: #FFF;
}
.disc-warning {
    background: #F1C40F;
    color: #FFF;
}
.disc-error {
    background: #E74C3C;
    color: #FFF;
}
.disc-info {
    background: #3498DB;
    color: #FFF;
}

.tabbar {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 1000;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 4.75rem;
    background: #0C282D;
    border-top: 1px solid #1A3A40;
}
.tabbar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .25rem;
    flex: 1 1 0;
    padding: .5rem 0;
    font-size: 0.75rem;
    color: #B0B8B9;
}
.tabbar-item i {
    font-size: 1.25rem;
}
.tabbar-item:hover {
    color: #D4E127;
}

.press, .press-sm, .press-full, .press-outline {
    background: #D4E127;
    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(3, 13, 14, 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;
}
.press:hover, .press-sm:hover, .press-full:hover, .press-outline:hover {
    background: #B8C620;
    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(3, 13, 14, 0.45);
}
.press-sm {
    min-height: 36px;
    padding: 0 1rem;
    font-size: 0.875rem;
}
.press-full {
    display: flex;
    width: 100%;
}
.press-outline {
    background: transparent;
    background-image: none;
    color: #F2F5F7;
    border: 1px solid #264B53;
    box-shadow: none;
}
.press-outline:hover {
    background: transparent;
    border-color: #2F353B;
    color: #F2F5F7;
    box-shadow: none;
}

.game {
    background: linear-gradient(135deg, #0C282D 0%, #123439 100%);
    border: 1px solid #1A3A40;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(3, 13, 14, 0.4), inset 0 1px 0 rgba(255,255,255,.06);
    border-top: 3px solid #D4E127;
    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;
}
.game:hover {
    background: linear-gradient(135deg, #0C282D 0%, #204045 100%);
    box-shadow: 0 12px 32px rgba(3, 13, 14, 0.5), inset 0 1px 0 rgba(255,255,255,.06);
}
.game-media {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.game-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 200ms;
}
.game:hover .game-media img {
    transform: scale(1.04);
}
.game-play {
    position: absolute;
    top: .5rem;
    right: .5rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #D4E127;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 150ms;
}
.game:hover .game-play, .game:focus-visible .game-play {
    opacity: 1;
}
@media (hover: none) {
    .game-play {
        opacity: 1;
    }
}
.game-name {
    padding: .6rem .75rem;
    background: #123439;
}
.game-name h3 {
    margin: 0;
    font-size: 0.875rem;
    color: #F2F5F7;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media (min-width: 48rem) {
    .game-name h3 {
        white-space: normal;
    }
}

.inner {
    width: 100%;
    max-width: 74rem;
    margin-inline: auto;
}
.narrow {
    max-width: 66ch;
    margin-inline: auto;
}
.pile, .pile-center {
    display: block;
}
.pile-center {
    text-align: center;
}
.strip, .strip-center {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}
.strip-center {
    justify-content: center;
}
.mosaic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
    gap: 1.5rem;
}
.lineup {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
.cats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
@media (min-width: 48rem) {
    .lineup {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.5rem;
    }
    .cats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.5rem;
    }
}
.checklist {
    list-style: none;
    padding: 0;
}
.checklist > li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
}
.checklist > li + li {
    margin-block-start: .75rem;
}
.checklist > li > i {
    flex: 0 0 1.25rem;
    text-align: center;
    margin-top: .2em;
    color: #D4E127;
}

.qa {
    background: linear-gradient(135deg, #0C282D 0%, #123439 100%);
    border: 1px solid #1A3A40;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(3, 13, 14, 0.4), inset 0 1px 0 rgba(255,255,255,.06);
    border-top: 3px solid #D4E127;
    transition: color 180ms, background-color 180ms, box-shadow 180ms, border-color 180ms, transform 180ms;
}
.qa + .qa {
    margin-block-start: 1rem;
}
.qa[open] {
    border-color: #2F353B;
}
.qa-q {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
    cursor: pointer;
    list-style: none;
}
.qa-q::-webkit-details-marker {
    display: none;
}
.qa-q h3 {
    margin: 0;
    flex: 1 1 auto;
    min-width: 0;
}
.qa-q::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    flex: 0 0 auto;
    color: #D4E127;
    transition: transform 200ms;
}
.qa[open] .qa-q::after {
    transform: rotate(180deg);
}
.qa-a {
    margin: 0;
    padding: 0 2rem 2rem;
}
@media (max-width: 48rem) {
    .qa-q {
        padding: 1.25rem;
    }
    .qa-a {
        padding: 0 1.25rem 1.25rem;
    }
}

.alert, .alert-warning, .alert-info, .alert-success, .alert-error {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 12px;
    background: #0C282D;
    border: 1px solid #1A3A40;
    border-left: 4px solid #D4E127;
}
.alert > i, .alert-warning > i, .alert-info > i, .alert-success > i, .alert-error > i {
    flex: 0 0 auto;
    margin-top: .2em;
    color: #D4E127;
}
.alert-success {
    border-left-color: #2ECC71;
}
.alert-warning {
    border-left-color: #F1C40F;
}
.alert-error {
    border-left-color: #E74C3C;
}
.alert-info {
    border-left-color: #3498DB;
}
.alert-success > i {
    color: #2ECC71;
}
.alert-warning > i {
    color: #F1C40F;
}
.alert-error > i {
    color: #E74C3C;
}
.alert-info > i {
    color: #3498DB;
}

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

.sheet-wrap {
    background: linear-gradient(135deg, #0C282D 0%, #123439 100%);
    border: 1px solid #1A3A40;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(3, 13, 14, 0.4), inset 0 1px 0 rgba(255,255,255,.06);
    border-top: 3px solid #D4E127;
    overflow-x: auto;
    max-width: 100%;
}
.sheet {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}
.sheet th, .sheet td {
    padding: 1rem;
    text-align: start;
    border-bottom: 1px solid #1A3A40;
    vertical-align: top;
}
.sheet thead th {
    background: #123439;
    color: #F2F5F7;
    font-weight: 600;
}
.sheet tbody tr:last-child td {
    border-bottom: 0;
}
.sheet td:first-child {
    color: #B0B8B9;
    font-weight: 600;
}

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

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

.path {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .5rem;
    padding: 1rem 0;
    font-size: 0.875rem;
    color: #D1D9DB;
}
.path a {
    color: #E5F2B1;
}
.path span {
    color: #F2F5F7;
}

.slab {
    background: linear-gradient(135deg, #0C282D 0%, #123439 100%);
    border: 1px solid #1A3A40;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(3, 13, 14, 0.4), inset 0 1px 0 rgba(255,255,255,.06);
    border-top: 3px solid #D4E127;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: color 180ms, background-color 180ms, box-shadow 180ms, border-color 180ms, transform 180ms;
}
.slab:hover {
    background: linear-gradient(135deg, #0C282D 0%, #204045 100%);
    box-shadow: 0 12px 32px rgba(3, 13, 14, 0.5), inset 0 1px 0 rgba(255,255,255,.06);
}
@media (max-width: 48rem) {
    .slab {
        padding: 1.25rem;
    }
}
.slab > img {
    width: 100%;
    height: auto;
    display: block;
}

.sub {
    font-size: 0.875rem;
}
.quiet {
    color: #B0B8B9;
}
.centered {
    text-align: center;
}
.tone-accent {
    color: #D4E127;
}
.tone-success {
    color: #2ECC71;
}
.tone-warning {
    color: #F1C40F;
}
.tone-error {
    color: #E74C3C;
}
.tone-info {
    color: #3498DB;
}

main > section.zone {
    background: linear-gradient(180deg, #0C282D 0%, #061C20 100%);
    padding-block: 4.5rem;
}
@media (max-width: 48rem) {
    main > section.zone {
        padding-block: 2.5rem;
    }
}
.stage {
    background: linear-gradient(180deg, #142B30 0%, #061C20 100%);
    padding-block: 4.5rem;
    text-align: center;
    margin-inline: -3.1915%;
    padding-inline: 3%;
}
@media (max-width: 48rem) {
    .stage {
        padding-block: 2.5rem;
    }
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .4rem 1rem;
    border-radius: 9999px;
    background: #123439;
    border: 1px solid #264B53;
    color: #F2F5F7;
    font-size: 0.875rem;
}
.pill > i {
    color: #D4E127;
}

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