/* overflow-guard */
:root {
    --brand-primary: #00A86B;
    --brand-primary-hover: #00C282;
    --brand-secondary: #D1C4A8;
    --brand-secondary-hover: #E2D8C1;
    --brand-accent: #E6C27A;
    --background-main: #120D2B;
    --background-surface: #1B1437;
    --background-elevated: #251D43;
    --background-overlay: rgba(18, 13, 43, 0.75);
    --text-primary: #FDFDFD;
    --text-secondary: #E0E0E0;
    --text-muted: #BDBDBD;
    --text-brand-contrast: #000000;
    --text-link: #E6E6FA;
    --text-link-hover: #FFFFFF;
    --button-bg: #E6C27A;
    --button-text: #000000;
    --button-hover-bg: #F0D69B;
    --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: #2A224D;
    --border-strong: #3B3263;
    --border-brand: #00A86B;
    --font-family-headings: Noto Sans Bengali, Space Grotesk, sans-serif;
    --font-family-body: Noto Sans Bengali, Source Sans 3, 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.35;
    --line-height-body: 1.65;
    --letter-spacing-heading: 0;
    --letter-spacing-body: 0;
    --spacing-section-desktop: 4.5rem;
    --section-desktop: 4.5rem;
    --spacing-item-desktop: 1.5rem;
    --item-desktop: 1.5rem;
    --spacing-section-mobile: 2.5rem;
    --section-mobile: 2.5rem;
    --spacing-item-mobile: 1rem;
    --item-mobile: 1rem;
    --spacing-container-pad-desktop: 2.5rem;
    --container-pad-desktop: 2.5rem;
    --spacing-container-pad-mobile: 1.25rem;
    --container-pad-mobile: 1.25rem;
    --spacing-card-pad-desktop: 2rem;
    --card-pad-desktop: 2rem;
    --spacing-card-pad-mobile: 1.25rem;
    --card-pad-mobile: 1.25rem;
    --spacing-content-max-width: 76rem;
    --content-max-width: 76rem;
    --spacing-reading-max-width: 64ch;
    --reading-max-width: 64ch;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-pill: 9999px;
    --shadow-card: 0 4px 12px rgba(8, 6, 19, 0.35);
    --shadow-elevated: 0 8px 24px rgba(8, 6, 19, 0.45);
    --shadow-glow: 0 0 0 1px rgba(230, 194, 122, 0.35), 0 6px 18px rgba(230, 194, 122, 0.35);
    --shadow-inset: inset 0 1px 0 rgba(255,255,255,.08);
    --gradient-brand: linear-gradient(135deg, #00A86B 0%, #00C282 100%);
    --gradient-hero: linear-gradient(180deg, #153542 0%, #120D2B 100%);
    --gradient-surface: linear-gradient(#251D43, #251D43);
    --gradient-button: none;
    --effects-accent-bar: none;
    --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: #120D2B;
    color: #E0E0E0;
    font-family: Noto Sans Bengali, Source Sans 3, 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: Noto Sans Bengali, Space Grotesk, sans-serif;
    line-height: 1.35;
    letter-spacing: 0;
    color: #FDFDFD;
}
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: #E0E0E0;
}
ul, ol {
    margin: 0;
}
a {
    color: #E6E6FA;
    text-decoration: none;
    transition: color 200ms, background-color 200ms, box-shadow 200ms, border-color 200ms, transform 200ms;
}
a:hover {
    color: #FFFFFF;
}
a:focus-visible, button:focus-visible, summary:focus-visible {
    outline: 2px solid #E6C27A;
    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: 4.5rem;
}
main > section > * + *, main > article > * + *, .kg-frame > * + *, .kg-reading > * + *, .kg-flow > * + *, .kg-flow-center > * + * {
    margin-block-start: 1.5rem;
}
@media (max-width: 48rem) {
    main > section {
        padding-block: 2.5rem;
    }
    main > section > * + *, main > article > * + *, .kg-frame > * + *, .kg-reading > * + *, .kg-flow > * + *, .kg-flow-center > * + * {
        margin-block-start: 1rem;
    }
}

.kg-sub {
    font-size: 0.875rem;
}
.kg-faint {
    color: #BDBDBD;
}
.kg-center {
    text-align: center;
}
.kg-hue-accent {
    color: #E6C27A;
}
.kg-hue-success {
    color: #2ECC71;
}
.kg-hue-warning {
    color: #F1C40F;
}
.kg-hue-error {
    color: #E74C3C;
}
.kg-hue-info {
    color: #3498DB;
}

.kg-tabbar {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 1000;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 4.75rem;
    background: #1B1437;
    border-top: 1px solid #2A224D;
}
.kg-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;
}
.kg-tabbar-item i {
    font-size: 1.25rem;
}
.kg-tabbar-item:hover {
    color: #E6C27A;
}

.kg-frame {
    width: 100%;
    max-width: 76rem;
    margin-inline: auto;
}
.kg-reading {
    max-width: 64ch;
    margin-inline: auto;
}
.kg-flow, .kg-flow-center {
    display: block;
}
.kg-flow-center {
    text-align: center;
}
.kg-strip, .kg-strip-center {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}
.kg-strip-center {
    justify-content: center;
}
.kg-cells {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
    gap: 1.5rem;
}
.kg-shelf {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
.kg-blocks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
@media (min-width: 48rem) {
    .kg-shelf {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.5rem;
    }
    .kg-blocks {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.5rem;
    }
}
.kg-checklist {
    list-style: none;
    padding: 0;
}
.kg-checklist > li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
}
.kg-checklist > li + li {
    margin-block-start: .75rem;
}
.kg-checklist > li > i {
    flex: 0 0 1.25rem;
    text-align: center;
    margin-top: .2em;
    color: #E6C27A;
}

.kg-slab {
    background: #251D43;
    border: 1px solid #3B3263;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(8, 6, 19, 0.35), inset 0 1px 0 rgba(255,255,255,.08);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: color 200ms, background-color 200ms, box-shadow 200ms, border-color 200ms, transform 200ms;
}
.kg-slab:hover {
    border-color: #00A86B;
    box-shadow: 0 0 0 1px rgba(230, 194, 122, 0.35), 0 6px 18px rgba(230, 194, 122, 0.35), inset 0 1px 0 rgba(255,255,255,.08);
}
@media (max-width: 48rem) {
    .kg-slab {
        padding: 1.25rem;
    }
}
.kg-slab > img {
    width: 100%;
    height: auto;
    display: block;
}

.kg-sheet-wrap {
    background: #251D43;
    border: 1px solid #3B3263;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(8, 6, 19, 0.35), inset 0 1px 0 rgba(255,255,255,.08);
    overflow-x: auto;
    max-width: 100%;
}
.kg-sheet {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}
.kg-sheet th, .kg-sheet td {
    padding: 1rem;
    text-align: start;
    border-bottom: 1px solid #2A224D;
    vertical-align: top;
}
.kg-sheet thead th {
    background: #251D43;
    color: #FDFDFD;
    font-weight: 600;
}
.kg-sheet tbody tr:last-child td {
    border-bottom: 0;
}
.kg-sheet td:first-child {
    color: #BDBDBD;
    font-weight: 600;
}

.kg-reveal {
    background: #251D43;
    border: 1px solid #3B3263;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(8, 6, 19, 0.35), inset 0 1px 0 rgba(255,255,255,.08);
    transition: color 200ms, background-color 200ms, box-shadow 200ms, border-color 200ms, transform 200ms;
}
.kg-reveal + .kg-reveal {
    margin-block-start: 1rem;
}
.kg-reveal[open] {
    border-color: #00A86B;
}
.kg-reveal-q {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
    cursor: pointer;
    list-style: none;
}
.kg-reveal-q::-webkit-details-marker {
    display: none;
}
.kg-reveal-q h3 {
    margin: 0;
    flex: 1 1 auto;
    min-width: 0;
}
.kg-reveal-q::after {
    content: "\f0d7";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    flex: 0 0 auto;
    color: #E6C27A;
    transition: transform 200ms;
}
.kg-reveal[open] .kg-reveal-q::after {
    transform: rotate(180deg);
}
.kg-reveal-a {
    margin: 0;
    padding: 0 2rem 2rem;
}
@media (max-width: 48rem) {
    .kg-reveal-q {
        padding: 1.25rem;
    }
    .kg-reveal-a {
        padding: 0 1.25rem 1.25rem;
    }
}

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

.kg-marker {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .4rem 1rem;
    border-radius: 9999px;
    background: #251D43;
    border: 1px solid #3B3263;
    color: #FDFDFD;
    font-size: 0.875rem;
}
.kg-marker > i {
    color: #E6C27A;
}

.kg-play {
    background: #251D43;
    border: 1px solid #3B3263;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(8, 6, 19, 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 200ms, background-color 200ms, box-shadow 200ms, border-color 200ms, transform 200ms;
}
.kg-play:hover {
    border-color: #00A86B;
    box-shadow: 0 0 0 1px rgba(230, 194, 122, 0.35), 0 6px 18px rgba(230, 194, 122, 0.35), inset 0 1px 0 rgba(255,255,255,.08);
}
.kg-play-media {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.kg-play-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 200ms;
}
.kg-play:hover .kg-play-media img {
    transform: scale(1.04);
}
.kg-play-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #E6C27A;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 150ms;
}
.kg-play:hover .kg-play-play, .kg-play:focus-visible .kg-play-play {
    opacity: 1;
}
@media (hover: none) {
    .kg-play-play {
        opacity: 1;
    }
}
.kg-play {
    position: relative;
}
.kg-play-name {
    position: absolute;
    inset: auto 0 0 0;
    padding: .6rem .75rem;
    background: linear-gradient(180deg, transparent 0%, rgba(18, 13, 43, 0.75) 100%);
}
.kg-play-name h3 {
    margin: 0;
    font-size: 0.875rem;
    color: #FDFDFD;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media (min-width: 48rem) {
    .kg-play-name h3 {
        white-space: normal;
    }
}

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

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

.kg-medal, .kg-medal-success, .kg-medal-warning, .kg-medal-error, .kg-medal-info {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 4px;
    background: linear-gradient(135deg, #00A86B 0%, #00C282 100%);
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-weight: 700;
}
.kg-medal-success {
    background: #2ECC71;
    color: #FFF;
}
.kg-medal-warning {
    background: #F1C40F;
    color: #FFF;
}
.kg-medal-error {
    background: #E74C3C;
    color: #FFF;
}
.kg-medal-info {
    background: #3498DB;
    color: #FFF;
}

main > section.kg-layer {
    background: #1B1437;
    border-top: 1px solid #2A224D;
    border-bottom: 1px solid #2A224D;
    padding-block: 4.5rem;
}
@media (max-width: 48rem) {
    main > section.kg-layer {
        padding-block: 2.5rem;
    }
}
.kg-hero {
    background: linear-gradient(180deg, #153542 0%, #120D2B 100%);
    padding-block: 4.5rem;
    text-align: center;
    margin-inline: -3.1915%;
    padding-inline: 3%;
}
@media (max-width: 48rem) {
    .kg-hero {
        padding-block: 2.5rem;
    }
}

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

.kg-action, .kg-action-sm, .kg-action-full, .kg-action-outline {
    background: #E6C27A;
    color: #000000;
    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(8, 6, 19, 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;
}
.kg-action:hover, .kg-action-sm:hover, .kg-action-full:hover, .kg-action-outline:hover {
    background: #F0D69B;
    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(8, 6, 19, 0.45);
}
.kg-action-sm {
    min-height: 36px;
    padding: 0 1rem;
    font-size: 0.875rem;
}
.kg-action-full {
    display: flex;
    width: 100%;
}
.kg-action-outline {
    background: transparent;
    background-image: none;
    color: #FDFDFD;
    border: 1px solid #3B3263;
    box-shadow: none;
}
.kg-action-outline:hover {
    background: transparent;
    border-color: #00A86B;
    color: #FDFDFD;
    box-shadow: none;
}

.kg-notice, .kg-notice-warning, .kg-notice-info, .kg-notice-success, .kg-notice-error {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 8px;
    background: #1B1437;
    border: 1px solid #2A224D;
    border-left: 4px solid #E6C27A;
}
.kg-notice > i, .kg-notice-warning > i, .kg-notice-info > i, .kg-notice-success > i, .kg-notice-error > i {
    flex: 0 0 auto;
    margin-top: .2em;
    color: #E6C27A;
}
.kg-notice-success {
    border-left-color: #2ECC71;
}
.kg-notice-warning {
    border-left-color: #F1C40F;
}
.kg-notice-error {
    border-left-color: #E74C3C;
}
.kg-notice-info {
    border-left-color: #3498DB;
}
.kg-notice-success > i {
    color: #2ECC71;
}
.kg-notice-warning > i {
    color: #F1C40F;
}
.kg-notice-error > i {
    color: #E74C3C;
}
.kg-notice-info > i {
    color: #3498DB;
}

.kg-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;
}
.kg-jumpbar::-webkit-scrollbar {
    display: none;
}
.kg-jumpbar-link {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: .5rem 1rem;
    border-radius: 4px;
    background: #1B1437;
    border: 1px solid #2A224D;
    color: #E0E0E0;
    font-size: 0.875rem;
    transition: color 200ms, background-color 200ms, box-shadow 200ms, border-color 200ms, transform 200ms;
}
.kg-jumpbar-link:hover {
    border-color: #00A86B;
    color: #FDFDFD;
}

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

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