/* overflow-guard */
:root {
    --brand-primary: #3f48cc;
    --brand-primary-hover: #565ef0;
    --brand-secondary: #a9b2d6;
    --brand-secondary-hover: #c1c9e8;
    --brand-accent: #e6f032;
    --background-main: #0b1d17;
    --background-surface: #112921;
    --background-elevated: #17332b;
    --background-overlay: rgba(11, 29, 23, 0.8);
    --text-primary: #f2f5f2;
    --text-secondary: #d1d9d1;
    --text-muted: #b2bdb2;
    --text-brand-contrast: #000000;
    --text-link: #c8d9ff;
    --text-link-hover: #e0e8ff;
    --button-bg: #e6f032;
    --button-text: #000000;
    --button-hover-bg: #c9d42b;
    --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: #1a3a31;
    --border-strong: #254b41;
    --border-brand: #3f48cc;
    --font-family-headings: Oswald, Noto Sans Bengali, sans-serif;
    --font-family-body: Source Sans 3, Noto Sans Bengali, 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.35;
    --line-height-body: 1.6;
    --letter-spacing-heading: 0;
    --letter-spacing-body: 0;
    --spacing-section-desktop: 3.5rem;
    --section-desktop: 3.5rem;
    --spacing-item-desktop: 1.25rem;
    --item-desktop: 1.25rem;
    --spacing-section-mobile: 2rem;
    --section-mobile: 2rem;
    --spacing-item-mobile: 1rem;
    --item-mobile: 1rem;
    --spacing-container-pad-desktop: 2rem;
    --container-pad-desktop: 2rem;
    --spacing-container-pad-mobile: 1rem;
    --container-pad-mobile: 1rem;
    --spacing-card-pad-desktop: 1.5rem;
    --card-pad-desktop: 1.5rem;
    --spacing-card-pad-mobile: 1rem;
    --card-pad-mobile: 1rem;
    --spacing-content-max-width: 75rem;
    --content-max-width: 75rem;
    --spacing-reading-max-width: 68ch;
    --reading-max-width: 68ch;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-pill: 9999px;
    --shadow-card: 4px 4px 0 #060e0c;
    --shadow-elevated: 6px 6px 0 #060e0c;
    --shadow-glow: 0 0 0 1px rgba(230, 240, 50, 0.35), 0 6px 18px rgba(230, 240, 50, 0.35);
    --shadow-inset: inset 0 1px 0 rgba(255,255,255,.05);
    --gradient-brand: linear-gradient(135deg, #3f48cc 0%, #565ef0 100%);
    --gradient-hero: linear-gradient(180deg, #1b3047 0%, #0b1d17 100%);
    --gradient-surface: linear-gradient(#17332b, #17332b);
    --gradient-button: none;
    --effects-accent-bar: none;
    --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: #0b1d17;
    color: #d1d9d1;
    font-family: Source Sans 3, Noto Sans Bengali, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    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: Oswald, Noto Sans Bengali, sans-serif;
    line-height: 1.35;
    letter-spacing: 0;
    color: #f2f5f2;
}
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: #d1d9d1;
}
ul, ol {
    margin: 0;
}
a {
    color: #c8d9ff;
    text-decoration: none;
    transition: color 150ms, background-color 150ms, box-shadow 150ms, border-color 150ms, transform 150ms;
}
a:hover {
    color: #e0e8ff;
}
a:focus-visible, button:focus-visible, summary:focus-visible {
    outline: 2px solid #e6f032;
    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: 3.5rem;
}
main > section > * + *, main > article > * + *, .pbsFrame > * + *, .pbsMeasure > * + *, .pbsColumn > * + *, .pbsColumnCenter > * + * {
    margin-block-start: 1.25rem;
}
@media (max-width: 48rem) {
    main > section {
        padding-block: 2rem;
    }
    main > section > * + *, main > article > * + *, .pbsFrame > * + *, .pbsMeasure > * + *, .pbsColumn > * + *, .pbsColumnCenter > * + * {
        margin-block-start: 1rem;
    }
}

.pbsQuicknav {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 1000;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 4.5rem;
    background: #112921;
    border-top: 1px solid #1a3a31;
}
.pbsQuicknavItem {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .25rem;
    flex: 1 1 0;
    padding: .5rem 0;
    font-size: 0.75rem;
    color: #b2bdb2;
}
.pbsQuicknavItem i {
    font-size: 1.25rem;
}
.pbsQuicknavItem:hover {
    color: #e6f032;
}

.pbsGame {
    background: #17332b;
    border: 1px solid #1a3a31;
    border-radius: 10px;
    box-shadow: 4px 4px 0 #060e0c, inset 0 1px 0 rgba(255,255,255,.05);
    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;
}
.pbsGame:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 #060e0c, inset 0 1px 0 rgba(255,255,255,.05);
}
.pbsGameMedia {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.pbsGameMedia img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 200ms;
}
.pbsGame:hover .pbsGameMedia img {
    transform: scale(1.04);
}
.pbsGamePlay {
    position: absolute;
    bottom: .5rem;
    right: .5rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #e6f032;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 150ms;
}
.pbsGame:hover .pbsGamePlay, .pbsGame:focus-visible .pbsGamePlay {
    opacity: 1;
}
@media (hover: none) {
    .pbsGamePlay {
        opacity: 1;
    }
}
.pbsGameName {
    padding: .6rem .75rem;
    background: #17332b;
}
.pbsGameName h3 {
    margin: 0;
    font-size: 0.875rem;
    color: #f2f5f2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media (min-width: 48rem) {
    .pbsGameName h3 {
        white-space: normal;
    }
}

.pbsOrb, .pbsOrbSuccess, .pbsOrbWarning, .pbsOrbError, .pbsOrbInfo {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #3f48cc 0%, #565ef0 100%);
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-weight: 700;
}
.pbsOrbSuccess {
    background: #4caf50;
    color: #fff;
}
.pbsOrbWarning {
    background: #ffb74d;
    color: #fff;
}
.pbsOrbError {
    background: #ef5350;
    color: #fff;
}
.pbsOrbInfo {
    background: #4fc3f7;
    color: #fff;
}

.pbsCallout, .pbsCalloutWarning, .pbsCalloutInfo, .pbsCalloutSuccess, .pbsCalloutError {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 10px;
    background: #112921;
    border: 1px solid #1a3a31;
    border-left: 4px solid #e6f032;
}
.pbsCallout > i, .pbsCalloutWarning > i, .pbsCalloutInfo > i, .pbsCalloutSuccess > i, .pbsCalloutError > i {
    flex: 0 0 auto;
    margin-top: .2em;
    color: #e6f032;
}
.pbsCalloutSuccess {
    border-left-color: #4caf50;
}
.pbsCalloutWarning {
    border-left-color: #ffb74d;
}
.pbsCalloutError {
    border-left-color: #ef5350;
}
.pbsCalloutInfo {
    border-left-color: #4fc3f7;
}
.pbsCalloutSuccess > i {
    color: #4caf50;
}
.pbsCalloutWarning > i {
    color: #ffb74d;
}
.pbsCalloutError > i {
    color: #ef5350;
}
.pbsCalloutInfo > i {
    color: #4fc3f7;
}

.pbsCrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .5rem;
    padding: 1rem 0;
    font-size: 0.875rem;
    color: #d1d9d1;
}
.pbsCrumbs a {
    color: #c8d9ff;
}
.pbsCrumbs span {
    color: #f2f5f2;
}

.pbsBottom {
    background: #0b1d17;
    border-top: 1px solid #1a3a31;
    padding: 3rem 3% 2rem;
    color: #b2bdb2;
}
.pbsBottomGrid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    text-align: center;
}
.pbsBottomCol > p, .pbsBottomCol > h3 {
    font-size: 0.875rem;
    font-weight: 700;
    color: #f2f5f2;
    margin: 0 0 .75rem;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.pbsBottomCol ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.pbsBottomCol li + li {
    margin-block-start: .5rem;
}
.pbsBottomCol a {
    color: #b2bdb2;
    font-size: 0.875rem;
}
.pbsBottomCol a:hover {
    color: #e0e8ff;
}
.pbsBottomMeta {
    margin-block-start: 2rem;
    padding-block-start: 1.5rem;
    border-top: 1px solid #1a3a31;
    text-align: center;
    font-size: 0.875rem;
}
.pbsBottomMeta > * + * {
    margin-block-start: .5rem;
}

main > section.pbsBelt {
    background: #112921;
    padding-block: 3.5rem;
}
@media (max-width: 48rem) {
    main > section.pbsBelt {
        padding-block: 2rem;
    }
}
.pbsSplash {
    background: linear-gradient(180deg, #1b3047 0%, #0b1d17 100%);
    padding-block: 3.5rem;
    text-align: center;
    margin-inline: -3.1915%;
    padding-inline: 3%;
}
@media (max-width: 48rem) {
    .pbsSplash {
        padding-block: 2rem;
    }
}

.pbsAction, .pbsActionSm, .pbsActionFull, .pbsActionOutline {
    background: #e6f032;
    color: #000000;
    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(5, 13, 10, 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;
}
.pbsAction:hover, .pbsActionSm:hover, .pbsActionFull:hover, .pbsActionOutline:hover {
    background: #c9d42b;
    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(5, 13, 10, 0.45);
}
.pbsActionSm {
    min-height: 36px;
    padding: 0 1rem;
    font-size: 0.875rem;
}
.pbsActionFull {
    display: flex;
    width: 100%;
}
.pbsActionOutline {
    background: transparent;
    background-image: none;
    color: #f2f5f2;
    border: 1px solid #254b41;
    box-shadow: none;
}
.pbsActionOutline:hover {
    background: transparent;
    border-color: #3f48cc;
    color: #f2f5f2;
    box-shadow: none;
}

.pbsTableWrap {
    background: #17332b;
    border: 1px solid #1a3a31;
    border-radius: 10px;
    box-shadow: 4px 4px 0 #060e0c, inset 0 1px 0 rgba(255,255,255,.05);
    overflow-x: auto;
    max-width: 100%;
}
.pbsTable {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}
.pbsTable th, .pbsTable td {
    padding: 1rem;
    text-align: start;
    border-bottom: 1px solid #1a3a31;
    vertical-align: top;
}
.pbsTable thead th {
    background: #17332b;
    color: #f2f5f2;
    font-weight: 600;
}
.pbsTable tbody tr:last-child td {
    border-bottom: 0;
}
.pbsTable td:first-child {
    color: #b2bdb2;
    font-weight: 600;
}

.pbsFrame {
    width: 100%;
    max-width: 75rem;
    margin-inline: auto;
}
.pbsMeasure {
    max-width: 68ch;
    margin-inline: auto;
}
.pbsColumn, .pbsColumnCenter {
    display: block;
}
.pbsColumnCenter {
    text-align: center;
}
.pbsLine, .pbsLineCenter {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}
.pbsLineCenter {
    justify-content: center;
}
.pbsLattice {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
    gap: 1.25rem;
}
.pbsGames {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
.pbsBlocks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
@media (min-width: 48rem) {
    .pbsGames {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.25rem;
    }
    .pbsBlocks {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.25rem;
    }
}
.pbsTicks {
    list-style: none;
    padding: 0;
}
.pbsTicks > li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
}
.pbsTicks > li + li {
    margin-block-start: .75rem;
}
.pbsTicks > li > i {
    flex: 0 0 1.25rem;
    text-align: center;
    margin-top: .2em;
    color: #e6f032;
}

.pbsAccordion {
    background: #17332b;
    border: 1px solid #1a3a31;
    border-radius: 10px;
    box-shadow: 4px 4px 0 #060e0c, inset 0 1px 0 rgba(255,255,255,.05);
    transition: color 150ms, background-color 150ms, box-shadow 150ms, border-color 150ms, transform 150ms;
}
.pbsAccordion + .pbsAccordion {
    margin-block-start: 1rem;
}
.pbsAccordion[open] {
    border-color: #3f48cc;
}
.pbsAccordionQ {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    cursor: pointer;
    list-style: none;
}
.pbsAccordionQ::-webkit-details-marker {
    display: none;
}
.pbsAccordionQ h3 {
    margin: 0;
    flex: 1 1 auto;
    min-width: 0;
}
.pbsAccordionQ::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    flex: 0 0 auto;
    color: #e6f032;
    transition: transform 200ms;
}
.pbsAccordion[open] .pbsAccordionQ::after {
    transform: rotate(180deg);
}
.pbsAccordionA {
    margin: 0;
    padding: 0 1.5rem 1.5rem;
}
@media (max-width: 48rem) {
    .pbsAccordionQ {
        padding: 1rem;
    }
    .pbsAccordionA {
        padding: 0 1rem 1rem;
    }
}

.pbsScroller {
    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;
}
.pbsScroller::-webkit-scrollbar {
    display: none;
}
.pbsScrollerLink {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: .5rem 1rem;
    border-radius: 6px;
    background: #112921;
    border: 1px solid #1a3a31;
    color: #d1d9d1;
    font-size: 0.875rem;
    transition: color 150ms, background-color 150ms, box-shadow 150ms, border-color 150ms, transform 150ms;
}
.pbsScrollerLink:hover {
    border-color: #3f48cc;
    color: #f2f5f2;
}

.pbsPlate {
    background: #17332b;
    border: 1px solid #1a3a31;
    border-radius: 10px;
    box-shadow: 4px 4px 0 #060e0c, inset 0 1px 0 rgba(255,255,255,.05);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: color 150ms, background-color 150ms, box-shadow 150ms, border-color 150ms, transform 150ms;
}
.pbsPlate:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 #060e0c, inset 0 1px 0 rgba(255,255,255,.05);
}
@media (max-width: 48rem) {
    .pbsPlate {
        padding: 1rem;
    }
}
.pbsPlate > img {
    width: 100%;
    height: auto;
    display: block;
}

.pbsSmall {
    font-size: 0.875rem;
}
.pbsSoft {
    color: #b2bdb2;
}
.pbsMiddle {
    text-align: center;
}
.pbsHueAccent {
    color: #e6f032;
}
.pbsHueSuccess {
    color: #4caf50;
}
.pbsHueWarning {
    color: #ffb74d;
}
.pbsHueError {
    color: #ef5350;
}
.pbsHueInfo {
    color: #4fc3f7;
}

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

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

.pbsAppbar {
    background: #0b1d17;
    border-bottom: 1px solid #1a3a31;
    padding: .75rem 3%;
    position: sticky;
    top: 0;
    z-index: 100;
}
.pbsAppbarInner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.pbsAppbarBrand {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: #f2f5f2;
}
.pbsAppbarBrand img {
    border-radius: 6px;
}
.pbsAppbarBrand strong {
    font-size: 16px;
    font-weight: 400;
}
.pbsAppbarActions {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.pbsPill {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .4rem 1rem;
    border-radius: 9999px;
    background: #17332b;
    border: 1px solid #254b41;
    color: #f2f5f2;
    font-size: 0.875rem;
}
.pbsPill > i {
    color: #e6f032;
}

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