/* overflow-guard */
:root {
    --brand-primary: #3f4bcc;
    --brand-primary-hover: #5462e0;
    --brand-secondary: #a8b0c5;
    --brand-secondary-hover: #c0c8d9;
    --brand-accent: #e6f23e;
    --background-main: #1c1410;
    --background-surface: #281c16;
    --background-elevated: #34261d;
    --background-overlay: rgba(28, 20, 16, 0.75);
    --text-primary: #f5f5f5;
    --text-secondary: #dcdcdc;
    --text-muted: #bdbdbd;
    --text-brand-contrast: #000000;
    --text-link: #d9e6b3;
    --text-link-hover: #eaf2c5;
    --button-bg: #e6f23e;
    --button-text: #000000;
    --button-hover-bg: #c9d634;
    --button-hover-text: #000000;
    --semantic-success: #4caf50;
    --success: #4caf50;
    --semantic-error: #f44336;
    --error: #f44336;
    --semantic-warning: #ffb300;
    --warning: #ffb300;
    --semantic-info: #2196f3;
    --info: #2196f3;
    --border-default: #3d2e26;
    --border-strong: #523d32;
    --border-brand: #3f4bcc;
    --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: 700;
    --role-weight-h2: 700;
    --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.25;
    --line-height-body: 1.55;
    --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: 72rem;
    --content-max-width: 72rem;
    --spacing-reading-max-width: 68ch;
    --reading-max-width: 68ch;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-pill: 9999px;
    --shadow-card: 4px 4px 0 #0e0a08;
    --shadow-elevated: 6px 6px 0 #0e0a08;
    --shadow-glow: 0 0 0 1px rgba(230, 242, 62, 0.35), 0 6px 18px rgba(230, 242, 62, 0.35);
    --shadow-inset: inset 0 1px 0 rgba(255,255,255,.05);
    --gradient-brand: linear-gradient(135deg, #3f4bcc 0%, #5462e0 100%);
    --gradient-hero: linear-gradient(180deg, #2d263e 0%, #1c1410 100%);
    --gradient-surface: linear-gradient(#34261d, #34261d);
    --gradient-button: linear-gradient(135deg, #eaf461 0%, #e6f23e 100%);
    --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: #1c1410;
    color: #dcdcdc;
    font-family: Noto Sans Bengali, Source Sans 3, sans-serif;
    font-weight: 400;
    line-height: 1.55;
    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: Hind Siliguri, Sora, sans-serif;
    line-height: 1.25;
    letter-spacing: 0;
    color: #f5f5f5;
}
h1 {
    font-size: 1.8rem;
    font-weight: 700;
}
h2 {
    font-size: 1.5rem;
    font-weight: 700;
}
h3 {
    font-size: 1rem;
    font-weight: 600;
}
h4 {
    font-size: 1rem;
    font-weight: 600;
}
p {
    margin: 0;
    color: #dcdcdc;
}
ul, ol {
    margin: 0;
}
a {
    color: #d9e6b3;
    text-decoration: none;
    transition: color 200ms, background-color 200ms, box-shadow 200ms, border-color 200ms, transform 200ms;
}
a:hover {
    color: #eaf2c5;
}
a:focus-visible, button:focus-visible, summary:focus-visible {
    outline: 2px solid #e6f23e;
    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 > * + *, .cx_wrap > * + *, .cx_copy > * + *, .cx_stack > * + *, .cx_stack_center > * + * {
    margin-block-start: 1.25rem;
}
@media (max-width: 48rem) {
    main > section {
        padding-block: 2rem;
    }
    main > section > * + *, main > article > * + *, .cx_wrap > * + *, .cx_copy > * + *, .cx_stack > * + *, .cx_stack_center > * + * {
        margin-block-start: 1rem;
    }
}

.cx_small {
    font-size: 0.875rem;
}
.cx_faint {
    color: #bdbdbd;
}
.cx_mid {
    text-align: center;
}
.cx_tone_accent {
    color: #e6f23e;
}
.cx_tone_success {
    color: #4caf50;
}
.cx_tone_warning {
    color: #ffb300;
}
.cx_tone_error {
    color: #f44336;
}
.cx_tone_info {
    color: #2196f3;
}

.cx_plate {
    background: #34261d;
    border: 1px solid #3d2e26;
    border-radius: 10px;
    box-shadow: 4px 4px 0 #0e0a08, inset 0 1px 0 rgba(255,255,255,.05);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: color 200ms, background-color 200ms, box-shadow 200ms, border-color 200ms, transform 200ms;
}
.cx_plate:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 #0e0a08, inset 0 1px 0 rgba(255,255,255,.05);
}
@media (max-width: 48rem) {
    .cx_plate {
        padding: 1rem;
    }
}
.cx_plate > img {
    width: 100%;
    height: auto;
    display: block;
}

.cx_button, .cx_button_sm, .cx_button_full, .cx_button_outline {
    background: linear-gradient(135deg, #eaf461 0%, #e6f23e 100%);
    color: #000000;
    border-radius: 9999px;
    min-height: 44px;
    font-weight: 700;
    box-shadow: 0 6px 16px rgba(230, 242, 62, 0.3);
    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;
}
.cx_button:hover, .cx_button_sm:hover, .cx_button_full:hover, .cx_button_outline:hover {
    background: #c9d634;
    box-shadow: 0 8px 22px rgba(230, 242, 62, 0.4);
}
.cx_button_sm {
    min-height: 36px;
    padding: 0 1rem;
    font-size: 0.875rem;
}
.cx_button_full {
    display: flex;
    width: 100%;
}
.cx_button_outline {
    background: transparent;
    background-image: none;
    color: #f5f5f5;
    border: 1px solid #523d32;
    box-shadow: none;
}
.cx_button_outline:hover {
    background: transparent;
    border-color: #3f4bcc;
    color: #f5f5f5;
    box-shadow: none;
}

.cx_reveal {
    background: #34261d;
    border: 1px solid #3d2e26;
    border-radius: 10px;
    box-shadow: 4px 4px 0 #0e0a08, inset 0 1px 0 rgba(255,255,255,.05);
    transition: color 200ms, background-color 200ms, box-shadow 200ms, border-color 200ms, transform 200ms;
}
.cx_reveal + .cx_reveal {
    margin-block-start: 1rem;
}
.cx_reveal[open] {
    border-color: #3f4bcc;
}
.cx_reveal_q {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    cursor: pointer;
    list-style: none;
}
.cx_reveal_q::-webkit-details-marker {
    display: none;
}
.cx_reveal_q h3 {
    margin: 0;
    flex: 1 1 auto;
    min-width: 0;
}
.cx_reveal_q::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    flex: 0 0 auto;
    color: #e6f23e;
    transition: transform 200ms;
}
.cx_reveal[open] .cx_reveal_q::after {
    transform: rotate(180deg);
}
.cx_reveal_a {
    margin: 0;
    padding: 0 1.5rem 1.5rem;
}
@media (max-width: 48rem) {
    .cx_reveal_q {
        padding: 1rem;
    }
    .cx_reveal_a {
        padding: 0 1rem 1rem;
    }
}

.cx_ledger_wrap {
    background: #34261d;
    border: 1px solid #3d2e26;
    border-radius: 10px;
    box-shadow: 4px 4px 0 #0e0a08, inset 0 1px 0 rgba(255,255,255,.05);
    overflow-x: auto;
    max-width: 100%;
}
.cx_ledger {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}
.cx_ledger th, .cx_ledger td {
    padding: 1rem;
    text-align: start;
    border-bottom: 1px solid #3d2e26;
    vertical-align: top;
}
.cx_ledger thead th {
    background: #34261d;
    color: #f5f5f5;
    font-weight: 600;
}
.cx_ledger tbody tr:last-child td {
    border-bottom: 0;
}
.cx_ledger td:first-child {
    color: #bdbdbd;
    font-weight: 600;
}

.cx_gamecard {
    background: #34261d;
    border: 1px solid #3d2e26;
    border-radius: 10px;
    box-shadow: 4px 4px 0 #0e0a08, inset 0 1px 0 rgba(255,255,255,.05);
    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;
}
.cx_gamecard:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 #0e0a08, inset 0 1px 0 rgba(255,255,255,.05);
}
.cx_gamecard_media {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.cx_gamecard_media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 200ms;
}
.cx_gamecard:hover .cx_gamecard_media img {
    transform: scale(1.04);
}
.cx_gamecard_play {
    position: absolute;
    top: .5rem;
    right: .5rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #e6f23e;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 150ms;
}
.cx_gamecard:hover .cx_gamecard_play, .cx_gamecard:focus-visible .cx_gamecard_play {
    opacity: 1;
}
@media (hover: none) {
    .cx_gamecard_play {
        opacity: 1;
    }
}
.cx_gamecard {
    position: relative;
}
.cx_gamecard_name {
    position: absolute;
    inset: auto 0 0 0;
    padding: .6rem .75rem;
    background: linear-gradient(180deg, transparent 0%, rgba(28, 20, 16, 0.75) 100%);
}
.cx_gamecard_name h3 {
    margin: 0;
    font-size: 0.875rem;
    color: #f5f5f5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media (min-width: 48rem) {
    .cx_gamecard_name h3 {
        white-space: normal;
    }
}

.cx_head {
    background: #1c1410;
    border-bottom: 1px solid #3d2e26;
    padding: .75rem 3%;
    position: sticky;
    top: 0;
    z-index: 100;
}
.cx_head_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.cx_head_brand {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: #f5f5f5;
}
.cx_head_brand img {
    border-radius: 6px;
}
.cx_head_brand strong {
    font-size: 16px;
    font-weight: 400;
}
.cx_head_actions {
    display: flex;
    align-items: center;
    gap: .5rem;
}

main > section.cx_belt {
    background: #281c16;
    padding-block: 3.5rem;
}
@media (max-width: 48rem) {
    main > section.cx_belt {
        padding-block: 2rem;
    }
}
.cx_intro {
    background: linear-gradient(180deg, #2d263e 0%, #1c1410 100%);
    padding-block: 3.5rem;
    text-align: center;
    margin-inline: -3.1915%;
    padding-inline: 3%;
}
@media (max-width: 48rem) {
    .cx_intro {
        padding-block: 2rem;
    }
}

.cx_disc, .cx_disc_success, .cx_disc_warning, .cx_disc_error, .cx_disc_info {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #3f4bcc 0%, #5462e0 100%);
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-weight: 700;
}
.cx_disc_success {
    background: #4caf50;
    color: #fff;
}
.cx_disc_warning {
    background: #ffb300;
    color: #fff;
}
.cx_disc_error {
    background: #f44336;
    color: #fff;
}
.cx_disc_info {
    background: #2196f3;
    color: #fff;
}

.cx_quicknav {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 1000;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 4.75rem;
    background: #281c16;
    border-top: 1px solid #3d2e26;
}
.cx_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;
}
.cx_quicknav_item i {
    font-size: 1.25rem;
}
.cx_quicknav_item:hover {
    color: #e6f23e;
}

.cx_notice, .cx_notice_warning, .cx_notice_info, .cx_notice_success, .cx_notice_error {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 10px;
    background: #281c16;
    border: 1px solid #3d2e26;
    border-left: 4px solid #e6f23e;
}
.cx_notice > i, .cx_notice_warning > i, .cx_notice_info > i, .cx_notice_success > i, .cx_notice_error > i {
    flex: 0 0 auto;
    margin-top: .2em;
    color: #e6f23e;
}
.cx_notice_success {
    border-left-color: #4caf50;
}
.cx_notice_warning {
    border-left-color: #ffb300;
}
.cx_notice_error {
    border-left-color: #f44336;
}
.cx_notice_info {
    border-left-color: #2196f3;
}
.cx_notice_success > i {
    color: #4caf50;
}
.cx_notice_warning > i {
    color: #ffb300;
}
.cx_notice_error > i {
    color: #f44336;
}
.cx_notice_info > i {
    color: #2196f3;
}

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

.cx_tag {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .4rem 1rem;
    border-radius: 9999px;
    background: #34261d;
    border: 1px solid #523d32;
    color: #f5f5f5;
    font-size: 0.875rem;
}
.cx_tag > i {
    color: #e6f23e;
}

.cx_wrap {
    width: 100%;
    max-width: 72rem;
    margin-inline: auto;
}
.cx_copy {
    max-width: 68ch;
    margin-inline: auto;
}
.cx_stack, .cx_stack_center {
    display: block;
}
.cx_stack_center {
    text-align: center;
}
.cx_row, .cx_row_center {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}
.cx_row_center {
    justify-content: center;
}
.cx_mosaic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
    gap: 1.25rem;
}
.cx_shelf {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
.cx_picks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
@media (min-width: 48rem) {
    .cx_shelf {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.25rem;
    }
    .cx_picks {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.25rem;
    }
}
.cx_points {
    list-style: none;
    padding: 0;
}
.cx_points > li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
}
.cx_points > li + li {
    margin-block-start: .75rem;
}
.cx_points > li > i {
    flex: 0 0 1.25rem;
    text-align: center;
    margin-top: .2em;
    color: #e6f23e;
}

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

.cx_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;
}
.cx_jumpbar::-webkit-scrollbar {
    display: none;
}
.cx_jumpbar_link {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: .5rem 1rem;
    border-radius: 6px;
    background: #281c16;
    border: 1px solid #3d2e26;
    color: #dcdcdc;
    font-size: 0.875rem;
    transition: color 200ms, background-color 200ms, box-shadow 200ms, border-color 200ms, transform 200ms;
}
.cx_jumpbar_link:hover {
    border-color: #3f4bcc;
    color: #f5f5f5;
}

.cx_breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .5rem;
    padding: 1rem 0;
    font-size: 0.875rem;
    color: #dcdcdc;
}
.cx_breadcrumb a {
    color: #d9e6b3;
}
.cx_breadcrumb span {
    color: #f5f5f5;
}

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

/* page */
.cx_provider_name { font-weight: 700; letter-spacing: 0.02em; font-size: 1.1rem; }
