/* overflow-guard */
:root {
    --brand-primary: #3A3F47;
    --brand-primary-hover: #4A505A;
    --brand-secondary: #B0B5B9;
    --brand-secondary-hover: #D1D5D8;
    --brand-accent: #D4E137;
    --background-main: #081C21;
    --background-surface: #112A31;
    --background-elevated: #1A3B43;
    --background-overlay: rgba(8, 28, 33, 0.8);
    --text-primary: #FDFDFD;
    --text-secondary: #E0E0E0;
    --text-muted: #BDBDBD;
    --text-brand-contrast: #000000;
    --text-link: #EAF4B5;
    --text-link-hover: #F2F9D1;
    --button-bg: #D4E137;
    --button-text: #000000;
    --button-hover-bg: #B8C62F;
    --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: #1C3D45;
    --border-strong: #2A525D;
    --border-brand: #3A3F47;
    --font-family-headings: Hind Siliguri, 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: 700;
    --role-weight-h2: 600;
    --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.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: 66ch;
    --reading-max-width: 66ch;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-pill: 9999px;
    --shadow-card: 0 4px 12px rgba(4, 13, 15, 0.35);
    --shadow-elevated: 0 8px 24px rgba(4, 13, 15, 0.45);
    --shadow-glow: 0 0 0 1px rgba(212, 225, 55, 0.35), 0 6px 18px rgba(212, 225, 55, 0.35);
    --shadow-inset: inset 0 1px 0 rgba(255,255,255,.08);
    --gradient-brand: linear-gradient(135deg, #3A3F47 0%, #4A505A 100%);
    --gradient-hero: linear-gradient(180deg, #1A2F36 0%, #081C21 100%);
    --gradient-surface: linear-gradient(#1A3B43, #1A3B43);
    --gradient-button: none;
    --effects-accent-bar: none;
    --recipes-transition: color 180ms, background-color 180ms, box-shadow 180ms, border-color 180ms, transform 180ms;
    --transition: color 180ms, background-color 180ms, box-shadow 180ms, border-color 180ms, transform 180ms;
}
*, *::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: #081C21;
    color: #E0E0E0;
    font-family: Noto Sans Bengali, Manrope, sans-serif;
    font-weight: 400;
    line-height: 1.65;
    padding-bottom: 4.5rem;
    -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, Archivo, sans-serif;
    line-height: 1.25;
    letter-spacing: 0;
    color: #FDFDFD;
}
h1 {
    font-size: 1.8rem;
    font-weight: 700;
}
h2 {
    font-size: 1.5rem;
    font-weight: 600;
}
h3 {
    font-size: 1rem;
    font-weight: 600;
}
h4 {
    font-size: 1rem;
    font-weight: 600;
}
p {
    margin: 0;
    color: #E0E0E0;
}
ul, ol {
    margin: 0;
}
a {
    color: #EAF4B5;
    text-decoration: none;
    transition: color 180ms, background-color 180ms, box-shadow 180ms, border-color 180ms, transform 180ms;
}
a:hover {
    color: #F2F9D1;
}
a:focus-visible, button:focus-visible, summary:focus-visible {
    outline: 2px solid #D4E137;
    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 > * + *, .cps_inner > * + *, .cps_reading > * + *, .cps_pile > * + *, .cps_pile_center > * + * {
    margin-block-start: 1.5rem;
}
@media (max-width: 48rem) {
    main > section {
        padding-block: 2.5rem;
    }
    main > section > * + *, main > article > * + *, .cps_inner > * + *, .cps_reading > * + *, .cps_pile > * + *, .cps_pile_center > * + * {
        margin-block-start: 1rem;
    }
}

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

main > section.cps_stripe {
    background: #112A31;
    border-top: 1px solid #1C3D45;
    border-bottom: 1px solid #1C3D45;
    padding-block: 4.5rem;
    margin-inline: -3.1915%;
    padding-inline: 3%;
}
@media (max-width: 48rem) {
    main > section.cps_stripe {
        padding-block: 2.5rem;
    }
}
.cps_opening {
    background: linear-gradient(180deg, #1A2F36 0%, #081C21 100%);
    padding-block: 4.5rem;
    text-align: center;
    margin-inline: -3.1915%;
    padding-inline: 3%;
}
@media (max-width: 48rem) {
    .cps_opening {
        padding-block: 2.5rem;
    }
}

.cps_chips {
    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;
}
.cps_chips::-webkit-scrollbar {
    display: none;
}
.cps_chips_link {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: .5rem 1rem;
    border-radius: 6px;
    background: #112A31;
    border: 1px solid #1C3D45;
    color: #E0E0E0;
    font-size: 0.875rem;
    transition: color 180ms, background-color 180ms, box-shadow 180ms, border-color 180ms, transform 180ms;
}
.cps_chips_link:hover {
    border-color: #3A3F47;
    color: #FDFDFD;
}

.cps_card {
    background: #1A3B43;
    border: 1px solid #2A525D;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(4, 13, 15, 0.35), inset 0 1px 0 rgba(255,255,255,.08);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: color 180ms, background-color 180ms, box-shadow 180ms, border-color 180ms, transform 180ms;
}
.cps_card:hover {
    border-color: #3A3F47;
    box-shadow: 0 0 0 1px rgba(212, 225, 55, 0.35), 0 6px 18px rgba(212, 225, 55, 0.35), inset 0 1px 0 rgba(255,255,255,.08);
}
@media (max-width: 48rem) {
    .cps_card {
        padding: 1.25rem;
    }
}
.cps_card > img {
    width: 100%;
    height: auto;
    display: block;
}

.cps_inner {
    width: 100%;
    max-width: 76rem;
    margin-inline: auto;
}
.cps_reading {
    max-width: 66ch;
    margin-inline: auto;
}
.cps_pile, .cps_pile_center {
    display: block;
}
.cps_pile_center {
    text-align: center;
}
.cps_strip, .cps_strip_center {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}
.cps_strip_center {
    justify-content: center;
}
.cps_cells {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
    gap: 1.5rem;
}
.cps_showcase {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
.cps_menu {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
@media (min-width: 48rem) {
    .cps_showcase {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.5rem;
    }
    .cps_menu {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.5rem;
    }
}
.cps_items {
    list-style: none;
    padding: 0;
}
.cps_items > li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
}
.cps_items > li + li {
    margin-block-start: .75rem;
}
.cps_items > li > i {
    flex: 0 0 1.25rem;
    text-align: center;
    margin-top: .2em;
    color: #D4E137;
}

.cps_badge, .cps_badge_success, .cps_badge_warning, .cps_badge_error, .cps_badge_info {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #3A3F47 0%, #4A505A 100%);
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-weight: 700;
}
.cps_badge_success {
    background: #2ECC71;
    color: #FFF;
}
.cps_badge_warning {
    background: #F1C40F;
    color: #FFF;
}
.cps_badge_error {
    background: #E74C3C;
    color: #FFF;
}
.cps_badge_info {
    background: #3498DB;
    color: #FFF;
}

.cps_fold {
    background: #1A3B43;
    border: 1px solid #2A525D;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(4, 13, 15, 0.35), inset 0 1px 0 rgba(255,255,255,.08);
    transition: color 180ms, background-color 180ms, box-shadow 180ms, border-color 180ms, transform 180ms;
}
.cps_fold + .cps_fold {
    margin-block-start: 1rem;
}
.cps_fold[open] {
    border-color: #3A3F47;
}
.cps_fold_q {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
    cursor: pointer;
    list-style: none;
}
.cps_fold_q::-webkit-details-marker {
    display: none;
}
.cps_fold_q h3 {
    margin: 0;
    flex: 1 1 auto;
    min-width: 0;
}
.cps_fold_q::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    flex: 0 0 auto;
    color: #D4E137;
    transition: transform 200ms;
}
.cps_fold[open] .cps_fold_q::after {
    transform: rotate(180deg);
}
.cps_fold_a {
    margin: 0;
    padding: 0 2rem 2rem;
}
@media (max-width: 48rem) {
    .cps_fold_q {
        padding: 1.25rem;
    }
    .cps_fold_a {
        padding: 0 1.25rem 1.25rem;
    }
}

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

.cps_notice, .cps_notice_warning, .cps_notice_info, .cps_notice_success, .cps_notice_error {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 12px;
    background: #112A31;
    border: 1px solid #1C3D45;
    border-left: 4px solid #D4E137;
}
.cps_notice > i, .cps_notice_warning > i, .cps_notice_info > i, .cps_notice_success > i, .cps_notice_error > i {
    flex: 0 0 auto;
    margin-top: .2em;
    color: #D4E137;
}
.cps_notice_success {
    border-left-color: #2ECC71;
}
.cps_notice_warning {
    border-left-color: #F1C40F;
}
.cps_notice_error {
    border-left-color: #E74C3C;
}
.cps_notice_info {
    border-left-color: #3498DB;
}
.cps_notice_success > i {
    color: #2ECC71;
}
.cps_notice_warning > i {
    color: #F1C40F;
}
.cps_notice_error > i {
    color: #E74C3C;
}
.cps_notice_info > i {
    color: #3498DB;
}

.cps_appbar {
    background: #081C21;
    border-bottom: 1px solid #1C3D45;
    padding: .75rem 3%;
    position: sticky;
    top: 0;
    z-index: 100;
}
.cps_appbar_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.cps_appbar_brand {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: #FDFDFD;
}
.cps_appbar_brand img {
    border-radius: 6px;
}
.cps_appbar_brand strong {
    font-size: 16px;
    font-weight: 400;
}
.cps_appbar_actions {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.cps_sheet_wrap {
    background: #1A3B43;
    border: 1px solid #2A525D;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(4, 13, 15, 0.35), inset 0 1px 0 rgba(255,255,255,.08);
    overflow-x: auto;
    max-width: 100%;
}
.cps_sheet {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}
.cps_sheet th, .cps_sheet td {
    padding: 1rem;
    text-align: start;
    border-bottom: 1px solid #1C3D45;
    vertical-align: top;
}
.cps_sheet thead th {
    background: #1A3B43;
    color: #FDFDFD;
    font-weight: 600;
}
.cps_sheet tbody tr:last-child td {
    border-bottom: 0;
}
.cps_sheet td:first-child {
    color: #BDBDBD;
    font-weight: 600;
}

.cps_fine {
    font-size: 0.875rem;
}
.cps_quiet {
    color: #BDBDBD;
}
.cps_center {
    text-align: center;
}
.cps_shade_accent {
    color: #D4E137;
}
.cps_shade_success {
    color: #2ECC71;
}
.cps_shade_warning {
    color: #F1C40F;
}
.cps_shade_error {
    color: #E74C3C;
}
.cps_shade_info {
    color: #3498DB;
}

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

.cps_dock {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 1000;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 4.5rem;
    background: #112A31;
    border-top: 1px solid #1C3D45;
}
.cps_dock_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .25rem;
    flex: 1 1 0;
    padding: .5rem 0;
    font-size: 0.75rem;
    color: #BDBDBD;
}
.cps_dock_item i {
    font-size: 1.25rem;
}
.cps_dock_item:hover {
    color: #D4E137;
}

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

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

.cps_action, .cps_action_sm, .cps_action_full, .cps_action_outline {
    background: #D4E137;
    color: #000000;
    border-radius: 12px;
    min-height: 44px;
    font-weight: 700;
    box-shadow: 0 0 0 1px rgba(212, 225, 55, 0.35), 0 6px 18px rgba(212, 225, 55, 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 180ms, background-color 180ms, box-shadow 180ms, border-color 180ms, transform 180ms;
}
.cps_action:hover, .cps_action_sm:hover, .cps_action_full:hover, .cps_action_outline:hover {
    background: #B8C62F;
    box-shadow: 0 0 0 1px rgba(212, 225, 55, 0.5), 0 8px 26px rgba(212, 225, 55, 0.5);
}
.cps_action_sm {
    min-height: 36px;
    padding: 0 1rem;
    font-size: 0.875rem;
}
.cps_action_full {
    display: flex;
    width: 100%;
}
.cps_action_outline {
    background: transparent;
    background-image: none;
    color: #FDFDFD;
    border: 1px solid #2A525D;
    box-shadow: none;
}
.cps_action_outline:hover {
    background: transparent;
    border-color: #3A3F47;
    color: #FDFDFD;
    box-shadow: none;
}

.cps_gamecard {
    background: #1A3B43;
    border: 1px solid #2A525D;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(4, 13, 15, 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 180ms, background-color 180ms, box-shadow 180ms, border-color 180ms, transform 180ms;
}
.cps_gamecard:hover {
    border-color: #3A3F47;
    box-shadow: 0 0 0 1px rgba(212, 225, 55, 0.35), 0 6px 18px rgba(212, 225, 55, 0.35), inset 0 1px 0 rgba(255,255,255,.08);
}
.cps_gamecard_media {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.cps_gamecard_media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 200ms;
}
.cps_gamecard:hover .cps_gamecard_media img {
    transform: scale(1.04);
}
.cps_gamecard_play {
    position: absolute;
    bottom: .5rem;
    right: .5rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #D4E137;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 150ms;
}
.cps_gamecard:hover .cps_gamecard_play, .cps_gamecard:focus-visible .cps_gamecard_play {
    opacity: 1;
}
@media (hover: none) {
    .cps_gamecard_play {
        opacity: 1;
    }
}
.cps_gamecard {
    position: relative;
}
.cps_gamecard_name {
    position: absolute;
    inset: auto 0 0 0;
    padding: .6rem .75rem;
    background: linear-gradient(180deg, transparent 0%, rgba(8, 28, 33, 0.8) 100%);
}
.cps_gamecard_name h3 {
    margin: 0;
    font-size: 0.875rem;
    color: #FDFDFD;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media (min-width: 48rem) {
    .cps_gamecard_name h3 {
        white-space: normal;
    }
}

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