/* overflow-guard */
:root {
    --brand-primary: #5D2E7A;
    --brand-primary-hover: #733D94;
    --brand-secondary: #B8B0C5;
    --brand-secondary-hover: #D1CBDE;
    --brand-accent: #4EFCAE;
    --background-main: #081C21;
    --background-surface: #12282E;
    --background-elevated: #1C343B;
    --background-overlay: rgba(8, 28, 33, 0.75);
    --text-primary: #FDFDFD;
    --text-secondary: #E0E0E0;
    --text-muted: #BDBDBD;
    --text-brand-contrast: #FFFFFF;
    --text-link: #C2FFED;
    --text-link-hover: #DFFFFB;
    --button-bg: #4EFCAE;
    --button-text: #081C21;
    --button-hover-bg: #3DDB9A;
    --button-hover-text: #081C21;
    --semantic-success: #2ECC71;
    --success: #2ECC71;
    --semantic-error: #E74C3C;
    --error: #E74C3C;
    --semantic-warning: #F1C40F;
    --warning: #F1C40F;
    --semantic-info: #3498DB;
    --info: #3498DB;
    --border-default: #1C343B;
    --border-strong: #2A4A52;
    --border-brand: #5D2E7A;
    --font-family-headings: Noto Sans Bengali, Archivo, sans-serif;
    --font-family-body: Noto Sans Bengali, Manrope, 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: 600;
    --role-weight-h2: 600;
    --role-weight-h3: 500;
    --role-weight-h4: 500;
    --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.25;
    --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: 75rem;
    --content-max-width: 75rem;
    --spacing-reading-max-width: 68ch;
    --reading-max-width: 68ch;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 9999px;
    --shadow-card: 4px 4px 0 #040E10;
    --shadow-elevated: 6px 6px 0 #040E10;
    --shadow-glow: 0 0 0 1px rgba(78, 252, 174, 0.35), 0 6px 18px rgba(78, 252, 174, 0.35);
    --shadow-inset: inset 0 1px 0 rgba(255,255,255,.05);
    --gradient-brand: linear-gradient(135deg, #5D2E7A 0%, #733D94 100%);
    --gradient-hero: linear-gradient(180deg, #22293F 0%, #081C21 100%);
    --gradient-surface: linear-gradient(#1C343B, #1C343B);
    --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: #081C21;
    color: #E0E0E0;
    font-family: Noto Sans Bengali, Manrope, sans-serif;
    font-weight: 400;
    line-height: 1.55;
    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 Sans Bengali, Archivo, sans-serif;
    line-height: 1.25;
    letter-spacing: 0;
    color: #FDFDFD;
}
h1 {
    font-size: 1.8rem;
    font-weight: 600;
}
h2 {
    font-size: 1.5rem;
    font-weight: 600;
}
h3 {
    font-size: 1rem;
    font-weight: 500;
}
h4 {
    font-size: 1rem;
    font-weight: 500;
}
p {
    margin: 0;
    color: #E0E0E0;
}
ul, ol {
    margin: 0;
}
a {
    color: #C2FFED;
    text-decoration: none;
    transition: color 200ms, background-color 200ms, box-shadow 200ms, border-color 200ms, transform 200ms;
}
a:hover {
    color: #DFFFFB;
}
a:focus-visible, button:focus-visible, summary:focus-visible {
    outline: 2px solid #4EFCAE;
    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 > * + *, .hwHolder > * + *, .hwMeasure > * + *, .hwPile > * + *, .hwPileCenter > * + * {
    margin-block-start: 1.5rem;
}
@media (max-width: 48rem) {
    main > section {
        padding-block: 2.5rem;
    }
    main > section > * + *, main > article > * + *, .hwHolder > * + *, .hwMeasure > * + *, .hwPile > * + *, .hwPileCenter > * + * {
        margin-block-start: 1rem;
    }
}

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

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

.hwDisc, .hwDiscSuccess, .hwDiscWarning, .hwDiscError, .hwDiscInfo {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #5D2E7A 0%, #733D94 100%);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-weight: 700;
}
.hwDiscSuccess {
    background: #2ECC71;
    color: #FFF;
}
.hwDiscWarning {
    background: #F1C40F;
    color: #FFF;
}
.hwDiscError {
    background: #E74C3C;
    color: #FFF;
}
.hwDiscInfo {
    background: #3498DB;
    color: #FFF;
}

.hwMemo, .hwMemoWarning, .hwMemoInfo, .hwMemoSuccess, .hwMemoError {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 16px;
    background: #12282E;
    border: 1px solid #1C343B;
    border-left: 4px solid #4EFCAE;
}
.hwMemo > i, .hwMemoWarning > i, .hwMemoInfo > i, .hwMemoSuccess > i, .hwMemoError > i {
    flex: 0 0 auto;
    margin-top: .2em;
    color: #4EFCAE;
}
.hwMemoSuccess {
    border-left-color: #2ECC71;
}
.hwMemoWarning {
    border-left-color: #F1C40F;
}
.hwMemoError {
    border-left-color: #E74C3C;
}
.hwMemoInfo {
    border-left-color: #3498DB;
}
.hwMemoSuccess > i {
    color: #2ECC71;
}
.hwMemoWarning > i {
    color: #F1C40F;
}
.hwMemoError > i {
    color: #E74C3C;
}
.hwMemoInfo > i {
    color: #3498DB;
}

.hwLedgerWrap {
    background: rgba(28, 52, 59, 0.65);
    border: 1px solid #1C343B;
    border-radius: 16px;
    box-shadow: 4px 4px 0 #040E10, inset 0 1px 0 rgba(255,255,255,.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow-x: auto;
    max-width: 100%;
}
.hwLedger {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}
.hwLedger th, .hwLedger td {
    padding: 1rem;
    text-align: start;
    border-bottom: 1px solid #1C343B;
    vertical-align: top;
}
.hwLedger thead th {
    background: #1C343B;
    color: #FDFDFD;
    font-weight: 600;
}
.hwLedger tbody tr:last-child td {
    border-bottom: 0;
}
.hwLedger td:first-child {
    color: #BDBDBD;
    font-weight: 600;
}

.hwCover {
    background: rgba(28, 52, 59, 0.65);
    border: 1px solid #1C343B;
    border-radius: 16px;
    box-shadow: 4px 4px 0 #040E10, inset 0 1px 0 rgba(255,255,255,.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    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;
}
.hwCover:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 #040E10, inset 0 1px 0 rgba(255,255,255,.05);
}
.hwCoverMedia {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.hwCoverMedia img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 200ms;
}
.hwCover:hover .hwCoverMedia img {
    transform: scale(1.04);
}
.hwCoverPlay {
    position: absolute;
    top: .5rem;
    right: .5rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #4EFCAE;
    color: #081C21;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 150ms;
}
.hwCover:hover .hwCoverPlay, .hwCover:focus-visible .hwCoverPlay {
    opacity: 1;
}
@media (hover: none) {
    .hwCoverPlay {
        opacity: 1;
    }
}
.hwCover {
    position: relative;
}
.hwCoverName {
    position: absolute;
    inset: auto 0 0 0;
    padding: .6rem .75rem;
    background: linear-gradient(180deg, transparent 0%, rgba(8, 28, 33, 0.75) 100%);
}
.hwCoverName h3 {
    margin: 0;
    font-size: 0.875rem;
    color: #FDFDFD;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media (min-width: 48rem) {
    .hwCoverName h3 {
        white-space: normal;
    }
}

.hwPill {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .4rem 1rem;
    border-radius: 9999px;
    background: #1C343B;
    border: 1px solid #2A4A52;
    color: #FDFDFD;
    font-size: 0.875rem;
}
.hwPill > i {
    color: #4EFCAE;
}

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

.hwMasthead {
    background: #081C21;
    border-bottom: 1px solid #1C343B;
    padding: .75rem 3%;
    position: sticky;
    top: 0;
    z-index: 100;
}
.hwMastheadInner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.hwMastheadBrand {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: #FDFDFD;
}
.hwMastheadBrand img {
    border-radius: 8px;
}
.hwMastheadBrand strong {
    font-size: 16px;
    font-weight: 400;
}
.hwMastheadActions {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.hwTabbar {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 1000;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 4.25rem;
    background: #12282E;
    border-top: 1px solid #1C343B;
}
.hwTabbarItem {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .25rem;
    flex: 1 1 0;
    padding: .5rem 0;
    font-size: 0.75rem;
    color: #BDBDBD;
}
.hwTabbarItem i {
    font-size: 1.25rem;
}
.hwTabbarItem:hover {
    color: #4EFCAE;
}

.hwBox {
    background: rgba(28, 52, 59, 0.65);
    border: 1px solid #1C343B;
    border-radius: 16px;
    box-shadow: 4px 4px 0 #040E10, inset 0 1px 0 rgba(255,255,255,.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: color 200ms, background-color 200ms, box-shadow 200ms, border-color 200ms, transform 200ms;
}
.hwBox:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 #040E10, inset 0 1px 0 rgba(255,255,255,.05);
}
@media (max-width: 48rem) {
    .hwBox {
        padding: 1.25rem;
    }
}
.hwBox > img {
    width: 100%;
    height: auto;
    display: block;
}

.hwTrail {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .5rem;
    padding: 1rem 0;
    font-size: 0.875rem;
    color: #E0E0E0;
}
.hwTrail a {
    color: #C2FFED;
}
.hwTrail span {
    color: #FDFDFD;
}

.hwPress, .hwPressSm, .hwPressFull, .hwPressOutline {
    background: #4EFCAE;
    color: #081C21;
    border-radius: 16px;
    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 200ms, background-color 200ms, box-shadow 200ms, border-color 200ms, transform 200ms;
}
.hwPress:hover, .hwPressSm:hover, .hwPressFull:hover, .hwPressOutline:hover {
    background: #3DDB9A;
    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);
}
.hwPressSm {
    min-height: 36px;
    padding: 0 1rem;
    font-size: 0.875rem;
}
.hwPressFull {
    display: flex;
    width: 100%;
}
.hwPressOutline {
    background: transparent;
    background-image: none;
    color: #FDFDFD;
    border: 1px solid #2A4A52;
    box-shadow: none;
}
.hwPressOutline:hover {
    background: transparent;
    border-color: #5D2E7A;
    color: #FDFDFD;
    box-shadow: none;
}

main > section.hwBelt {
    background: #12282E;
    padding-block: 4.5rem;
}
@media (max-width: 48rem) {
    main > section.hwBelt {
        padding-block: 2.5rem;
    }
}
.hwStage {
    background: linear-gradient(180deg, #22293F 0%, #081C21 100%);
    padding-block: 4.5rem;
    text-align: center;
    margin-inline: -3.1915%;
    padding-inline: 3%;
}
@media (max-width: 48rem) {
    .hwStage {
        padding-block: 2.5rem;
    }
}

.hwTicker {
    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;
}
.hwTicker::-webkit-scrollbar {
    display: none;
}
.hwTickerLink {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: .5rem 1rem;
    border-radius: 8px;
    background: #12282E;
    border: 1px solid #1C343B;
    color: #E0E0E0;
    font-size: 0.875rem;
    transition: color 200ms, background-color 200ms, box-shadow 200ms, border-color 200ms, transform 200ms;
}
.hwTickerLink:hover {
    border-color: #5D2E7A;
    color: #FDFDFD;
}

.hwHolder {
    width: 100%;
    max-width: 75rem;
    margin-inline: auto;
}
.hwMeasure {
    max-width: 68ch;
    margin-inline: auto;
}
.hwPile, .hwPileCenter {
    display: block;
}
.hwPileCenter {
    text-align: center;
}
.hwLine, .hwLineCenter {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}
.hwLineCenter {
    justify-content: center;
}
.hwLattice {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
    gap: 1.5rem;
}
.hwGames {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
.hwCats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
@media (min-width: 48rem) {
    .hwGames {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.5rem;
    }
    .hwCats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.5rem;
    }
}
.hwChecklist {
    list-style: none;
    padding: 0;
}
.hwChecklist > li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
}
.hwChecklist > li + li {
    margin-block-start: .75rem;
}
.hwChecklist > li > i {
    flex: 0 0 1.25rem;
    text-align: center;
    margin-top: .2em;
    color: #4EFCAE;
}

.hwQa {
    background: rgba(28, 52, 59, 0.65);
    border: 1px solid #1C343B;
    border-radius: 16px;
    box-shadow: 4px 4px 0 #040E10, inset 0 1px 0 rgba(255,255,255,.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: color 200ms, background-color 200ms, box-shadow 200ms, border-color 200ms, transform 200ms;
}
.hwQa + .hwQa {
    margin-block-start: 1rem;
}
.hwQa[open] {
    border-color: #5D2E7A;
}
.hwQaQ {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
    cursor: pointer;
    list-style: none;
}
.hwQaQ::-webkit-details-marker {
    display: none;
}
.hwQaQ h3 {
    margin: 0;
    flex: 1 1 auto;
    min-width: 0;
}
.hwQaQ::after {
    content: "\f0d7";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    flex: 0 0 auto;
    color: #4EFCAE;
    transition: transform 200ms;
}
.hwQa[open] .hwQaQ::after {
    transform: rotate(180deg);
}
.hwQaA {
    margin: 0;
    padding: 0 2rem 2rem;
}
@media (max-width: 48rem) {
    .hwQaQ {
        padding: 1.25rem;
    }
    .hwQaA {
        padding: 0 1.25rem 1.25rem;
    }
}

.hwSmall {
    font-size: 0.875rem;
}
.hwMuted {
    color: #BDBDBD;
}
.hwMid {
    text-align: center;
}
.hwShadeAccent {
    color: #4EFCAE;
}
.hwShadeSuccess {
    color: #2ECC71;
}
.hwShadeWarning {
    color: #F1C40F;
}
.hwShadeError {
    color: #E74C3C;
}
.hwShadeInfo {
    color: #3498DB;
}

/* page */
.hwProviderName {
            font-weight: 700;
            letter-spacing: 0.5px;
            font-size: 1.1rem;
        }
