/* overflow-guard */
:root {
    --brand-primary: #3E4451;
    --brand-primary-hover: #4D5463;
    --brand-secondary: #A8B0B9;
    --brand-secondary-hover: #BCC3CD;
    --brand-accent: #D11A3C;
    --background-main: #121A26;
    --background-surface: #1B2332;
    --background-elevated: #252E3F;
    --background-overlay: rgba(18, 26, 38, 0.75);
    --text-primary: #F2F2F2;
    --text-secondary: #D1D1D1;
    --text-muted: #BDBDBD;
    --text-brand-contrast: #FFFFFF;
    --text-link: #FFD1D1;
    --text-link-hover: #FFE4E4;
    --button-bg: #D11A3C;
    --button-text: #FFFFFF;
    --button-hover-bg: #B01534;
    --button-hover-text: #FFFFFF;
    --semantic-success: #2E7D32;
    --success: #2E7D32;
    --semantic-error: #C62828;
    --error: #C62828;
    --semantic-warning: #F9A825;
    --warning: #F9A825;
    --semantic-info: #1565C0;
    --info: #1565C0;
    --border-default: #2A3445;
    --border-strong: #3D4B61;
    --border-brand: #3E4451;
    --font-family-headings: Noto Sans Bengali, Montserrat, sans-serif;
    --font-family-body: Noto Sans Bengali, Lato, 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.6;
    --letter-spacing-heading: 0;
    --letter-spacing-body: 0;
    --spacing-section-desktop: 2.5rem;
    --section-desktop: 2.5rem;
    --spacing-item-desktop: 1rem;
    --item-desktop: 1rem;
    --spacing-section-mobile: 1.5rem;
    --section-mobile: 1.5rem;
    --spacing-item-mobile: 0.75rem;
    --item-mobile: 0.75rem;
    --spacing-container-pad-desktop: 1.5rem;
    --container-pad-desktop: 1.5rem;
    --spacing-container-pad-mobile: 1rem;
    --container-pad-mobile: 1rem;
    --spacing-card-pad-desktop: 1rem;
    --card-pad-desktop: 1rem;
    --spacing-card-pad-mobile: 1rem;
    --card-pad-mobile: 1rem;
    --spacing-content-max-width: 72rem;
    --content-max-width: 72rem;
    --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 #090D13;
    --shadow-elevated: 6px 6px 0 #090D13;
    --shadow-glow: 0 0 0 1px rgba(209, 26, 60, 0.35), 0 6px 18px rgba(209, 26, 60, 0.35);
    --shadow-inset: inset 0 1px 0 rgba(255,255,255,.05);
    --gradient-brand: linear-gradient(135deg, #3E4451 0%, #4D5463 100%);
    --gradient-hero: linear-gradient(180deg, #232A39 0%, #121A26 100%);
    --gradient-surface: linear-gradient(#252E3F, #252E3F);
    --gradient-button: linear-gradient(135deg, #AB1531 0%, #D11A3C 100%);
    --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: #121A26;
    color: #D1D1D1;
    font-family: Noto Sans Bengali, Lato, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    padding-bottom: 4.75rem;
    -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, Montserrat, sans-serif;
    line-height: 1.25;
    letter-spacing: 0;
    color: #F2F2F2;
}
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: #D1D1D1;
}
ul, ol {
    margin: 0;
}
a {
    color: #FFD1D1;
    text-decoration: none;
    transition: color 150ms, background-color 150ms, box-shadow 150ms, border-color 150ms, transform 150ms;
}
a:hover {
    color: #FFE4E4;
}
a:focus-visible, button:focus-visible, summary:focus-visible {
    outline: 2px solid #D11A3C;
    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: 2.5rem;
}
main > section > * + *, main > article > * + *, .holder > * + *, .reading > * + *, .stack > * + *, .stack-center > * + * {
    margin-block-start: 1rem;
}
@media (max-width: 48rem) {
    main > section {
        padding-block: 1.5rem;
    }
    main > section > * + *, main > article > * + *, .holder > * + *, .reading > * + *, .stack > * + *, .stack-center > * + * {
        margin-block-start: 0.75rem;
    }
}

.facts-wrap {
    background: #252E3F;
    border: 1px solid #2A3445;
    border-radius: 10px;
    box-shadow: 4px 4px 0 #090D13, inset 0 1px 0 rgba(255,255,255,.05);
    overflow-x: auto;
    max-width: 100%;
}
.facts {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}
.facts th, .facts td {
    padding: 0.75rem;
    text-align: start;
    border-bottom: 1px solid #2A3445;
    vertical-align: top;
}
.facts thead th {
    background: #252E3F;
    color: #F2F2F2;
    font-weight: 600;
}
.facts tbody tr:last-child td {
    border-bottom: 0;
}
.facts td:first-child {
    color: #BDBDBD;
    font-weight: 600;
}

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

.fine {
    font-size: 0.875rem;
}
.dim {
    color: #BDBDBD;
}
.middle {
    text-align: center;
}
.tone-accent {
    color: #D11A3C;
}
.tone-success {
    color: #2E7D32;
}
.tone-warning {
    color: #F9A825;
}
.tone-error {
    color: #C62828;
}
.tone-info {
    color: #1565C0;
}

.holder {
    width: 100%;
    max-width: 72rem;
    margin-inline: auto;
}
.reading {
    max-width: 70ch;
    margin-inline: auto;
}
.stack, .stack-center {
    display: block;
}
.stack-center {
    text-align: center;
}
.row, .row-center {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}
.row-center {
    justify-content: center;
}
.cells {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
    gap: 1rem;
}
.shelf {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}
.menu {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}
@media (min-width: 48rem) {
    .shelf {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1rem;
    }
    .menu {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1rem;
    }
}
.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: #D11A3C;
}

.bottom {
    background: #121A26;
    border-top: 1px solid #2A3445;
    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: #F2F2F2;
    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: #FFE4E4;
}
.bottom-meta {
    margin-block-start: 2rem;
    padding-block-start: 1.5rem;
    border-top: 1px solid #2A3445;
    text-align: center;
    font-size: 0.875rem;
}
.bottom-meta > * + * {
    margin-block-start: .5rem;
}

.slab {
    background: #252E3F;
    border: 1px solid #2A3445;
    border-radius: 10px;
    box-shadow: 4px 4px 0 #090D13, inset 0 1px 0 rgba(255,255,255,.05);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: color 150ms, background-color 150ms, box-shadow 150ms, border-color 150ms, transform 150ms;
}
.slab:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 #090D13, inset 0 1px 0 rgba(255,255,255,.05);
}
@media (max-width: 48rem) {
    .slab {
        padding: 1rem;
    }
}
.slab > img {
    width: 100%;
    height: auto;
    display: block;
}

.head {
    background: #121A26;
    border-bottom: 1px solid #2A3445;
    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;
}

.press, .press-sm, .press-full, .press-outline {
    background: linear-gradient(135deg, #AB1531 0%, #D11A3C 100%);
    color: #FFFFFF;
    border-radius: 9999px;
    min-height: 44px;
    font-weight: 700;
    box-shadow: 0 6px 16px rgba(209, 26, 60, 0.3);
    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;
}
.press:hover, .press-sm:hover, .press-full:hover, .press-outline:hover {
    background: #B01534;
    box-shadow: 0 8px 22px rgba(209, 26, 60, 0.4);
}
.press-sm {
    min-height: 36px;
    padding: 0 1rem;
    font-size: 0.875rem;
}
.press-full {
    display: flex;
    width: 100%;
}
.press-outline {
    background: transparent;
    background-image: none;
    color: #F2F2F2;
    border: 1px solid #3D4B61;
    box-shadow: none;
}
.press-outline:hover {
    background: transparent;
    border-color: #3E4451;
    color: #F2F2F2;
    box-shadow: none;
}

.callout, .callout-warning, .callout-info, .callout-success, .callout-error {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 10px;
    background: #1B2332;
    border: 1px solid #2A3445;
    border-left: 4px solid #D11A3C;
}
.callout > i, .callout-warning > i, .callout-info > i, .callout-success > i, .callout-error > i {
    flex: 0 0 auto;
    margin-top: .2em;
    color: #D11A3C;
}
.callout-success {
    border-left-color: #2E7D32;
}
.callout-warning {
    border-left-color: #F9A825;
}
.callout-error {
    border-left-color: #C62828;
}
.callout-info {
    border-left-color: #1565C0;
}
.callout-success > i {
    color: #2E7D32;
}
.callout-warning > i {
    color: #F9A825;
}
.callout-error > i {
    color: #C62828;
}
.callout-info > i {
    color: #1565C0;
}

.navbar {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 1000;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 4.75rem;
    background: #1B2332;
    border-top: 1px solid #2A3445;
}
.navbar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .25rem;
    flex: 1 1 0;
    padding: .5rem 0;
    font-size: 0.75rem;
    color: #BDBDBD;
}
.navbar-item i {
    font-size: 1.25rem;
}
.navbar-item:hover {
    color: #D11A3C;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .4rem 1rem;
    border-radius: 9999px;
    background: #252E3F;
    border: 1px solid #3D4B61;
    color: #F2F2F2;
    font-size: 0.875rem;
}
.pill > i {
    color: #D11A3C;
}

.reveal {
    background: #252E3F;
    border: 1px solid #2A3445;
    border-radius: 10px;
    box-shadow: 4px 4px 0 #090D13, inset 0 1px 0 rgba(255,255,255,.05);
    transition: color 150ms, background-color 150ms, box-shadow 150ms, border-color 150ms, transform 150ms;
}
.reveal + .reveal {
    margin-block-start: 0.75rem;
}
.reveal[open] {
    border-color: #3E4451;
}
.reveal-q {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    cursor: pointer;
    list-style: none;
}
.reveal-q::-webkit-details-marker {
    display: none;
}
.reveal-q h3 {
    margin: 0;
    flex: 1 1 auto;
    min-width: 0;
}
.reveal-q::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    flex: 0 0 auto;
    color: #D11A3C;
    transition: transform 200ms;
}
.reveal[open] .reveal-q::after {
    transform: rotate(180deg);
}
.reveal-a {
    margin: 0;
    padding: 0 1rem 1rem;
}
@media (max-width: 48rem) {
    .reveal-q {
        padding: 1rem;
    }
    .reveal-a {
        padding: 0 1rem 1rem;
    }
}

.orb, .orb-success, .orb-warning, .orb-error, .orb-info {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #3E4451 0%, #4D5463 100%);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-weight: 700;
}
.orb-success {
    background: #2E7D32;
    color: #FFF;
}
.orb-warning {
    background: #F9A825;
    color: #FFF;
}
.orb-error {
    background: #C62828;
    color: #FFF;
}
.orb-info {
    background: #1565C0;
    color: #FFF;
}

main > section.band {
    background: #1B2332;
    padding-block: 2.5rem;
    margin-inline: -3.1915%;
    padding-inline: 3%;
}
@media (max-width: 48rem) {
    main > section.band {
        padding-block: 1.5rem;
    }
}
.intro {
    background: linear-gradient(180deg, #232A39 0%, #121A26 100%);
    padding-block: 2.5rem;
    text-align: center;
    margin-inline: -3.1915%;
    padding-inline: 3%;
}
@media (max-width: 48rem) {
    .intro {
        padding-block: 1.5rem;
    }
}

.ticker {
    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;
}
.ticker::-webkit-scrollbar {
    display: none;
}
.ticker-link {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: .5rem 1rem;
    border-radius: 6px;
    background: #1B2332;
    border: 1px solid #2A3445;
    color: #D1D1D1;
    font-size: 0.875rem;
    transition: color 150ms, background-color 150ms, box-shadow 150ms, border-color 150ms, transform 150ms;
}
.ticker-link:hover {
    border-color: #3E4451;
    color: #F2F2F2;
}

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

.play {
    background: #252E3F;
    border: 1px solid #2A3445;
    border-radius: 10px;
    box-shadow: 4px 4px 0 #090D13, 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;
}
.play:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 #090D13, inset 0 1px 0 rgba(255,255,255,.05);
}
.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: .5rem;
    right: .5rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #D11A3C;
    color: #FFFFFF;
    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 {
    position: relative;
}
.play-name {
    position: absolute;
    inset: auto 0 0 0;
    padding: .6rem .75rem;
    background: linear-gradient(180deg, transparent 0%, rgba(18, 26, 38, 0.75) 100%);
}
.play-name h3 {
    margin: 0;
    font-size: 0.875rem;
    color: #F2F2F2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media (min-width: 48rem) {
    .play-name h3 {
        white-space: normal;
    }
}

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

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