/* overflow-guard */
:root {
    --brand-primary: #B21E32;
    --brand-primary-hover: #D12A41;
    --brand-secondary: #C0C0C0;
    --brand-secondary-hover: #E0E0E0;
    --brand-accent: #00A8B5;
    --background-main: #1C0A12;
    --background-surface: #28111B;
    --background-elevated: #331823;
    --background-overlay: rgba(28, 10, 18, 0.8);
    --text-primary: #F5F5F5;
    --text-secondary: #DCDCDC;
    --text-muted: #BDBDBD;
    --text-brand-contrast: #FFFFFF;
    --text-link: #B2EBF0;
    --text-link-hover: #E0FFFF;
    --button-bg: #00A8B5;
    --button-text: #000000;
    --button-hover-bg: #00D1DD;
    --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: #3D1D2B;
    --border-strong: #522A3B;
    --border-brand: #B21E32;
    --font-family-headings: Hind Siliguri, Barlow Condensed, sans-serif;
    --font-family-body: Noto Sans Bengali, Barlow, 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.25;
    --line-height-body: 1.65;
    --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: 80rem;
    --content-max-width: 80rem;
    --spacing-reading-max-width: 70ch;
    --reading-max-width: 70ch;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-pill: 9999px;
    --shadow-card: 4px 4px 0 #0E0509;
    --shadow-elevated: 6px 6px 0 #0E0509;
    --shadow-glow: 0 0 0 1px rgba(0, 168, 181, 0.35), 0 6px 18px rgba(0, 168, 181, 0.35);
    --shadow-inset: inset 0 1px 0 rgba(255,255,255,.05);
    --gradient-brand: linear-gradient(135deg, #B21E32 0%, #D12A41 100%);
    --gradient-hero: linear-gradient(180deg, #461420 0%, #1C0A12 100%);
    --gradient-surface: linear-gradient(#331823, #331823);
    --gradient-button: none;
    --effects-accent-bar: none;
    --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: #1C0A12;
    color: #DCDCDC;
    font-family: Noto Sans Bengali, Barlow, sans-serif;
    font-weight: 400;
    line-height: 1.65;
    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: Hind Siliguri, Barlow Condensed, sans-serif;
    line-height: 1.25;
    letter-spacing: 0;
    color: #F5F5F5;
}
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: #DCDCDC;
}
ul, ol {
    margin: 0;
}
a {
    color: #B2EBF0;
    text-decoration: none;
    transition: color 180ms, background-color 180ms, box-shadow 180ms, border-color 180ms, transform 180ms;
}
a:hover {
    color: #E0FFFF;
}
a:focus-visible, button:focus-visible, summary:focus-visible {
    outline: 2px solid #00A8B5;
    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 > * + *, .wrap > * + *, .reading > * + *, .stack > * + *, .stack--center > * + * {
    margin-block-start: 1.25rem;
}
@media (max-width: 48rem) {
    main > section {
        padding-block: 2rem;
    }
    main > section > * + *, main > article > * + *, .wrap > * + *, .reading > * + *, .stack > * + *, .stack--center > * + * {
        margin-block-start: 1rem;
    }
}

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

main > section.band {
    background: #28111B;
    padding-block: 3.5rem;
    margin-inline: -3.1915%;
    padding-inline: 3%;
}
@media (max-width: 48rem) {
    main > section.band {
        padding-block: 2rem;
    }
}
.opening {
    background: linear-gradient(180deg, #461420 0%, #1C0A12 100%);
    padding-block: 3.5rem;
    text-align: center;
    margin-inline: -3.1915%;
    padding-inline: 3%;
}
@media (max-width: 48rem) {
    .opening {
        padding-block: 2rem;
    }
}

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

.callout, .callout--warning, .callout--info, .callout--success, .callout--error {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 10px;
    background: #28111B;
    border: 1px solid #3D1D2B;
    border-left: 4px solid #00A8B5;
}
.callout > i, .callout--warning > i, .callout--info > i, .callout--success > i, .callout--error > i {
    flex: 0 0 auto;
    margin-top: .2em;
    color: #00A8B5;
}
.callout--success {
    border-left-color: #2ECC71;
}
.callout--warning {
    border-left-color: #F1C40F;
}
.callout--error {
    border-left-color: #E74C3C;
}
.callout--info {
    border-left-color: #3498DB;
}
.callout--success > i {
    color: #2ECC71;
}
.callout--warning > i {
    color: #F1C40F;
}
.callout--error > i {
    color: #E74C3C;
}
.callout--info > i {
    color: #3498DB;
}

.qa {
    background: #331823;
    border: 1px solid #3D1D2B;
    border-radius: 10px;
    box-shadow: 4px 4px 0 #0E0509, inset 0 1px 0 rgba(255,255,255,.05);
    transition: color 180ms, background-color 180ms, box-shadow 180ms, border-color 180ms, transform 180ms;
}
.qa + .qa {
    margin-block-start: 1rem;
}
.qa[open] {
    border-color: #B21E32;
}
.qa__q {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    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: "\f0d7";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    flex: 0 0 auto;
    color: #00A8B5;
    transition: transform 200ms;
}
.qa[open] .qa__q::after {
    transform: rotate(180deg);
}
.qa__a {
    margin: 0;
    padding: 0 1.5rem 1.5rem;
}
@media (max-width: 48rem) {
    .qa__q {
        padding: 1rem;
    }
    .qa__a {
        padding: 0 1rem 1rem;
    }
}

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

.item, .box.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;
}

.sheet__wrap {
    background: #331823;
    border: 1px solid #3D1D2B;
    border-radius: 10px;
    box-shadow: 4px 4px 0 #0E0509, inset 0 1px 0 rgba(255,255,255,.05);
    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 #3D1D2B;
    vertical-align: top;
}
.sheet thead th {
    background: #331823;
    color: #F5F5F5;
    font-weight: 600;
}
.sheet tbody tr:last-child td {
    border-bottom: 0;
}
.sheet td:first-child {
    color: #BDBDBD;
    font-weight: 600;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .4rem 1rem;
    border-radius: 9999px;
    background: #331823;
    border: 1px solid #522A3B;
    color: #F5F5F5;
    font-size: 0.875rem;
}
.pill > i {
    color: #00A8B5;
}

.poster {
    background: #331823;
    border: 1px solid #3D1D2B;
    border-radius: 10px;
    box-shadow: 4px 4px 0 #0E0509, inset 0 1px 0 rgba(255,255,255,.05);
    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;
}
.poster:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 #0E0509, inset 0 1px 0 rgba(255,255,255,.05);
}
.poster__media {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.poster__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 200ms;
}
.poster:hover .poster__media img {
    transform: scale(1.04);
}
.poster__play {
    position: absolute;
    bottom: .5rem;
    right: .5rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #00A8B5;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 150ms;
}
.poster:hover .poster__play, .poster:focus-visible .poster__play {
    opacity: 1;
}
@media (hover: none) {
    .poster__play {
        opacity: 1;
    }
}
.poster {
    position: relative;
}
.poster__name {
    position: absolute;
    inset: auto 0 0 0;
    padding: .6rem .75rem;
    background: linear-gradient(180deg, transparent 0%, rgba(28, 10, 18, 0.8) 100%);
}
.poster__name h3 {
    margin: 0;
    font-size: 0.875rem;
    color: #F5F5F5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media (min-width: 48rem) {
    .poster__name h3 {
        white-space: normal;
    }
}

.chips {
    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;
}
.chips::-webkit-scrollbar {
    display: none;
}
.chips__link {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: .5rem 1rem;
    border-radius: 6px;
    background: #28111B;
    border: 1px solid #3D1D2B;
    color: #DCDCDC;
    font-size: 0.875rem;
    transition: color 180ms, background-color 180ms, box-shadow 180ms, border-color 180ms, transform 180ms;
}
.chips__link:hover {
    border-color: #B21E32;
    color: #F5F5F5;
}

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

.topbar {
    background: #1C0A12;
    border-bottom: 1px solid #3D1D2B;
    padding: .75rem 3%;
    position: sticky;
    top: 0;
    z-index: 100;
}
.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.topbar__brand {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: #F5F5F5;
}
.topbar__brand img {
    border-radius: 6px;
}
.topbar__brand strong {
    font-size: 16px;
    font-weight: 400;
}
.topbar__actions {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.quicknav {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 1000;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 4.5rem;
    background: #28111B;
    border-top: 1px solid #3D1D2B;
}
.quicknav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .25rem;
    flex: 1 1 0;
    padding: .5rem 0;
    font-size: 0.75rem;
    color: #BDBDBD;
}
.quicknav__item i {
    font-size: 1.25rem;
}
.quicknav__item:hover {
    color: #00A8B5;
}

.trail {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .5rem;
    padding: 1rem 0;
    font-size: 0.875rem;
    color: #DCDCDC;
}
.trail a {
    color: #B2EBF0;
}
.trail span {
    color: #F5F5F5;
}

.bottom {
    background: #1C0A12;
    border-top: 1px solid #3D1D2B;
    padding: 3rem 3% 2rem;
    color: #BDBDBD;
}
.bottom__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    text-align: center;
}
.bottom__col > p, .bottom__col > h3 {
    font-size: 0.875rem;
    font-weight: 700;
    color: #F5F5F5;
    margin: 0 0 .75rem;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.bottom__col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.bottom__col li + li {
    margin-block-start: .5rem;
}
.bottom__col a {
    color: #BDBDBD;
    font-size: 0.875rem;
}
.bottom__col a:hover {
    color: #E0FFFF;
}
.bottom__meta {
    margin-block-start: 2rem;
    padding-block-start: 1.5rem;
    border-top: 1px solid #3D1D2B;
    text-align: center;
    font-size: 0.875rem;
}
.bottom__meta > * + * {
    margin-block-start: .5rem;
}

.btn, .btn--sm, .btn--full, .btn--outline {
    background: #00A8B5;
    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(13, 4, 8, 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;
}
.btn:hover, .btn--sm:hover, .btn--full:hover, .btn--outline:hover {
    background: #00D1DD;
    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(13, 4, 8, 0.45);
}
.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: #F5F5F5;
    border: 1px solid #522A3B;
    box-shadow: none;
}
.btn--outline:hover {
    background: transparent;
    border-color: #B21E32;
    color: #F5F5F5;
    box-shadow: none;
}

.small {
    font-size: 0.875rem;
}
.soft {
    color: #BDBDBD;
}
.axis {
    text-align: center;
}
.tone--accent {
    color: #00A8B5;
}
.tone--success {
    color: #2ECC71;
}
.tone--warning {
    color: #F1C40F;
}
.tone--error {
    color: #E74C3C;
}
.tone--info {
    color: #3498DB;
}

/* page */
.provider-tile__name {
            font-weight: 700;
            letter-spacing: 0.5px;
            display: block;
            margin-bottom: 0.25rem;
        }
