/* overflow-guard */
:root {
    --brand-primary: #006B6B;
    --brand-primary-hover: #008585;
    --brand-secondary: #B2C8C8;
    --brand-secondary-hover: #D1E0E0;
    --brand-accent: #FF7F50;
    --background-main: #081C16;
    --background-surface: #122821;
    --background-elevated: #1B332B;
    --background-overlay: rgba(8, 28, 22, 0.75);
    --text-primary: #FDFDFD;
    --text-secondary: #E0E0E0;
    --text-muted: #BDBDBD;
    --text-brand-contrast: #FFFFFF;
    --text-link: #C0F0F0;
    --text-link-hover: #E0FFFF;
    --button-bg: #FF7F50;
    --button-text: #000000;
    --button-hover-bg: #FF9670;
    --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: #1B332B;
    --border-strong: #2A4D42;
    --border-brand: #006B6B;
    --font-family-headings: Sora, Noto Sans Bengali, sans-serif;
    --font-family-body: Source Sans 3, Noto Sans Bengali, 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.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: 75rem;
    --content-max-width: 75rem;
    --spacing-reading-max-width: 70ch;
    --reading-max-width: 70ch;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 9999px;
    --shadow-card: 0 8px 24px rgba(4, 13, 10, 0.4);
    --shadow-elevated: 0 12px 32px rgba(4, 13, 10, 0.5);
    --shadow-glow: 0 0 0 1px rgba(255, 127, 80, 0.35), 0 6px 18px rgba(255, 127, 80, 0.35);
    --shadow-inset: inset 0 1px 0 rgba(255,255,255,.06);
    --gradient-brand: linear-gradient(135deg, #006B6B 0%, #008585 100%);
    --gradient-hero: linear-gradient(180deg, #0E3731 0%, #081C16 100%);
    --gradient-surface: linear-gradient(135deg, #122821 0%, #1B332B 100%);
    --gradient-button: none;
    --effects-accent-bar: #FF7F50;
    --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: #081C16;
    color: #E0E0E0;
    font-family: Source Sans 3, Noto Sans Bengali, sans-serif;
    font-weight: 400;
    line-height: 1.65;
    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: Sora, Noto Sans Bengali, sans-serif;
    line-height: 1.35;
    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: #C0F0F0;
    text-decoration: none;
    transition: color 200ms, background-color 200ms, box-shadow 200ms, border-color 200ms, transform 200ms;
}
a:hover {
    color: #E0FFFF;
}
a:focus-visible, button:focus-visible, summary:focus-visible {
    outline: 2px solid #FF7F50;
    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 > * + *, .nnMeasure > * + *, .nnFlow > * + *, .nnFlowCenter > * + * {
    margin-block-start: 1.25rem;
}
@media (max-width: 48rem) {
    main > section {
        padding-block: 2rem;
    }
    main > section > * + *, main > article > * + *, .nnInner > * + *, .nnMeasure > * + *, .nnFlow > * + *, .nnFlowCenter > * + * {
        margin-block-start: 1rem;
    }
}

.nnInner {
    width: 100%;
    max-width: 75rem;
    margin-inline: auto;
}
.nnMeasure {
    max-width: 70ch;
    margin-inline: auto;
}
.nnFlow, .nnFlowCenter {
    display: block;
}
.nnFlowCenter {
    text-align: center;
}
.nnCluster, .nnClusterCenter {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}
.nnClusterCenter {
    justify-content: center;
}
.nnCells {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
    gap: 1.25rem;
}
.nnShowcase {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
.nnCats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
@media (min-width: 48rem) {
    .nnShowcase {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.25rem;
    }
    .nnCats {
        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: #FF7F50;
}

.nnSmall {
    font-size: 0.875rem;
}
.nnDim {
    color: #BDBDBD;
}
.nnMiddle {
    text-align: center;
}
.nnTintAccent {
    color: #FF7F50;
}
.nnTintSuccess {
    color: #2ECC71;
}
.nnTintWarning {
    color: #F1C40F;
}
.nnTintError {
    color: #E74C3C;
}
.nnTintInfo {
    color: #3498DB;
}

.nnBtn, .nnBtnSm, .nnBtnFull, .nnBtnOutline {
    background: #FF7F50;
    color: #000000;
    border-radius: 16px;
    min-height: 44px;
    font-weight: 700;
    box-shadow: 0 0 0 1px rgba(255, 127, 80, 0.35), 0 6px 18px rgba(255, 127, 80, 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 200ms, background-color 200ms, box-shadow 200ms, border-color 200ms, transform 200ms;
}
.nnBtn:hover, .nnBtnSm:hover, .nnBtnFull:hover, .nnBtnOutline:hover {
    background: #FF9670;
    box-shadow: 0 0 0 1px rgba(255, 127, 80, 0.5), 0 8px 26px rgba(255, 127, 80, 0.5);
}
.nnBtnSm {
    min-height: 36px;
    padding: 0 1rem;
    font-size: 0.875rem;
}
.nnBtnFull {
    display: flex;
    width: 100%;
}
.nnBtnOutline {
    background: transparent;
    background-image: none;
    color: #FDFDFD;
    border: 1px solid #2A4D42;
    box-shadow: none;
}
.nnBtnOutline:hover {
    background: transparent;
    border-color: #006B6B;
    color: #FDFDFD;
    box-shadow: none;
}

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

.nnPoster {
    background: rgba(27, 51, 43, 0.65);
    border: 1px solid #1B332B;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(4, 13, 10, 0.4), inset 0 1px 0 rgba(255,255,255,.06);
    border-top: 3px solid #FF7F50;
    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;
}
.nnPoster:hover {
    border-color: #006B6B;
    box-shadow: 0 12px 32px rgba(4, 13, 10, 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;
    bottom: .5rem;
    right: .5rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #FF7F50;
    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(8, 28, 22, 0.75) 100%);
}
.nnPosterName h3 {
    margin: 0;
    font-size: 0.875rem;
    color: #FDFDFD;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media (min-width: 48rem) {
    .nnPosterName h3 {
        white-space: normal;
    }
}

main > section.nnStripe {
    background: linear-gradient(180deg, #122821 0%, #081C16 100%);
    padding-block: 3.5rem;
}
@media (max-width: 48rem) {
    main > section.nnStripe {
        padding-block: 2rem;
    }
}
.nnHero {
    background: linear-gradient(180deg, #0E3731 0%, #081C16 100%);
    padding-block: 3.5rem;
    text-align: center;
    margin-inline: -3.1915%;
    padding-inline: 3%;
}
@media (max-width: 48rem) {
    .nnHero {
        padding-block: 2rem;
    }
}

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

.nnAlert, .nnAlertWarning, .nnAlertInfo, .nnAlertSuccess, .nnAlertError {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 16px;
    background: #122821;
    border: 1px solid #1B332B;
    border-left: 4px solid #FF7F50;
}
.nnAlert > i, .nnAlertWarning > i, .nnAlertInfo > i, .nnAlertSuccess > i, .nnAlertError > i {
    flex: 0 0 auto;
    margin-top: .2em;
    color: #FF7F50;
}
.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;
}

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

.nnAccordion {
    background: rgba(27, 51, 43, 0.65);
    border: 1px solid #1B332B;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(4, 13, 10, 0.4), inset 0 1px 0 rgba(255,255,255,.06);
    border-top: 3px solid #FF7F50;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: color 200ms, background-color 200ms, box-shadow 200ms, border-color 200ms, transform 200ms;
}
.nnAccordion + .nnAccordion {
    margin-block-start: 1rem;
}
.nnAccordion[open] {
    border-color: #006B6B;
}
.nnAccordionQ {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    cursor: pointer;
    list-style: none;
}
.nnAccordionQ::-webkit-details-marker {
    display: none;
}
.nnAccordionQ h3 {
    margin: 0;
    flex: 1 1 auto;
    min-width: 0;
}
.nnAccordionQ::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    flex: 0 0 auto;
    color: #FF7F50;
    transition: transform 200ms;
}
.nnAccordion[open] .nnAccordionQ::after {
    transform: rotate(180deg);
}
.nnAccordionA {
    margin: 0;
    padding: 0 1.5rem 1.5rem;
}
@media (max-width: 48rem) {
    .nnAccordionQ {
        padding: 1rem;
    }
    .nnAccordionA {
        padding: 0 1rem 1rem;
    }
}

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

.nnLedgerWrap {
    background: rgba(27, 51, 43, 0.65);
    border: 1px solid #1B332B;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(4, 13, 10, 0.4), inset 0 1px 0 rgba(255,255,255,.06);
    border-top: 3px solid #FF7F50;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow-x: auto;
    max-width: 100%;
}
.nnLedger {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}
.nnLedger th, .nnLedger td {
    padding: 1rem;
    text-align: start;
    border-bottom: 1px solid #1B332B;
    vertical-align: top;
}
.nnLedger thead th {
    background: #1B332B;
    color: #FDFDFD;
    font-weight: 600;
}
.nnLedger tbody tr:last-child td {
    border-bottom: 0;
}
.nnLedger td:first-child {
    color: #BDBDBD;
    font-weight: 600;
}

.nnCard {
    background: rgba(27, 51, 43, 0.65);
    border: 1px solid #1B332B;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(4, 13, 10, 0.4), inset 0 1px 0 rgba(255,255,255,.06);
    border-top: 3px solid #FF7F50;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: color 200ms, background-color 200ms, box-shadow 200ms, border-color 200ms, transform 200ms;
}
.nnCard:hover {
    border-color: #006B6B;
    box-shadow: 0 12px 32px rgba(4, 13, 10, 0.5), inset 0 1px 0 rgba(255,255,255,.06);
}
@media (max-width: 48rem) {
    .nnCard {
        padding: 1rem;
    }
}
.nnCard > img {
    width: 100%;
    height: auto;
    display: block;
}

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

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

.nnBadge, .nnBadgeSuccess, .nnBadgeWarning, .nnBadgeError, .nnBadgeInfo {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #006B6B 0%, #008585 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;
}

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

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

/* page */
.nnProviderName { font-weight: 700; letter-spacing: 0.5px; }
