/* overflow-guard */
:root {
    --brand-primary: #1B5E3F;
    --brand-primary-hover: #247A51;
    --brand-secondary: #A8B7A1;
    --brand-secondary-hover: #BCCBC0;
    --brand-accent: #FFB366;
    --background-main: #1E0D1E;
    --background-surface: #2A152A;
    --background-elevated: #361C36;
    --background-overlay: rgba(30, 13, 30, 0.75);
    --text-primary: #FDFBF7;
    --text-secondary: #E0DCD3;
    --text-muted: #BDBBBA;
    --text-brand-contrast: #FFFFFF;
    --text-link: #FFE4C4;
    --text-link-hover: #FFF5E6;
    --button-bg: #FFB366;
    --button-text: #1E0D1E;
    --button-hover-bg: #FFC991;
    --button-hover-text: #1E0D1E;
    --semantic-success: #4CAF50;
    --success: #4CAF50;
    --semantic-error: #E53935;
    --error: #E53935;
    --semantic-warning: #FFB300;
    --warning: #FFB300;
    --semantic-info: #2196F3;
    --info: #2196F3;
    --border-default: #3D263D;
    --border-strong: #4D324D;
    --border-brand: #1B5E3F;
    --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: 800;
    --role-weight-h2: 700;
    --role-weight-h3: 700;
    --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.6;
    --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: 76rem;
    --content-max-width: 76rem;
    --spacing-reading-max-width: 66ch;
    --reading-max-width: 66ch;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-pill: 9999px;
    --shadow-card: 0 8px 24px rgba(14, 6, 14, 0.4);
    --shadow-elevated: 0 12px 32px rgba(14, 6, 14, 0.5);
    --shadow-glow: 0 0 0 1px rgba(255, 179, 102, 0.35), 0 6px 18px rgba(255, 179, 102, 0.35);
    --shadow-inset: inset 0 1px 0 rgba(255,255,255,.06);
    --gradient-brand: linear-gradient(135deg, #1B5E3F 0%, #247A51 100%);
    --gradient-hero: linear-gradient(180deg, #27252F 0%, #1E0D1E 100%);
    --gradient-surface: linear-gradient(135deg, #2A152A 0%, #361C36 100%);
    --gradient-button: none;
    --effects-accent-bar: #FFB366;
    --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: #1E0D1E;
    color: #E0DCD3;
    font-family: Noto Sans Bengali, Manrope, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    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: Noto Sans Bengali, Archivo, sans-serif;
    line-height: 1.3;
    letter-spacing: 0;
    color: #FDFBF7;
}
h1 {
    font-size: 1.8rem;
    font-weight: 800;
}
h2 {
    font-size: 1.5rem;
    font-weight: 700;
}
h3 {
    font-size: 1rem;
    font-weight: 700;
}
h4 {
    font-size: 1rem;
    font-weight: 600;
}
p {
    margin: 0;
    color: #E0DCD3;
}
ul, ol {
    margin: 0;
}
a {
    color: #FFE4C4;
    text-decoration: none;
    transition: color 150ms, background-color 150ms, box-shadow 150ms, border-color 150ms, transform 150ms;
}
a:hover {
    color: #FFF5E6;
}
a:focus-visible, button:focus-visible, summary:focus-visible {
    outline: 2px solid #FFB366;
    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 > * + *, .hv-wrap > * + *, .hv-prose > * + *, .hv-stack > * + *, .hv-stack-center > * + * {
    margin-block-start: 1.25rem;
}
@media (max-width: 48rem) {
    main > section {
        padding-block: 2rem;
    }
    main > section > * + *, main > article > * + *, .hv-wrap > * + *, .hv-prose > * + *, .hv-stack > * + *, .hv-stack-center > * + * {
        margin-block-start: 1rem;
    }
}

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

.hv-tiny {
    font-size: 0.875rem;
}
.hv-dim {
    color: #BDBBBA;
}
.hv-center {
    text-align: center;
}
.hv-ink-accent {
    color: #FFB366;
}
.hv-ink-success {
    color: #4CAF50;
}
.hv-ink-warning {
    color: #FFB300;
}
.hv-ink-error {
    color: #E53935;
}
.hv-ink-info {
    color: #2196F3;
}

.hv-facts-wrap {
    background: linear-gradient(135deg, #2A152A 0%, #361C36 100%);
    border: 1px solid #3D263D;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(14, 6, 14, 0.4), inset 0 1px 0 rgba(255,255,255,.06);
    border-top: 3px solid #FFB366;
    overflow-x: auto;
    max-width: 100%;
}
.hv-facts {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}
.hv-facts th, .hv-facts td {
    padding: 1rem;
    text-align: start;
    border-bottom: 1px solid #3D263D;
    vertical-align: top;
}
.hv-facts thead th {
    background: #361C36;
    color: #FDFBF7;
    font-weight: 600;
}
.hv-facts tbody tr:last-child td {
    border-bottom: 0;
}
.hv-facts td:first-child {
    color: #BDBBBA;
    font-weight: 600;
}

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

.hv-notice, .hv-notice-warning, .hv-notice-info, .hv-notice-success, .hv-notice-error {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    background: #2A152A;
    border: 1px solid #3D263D;
    border-left: 4px solid #FFB366;
}
.hv-notice > i, .hv-notice-warning > i, .hv-notice-info > i, .hv-notice-success > i, .hv-notice-error > i {
    flex: 0 0 auto;
    margin-top: .2em;
    color: #FFB366;
}
.hv-notice-success {
    border-left-color: #4CAF50;
}
.hv-notice-warning {
    border-left-color: #FFB300;
}
.hv-notice-error {
    border-left-color: #E53935;
}
.hv-notice-info {
    border-left-color: #2196F3;
}
.hv-notice-success > i {
    color: #4CAF50;
}
.hv-notice-warning > i {
    color: #FFB300;
}
.hv-notice-error > i {
    color: #E53935;
}
.hv-notice-info > i {
    color: #2196F3;
}

main > section.hv-layer {
    background: linear-gradient(180deg, #2A152A 0%, #1E0D1E 100%);
    padding-block: 3.5rem;
}
@media (max-width: 48rem) {
    main > section.hv-layer {
        padding-block: 2rem;
    }
}
.hv-intro {
    background: linear-gradient(180deg, #27252F 0%, #1E0D1E 100%);
    padding-block: 3.5rem;
    text-align: center;
    margin-inline: -3.1915%;
    padding-inline: 3%;
}
@media (max-width: 48rem) {
    .hv-intro {
        padding-block: 2rem;
    }
}

.hv-topbar {
    background: #1E0D1E;
    border-bottom: 1px solid #3D263D;
    padding: .75rem 3%;
    position: sticky;
    top: 0;
    z-index: 100;
}
.hv-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.hv-topbar-brand {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: #FDFBF7;
}
.hv-topbar-brand img {
    border-radius: 4px;
}
.hv-topbar-brand strong {
    font-size: 16px;
    font-weight: 400;
}
.hv-topbar-actions {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.hv-medal, .hv-medal-success, .hv-medal-warning, .hv-medal-error, .hv-medal-info {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 4px;
    background: linear-gradient(135deg, #1B5E3F 0%, #247A51 100%);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-weight: 700;
}
.hv-medal-success {
    background: #4CAF50;
    color: #FFF;
}
.hv-medal-warning {
    background: #FFB300;
    color: #FFF;
}
.hv-medal-error {
    background: #E53935;
    color: #FFF;
}
.hv-medal-info {
    background: #2196F3;
    color: #FFF;
}

.hv-cta, .hv-cta-sm, .hv-cta-full, .hv-cta-outline {
    background: #FFB366;
    color: #1E0D1E;
    border-radius: 4px;
    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, 6, 14, 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 150ms, background-color 150ms, box-shadow 150ms, border-color 150ms, transform 150ms;
}
.hv-cta:hover, .hv-cta-sm:hover, .hv-cta-full:hover, .hv-cta-outline:hover {
    background: #FFC991;
    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, 6, 14, 0.45);
}
.hv-cta-sm {
    min-height: 36px;
    padding: 0 1rem;
    font-size: 0.875rem;
}
.hv-cta-full {
    display: flex;
    width: 100%;
}
.hv-cta-outline {
    background: transparent;
    background-image: none;
    color: #FDFBF7;
    border: 1px solid #4D324D;
    box-shadow: none;
}
.hv-cta-outline:hover {
    background: transparent;
    border-color: #1B5E3F;
    color: #FDFBF7;
    box-shadow: none;
}

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

.hv-path {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .5rem;
    padding: 1rem 0;
    font-size: 0.875rem;
    color: #E0DCD3;
}
.hv-path a {
    color: #FFE4C4;
}
.hv-path span {
    color: #FDFBF7;
}

.hv-wrap {
    width: 100%;
    max-width: 76rem;
    margin-inline: auto;
}
.hv-prose {
    max-width: 66ch;
    margin-inline: auto;
}
.hv-stack, .hv-stack-center {
    display: block;
}
.hv-stack-center {
    text-align: center;
}
.hv-line, .hv-line-center {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}
.hv-line-center {
    justify-content: center;
}
.hv-cells {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
    gap: 1.25rem;
}
.hv-lineup {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
.hv-menu {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
@media (min-width: 48rem) {
    .hv-lineup {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.25rem;
    }
    .hv-menu {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.25rem;
    }
}
.hv-items {
    list-style: none;
    padding: 0;
}
.hv-items > li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
}
.hv-items > li + li {
    margin-block-start: .75rem;
}
.hv-items > li > i {
    flex: 0 0 1.25rem;
    text-align: center;
    margin-top: .2em;
    color: #FFB366;
}

.hv-marker {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .4rem 1rem;
    border-radius: 9999px;
    background: #361C36;
    border: 1px solid #4D324D;
    color: #FDFBF7;
    font-size: 0.875rem;
}
.hv-marker > i {
    color: #FFB366;
}

.hv-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;
}
.hv-ticker::-webkit-scrollbar {
    display: none;
}
.hv-ticker-link {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: .5rem 1rem;
    border-radius: 4px;
    background: #2A152A;
    border: 1px solid #3D263D;
    color: #E0DCD3;
    font-size: 0.875rem;
    transition: color 150ms, background-color 150ms, box-shadow 150ms, border-color 150ms, transform 150ms;
}
.hv-ticker-link:hover {
    border-color: #1B5E3F;
    color: #FDFBF7;
}

.hv-play {
    background: linear-gradient(135deg, #2A152A 0%, #361C36 100%);
    border: 1px solid #3D263D;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(14, 6, 14, 0.4), inset 0 1px 0 rgba(255,255,255,.06);
    border-top: 3px solid #FFB366;
    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;
}
.hv-play:hover {
    background: linear-gradient(135deg, #2A152A 0%, #422A42 100%);
    box-shadow: 0 12px 32px rgba(14, 6, 14, 0.5), inset 0 1px 0 rgba(255,255,255,.06);
}
.hv-play-media {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.hv-play-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 200ms;
}
.hv-play:hover .hv-play-media img {
    transform: scale(1.04);
}
.hv-play-play {
    position: absolute;
    top: .5rem;
    right: .5rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #FFB366;
    color: #1E0D1E;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 150ms;
}
.hv-play:hover .hv-play-play, .hv-play:focus-visible .hv-play-play {
    opacity: 1;
}
@media (hover: none) {
    .hv-play-play {
        opacity: 1;
    }
}
.hv-play-name {
    padding: .6rem .75rem;
    background: #361C36;
}
.hv-play-name h3 {
    margin: 0;
    font-size: 0.875rem;
    color: #FDFBF7;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media (min-width: 48rem) {
    .hv-play-name h3 {
        white-space: normal;
    }
}

.hv-accordion {
    background: linear-gradient(135deg, #2A152A 0%, #361C36 100%);
    border: 1px solid #3D263D;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(14, 6, 14, 0.4), inset 0 1px 0 rgba(255,255,255,.06);
    border-top: 3px solid #FFB366;
    transition: color 150ms, background-color 150ms, box-shadow 150ms, border-color 150ms, transform 150ms;
}
.hv-accordion + .hv-accordion {
    margin-block-start: 1rem;
}
.hv-accordion[open] {
    border-color: #1B5E3F;
}
.hv-accordion-q {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    cursor: pointer;
    list-style: none;
}
.hv-accordion-q::-webkit-details-marker {
    display: none;
}
.hv-accordion-q h3 {
    margin: 0;
    flex: 1 1 auto;
    min-width: 0;
}
.hv-accordion-q::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    flex: 0 0 auto;
    color: #FFB366;
    transition: transform 200ms;
}
.hv-accordion[open] .hv-accordion-q::after {
    transform: rotate(180deg);
}
.hv-accordion-a {
    margin: 0;
    padding: 0 1.5rem 1.5rem;
}
@media (max-width: 48rem) {
    .hv-accordion-q {
        padding: 1rem;
    }
    .hv-accordion-a {
        padding: 0 1rem 1rem;
    }
}

.hv-plate {
    background: linear-gradient(135deg, #2A152A 0%, #361C36 100%);
    border: 1px solid #3D263D;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(14, 6, 14, 0.4), inset 0 1px 0 rgba(255,255,255,.06);
    border-top: 3px solid #FFB366;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: color 150ms, background-color 150ms, box-shadow 150ms, border-color 150ms, transform 150ms;
}
.hv-plate:hover {
    background: linear-gradient(135deg, #2A152A 0%, #422A42 100%);
    box-shadow: 0 12px 32px rgba(14, 6, 14, 0.5), inset 0 1px 0 rgba(255,255,255,.06);
}
@media (max-width: 48rem) {
    .hv-plate {
        padding: 1rem;
    }
}
.hv-plate > img {
    width: 100%;
    height: auto;
    display: block;
}

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

/* page */
.hv-provider-name {
            font-weight: 700;
            letter-spacing: 0.02em;
            color: var(--text-primary);
        }
