/* overflow-guard */
:root {
    --brand-primary: #7d1a2b;
    --brand-primary-hover: #912335;
    --brand-secondary: #b8a490;
    --brand-secondary-hover: #c9b8a5;
    --brand-accent: #70d1ff;
    --background-main: #1c120c;
    --background-surface: #281b13;
    --background-elevated: #34261c;
    --background-overlay: rgba(28, 18, 12, 0.8);
    --text-primary: #fdfdfd;
    --text-secondary: #e0e0e0;
    --text-muted: #bdbdbd;
    --text-brand-contrast: #ffffff;
    --text-link: #c5efff;
    --text-link-hover: #e0f5ff;
    --button-bg: #70d1ff;
    --button-text: #0b1c26;
    --button-hover-bg: #4ab8ff;
    --button-hover-text: #0b1c26;
    --semantic-success: #4caf50;
    --success: #4caf50;
    --semantic-error: #f44336;
    --error: #f44336;
    --semantic-warning: #ffb300;
    --warning: #ffb300;
    --semantic-info: #2196f3;
    --info: #2196f3;
    --border-default: #3a2d25;
    --border-strong: #4d3d33;
    --border-brand: #7d1a2b;
    --font-family-headings: Noto Serif Bengali, Playfair Display, 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: 800;
    --role-weight-h2: 700;
    --role-weight-h3: 700;
    --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.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: 80rem;
    --content-max-width: 80rem;
    --spacing-reading-max-width: 62ch;
    --reading-max-width: 62ch;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-pill: 9999px;
    --shadow-card: 0 1px 2px rgba(13, 8, 5, 0.5), 0 16px 32px rgba(13, 8, 5, 0.4);
    --shadow-elevated: 0 2px 4px rgba(13, 8, 5, 0.5), 0 24px 48px rgba(13, 8, 5, 0.5);
    --shadow-glow: 0 0 0 1px rgba(112, 209, 255, 0.35), 0 6px 18px rgba(112, 209, 255, 0.35);
    --shadow-inset: inset 0 1px 0 rgba(255,255,255,.06);
    --gradient-brand: linear-gradient(135deg, #7d1a2b 0%, #912335 100%);
    --gradient-hero: linear-gradient(180deg, #3b1b18 0%, #1c120c 100%);
    --gradient-surface: linear-gradient(180deg, #34261c 0%, #281b13 100%);
    --gradient-button: none;
    --effects-accent-bar: none;
    --recipes-transition: color 200ms, background-color 200ms, box-shadow 200ms, border-color 200ms, transform 200ms;
    --transition: color 200ms, background-color 200ms, box-shadow 200ms, border-color 200ms, transform 200ms;
}
*, *::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: #e0e0e0;
    font-family: Noto Sans Bengali, Source Sans 3, sans-serif;
    font-weight: 400;
    line-height: 1.65;
    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: Noto Serif Bengali, Playfair Display, serif;
    line-height: 1.3;
    letter-spacing: 0;
    color: #fdfdfd;
}
h1 {
    font-size: 1.8rem;
    font-weight: 800;
}
h2 {
    font-size: 1.5rem;
    font-weight: 700;
}
h3 {
    font-size: 1rem;
    font-weight: 700;
}
h4 {
    font-size: 1rem;
    font-weight: 600;
}
p {
    margin: 0;
    color: #e0e0e0;
}
ul, ol {
    margin: 0;
}
a {
    color: #c5efff;
    text-decoration: none;
    transition: color 200ms, background-color 200ms, box-shadow 200ms, border-color 200ms, transform 200ms;
}
a:hover {
    color: #e0f5ff;
}
a:focus-visible, button:focus-visible, summary:focus-visible {
    outline: 2px solid #70d1ff;
    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 > * + *, .holder > * + *, .reading > * + *, .vlist > * + *, .vlist-center > * + * {
    margin-block-start: 1.5rem;
}
@media (max-width: 48rem) {
    main > section {
        padding-block: 2.5rem;
    }
    main > section > * + *, main > article > * + *, .holder > * + *, .reading > * + *, .vlist > * + *, .vlist-center > * + * {
        margin-block-start: 1rem;
    }
}

.dock {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 1000;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 4.25rem;
    background: #281b13;
    border-top: 1px solid #3a2d25;
}
.dock-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .25rem;
    flex: 1 1 0;
    padding: .5rem 0;
    font-size: 0.75rem;
    color: #bdbdbd;
}
.dock-item i {
    font-size: 1.25rem;
}
.dock-item:hover {
    color: #70d1ff;
}

.crumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .5rem;
    padding: 1rem 0;
    font-size: 0.875rem;
    color: #e0e0e0;
}
.crumbs a {
    color: #c5efff;
}
.crumbs span {
    color: #fdfdfd;
}

.datatable-wrap {
    background: linear-gradient(180deg, #34261c 0%, #281b13 100%);
    border: 1px solid #3a2d25;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(13, 8, 5, 0.5), 0 16px 32px rgba(13, 8, 5, 0.4), inset 0 1px 0 rgba(255,255,255,.06);
    overflow-x: auto;
    max-width: 100%;
}
.datatable {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}
.datatable th, .datatable td {
    padding: 1rem;
    text-align: start;
    border-bottom: 1px solid #3a2d25;
    vertical-align: top;
}
.datatable thead th {
    background: #34261c;
    color: #fdfdfd;
    font-weight: 600;
}
.datatable tbody tr:last-child td {
    border-bottom: 0;
}
.datatable td:first-child {
    color: #bdbdbd;
    font-weight: 600;
}

.holder {
    width: 100%;
    max-width: 80rem;
    margin-inline: auto;
}
.reading {
    max-width: 62ch;
    margin-inline: auto;
}
.vlist, .vlist-center {
    display: block;
}
.vlist-center {
    text-align: center;
}
.strip, .strip-center {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}
.strip-center {
    justify-content: center;
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
    gap: 1.5rem;
}
.games {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
.blocks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
@media (min-width: 48rem) {
    .games {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.5rem;
    }
    .blocks {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.5rem;
    }
}
.points {
    list-style: none;
    padding: 0;
}
.points > li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
}
.points > li + li {
    margin-block-start: .75rem;
}
.points > li > i {
    flex: 0 0 1.25rem;
    text-align: center;
    margin-top: .2em;
    color: #70d1ff;
}

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

.tiny {
    font-size: 0.875rem;
}
.muted {
    color: #bdbdbd;
}
.middle {
    text-align: center;
}
.ink-accent {
    color: #70d1ff;
}
.ink-success {
    color: #4caf50;
}
.ink-warning {
    color: #ffb300;
}
.ink-error {
    color: #f44336;
}
.ink-info {
    color: #2196f3;
}

.disc, .disc-success, .disc-warning, .disc-error, .disc-info {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 4px;
    background: linear-gradient(135deg, #7d1a2b 0%, #912335 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-weight: 700;
}
.disc-success {
    background: #4caf50;
    color: #fff;
}
.disc-warning {
    background: #ffb300;
    color: #fff;
}
.disc-error {
    background: #f44336;
    color: #fff;
}
.disc-info {
    background: #2196f3;
    color: #fff;
}

.note, .note-warning, .note-info, .note-success, .note-error {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 8px;
    background: #281b13;
    border: 1px solid #3a2d25;
    border-left: 4px solid #70d1ff;
}
.note > i, .note-warning > i, .note-info > i, .note-success > i, .note-error > i {
    flex: 0 0 auto;
    margin-top: .2em;
    color: #70d1ff;
}
.note-success {
    border-left-color: #4caf50;
}
.note-warning {
    border-left-color: #ffb300;
}
.note-error {
    border-left-color: #f44336;
}
.note-info {
    border-left-color: #2196f3;
}
.note-success > i {
    color: #4caf50;
}
.note-warning > i {
    color: #ffb300;
}
.note-error > i {
    color: #f44336;
}
.note-info > i {
    color: #2196f3;
}

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

.topic {
    text-transform: uppercase;
    letter-spacing: .04em;
}

.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;
}
.scroller::-webkit-scrollbar {
    display: none;
}
.scroller-link {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: .5rem 1rem;
    border-radius: 4px;
    background: #281b13;
    border: 1px solid #3a2d25;
    color: #e0e0e0;
    font-size: 0.875rem;
    transition: color 200ms, background-color 200ms, box-shadow 200ms, border-color 200ms, transform 200ms;
}
.scroller-link:hover {
    border-color: #7d1a2b;
    color: #fdfdfd;
}

.fold {
    background: linear-gradient(180deg, #34261c 0%, #281b13 100%);
    border: 1px solid #3a2d25;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(13, 8, 5, 0.5), 0 16px 32px rgba(13, 8, 5, 0.4), inset 0 1px 0 rgba(255,255,255,.06);
    transition: color 200ms, background-color 200ms, box-shadow 200ms, border-color 200ms, transform 200ms;
}
.fold + .fold {
    margin-block-start: 1rem;
}
.fold[open] {
    border-color: #7d1a2b;
}
.fold-q {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
    cursor: pointer;
    list-style: none;
}
.fold-q::-webkit-details-marker {
    display: none;
}
.fold-q h3 {
    margin: 0;
    flex: 1 1 auto;
    min-width: 0;
}
.fold-q::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    flex: 0 0 auto;
    color: #70d1ff;
    transition: transform 200ms;
}
.fold[open] .fold-q::after {
    transform: rotate(180deg);
}
.fold-a {
    margin: 0;
    padding: 0 2rem 2rem;
}
@media (max-width: 48rem) {
    .fold-q {
        padding: 1.25rem;
    }
    .fold-a {
        padding: 0 1.25rem 1.25rem;
    }
}

.btn, .btn-sm, .btn-full, .btn-outline {
    background: #70d1ff;
    color: #0b1c26;
    border-radius: 4px;
    min-height: 44px;
    font-weight: 700;
    box-shadow: 0 0 0 1px rgba(112, 209, 255, 0.35), 0 6px 18px rgba(112, 209, 255, 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 200ms, background-color 200ms, box-shadow 200ms, border-color 200ms, transform 200ms;
}
.btn:hover, .btn-sm:hover, .btn-full:hover, .btn-outline:hover {
    background: #4ab8ff;
    box-shadow: 0 0 0 1px rgba(112, 209, 255, 0.5), 0 8px 26px rgba(112, 209, 255, 0.5);
}
.btn-sm {
    min-height: 36px;
    padding: 0 1rem;
    font-size: 0.875rem;
}
.btn-full {
    display: flex;
    width: 100%;
}
.btn-outline {
    background: transparent;
    background-image: none;
    color: #fdfdfd;
    border: 1px solid #4d3d33;
    box-shadow: none;
}
.btn-outline:hover {
    background: transparent;
    border-color: #7d1a2b;
    color: #fdfdfd;
    box-shadow: none;
}

.slab {
    background: linear-gradient(180deg, #34261c 0%, #281b13 100%);
    border: 1px solid #3a2d25;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(13, 8, 5, 0.5), 0 16px 32px rgba(13, 8, 5, 0.4), inset 0 1px 0 rgba(255,255,255,.06);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: color 200ms, background-color 200ms, box-shadow 200ms, border-color 200ms, transform 200ms;
}
.slab:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(13, 8, 5, 0.5), 0 24px 48px rgba(13, 8, 5, 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;
}

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

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

.marker {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .4rem 1rem;
    border-radius: 9999px;
    background: #34261c;
    border: 1px solid #4d3d33;
    color: #fdfdfd;
    font-size: 0.875rem;
}
.marker > i {
    color: #70d1ff;
}

.play {
    background: linear-gradient(180deg, #34261c 0%, #281b13 100%);
    border: 1px solid #3a2d25;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(13, 8, 5, 0.5), 0 16px 32px rgba(13, 8, 5, 0.4), inset 0 1px 0 rgba(255,255,255,.06);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: color 200ms, background-color 200ms, box-shadow 200ms, border-color 200ms, transform 200ms;
}
.play:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(13, 8, 5, 0.5), 0 24px 48px rgba(13, 8, 5, 0.5), inset 0 1px 0 rgba(255,255,255,.06);
}
.play-media {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.play-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 200ms;
}
.play:hover .play-media img {
    transform: scale(1.04);
}
.play-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #70d1ff;
    color: #0b1c26;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 150ms;
}
.play:hover .play-play, .play:focus-visible .play-play {
    opacity: 1;
}
@media (hover: none) {
    .play-play {
        opacity: 1;
    }
}
.play-name {
    padding: .6rem .75rem;
    background: #34261c;
}
.play-name h3 {
    margin: 0;
    font-size: 0.875rem;
    color: #fdfdfd;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media (min-width: 48rem) {
    .play-name h3 {
        white-space: normal;
    }
}

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