/* overflow-guard */
:root {
    --brand-primary: #B21E3E;
    --brand-primary-hover: #D12A4D;
    --brand-secondary: #C8B2B2;
    --brand-secondary-hover: #E0D5D5;
    --brand-accent: #00A8A8;
    --background-main: #1C0B1C;
    --background-surface: #281328;
    --background-elevated: #321B32;
    --background-overlay: rgba(28, 11, 28, 0.75);
    --text-primary: #F2F2F2;
    --text-secondary: #DCDCDC;
    --text-muted: #BDBDBD;
    --text-brand-contrast: #FFFFFF;
    --text-link: #B2F2F2;
    --text-link-hover: #D1FFFF;
    --button-bg: #00A8A8;
    --button-text: #FFFFFF;
    --button-hover-bg: #00C2C2;
    --button-hover-text: #FFFFFF;
    --semantic-success: #2ECC71;
    --success: #2ECC71;
    --semantic-error: #E74C3C;
    --error: #E74C3C;
    --semantic-warning: #F1C40F;
    --warning: #F1C40F;
    --semantic-info: #3498DB;
    --info: #3498DB;
    --border-default: #3A213A;
    --border-strong: #4C2D4C;
    --border-brand: #B21E3E;
    --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: 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: 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: 74rem;
    --content-max-width: 74rem;
    --spacing-reading-max-width: 64ch;
    --reading-max-width: 64ch;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-pill: 9999px;
    --shadow-card: 0 4px 12px rgba(13, 5, 13, 0.35);
    --shadow-elevated: 0 8px 24px rgba(13, 5, 13, 0.45);
    --shadow-glow: 0 0 0 1px rgba(0, 168, 168, 0.35), 0 6px 18px rgba(0, 168, 168, 0.35);
    --shadow-inset: inset 0 1px 0 rgba(255,255,255,.08);
    --gradient-brand: linear-gradient(135deg, #B21E3E 0%, #D12A4D 100%);
    --gradient-hero: linear-gradient(180deg, #46152D 0%, #1C0B1C 100%);
    --gradient-surface: linear-gradient(#321B32, #321B32);
    --gradient-button: none;
    --effects-accent-bar: none;
    --recipes-transition: color 120ms, background-color 120ms, box-shadow 120ms, border-color 120ms, transform 120ms;
    --transition: color 120ms, background-color 120ms, box-shadow 120ms, border-color 120ms, transform 120ms;
}
*, *::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: #1C0B1C;
    color: #DCDCDC;
    font-family: Noto Sans Bengali, Manrope, sans-serif;
    font-weight: 400;
    line-height: 1.55;
    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: Noto Sans Bengali, Archivo, sans-serif;
    line-height: 1.3;
    letter-spacing: 0;
    color: #F2F2F2;
}
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: #DCDCDC;
}
ul, ol {
    margin: 0;
}
a {
    color: #B2F2F2;
    text-decoration: none;
    transition: color 120ms, background-color 120ms, box-shadow 120ms, border-color 120ms, transform 120ms;
}
a:hover {
    color: #D1FFFF;
}
a:focus-visible, button:focus-visible, summary:focus-visible {
    outline: 2px solid #00A8A8;
    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 > * + *, .inner > * + *, .narrow > * + *, .column > * + *, .column--center > * + * {
    margin-block-start: 1.25rem;
}
@media (max-width: 48rem) {
    main > section {
        padding-block: 2rem;
    }
    main > section > * + *, main > article > * + *, .inner > * + *, .narrow > * + *, .column > * + *, .column--center > * + * {
        margin-block-start: 1rem;
    }
}

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

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

.poster {
    background: #321B32;
    border: 1px solid #4C2D4C;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(13, 5, 13, 0.35), inset 0 1px 0 rgba(255,255,255,.08);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: color 120ms, background-color 120ms, box-shadow 120ms, border-color 120ms, transform 120ms;
}
.poster:hover {
    border-color: #B21E3E;
    box-shadow: 0 0 0 1px rgba(0, 168, 168, 0.35), 0 6px 18px rgba(0, 168, 168, 0.35), inset 0 1px 0 rgba(255,255,255,.08);
}
.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;
    top: .5rem;
    right: .5rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #00A8A8;
    color: #FFFFFF;
    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__name {
    padding: .6rem .75rem;
    background: #321B32;
}
.poster__name h3 {
    margin: 0;
    font-size: 0.875rem;
    color: #F2F2F2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media (min-width: 48rem) {
    .poster__name h3 {
        white-space: normal;
    }
}

.footer {
    background: #1C0B1C;
    border-top: 1px solid #3A213A;
    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: #F2F2F2;
    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: #D1FFFF;
}
.footer__meta {
    margin-block-start: 2rem;
    padding-block-start: 1.5rem;
    border-top: 1px solid #3A213A;
    text-align: center;
    font-size: 0.875rem;
}
.footer__meta > * + * {
    margin-block-start: .5rem;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .4rem 1rem;
    border-radius: 9999px;
    background: #321B32;
    border: 1px solid #4C2D4C;
    color: #F2F2F2;
    font-size: 0.875rem;
}
.pill > i {
    color: #00A8A8;
}

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

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

.jumpbar {
    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;
}
.jumpbar::-webkit-scrollbar {
    display: none;
}
.jumpbar__link {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: .5rem 1rem;
    border-radius: 6px;
    background: #281328;
    border: 1px solid #3A213A;
    color: #DCDCDC;
    font-size: 0.875rem;
    transition: color 120ms, background-color 120ms, box-shadow 120ms, border-color 120ms, transform 120ms;
}
.jumpbar__link:hover {
    border-color: #B21E3E;
    color: #F2F2F2;
}

.table__wrap {
    background: #321B32;
    border: 1px solid #4C2D4C;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(13, 5, 13, 0.35), inset 0 1px 0 rgba(255,255,255,.08);
    overflow-x: auto;
    max-width: 100%;
}
.table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}
.table th, .table td {
    padding: 1rem;
    text-align: start;
    border-bottom: 1px solid #3A213A;
    vertical-align: top;
}
.table thead th {
    background: #321B32;
    color: #F2F2F2;
    font-weight: 600;
}
.table tbody tr:last-child td {
    border-bottom: 0;
}
.table td:first-child {
    color: #BDBDBD;
    font-weight: 600;
}

.faq {
    background: #321B32;
    border: 1px solid #4C2D4C;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(13, 5, 13, 0.35), inset 0 1px 0 rgba(255,255,255,.08);
    transition: color 120ms, background-color 120ms, box-shadow 120ms, border-color 120ms, transform 120ms;
}
.faq + .faq {
    margin-block-start: 1rem;
}
.faq[open] {
    border-color: #B21E3E;
}
.faq__q {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    cursor: pointer;
    list-style: none;
}
.faq__q::-webkit-details-marker {
    display: none;
}
.faq__q h3 {
    margin: 0;
    flex: 1 1 auto;
    min-width: 0;
}
.faq__q::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    flex: 0 0 auto;
    color: #00A8A8;
    transition: transform 200ms;
}
.faq[open] .faq__q::after {
    transform: rotate(180deg);
}
.faq__a {
    margin: 0;
    padding: 0 1.5rem 1.5rem;
}
@media (max-width: 48rem) {
    .faq__q {
        padding: 1rem;
    }
    .faq__a {
        padding: 0 1rem 1rem;
    }
}

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

.inner {
    width: 100%;
    max-width: 74rem;
    margin-inline: auto;
}
.narrow {
    max-width: 64ch;
    margin-inline: auto;
}
.column, .column--center {
    display: block;
}
.column--center {
    text-align: center;
}
.row, .row--center {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}
.row--center {
    justify-content: center;
}
.cells {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
    gap: 1.25rem;
}
.shelf {
    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) {
    .shelf {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.25rem;
    }
    .blocks {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.25rem;
    }
}
.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: #00A8A8;
}

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

.btn, .btn--sm, .btn--full, .btn--outline {
    background: #00A8A8;
    color: #FFFFFF;
    border-radius: 12px;
    min-height: 44px;
    font-weight: 700;
    box-shadow: 0 0 0 1px rgba(0, 168, 168, 0.35), 0 6px 18px rgba(0, 168, 168, 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 120ms, background-color 120ms, box-shadow 120ms, border-color 120ms, transform 120ms;
}
.btn:hover, .btn--sm:hover, .btn--full:hover, .btn--outline:hover {
    background: #00C2C2;
    box-shadow: 0 0 0 1px rgba(0, 168, 168, 0.5), 0 8px 26px rgba(0, 168, 168, 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: #F2F2F2;
    border: 1px solid #4C2D4C;
    box-shadow: none;
}
.btn--outline:hover {
    background: transparent;
    border-color: #B21E3E;
    color: #F2F2F2;
    box-shadow: none;
}

.head {
    background: #1C0B1C;
    border-bottom: 1px solid #3A213A;
    padding: .75rem 3%;
    position: sticky;
    top: 0;
    z-index: 100;
}
.head__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.head__brand {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: #F2F2F2;
}
.head__brand img {
    border-radius: 6px;
}
.head__brand strong {
    font-size: 16px;
    font-weight: 400;
}
.head__actions {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.slab {
    background: #321B32;
    border: 1px solid #4C2D4C;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(13, 5, 13, 0.35), inset 0 1px 0 rgba(255,255,255,.08);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: color 120ms, background-color 120ms, box-shadow 120ms, border-color 120ms, transform 120ms;
}
.slab:hover {
    border-color: #B21E3E;
    box-shadow: 0 0 0 1px rgba(0, 168, 168, 0.35), 0 6px 18px rgba(0, 168, 168, 0.35), inset 0 1px 0 rgba(255,255,255,.08);
}
@media (max-width: 48rem) {
    .slab {
        padding: 1rem;
    }
}
.slab > img {
    width: 100%;
    height: auto;
    display: block;
}

.minor {
    font-size: 0.875rem;
}
.soft {
    color: #BDBDBD;
}
.centered {
    text-align: center;
}
.ink--accent {
    color: #00A8A8;
}
.ink--success {
    color: #2ECC71;
}
.ink--warning {
    color: #F1C40F;
}
.ink--error {
    color: #E74C3C;
}
.ink--info {
    color: #3498DB;
}

main > section.band {
    background: #281328;
    border-top: 1px solid #3A213A;
    border-bottom: 1px solid #3A213A;
    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, #46152D 0%, #1C0B1C 100%);
    padding-block: 3.5rem;
    text-align: center;
    margin-inline: -3.1915%;
    padding-inline: 3%;
}
@media (max-width: 48rem) {
    .opening {
        padding-block: 2rem;
    }
}

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