/* 55bet.homes - visual-12bc.css
   Mobile-first gaming portal styles.
   All custom classes use the w12bc- prefix.
   Palette: #0F0F23 | #D3D3D3 | #7CFC00 | #66CDAA | #00FF00 | #5D5D5D
*/

:root {
    --w12bc-bg: #0F0F23;
    --w12bc-bg-2: #161638;
    --w12bc-bg-3: #1d1d4a;
    --w12bc-card: #1a1a3c;
    --w12bc-line: #2a2a55;
    --w12bc-text: #D3D3D3;
    --w12bc-muted: #5D5D5D;
    --w12bc-accent: #7CFC00;
    --w12bc-accent-2: #66CDAA;
    --w12bc-accent-3: #00FF00;
    --w12bc-danger: #ff4d6d;
    --w12bc-gold: #ffd24a;
    --w12bc-radius: 14px;
    --w12bc-radius-sm: 10px;
    --w12bc-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
    --w12bc-header-h: 58px;
    --w12bc-nav-h: 64px;
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    background: var(--w12bc-bg);
    color: var(--w12bc-text);
    font-family: "Hind Siliguri", "Noto Sans Bengali", "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.65;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body.w12bc-no-scroll { overflow: hidden; }

a { color: var(--w12bc-accent-2); text-decoration: none; }
a:hover, a:focus { color: var(--w12bc-accent-3); text-decoration: underline; }
img { max-width: 100%; display: block; }

.w12bc-wrap {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 0 12px;
}

/* ---------- Header ---------- */
.w12bc-header {
    position: sticky;
    top: 0;
    z-index: 50;
    height: var(--w12bc-header-h);
    background: linear-gradient(180deg, #131334 0%, #0F0F23 100%);
    border-bottom: 1px solid var(--w12bc-line);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}
.w12bc-header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
}
.w12bc-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
}
.w12bc-brand img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid var(--w12bc-line);
    background: #fff;
    flex-shrink: 0;
}
.w12bc-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    min-width: 0;
}
.w12bc-brand-name {
    color: #fff;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 0.4px;
}
.w12bc-brand-name b { color: var(--w12bc-accent); }
.w12bc-brand-tag {
    color: var(--w12bc-muted);
    font-size: 11px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.w12bc-header-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}
.w12bc-btn {
    -webkit-appearance: none;
    appearance: none;
    border: 0;
    border-radius: 999px;
    padding: 9px 14px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
    font-family: inherit;
    line-height: 1;
}
.w12bc-btn:active { transform: scale(0.96); }
.w12bc-btn-login {
    background: transparent;
    color: var(--w12bc-text);
    border: 1px solid var(--w12bc-line);
}
.w12bc-btn-register {
    background: linear-gradient(135deg, var(--w12bc-accent) 0%, var(--w12bc-accent-3) 100%);
    color: #0a1a00;
    box-shadow: 0 4px 14px rgba(124, 252, 0, 0.35);
}
.w12bc-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--w12bc-bg-3);
    color: var(--w12bc-text);
    border: 1px solid var(--w12bc-line);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.w12bc-icon-btn svg { width: 20px; height: 20px; }

/* ---------- Mobile slide menu ---------- */
.w12bc-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 82%;
    max-width: 340px;
    background: var(--w12bc-bg-2);
    border-left: 1px solid var(--w12bc-line);
    transform: translateX(105%);
    transition: transform 0.28s ease;
    z-index: 90;
    overflow-y: auto;
    padding: 16px 18px 80px;
}
.w12bc-mobile-menu.w12bc-menu-open { transform: translateX(0); }
.w12bc-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 85;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}
.w12bc-menu-overlay.w12bc-menu-open { opacity: 1; pointer-events: auto; }
.w12bc-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.w12bc-menu-head h3 { margin: 0; font-size: 16px; color: #fff; }
.w12bc-menu-close {
    background: var(--w12bc-bg-3);
    border: 1px solid var(--w12bc-line);
    color: var(--w12bc-text);
    width: 34px; height: 34px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
}
.w12bc-menu-cta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}
.w12bc-menu-cta .w12bc-btn { width: 100%; padding: 12px; font-size: 14px; text-align: center; }
.w12bc-menu-list { list-style: none; padding: 0; margin: 0; }
.w12bc-menu-list li { border-bottom: 1px solid var(--w12bc-line); }
.w12bc-menu-list a {
    display: block;
    padding: 12px 4px;
    color: var(--w12bc-text);
    font-weight: 600;
    font-size: 14px;
}
.w12bc-menu-list a:hover { color: var(--w12bc-accent); text-decoration: none; padding-left: 8px; }

/* ---------- Hero carousel ---------- */
.w12bc-hero {
    position: relative;
    margin: 12px 0 16px;
    border-radius: var(--w12bc-radius);
    overflow: hidden;
    box-shadow: var(--w12bc-shadow);
    background: var(--w12bc-bg-2);
}
.w12bc-hero-track { position: relative; }
.w12bc-hero-slide {
    display: none;
    position: relative;
    min-height: 170px;
}
.w12bc-hero-slide.w12bc-slide-active { display: block; }
.w12bc-hero-slide img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}
.w12bc-hero-caption {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 14px;
    background: linear-gradient(0deg, rgba(15,15,35,0.92) 0%, rgba(15,15,35,0) 100%);
    color: #fff;
}
.w12bc-hero-caption h2 {
    margin: 0 0 6px;
    font-size: 19px;
    color: #fff;
    line-height: 1.3;
}
.w12bc-hero-caption p {
    margin: 0 0 10px;
    font-size: 13px;
    color: var(--w12bc-text);
}
.w12bc-hero-dots {
    position: absolute;
    bottom: 8px;
    right: 12px;
    display: flex;
    gap: 6px;
}
.w12bc-hero-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(211, 211, 211, 0.4);
    border: 0; padding: 0; cursor: pointer;
}
.w12bc-hero-dot.w12bc-dot-active { background: var(--w12bc-accent); }
.w12bc-hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15, 15, 35, 0.7);
    color: #fff;
    border: 1px solid var(--w12bc-line);
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    font-size: 18px; line-height: 1;
}
.w12bc-hero-arrow.w12bc-prev { left: 8px; }
.w12bc-hero-arrow.w12bc-next { right: 8px; }

/* ---------- Section title ---------- */
.w12bc-section { margin: 22px 0 6px; }
.w12bc-section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 12px;
    font-size: 18px;
    color: #fff;
    font-weight: 800;
}
.w12bc-section-title::before {
    content: "";
    display: inline-block;
    width: 4px; height: 18px;
    background: var(--w12bc-accent);
    border-radius: 2px;
    margin-right: 8px;
    vertical-align: -3px;
}
.w12bc-section-title a {
    font-size: 12px;
    color: var(--w12bc-accent-2);
    font-weight: 600;
}

/* ---------- Quick link tiles ---------- */
.w12bc-tiles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.w12bc-tile {
    background: var(--w12bc-card);
    border: 1px solid var(--w12bc-line);
    border-radius: var(--w12bc-radius-sm);
    padding: 10px 6px;
    text-align: center;
    color: var(--w12bc-text);
    transition: transform 0.15s ease, border-color 0.15s ease;
}
.w12bc-tile:active { transform: scale(0.96); }
.w12bc-tile svg { width: 24px; height: 24px; color: var(--w12bc-accent); margin: 0 auto 4px; }
.w12bc-tile span { display: block; font-size: 11px; font-weight: 600; }

/* ---------- Category tabs ---------- */
.w12bc-cat-group { margin-bottom: 6px; }
.w12bc-cat-tabs {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.w12bc-cat-tabs::-webkit-scrollbar { display: none; }
.w12bc-cat-tab {
    flex: 0 0 auto;
    background: var(--w12bc-card);
    color: var(--w12bc-text);
    border: 1px solid var(--w12bc-line);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    font-family: inherit;
}
.w12bc-cat-tab.w12bc-cat-active {
    background: linear-gradient(135deg, var(--w12bc-accent) 0%, var(--w12bc-accent-3) 100%);
    color: #0a1a00;
    border-color: transparent;
}

/* ---------- Game grid ---------- */
.w12bc-panel { display: none; }
.w12bc-panel.w12bc-panel-active { display: block; }
.w12bc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
@media (min-width: 375px) {
    .w12bc-grid { grid-template-columns: repeat(5, 1fr); }
    .w12bc-tiles { grid-template-columns: repeat(4, 1fr); }
}
.w12bc-game {
    background: var(--w12bc-card);
    border: 1px solid var(--w12bc-line);
    border-radius: var(--w12bc-radius-sm);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    position: relative;
}
.w12bc-game:active { transform: scale(0.96); }
.w12bc-game-img {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #000;
    overflow: hidden;
}
.w12bc-game-img img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.w12bc-game-tag {
    position: absolute;
    top: 4px; left: 4px;
    background: rgba(255, 77, 109, 0.92);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.4px;
}
.w12bc-game-tag.w12bc-tag-hot { background: var(--w12bc-danger); }
.w12bc-game-tag.w12bc-tag-new { background: var(--w12bc-accent); color: #0a1a00; }
.w12bc-game-play {
    position: absolute;
    inset: 0;
    background: rgba(15, 15, 35, 0.55);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.w12bc-game:hover .w12bc-game-play { opacity: 1; }
.w12bc-game-play span {
    background: var(--w12bc-accent);
    color: #0a1a00;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
}
.w12bc-game-name {
    padding: 5px 6px 7px;
    font-size: 11px;
    color: var(--w12bc-text);
    text-align: center;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 600;
}

/* ---------- Promotion / feature cards ---------- */
.w12bc-promo-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.w12bc-promo-card {
    background: linear-gradient(135deg, #1d1d4a 0%, #1a1a3c 100%);
    border: 1px solid var(--w12bc-line);
    border-radius: var(--w12bc-radius);
    padding: 14px;
    position: relative;
    overflow: hidden;
}
.w12bc-promo-card::after {
    content: "";
    position: absolute;
    right: -20px; top: -20px;
    width: 80px; height: 80px;
    background: radial-gradient(circle, rgba(124, 252, 0, 0.25) 0%, transparent 70%);
    border-radius: 50%;
}
.w12bc-promo-card h4 {
    margin: 0 0 4px;
    color: #fff;
    font-size: 15px;
}
.w12bc-promo-card p {
    margin: 0 0 10px;
    color: var(--w12bc-text);
    font-size: 12px;
    line-height: 1.5;
}
.w12bc-promo-card .w12bc-btn { padding: 8px 14px; font-size: 12px; }

/* ---------- SEO content section ---------- */
.w12bc-seo {
    background: var(--w12bc-bg-2);
    border: 1px solid var(--w12bc-line);
    border-radius: var(--w12bc-radius);
    padding: 16px;
    margin: 18px 0;
}
.w12bc-seo h2 {
    color: #fff;
    font-size: 17px;
    margin: 0 0 10px;
}
.w12bc-seo h3 {
    color: var(--w12bc-accent-2);
    font-size: 14px;
    margin: 14px 0 6px;
}
.w12bc-seo p {
    color: var(--w12bc-text);
    font-size: 13.5px;
    margin: 0 0 10px;
    line-height: 1.75;
}
.w12bc-seo ul { padding-left: 18px; margin: 0 0 10px; }
.w12bc-seo li { font-size: 13px; margin-bottom: 4px; color: var(--w12bc-text); }

/* ---------- FAQ ---------- */
.w12bc-faq { margin: 18px 0; }
.w12bc-faq-item {
    background: var(--w12bc-bg-2);
    border: 1px solid var(--w12bc-line);
    border-radius: var(--w12bc-radius-sm);
    margin-bottom: 8px;
    overflow: hidden;
}
.w12bc-faq-q {
    width: 100%;
    background: transparent;
    border: 0;
    color: #fff;
    text-align: left;
    padding: 13px 14px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-family: inherit;
}
.w12bc-faq-q .w12bc-faq-icon {
    flex-shrink: 0;
    color: var(--w12bc-accent);
    font-size: 18px;
    transition: transform 0.2s ease;
}
.w12bc-faq-item.w12bc-faq-open .w12bc-faq-icon { transform: rotate(45deg); }
.w12bc-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 14px;
    color: var(--w12bc-text);
    font-size: 13px;
    line-height: 1.7;
}
.w12bc-faq-item.w12bc-faq-open .w12bc-faq-a {
    max-height: 500px;
    padding: 0 14px 14px;
}

/* ---------- Footer ---------- */
.w12bc-footer {
    background: var(--w12bc-bg-2);
    border-top: 1px solid var(--w12bc-line);
    padding: 22px 0 calc(var(--w12bc-nav-h) + 24px);
    margin-top: 24px;
}
.w12bc-footer-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.w12bc-footer h5 {
    color: #fff;
    margin: 0 0 8px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.w12bc-footer ul { list-style: none; padding: 0; margin: 0; }
.w12bc-footer li { margin-bottom: 5px; }
.w12bc-footer a { color: var(--w12bc-text); font-size: 12.5px; }
.w12bc-footer a:hover { color: var(--w12bc-accent); }
.w12bc-footer-bottom {
    border-top: 1px solid var(--w12bc-line);
    padding-top: 14px;
    text-align: center;
    color: var(--w12bc-muted);
    font-size: 11.5px;
}
.w12bc-footer-bottom p { margin: 4px 0; }
.w12bc-pay-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin: 10px 0;
}
.w12bc-pay-chip {
    background: var(--w12bc-card);
    border: 1px solid var(--w12bc-line);
    border-radius: 6px;
    padding: 4px 8px;
    font-size: 10.5px;
    color: var(--w12bc-text);
}

/* ---------- Bottom nav ---------- */
.w12bc-bottom-nav {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    height: var(--w12bc-nav-h);
    background: linear-gradient(180deg, #131334 0%, #0b0b1e 100%);
    border-top: 1px solid var(--w12bc-line);
    display: flex;
    z-index: 60;
    max-width: 480px;
    margin: 0 auto;
    box-shadow: 0 -3px 14px rgba(0, 0, 0, 0.45);
}
.w12bc-nav-btn {
    flex: 1;
    background: transparent;
    border: 0;
    color: var(--w12bc-muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 6px 2px;
    cursor: pointer;
    font-family: inherit;
    font-size: 10.5px;
    font-weight: 700;
    position: relative;
    transition: color 0.2s ease;
}
.w12bc-nav-btn svg { width: 22px; height: 22px; }
.w12bc-nav-btn.w12bc-nav-current {
    color: var(--w12bc-accent);
}
.w12bc-nav-btn.w12bc-nav-current::before {
    content: "";
    position: absolute;
    top: 0; left: 30%; right: 30%;
    height: 3px;
    background: var(--w12bc-accent);
    border-radius: 0 0 3px 3px;
}
.w12bc-nav-btn.w12bc-nav-promo {
    color: #fff;
}
.w12bc-nav-btn.w12bc-nav-promo svg { color: var(--w12bc-gold); }

/* Center floating promo button */
.w12bc-nav-btn.w12bc-nav-center {
    position: relative;
}
.w12bc-nav-btn.w12bc-nav-center .w12bc-nav-circle {
    width: 46px; height: 46px;
    background: linear-gradient(135deg, var(--w12bc-accent) 0%, var(--w12bc-accent-3) 100%);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 14px rgba(124, 252, 0, 0.5);
    margin-top: -18px;
    border: 3px solid #0b0b1e;
}
.w12bc-nav-btn.w12bc-nav-center .w12bc-nav-circle svg { width: 22px; height: 22px; color: #0a1a00; }
.w12bc-nav-btn.w12bc-nav-center span { margin-top: 2px; }

/* ---------- Back to top ---------- */
.w12bc-top-btn {
    position: fixed;
    right: 14px;
    bottom: calc(var(--w12bc-nav-h) + 14px);
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--w12bc-bg-3);
    border: 1px solid var(--w12bc-line);
    color: var(--w12bc-accent);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 55;
}
.w12bc-top-btn.w12bc-top-visible { opacity: 1; pointer-events: auto; }
.w12bc-top-btn svg { width: 20px; height: 20px; }

/* ---------- Marquee notice ---------- */
.w12bc-notice {
    background: linear-gradient(90deg, #1a1a3c 0%, #1d1d4a 100%);
    border: 1px solid var(--w12bc-line);
    border-radius: 999px;
    padding: 6px 12px;
    margin: 12px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    overflow: hidden;
    font-size: 12px;
    color: var(--w12bc-text);
}
.w12bc-notice-badge {
    background: var(--w12bc-danger);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 999px;
    flex-shrink: 0;
}
.w12bc-notice-text { flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ---------- Trust strip ---------- */
.w12bc-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 12px 0;
}
.w12bc-trust-item {
    background: var(--w12bc-card);
    border: 1px solid var(--w12bc-line);
    border-radius: var(--w12bc-radius-sm);
    padding: 10px 6px;
    text-align: center;
}
.w12bc-trust-item b {
    display: block;
    color: var(--w12bc-accent);
    font-size: 16px;
    margin-bottom: 2px;
}
.w12bc-trust-item span { color: var(--w12bc-text); font-size: 10.5px; }

/* ---------- Helper utilities ---------- */
.w12bc-hide-mobile { display: none; }
.w12bc-text-center { text-align: center; }
.w12bc-mt-12 { margin-top: 12px; }

/* Wide screens: keep mobile canvas centered */
@media (min-width: 768px) {
    body { background: #06061a; }
    .w12bc-header, .w12bc-bottom-nav { max-width: 480px; margin-left: auto; margin-right: auto; left: 0; right: 0; }
    .w12bc-wrap { box-shadow: 0 0 40px rgba(0,0,0,0.6); min-height: 100vh; }
}

/* ===== Mobile breakpoint max-width 430px ===== */
@media (max-width: 430px) {
    html, body { font-size: 14px; }
    .w12bc-wrap { padding: 0 10px; }
    .w12bc-header { height: 54px; }
    .w12bc-header-inner { padding: 0 10px; gap: 6px; }
    .w12bc-brand img { width: 32px; height: 32px; }
    .w12bc-brand-name { font-size: 16px; }
    .w12bc-brand-tag { font-size: 10px; }
    .w12bc-btn { padding: 8px 12px; font-size: 12px; }
    .w12bc-icon-btn { width: 34px; height: 34px; }
    .w12bc-icon-btn svg { width: 18px; height: 18px; }
    .w12bc-hero { margin: 10px 0 14px; }
    .w12bc-hero-slide { min-height: 150px; }
    .w12bc-hero-slide img { height: 165px; }
    .w12bc-hero-caption { padding: 12px; }
    .w12bc-hero-caption h2 { font-size: 17px; }
    .w12bc-hero-caption p { font-size: 12px; }
    .w12bc-hero-arrow { width: 28px; height: 28px; font-size: 16px; }
    .w12bc-section-title { font-size: 16px; }
    .w12bc-grid { grid-template-columns: repeat(4, 1fr); gap: 6px; }
    .w12bc-game-name { font-size: 10px; padding: 4px 4px 6px; }
    .w12bc-game-tag { font-size: 8px; padding: 2px 5px; }
    .w12bc-cat-tab { padding: 7px 12px; font-size: 12px; }
    .w12bc-tile { padding: 8px 4px; }
    .w12bc-tile svg { width: 22px; height: 22px; }
    .w12bc-tile span { font-size: 10px; }
    .w12bc-promo-row { gap: 8px; }
    .w12bc-promo-card { padding: 12px; }
    .w12bc-promo-card h4 { font-size: 14px; }
    .w12bc-promo-card p { font-size: 11px; }
    .w12bc-seo { padding: 14px; }
    .w12bc-seo h2 { font-size: 16px; }
    .w12bc-seo p { font-size: 13px; }
    .w12bc-faq-q { padding: 12px; font-size: 13px; }
    .w12bc-faq-a { font-size: 12px; }
    .w12bc-bottom-nav { height: 58px; }
    .w12bc-nav-btn { font-size: 9.5px; padding: 5px 2px; }
    .w12bc-nav-btn svg { width: 20px; height: 20px; }
    .w12bc-nav-btn.w12bc-nav-center .w12bc-nav-circle { width: 42px; height: 42px; }
    .w12bc-top-btn { width: 36px; height: 36px; bottom: calc(var(--w12bc-nav-h) + 10px); right: 10px; }
    .w12bc-trust-item b { font-size: 14px; }
    .w12bc-trust-item span { font-size: 9.5px; }
    .w12bc-footer { padding: 18px 0 calc(var(--w12bc-nav-h) + 20px); }
    .w12bc-footer-cols { gap: 12px; }
}
