/* overflow-guard */
:root {
    --brand-primary: #5D2E46;
    --brand-primary-hover: #723A54;
    --brand-secondary: #A89B94;
    --brand-secondary-hover: #BDB3AD;
    --brand-accent: #4EF0B1;
    --background-main: #1F0B12;
    --background-surface: #2B1119;
    --background-elevated: #371721;
    --background-overlay: rgba(31, 11, 18, 0.75);
    --text-primary: #FDFBFA;
    --text-secondary: #E2E0DE;
    --text-muted: #BDBBBA;
    --text-brand-contrast: #FFFFFF;
    --text-link: #CFFFEF;
    --text-link-hover: #E5FFF7;
    --button-bg: #4EF0B1;
    --button-text: #000000;
    --button-hover-bg: #3CCB96;
    --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: #3D1B25;
    --border-strong: #4D2531;
    --border-brand: #5D2E46;
    --font-family-headings: Hind Siliguri, 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: 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.35;
    --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: 66ch;
    --reading-max-width: 66ch;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-pill: 9999px;
    --shadow-card: 0 8px 24px rgba(14, 5, 8, 0.4);
    --shadow-elevated: 0 12px 32px rgba(14, 5, 8, 0.5);
    --shadow-glow: 0 0 0 1px rgba(78, 240, 177, 0.35), 0 6px 18px rgba(78, 240, 177, 0.35);
    --shadow-inset: inset 0 1px 0 rgba(255,255,255,.06);
    --gradient-brand: linear-gradient(135deg, #5D2E46 0%, #723A54 100%);
    --gradient-hero: linear-gradient(180deg, #361723 0%, #1F0B12 100%);
    --gradient-surface: linear-gradient(135deg, #2B1119 0%, #371721 100%);
    --gradient-button: none;
    --effects-accent-bar: #4EF0B1;
    --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: #1F0B12;
    color: #E2E0DE;
    font-family: Noto Sans Bengali, Lato, sans-serif;
    font-weight: 400;
    line-height: 1.65;
    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: Hind Siliguri, Montserrat, sans-serif;
    line-height: 1.35;
    letter-spacing: 0;
    color: #FDFBFA;
}
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: #E2E0DE;
}
ul, ol {
    margin: 0;
}
a {
    color: #CFFFEF;
    text-decoration: none;
    transition: color 200ms, background-color 200ms, box-shadow 200ms, border-color 200ms, transform 200ms;
}
a:hover {
    color: #E5FFF7;
}
a:focus-visible, button:focus-visible, summary:focus-visible {
    outline: 2px solid #4EF0B1;
    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 > * + *, .nnInner > * + *, .nnProse > * + *, .nnPile > * + *, .nnPileCenter > * + * {
    margin-block-start: 1.25rem;
}
@media (max-width: 48rem) {
    main > section {
        padding-block: 2rem;
    }
    main > section > * + *, main > article > * + *, .nnInner > * + *, .nnProse > * + *, .nnPile > * + *, .nnPileCenter > * + * {
        margin-block-start: 1rem;
    }
}

.nnAlert, .nnAlertWarning, .nnAlertInfo, .nnAlertSuccess, .nnAlertError {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    background: #2B1119;
    border: 1px solid #3D1B25;
    border-left: 4px solid #4EF0B1;
}
.nnAlert > i, .nnAlertWarning > i, .nnAlertInfo > i, .nnAlertSuccess > i, .nnAlertError > i {
    flex: 0 0 auto;
    margin-top: .2em;
    color: #4EF0B1;
}
.nnAlertSuccess {
    border-left-color: #2ECC71;
}
.nnAlertWarning {
    border-left-color: #F1C40F;
}
.nnAlertError {
    border-left-color: #E74C3C;
}
.nnAlertInfo {
    border-left-color: #3498DB;
}
.nnAlertSuccess > i {
    color: #2ECC71;
}
.nnAlertWarning > i {
    color: #F1C40F;
}
.nnAlertError > i {
    color: #E74C3C;
}
.nnAlertInfo > i {
    color: #3498DB;
}

.nnDock {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 1000;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 4.25rem;
    background: #2B1119;
    border-top: 1px solid #3D1B25;
}
.nnDockItem {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .25rem;
    flex: 1 1 0;
    padding: .5rem 0;
    font-size: 0.75rem;
    color: #BDBBBA;
}
.nnDockItem i {
    font-size: 1.25rem;
}
.nnDockItem:hover {
    color: #4EF0B1;
}

.nnPlate {
    background: linear-gradient(135deg, #2B1119 0%, #371721 100%);
    border: 1px solid #3D1B25;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(14, 5, 8, 0.4), inset 0 1px 0 rgba(255,255,255,.06);
    border-top: 3px solid #4EF0B1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: color 200ms, background-color 200ms, box-shadow 200ms, border-color 200ms, transform 200ms;
}
.nnPlate:hover {
    background: linear-gradient(135deg, #2B1119 0%, #43252E 100%);
    box-shadow: 0 12px 32px rgba(14, 5, 8, 0.5), inset 0 1px 0 rgba(255,255,255,.06);
}
@media (max-width: 48rem) {
    .nnPlate {
        padding: 1rem;
    }
}
.nnPlate > img {
    width: 100%;
    height: auto;
    display: block;
}

main > section.nnBand {
    background: linear-gradient(180deg, #2B1119 0%, #1F0B12 100%);
    padding-block: 3.5rem;
    margin-inline: -3.1915%;
    padding-inline: 3%;
}
@media (max-width: 48rem) {
    main > section.nnBand {
        padding-block: 2rem;
    }
}
.nnIntro {
    background: linear-gradient(180deg, #361723 0%, #1F0B12 100%);
    padding-block: 3.5rem;
    text-align: center;
    margin-inline: -3.1915%;
    padding-inline: 3%;
}
@media (max-width: 48rem) {
    .nnIntro {
        padding-block: 2rem;
    }
}

.nnPoster {
    background: linear-gradient(135deg, #2B1119 0%, #371721 100%);
    border: 1px solid #3D1B25;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(14, 5, 8, 0.4), inset 0 1px 0 rgba(255,255,255,.06);
    border-top: 3px solid #4EF0B1;
    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;
}
.nnPoster:hover {
    background: linear-gradient(135deg, #2B1119 0%, #43252E 100%);
    box-shadow: 0 12px 32px rgba(14, 5, 8, 0.5), inset 0 1px 0 rgba(255,255,255,.06);
}
.nnPosterMedia {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.nnPosterMedia img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 200ms;
}
.nnPoster:hover .nnPosterMedia img {
    transform: scale(1.04);
}
.nnPosterPlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #4EF0B1;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 150ms;
}
.nnPoster:hover .nnPosterPlay, .nnPoster:focus-visible .nnPosterPlay {
    opacity: 1;
}
@media (hover: none) {
    .nnPosterPlay {
        opacity: 1;
    }
}
.nnPoster {
    position: relative;
}
.nnPosterName {
    position: absolute;
    inset: auto 0 0 0;
    padding: .6rem .75rem;
    background: linear-gradient(180deg, transparent 0%, rgba(31, 11, 18, 0.75) 100%);
}
.nnPosterName h3 {
    margin: 0;
    font-size: 0.875rem;
    color: #FDFBFA;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media (min-width: 48rem) {
    .nnPosterName h3 {
        white-space: normal;
    }
}

.nnFold {
    background: linear-gradient(135deg, #2B1119 0%, #371721 100%);
    border: 1px solid #3D1B25;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(14, 5, 8, 0.4), inset 0 1px 0 rgba(255,255,255,.06);
    border-top: 3px solid #4EF0B1;
    transition: color 200ms, background-color 200ms, box-shadow 200ms, border-color 200ms, transform 200ms;
}
.nnFold + .nnFold {
    margin-block-start: 1rem;
}
.nnFold[open] {
    border-color: #5D2E46;
}
.nnFoldQ {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    cursor: pointer;
    list-style: none;
}
.nnFoldQ::-webkit-details-marker {
    display: none;
}
.nnFoldQ h3 {
    margin: 0;
    flex: 1 1 auto;
    min-width: 0;
}
.nnFoldQ::after {
    content: "\f0d7";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    flex: 0 0 auto;
    color: #4EF0B1;
    transition: transform 200ms;
}
.nnFold[open] .nnFoldQ::after {
    transform: rotate(180deg);
}
.nnFoldA {
    margin: 0;
    padding: 0 1.5rem 1.5rem;
}
@media (max-width: 48rem) {
    .nnFoldQ {
        padding: 1rem;
    }
    .nnFoldA {
        padding: 0 1rem 1rem;
    }
}

.nnBadge, .nnBadgeSuccess, .nnBadgeWarning, .nnBadgeError, .nnBadgeInfo {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #5D2E46 0%, #723A54 100%);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-weight: 700;
}
.nnBadgeSuccess {
    background: #2ECC71;
    color: #FFF;
}
.nnBadgeWarning {
    background: #F1C40F;
    color: #FFF;
}
.nnBadgeError {
    background: #E74C3C;
    color: #FFF;
}
.nnBadgeInfo {
    background: #3498DB;
    color: #FFF;
}

.nnChips {
    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;
}
.nnChips::-webkit-scrollbar {
    display: none;
}
.nnChipsLink {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: .5rem 1rem;
    border-radius: 6px;
    background: #2B1119;
    border: 1px solid #3D1B25;
    color: #E2E0DE;
    font-size: 0.875rem;
    transition: color 200ms, background-color 200ms, box-shadow 200ms, border-color 200ms, transform 200ms;
}
.nnChipsLink:hover {
    border-color: #5D2E46;
    color: #FDFBFA;
}

.nnFine {
    font-size: 0.875rem;
}
.nnMuted {
    color: #BDBBBA;
}
.nnMiddle {
    text-align: center;
}
.nnToneAccent {
    color: #4EF0B1;
}
.nnToneSuccess {
    color: #2ECC71;
}
.nnToneWarning {
    color: #F1C40F;
}
.nnToneError {
    color: #E74C3C;
}
.nnToneInfo {
    color: #3498DB;
}

.nnMarker {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .4rem 1rem;
    border-radius: 9999px;
    background: #371721;
    border: 1px solid #4D2531;
    color: #FDFBFA;
    font-size: 0.875rem;
}
.nnMarker > i {
    color: #4EF0B1;
}

.nnAction, .nnActionSm, .nnActionFull, .nnActionOutline {
    background: #4EF0B1;
    color: #000000;
    border-radius: 12px;
    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(14, 5, 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 200ms, background-color 200ms, box-shadow 200ms, border-color 200ms, transform 200ms;
}
.nnAction:hover, .nnActionSm:hover, .nnActionFull:hover, .nnActionOutline:hover {
    background: #3CCB96;
    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(14, 5, 8, 0.45);
}
.nnActionSm {
    min-height: 36px;
    padding: 0 1rem;
    font-size: 0.875rem;
}
.nnActionFull {
    display: flex;
    width: 100%;
}
.nnActionOutline {
    background: transparent;
    background-image: none;
    color: #FDFBFA;
    border: 1px solid #4D2531;
    box-shadow: none;
}
.nnActionOutline:hover {
    background: transparent;
    border-color: #5D2E46;
    color: #FDFBFA;
    box-shadow: none;
}

.nnBreadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .5rem;
    padding: 1rem 0;
    font-size: 0.875rem;
    color: #E2E0DE;
}
.nnBreadcrumb a {
    color: #CFFFEF;
}
.nnBreadcrumb span {
    color: #FDFBFA;
}

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

.nnColophon {
    background: #1F0B12;
    border-top: 1px solid #3D1B25;
    padding: 3rem 3% 2rem;
    color: #BDBBBA;
}
.nnColophonGrid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    text-align: center;
}
.nnColophonCol > p, .nnColophonCol > h3 {
    font-size: 0.875rem;
    font-weight: 700;
    color: #FDFBFA;
    margin: 0 0 .75rem;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.nnColophonCol ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.nnColophonCol li + li {
    margin-block-start: .5rem;
}
.nnColophonCol a {
    color: #BDBBBA;
    font-size: 0.875rem;
}
.nnColophonCol a:hover {
    color: #E5FFF7;
}
.nnColophonMeta {
    margin-block-start: 2rem;
    padding-block-start: 1.5rem;
    border-top: 1px solid #3D1B25;
    text-align: center;
    font-size: 0.875rem;
}
.nnColophonMeta > * + * {
    margin-block-start: .5rem;
}

.nnTopbar {
    background: #1F0B12;
    border-bottom: 1px solid #3D1B25;
    padding: .75rem 3%;
    position: sticky;
    top: 0;
    z-index: 100;
}
.nnTopbarInner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.nnTopbarBrand {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: #FDFBFA;
}
.nnTopbarBrand img {
    border-radius: 6px;
}
.nnTopbarBrand strong {
    font-size: 16px;
    font-weight: 400;
}
.nnTopbarActions {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.nnTableWrap {
    background: linear-gradient(135deg, #2B1119 0%, #371721 100%);
    border: 1px solid #3D1B25;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(14, 5, 8, 0.4), inset 0 1px 0 rgba(255,255,255,.06);
    border-top: 3px solid #4EF0B1;
    overflow-x: auto;
    max-width: 100%;
}
.nnTable {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}
.nnTable th, .nnTable td {
    padding: 1rem;
    text-align: start;
    border-bottom: 1px solid #3D1B25;
    vertical-align: top;
}
.nnTable thead th {
    background: #371721;
    color: #FDFBFA;
    font-weight: 600;
}
.nnTable tbody tr:last-child td {
    border-bottom: 0;
}
.nnTable td:first-child {
    color: #BDBBBA;
    font-weight: 600;
}

.nnInner {
    width: 100%;
    max-width: 80rem;
    margin-inline: auto;
}
.nnProse {
    max-width: 66ch;
    margin-inline: auto;
}
.nnPile, .nnPileCenter {
    display: block;
}
.nnPileCenter {
    text-align: center;
}
.nnLine, .nnLineCenter {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}
.nnLineCenter {
    justify-content: center;
}
.nnCells {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
    gap: 1.25rem;
}
.nnLineup {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
.nnTiles {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
@media (min-width: 48rem) {
    .nnLineup {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.25rem;
    }
    .nnTiles {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.25rem;
    }
}
.nnBullets {
    list-style: none;
    padding: 0;
}
.nnBullets > li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
}
.nnBullets > li + li {
    margin-block-start: .75rem;
}
.nnBullets > li > i {
    flex: 0 0 1.25rem;
    text-align: center;
    margin-top: .2em;
    color: #4EF0B1;
}

.nnHeading {
    position: relative;
}
.nnHeading::before {
    content: "";
    display: block;
    width: 3rem;
    height: 6px;
    background-image: repeating-linear-gradient(90deg, #4EF0B1 0 3px, transparent 3px 6px);
    margin-bottom: .6rem;
}

/* page */
.nnProviderName {
            font-weight: 700;
            letter-spacing: 0.02em;
            font-size: 1.1rem;
            color: var(--text-primary);
        }
