/* ============================================================
 * King Casino - adaptive-bbb93a-interface.css
 * Mobile-first canvas (320-430px). All custom classes use cb93a2- prefix.
 * Palette: #1B263B (dark bg) | #FF1493 (deep pink) | #FF91A4 (light pink) | #808080 (gray)
 * ============================================================ */

:root {
    --cb93a2-bg: #1B263B;
    --cb93a2-bg-deep: #121a29;
    --cb93a2-bg-soft: #243349;
    --cb93a2-bg-card: #1f2d44;
    --cb93a2-pink: #FF1493;
    --cb93a2-pink-soft: #FF91A4;
    --cb93a2-gray: #808080;
    --cb93a2-text: #f4f6fb;
    --cb93a2-text-dim: #c3ccda;
    --cb93a2-border: rgba(255, 20, 147, 0.22);
    --cb93a2-radius: 12px;
    --cb93a2-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    --cb93a2-header-h: 54px;
    --cb93a2-bnav-h: 58px;
}

* {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", system-ui, sans-serif;
    background: var(--cb93a2-bg);
    color: var(--cb93a2-text);
    line-height: 1.55;
    font-size: 15px;
    overflow-x: hidden;
}

/* Center the mobile canvas on wider screens (no desktop layout) */
.cb93a2-shell {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    min-height: 100vh;
    position: relative;
    background: linear-gradient(180deg, #1B263B 0%, #16202f 60%, #121a29 100%);
    box-shadow: 0 0 28px rgba(0, 0, 0, 0.45);
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: var(--cb93a2-pink-soft);
    text-decoration: none;
}

a:hover,
a:focus {
    color: #ffffff;
}

h1, h2, h3, h4 {
    margin: 0 0 8px;
    line-height: 1.3;
    font-weight: 700;
}

p {
    margin: 0 0 10px;
}

/* ============================================================
 * Header - banner-style top bar
 * ============================================================ */
.cb93a2-header {
    position: sticky;
    top: 0;
    z-index: 60;
    height: var(--cb93a2-header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    background: linear-gradient(90deg, #16202f 0%, #1f2d44 60%, #16202f 100%);
    border-bottom: 2px solid var(--cb93a2-pink);
    transition: box-shadow 0.25s ease;
}

.cb93a2-header-scrolled {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
}

.cb93a2-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.cb93a2-brand-logo {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: cover;
    border: 1.5px solid var(--cb93a2-pink);
    flex-shrink: 0;
}

.cb93a2-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    min-width: 0;
}

.cb93a2-brand-name {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.cb93a2-brand-tag {
    font-size: 10px;
    color: var(--cb93a2-pink-soft);
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.cb93a2-header-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.cb93a2-btn {
    min-height: 34px;
    padding: 6px 12px;
    border: none;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    color: #ffffff;
    background: var(--cb93a2-pink);
    transition: transform 0.16s ease, background 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
    line-height: 1;
}

.cb93a2-btn:hover {
    transform: scale(1.04);
}

.cb93a2-btn:active {
    transform: scale(0.95);
}

.cb93a2-btn-ghost {
    background: transparent;
    border: 1.5px solid var(--cb93a2-pink-soft);
    color: var(--cb93a2-pink-soft);
}

.cb93a2-menu-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--cb93a2-bg-soft);
    border: 1px solid var(--cb93a2-border);
    color: var(--cb93a2-text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-direction: column;
    gap: 3px;
    transition: background 0.2s ease;
}

.cb93a2-menu-btn span {
    display: block;
    width: 14px;
    height: 1.8px;
    background: var(--cb93a2-pink-soft);
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.cb93a2-menu-btn-active span:nth-child(1) {
    transform: translateY(4.8px) rotate(45deg);
}

.cb93a2-menu-btn-active span:nth-child(2) {
    opacity: 0;
}

.cb93a2-menu-btn-active span:nth-child(3) {
    transform: translateY(-4.8px) rotate(-45deg);
}

/* ============================================================
 * Expanded navigation menu (drops down from header)
 * ============================================================ */
.cb93a2-menu {
    position: absolute;
    top: var(--cb93a2-header-h);
    left: 0;
    right: 0;
    z-index: 55;
    background: var(--cb93a2-bg-deep);
    border-bottom: 2px solid var(--cb93a2-pink);
    padding: 8px 10px 14px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.28s ease, opacity 0.22s ease, padding 0.22s ease;
}

.cb93a2-menu-open {
    max-height: 520px;
    opacity: 1;
    padding: 10px 10px 16px;
}

.cb93a2-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.cb93a2-menu-link {
    display: flex;
    flex-direction: column;
    padding: 9px 10px;
    background: var(--cb93a2-bg-soft);
    border: 1px solid var(--cb93a2-border);
    border-radius: 10px;
    color: var(--cb93a2-text);
    font-size: 12.5px;
    font-weight: 600;
    min-height: 44px;
    justify-content: center;
}

.cb93a2-menu-link:hover,
.cb93a2-menu-link:focus {
    background: var(--cb93a2-pink);
    color: #ffffff;
}

.cb93a2-menu-link small {
    display: block;
    color: var(--cb93a2-pink-soft);
    font-size: 10px;
    font-weight: 400;
    margin-top: 2px;
}

.cb93a2-menu-link:hover small,
.cb93a2-menu-link:focus small {
    color: #ffffff;
}

/* ============================================================
 * Layout containers
 * ============================================================ */
.cb93a2-main {
    padding: 0 0 calc(var(--cb93a2-bnav-h) + 28px);
}

.cb93a2-section {
    padding: 22px 12px 6px;
}

.cb93a2-section-tight {
    padding: 14px 12px 4px;
}

.cb93a2-eyebrow {
    display: inline-block;
    font-size: 10.5px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--cb93a2-pink-soft);
    margin-bottom: 6px;
    font-weight: 700;
}

.cb93a2-h1 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 8px;
}

.cb93a2-h2 {
    font-size: 19px;
    color: #ffffff;
    margin-bottom: 8px;
    padding-left: 10px;
    border-left: 3px solid var(--cb93a2-pink);
}

.cb93a2-h3 {
    font-size: 15.5px;
    color: var(--cb93a2-pink-soft);
    margin: 10px 0 4px;
}

.cb93a2-lead {
    color: var(--cb93a2-text-dim);
    font-size: 14px;
}

/* ============================================================
 * Hero carousel
 * ============================================================ */
.cb93a2-hero {
    position: relative;
    padding: 12px 12px 4px;
}

.cb93a2-carousel {
    position: relative;
    border-radius: var(--cb93a2-radius);
    overflow: hidden;
    box-shadow: var(--cb93a2-shadow);
    background: var(--cb93a2-bg-deep);
}

.cb93a2-slide {
    display: none;
    position: relative;
}

.cb93a2-slide-active {
    display: block;
}

.cb93a2-slide a {
    display: block;
}

.cb93a2-slide img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.cb93a2-slide-cap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px 12px;
    background: linear-gradient(0deg, rgba(18, 26, 41, 0.92) 0%, rgba(18, 26, 41, 0) 100%);
    color: #ffffff;
}

.cb93a2-slide-cap strong {
    display: block;
    font-size: 15px;
    color: var(--cb93a2-pink-soft);
}

.cb93a2-slide-cap span {
    font-size: 11.5px;
    color: var(--cb93a2-text-dim);
}

.cb93a2-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 8px 0 2px;
}

.cb93a2-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease, transform 0.2s ease;
}

.cb93a2-dot-active {
    background: var(--cb93a2-pink);
    transform: scale(1.35);
}

/* Hero CTA strip */
.cb93a2-cta-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px 12px 0;
}

.cb93a2-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    border-radius: 10px;
    min-height: 56px;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    transition: transform 0.16s ease;
}

.cb93a2-cta:hover {
    transform: scale(1.03);
}

.cb93a2-cta-primary {
    background: linear-gradient(90deg, var(--cb93a2-pink) 0%, var(--cb93a2-pink-soft) 100%);
    color: #ffffff;
}

.cb93a2-cta-secondary {
    background: var(--cb93a2-bg-soft);
    border: 1.5px solid var(--cb93a2-pink);
    color: #ffffff;
}

.cb93a2-cta small {
    display: block;
    font-size: 10px;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 2px;
}

/* ============================================================
 * Category chip strip (jump anchors)
 * ============================================================ */
.cb93a2-chips {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 14px 12px 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.cb93a2-chips::-webkit-scrollbar {
    display: none;
}

.cb93a2-chip {
    flex-shrink: 0;
    padding: 7px 14px;
    border-radius: 18px;
    background: var(--cb93a2-bg-soft);
    border: 1px solid var(--cb93a2-border);
    color: var(--cb93a2-text-dim);
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease, transform 0.16s ease;
}

.cb93a2-chip:hover,
.cb93a2-chip:focus {
    background: var(--cb93a2-pink);
    color: #ffffff;
    transform: scale(1.04);
}

/* ============================================================
 * Game section + grid
 * ============================================================ */
.cb93a2-cat-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.cb93a2-cat-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    color: #ffffff;
    font-weight: 700;
}

.cb93a2-cat-title::before {
    content: "";
    width: 4px;
    height: 18px;
    background: var(--cb93a2-pink);
    border-radius: 2px;
    display: inline-block;
}

.cb93a2-cat-note {
    font-size: 11px;
    color: var(--cb93a2-pink-soft);
    font-weight: 600;
}

.cb93a2-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.cb93a2-card {
    background: var(--cb93a2-bg-card);
    border: 1px solid var(--cb93a2-border);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    display: block;
    color: var(--cb93a2-text);
}

.cb93a2-card:hover {
    transform: translateY(-2px);
    border-color: var(--cb93a2-pink);
    box-shadow: 0 6px 14px rgba(255, 20, 147, 0.18);
}

.cb93a2-card:active,
.cb93a2-card-press {
    transform: scale(0.93);
}

.cb93a2-card-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: var(--cb93a2-bg-deep);
}

.cb93a2-card-name {
    font-size: 10.5px;
    text-align: center;
    padding: 4px 3px 5px;
    color: var(--cb93a2-text-dim);
    line-height: 1.2;
    min-height: 28px;
    word-break: break-word;
}

/* Highlighted ribbon for featured cards */
.cb93a2-card-ribbon {
    position: absolute;
    top: 4px;
    left: 4px;
    background: var(--cb93a2-pink);
    color: #ffffff;
    font-size: 8.5px;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 4px;
    letter-spacing: 0.4px;
}

/* ============================================================
 * Content modules (What is / Features / FAQs / Tricks / Reviews)
 * ============================================================ */
.cb93a2-card-block {
    background: var(--cb93a2-bg-soft);
    border: 1px solid var(--cb93a2-border);
    border-radius: var(--cb93a2-radius);
    padding: 14px;
    margin-bottom: 12px;
}

.cb93a2-prose {
    color: var(--cb93a2-text-dim);
    font-size: 14px;
}

.cb93a2-prose p {
    margin-bottom: 10px;
}

.cb93a2-prose a {
    color: var(--cb93a2-pink-soft);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(255, 145, 164, 0.4);
    text-underline-offset: 2px;
}

/* Feature list */
.cb93a2-feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cb93a2-feature-item {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.cb93a2-feature-item:last-child {
    border-bottom: none;
}

.cb93a2-feature-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--cb93a2-pink), var(--cb93a2-pink-soft));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 800;
    font-size: 14px;
}

.cb93a2-feature-body h4 {
    font-size: 13.5px;
    color: #ffffff;
    margin: 0 0 2px;
}

.cb93a2-feature-body p {
    font-size: 12.5px;
    color: var(--cb93a2-text-dim);
    margin: 0;
}

/* FAQ accordion */
.cb93a2-faq {
    margin-top: 6px;
}

.cb93a2-faq-item {
    background: var(--cb93a2-bg-card);
    border: 1px solid var(--cb93a2-border);
    border-radius: 10px;
    margin-bottom: 8px;
    overflow: hidden;
}

.cb93a2-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 12px;
    cursor: pointer;
    font-size: 13.5px;
    font-weight: 600;
    color: #ffffff;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
}

.cb93a2-faq-q::after {
    content: "+";
    font-size: 18px;
    color: var(--cb93a2-pink-soft);
    transition: transform 0.22s ease;
    flex-shrink: 0;
    margin-left: 8px;
}

.cb93a2-faq-open .cb93a2-faq-q::after {
    transform: rotate(45deg);
}

.cb93a2-faq-a {
    max-height: 0;
    overflow: hidden;
    padding: 0 12px;
    color: var(--cb93a2-text-dim);
    font-size: 13px;
    transition: max-height 0.26s ease, padding 0.26s ease;
}

.cb93a2-faq-open .cb93a2-faq-a {
    max-height: 320px;
    padding: 0 12px 12px;
}

/* Tips grid */
.cb93a2-tips {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 8px;
}

.cb93a2-tip {
    background: var(--cb93a2-bg-card);
    border: 1px solid var(--cb93a2-border);
    border-radius: 10px;
    padding: 10px;
}

.cb93a2-tip-num {
    display: inline-block;
    width: 22px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    border-radius: 50%;
    background: var(--cb93a2-pink);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 4px;
}

.cb93a2-tip h4 {
    font-size: 12.5px;
    color: #ffffff;
    margin: 0 0 3px;
}

.cb93a2-tip p {
    font-size: 11.5px;
    color: var(--cb93a2-text-dim);
    margin: 0;
}

/* Testimonials */
.cb93a2-reviews {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 8px;
}

.cb93a2-review {
    background: var(--cb93a2-bg-card);
    border-left: 3px solid var(--cb93a2-pink);
    border-radius: 10px;
    padding: 12px;
}

.cb93a2-review-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.cb93a2-review-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cb93a2-pink), var(--cb93a2-pink-soft));
    color: #ffffff;
    font-weight: 800;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cb93a2-review-name {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
}

.cb93a2-review-meta {
    font-size: 10.5px;
    color: var(--cb93a2-gray);
}

.cb93a2-review-text {
    font-size: 12.8px;
    color: var(--cb93a2-text-dim);
    margin: 0;
}

.cb93a2-stars {
    color: var(--cb93a2-pink-soft);
    font-size: 12px;
    letter-spacing: 1px;
}

/* Direct answer highlight */
.cb93a2-direct {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.18) 0%, rgba(255, 145, 164, 0.08) 100%);
    border: 1px solid var(--cb93a2-pink);
    border-radius: var(--cb93a2-radius);
    padding: 14px;
}

.cb93a2-direct strong {
    color: var(--cb93a2-pink-soft);
}

/* ============================================================
 * Extended footer (promotions > brand > directory > disclaimer)
 * ============================================================ */
.cb93a2-ext-footer {
    margin-top: 18px;
    padding: 18px 12px 8px;
    background: var(--cb93a2-bg-deep);
    border-top: 2px solid var(--cb93a2-pink);
}

.cb93a2-ext-block {
    margin-bottom: 16px;
}

.cb93a2-ext-title {
    font-size: 13px;
    color: var(--cb93a2-pink-soft);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 700;
}

.cb93a2-promo-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.cb93a2-promo-link {
    display: flex;
    flex-direction: column;
    padding: 10px;
    border-radius: 10px;
    background: var(--cb93a2-bg-soft);
    border: 1px solid var(--cb93a2-border);
    color: #ffffff;
    font-size: 12.5px;
    font-weight: 600;
    min-height: 44px;
    justify-content: center;
    cursor: pointer;
}

.cb93a2-promo-link:hover {
    background: var(--cb93a2-pink);
    color: #ffffff;
}

.cb93a2-promo-link small {
    color: var(--cb93a2-pink-soft);
    font-size: 10px;
    font-weight: 400;
    margin-top: 1px;
}

.cb93a2-promo-link:hover small {
    color: #ffffff;
}

.cb93a2-brand-blurb {
    font-size: 12.5px;
    color: var(--cb93a2-text-dim);
    line-height: 1.5;
}

.cb93a2-directory {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px 10px;
}

.cb93a2-directory a {
    font-size: 12px;
    color: var(--cb93a2-text-dim);
    padding: 4px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.07);
}

.cb93a2-directory a:hover {
    color: var(--cb93a2-pink-soft);
}

.cb93a2-disclaimer {
    font-size: 11px;
    color: var(--cb93a2-gray);
    line-height: 1.55;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 10px;
}

.cb93a2-copy {
    font-size: 10.5px;
    color: var(--cb93a2-gray);
    text-align: center;
    padding: 8px 0 4px;
}

/* ============================================================
 * Mobile bottom navigation (compact icon bar, 5 roles)
 * Line icons + filled active state, quick zoom feedback
 * ============================================================ */
.cb93a2-bnav {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 100%;
    max-width: 480px;
    height: var(--cb93a2-bnav-h);
    background: linear-gradient(180deg, #1f2d44 0%, #121a29 100%);
    border-top: 2px solid var(--cb93a2-pink);
    display: flex;
    align-items: stretch;
    z-index: 70;
    box-shadow: 0 -4px 14px rgba(0, 0, 0, 0.45);
}

.cb93a2-bnav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    color: var(--cb93a2-text-dim);
    font-size: 10px;
    text-decoration: none;
    padding: 4px 2px;
    border: none;
    background: transparent;
    cursor: pointer;
    min-height: 44px;
    transition: transform 0.16s ease, color 0.18s ease;
    -webkit-tap-highlight-color: transparent;
}

.cb93a2-bnav-item:hover {
    transform: scale(1.08);
}

.cb93a2-bnav-item:active {
    transform: scale(0.92);
}

.cb93a2-bnav-icon {
    width: 22px;
    height: 22px;
    color: var(--cb93a2-text-dim);
    transition: color 0.18s ease;
}

.cb93a2-bnav-label {
    font-size: 9.5px;
    letter-spacing: 0.2px;
    font-weight: 600;
}

/* Active state = banner emphasis: filled icon + pink text */
.cb93a2-bnav-active {
    color: var(--cb93a2-pink);
}

.cb93a2-bnav-active .cb93a2-bnav-icon {
    color: var(--cb93a2-pink);
    filter: drop-shadow(0 0 5px rgba(255, 20, 147, 0.6));
}

.cb93a2-bnav-active .cb93a2-bnav-label {
    color: var(--cb93a2-pink);
}

/* Center promo button emphasis */
.cb93a2-bnav-item-promo {
    position: relative;
}

.cb93a2-bnav-item-promo .cb93a2-bnav-icon {
    color: var(--cb93a2-pink-soft);
}

.cb93a2-bnav-badge {
    position: absolute;
    top: 4px;
    right: 50%;
    transform: translateX(20px);
    background: var(--cb93a2-pink);
    color: #ffffff;
    font-size: 8px;
    font-weight: 800;
    padding: 1px 4px;
    border-radius: 6px;
    letter-spacing: 0.3px;
}

/* ============================================================
 * Utility
 * ============================================================ */
.cb93a2-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================================
 * Slight tweaks for 375-430px (keep 4 columns, breathe a bit)
 * ============================================================ */
@media (min-width: 360px) {
    .cb93a2-grid {
        gap: 10px;
    }
    .cb93a2-card-name {
        font-size: 11px;
    }
}

@media (min-width: 414px) {
    body {
        font-size: 15.5px;
    }
    .cb93a2-h1 {
        font-size: 26px;
    }
    .cb93a2-h2 {
        font-size: 20px;
    }
    .cb93a2-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    .cb93a2-promo-row {
        grid-template-columns: repeat(2, 1fr);
    }
}
