/* overflow-guard */
:root {
    --brand-primary: #2e5bff;
    --brand-primary-hover: #1e4bdb;
    --brand-secondary: #b8c1ec;
    --brand-secondary-hover: #a0a9d8;
    --brand-accent: #ff9f43;
    --background-main: #0a1f18;
    --background-surface: #112a21;
    --background-elevated: #18352b;
    --background-overlay: rgba(10, 31, 24, 0.75);
    --text-primary: #fdfdfd;
    --text-secondary: #e0e0e0;
    --text-muted: #bdbdbd;
    --text-brand-contrast: #ffffff;
    --text-link: #c0d5ff;
    --text-link-hover: #e0e8ff;
    --button-bg: #ff9f43;
    --button-text: #000000;
    --button-hover-bg: #ffb870;
    --button-hover-text: #000000;
    --semantic-success: #4caf50;
    --success: #4caf50;
    --semantic-error: #ef5350;
    --error: #ef5350;
    --semantic-warning: #ffb300;
    --warning: #ffb300;
    --semantic-info: #42a5f5;
    --info: #42a5f5;
    --border-default: #1b3b31;
    --border-strong: #284d41;
    --border-brand: #2e5bff;
    --font-family-headings: Hind Siliguri, Sora, 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.3;
    --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: 75rem;
    --content-max-width: 75rem;
    --spacing-reading-max-width: 68ch;
    --reading-max-width: 68ch;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-pill: 9999px;
    --shadow-card: 0 4px 12px rgba(4, 14, 11, 0.35);
    --shadow-elevated: 0 8px 24px rgba(4, 14, 11, 0.45);
    --shadow-glow: 0 0 0 1px rgba(255, 159, 67, 0.35), 0 6px 18px rgba(255, 159, 67, 0.35);
    --shadow-inset: inset 0 1px 0 rgba(255,255,255,.08);
    --gradient-brand: linear-gradient(135deg, #2e5bff 0%, #1e4bdb 100%);
    --gradient-hero: linear-gradient(180deg, #173552 0%, #0a1f18 100%);
    --gradient-surface: linear-gradient(#18352b, #18352b);
    --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: #0a1f18;
    color: #e0e0e0;
    font-family: Noto Sans Bengali, Source Sans 3, 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, Sora, sans-serif;
    line-height: 1.3;
    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: #c0d5ff;
    text-decoration: none;
    transition: color 200ms, background-color 200ms, box-shadow 200ms, border-color 200ms, transform 200ms;
}
a:hover {
    color: #e0e8ff;
}
a:focus-visible, button:focus-visible, summary:focus-visible {
    outline: 2px solid #ff9f43;
    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 > * + *, .frame > * + *, .measure > * + *, .stack > * + *, .stack--center > * + * {
    margin-block-start: 1.5rem;
}
@media (max-width: 48rem) {
    main > section {
        padding-block: 2.5rem;
    }
    main > section > * + *, main > article > * + *, .frame > * + *, .measure > * + *, .stack > * + *, .stack--center > * + * {
        margin-block-start: 1rem;
    }
}

.alert, .alert--warning, .alert--info, .alert--success, .alert--error {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 8px;
    background: #112a21;
    border: 1px solid #1b3b31;
    border-left: 4px solid #ff9f43;
}
.alert > i, .alert--warning > i, .alert--info > i, .alert--success > i, .alert--error > i {
    flex: 0 0 auto;
    margin-top: .2em;
    color: #ff9f43;
}
.alert--success {
    border-left-color: #4caf50;
}
.alert--warning {
    border-left-color: #ffb300;
}
.alert--error {
    border-left-color: #ef5350;
}
.alert--info {
    border-left-color: #42a5f5;
}
.alert--success > i {
    color: #4caf50;
}
.alert--warning > i {
    color: #ffb300;
}
.alert--error > i {
    color: #ef5350;
}
.alert--info > i {
    color: #42a5f5;
}

.game {
    background: #18352b;
    border: 1px solid #284d41;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(4, 14, 11, 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;
}
.game:hover {
    border-color: #2e5bff;
    box-shadow: 0 0 0 1px rgba(255, 159, 67, 0.35), 0 6px 18px rgba(255, 159, 67, 0.35), inset 0 1px 0 rgba(255,255,255,.08);
}
.game__media {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.game__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 200ms;
}
.game:hover .game__media img {
    transform: scale(1.04);
}
.game__play {
    position: absolute;
    top: .5rem;
    right: .5rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #ff9f43;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 150ms;
}
.game:hover .game__play, .game:focus-visible .game__play {
    opacity: 1;
}
@media (hover: none) {
    .game__play {
        opacity: 1;
    }
}
.game {
    position: relative;
}
.game__name {
    position: absolute;
    inset: auto 0 0 0;
    padding: .6rem .75rem;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 31, 24, 0.75) 100%);
}
.game__name h3 {
    margin: 0;
    font-size: 0.875rem;
    color: #fdfdfd;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media (min-width: 48rem) {
    .game__name h3 {
        white-space: normal;
    }
}

.qa {
    background: #18352b;
    border: 1px solid #284d41;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(4, 14, 11, 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;
}
.qa + .qa {
    margin-block-start: 1rem;
}
.qa[open] {
    border-color: #2e5bff;
}
.qa__q {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
    cursor: pointer;
    list-style: none;
}
.qa__q::-webkit-details-marker {
    display: none;
}
.qa__q h3 {
    margin: 0;
    flex: 1 1 auto;
    min-width: 0;
}
.qa__q::after {
    content: "\f0d7";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    flex: 0 0 auto;
    color: #ff9f43;
    transition: transform 200ms;
}
.qa[open] .qa__q::after {
    transform: rotate(180deg);
}
.qa__a {
    margin: 0;
    padding: 0 2rem 2rem;
}
@media (max-width: 48rem) {
    .qa__q {
        padding: 1.25rem;
    }
    .qa__a {
        padding: 0 1.25rem 1.25rem;
    }
}

.medal, .medal--success, .medal--warning, .medal--error, .medal--info {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 4px;
    background: linear-gradient(135deg, #2e5bff 0%, #1e4bdb 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-weight: 700;
}
.medal--success {
    background: #4caf50;
    color: #fff;
}
.medal--warning {
    background: #ffb300;
    color: #fff;
}
.medal--error {
    background: #ef5350;
    color: #fff;
}
.medal--info {
    background: #42a5f5;
    color: #fff;
}

.cta, .cta--sm, .cta--full, .cta--outline {
    background: #ff9f43;
    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(4, 14, 11, 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;
}
.cta:hover, .cta--sm:hover, .cta--full:hover, .cta--outline:hover {
    background: #ffb870;
    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(4, 14, 11, 0.45);
}
.cta--sm {
    min-height: 36px;
    padding: 0 1rem;
    font-size: 0.875rem;
}
.cta--full {
    display: flex;
    width: 100%;
}
.cta--outline {
    background: transparent;
    background-image: none;
    color: #fdfdfd;
    border: 1px solid #284d41;
    box-shadow: none;
}
.cta--outline:hover {
    background: transparent;
    border-color: #2e5bff;
    color: #fdfdfd;
    box-shadow: none;
}

.masthead {
    background: #0a1f18;
    border-bottom: 1px solid #1b3b31;
    padding: .75rem 3%;
    position: sticky;
    top: 0;
    z-index: 100;
}
.masthead__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.masthead__brand {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: #fdfdfd;
}
.masthead__brand img {
    border-radius: 4px;
}
.masthead__brand strong {
    font-size: 16px;
    font-weight: 400;
}
.masthead__actions {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.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;
}
.jumpbar::-webkit-scrollbar {
    display: none;
}
.jumpbar__link {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: .5rem 1rem;
    border-radius: 4px;
    background: #112a21;
    border: 1px solid #1b3b31;
    color: #e0e0e0;
    font-size: 0.875rem;
    transition: color 200ms, background-color 200ms, box-shadow 200ms, border-color 200ms, transform 200ms;
}
.jumpbar__link:hover {
    border-color: #2e5bff;
    color: #fdfdfd;
}

.quicknav {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 1000;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 4.25rem;
    background: #112a21;
    border-top: 1px solid #1b3b31;
}
.quicknav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .25rem;
    flex: 1 1 0;
    padding: .5rem 0;
    font-size: 0.75rem;
    color: #bdbdbd;
}
.quicknav__item i {
    font-size: 1.25rem;
}
.quicknav__item:hover {
    color: #ff9f43;
}

main > section.stripe {
    background: #112a21;
    border-top: 1px solid #1b3b31;
    border-bottom: 1px solid #1b3b31;
    padding-block: 4.5rem;
    margin-inline: -3.1915%;
    padding-inline: 3%;
}
@media (max-width: 48rem) {
    main > section.stripe {
        padding-block: 2.5rem;
    }
}
.opening {
    background: linear-gradient(180deg, #173552 0%, #0a1f18 100%);
    padding-block: 4.5rem;
    text-align: center;
    margin-inline: -3.1915%;
    padding-inline: 3%;
}
@media (max-width: 48rem) {
    .opening {
        padding-block: 2.5rem;
    }
}

.route {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .5rem;
    padding: 1rem 0;
    font-size: 0.875rem;
    color: #e0e0e0;
}
.route a {
    color: #c0d5ff;
}
.route span {
    color: #fdfdfd;
}

.card {
    background: #18352b;
    border: 1px solid #284d41;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(4, 14, 11, 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;
}
.card:hover {
    border-color: #2e5bff;
    box-shadow: 0 0 0 1px rgba(255, 159, 67, 0.35), 0 6px 18px rgba(255, 159, 67, 0.35), inset 0 1px 0 rgba(255,255,255,.08);
}
@media (max-width: 48rem) {
    .card {
        padding: 1.25rem;
    }
}
.card > img {
    width: 100%;
    height: auto;
    display: block;
}

.foot {
    background: #0a1f18;
    border-top: 1px solid #1b3b31;
    padding: 3rem 3% 2rem;
    color: #bdbdbd;
}
.foot__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    text-align: center;
}
.foot__col > p, .foot__col > h3 {
    font-size: 0.875rem;
    font-weight: 700;
    color: #fdfdfd;
    margin: 0 0 .75rem;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.foot__col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.foot__col li + li {
    margin-block-start: .5rem;
}
.foot__col a {
    color: #bdbdbd;
    font-size: 0.875rem;
}
.foot__col a:hover {
    color: #e0e8ff;
}
.foot__meta {
    margin-block-start: 2rem;
    padding-block-start: 1.5rem;
    border-top: 1px solid #1b3b31;
    text-align: center;
    font-size: 0.875rem;
}
.foot__meta > * + * {
    margin-block-start: .5rem;
}

.datatable__wrap {
    background: #18352b;
    border: 1px solid #284d41;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(4, 14, 11, 0.35), inset 0 1px 0 rgba(255,255,255,.08);
    overflow-x: auto;
    max-width: 100%;
}
.datatable {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}
.datatable th, .datatable td {
    padding: 1rem;
    text-align: start;
    border-bottom: 1px solid #1b3b31;
    vertical-align: top;
}
.datatable thead th {
    background: #18352b;
    color: #fdfdfd;
    font-weight: 600;
}
.datatable tbody tr:last-child td {
    border-bottom: 0;
}
.datatable td:first-child {
    color: #bdbdbd;
    font-weight: 600;
}

.minor {
    font-size: 0.875rem;
}
.dim {
    color: #bdbdbd;
}
.axis {
    text-align: center;
}
.shade--accent {
    color: #ff9f43;
}
.shade--success {
    color: #4caf50;
}
.shade--warning {
    color: #ffb300;
}
.shade--error {
    color: #ef5350;
}
.shade--info {
    color: #42a5f5;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .4rem 1rem;
    border-radius: 9999px;
    background: #18352b;
    border: 1px solid #284d41;
    color: #fdfdfd;
    font-size: 0.875rem;
}
.pill > i {
    color: #ff9f43;
}

.frame {
    width: 100%;
    max-width: 75rem;
    margin-inline: auto;
}
.measure {
    max-width: 68ch;
    margin-inline: auto;
}
.stack, .stack--center {
    display: block;
}
.stack--center {
    text-align: center;
}
.inline, .inline--center {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}
.inline--center {
    justify-content: center;
}
.matrix {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
    gap: 1.5rem;
}
.showcase {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
.blocks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
@media (min-width: 48rem) {
    .showcase {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.5rem;
    }
    .blocks {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.5rem;
    }
}
.points {
    list-style: none;
    padding: 0;
}
.points > li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
}
.points > li + li {
    margin-block-start: .75rem;
}
.points > li > i {
    flex: 0 0 1.25rem;
    text-align: center;
    margin-top: .2em;
    color: #ff9f43;
}

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

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

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