/*!
 * be9.click - 56dc-palette.css
 * Mobile-first (320-430px) styles for be9.click.
 * All custom classes and CSS variables use the vcd7- prefix.
 * Color palette: #1B263B (deep) | #FA8072 (coral) | #FF0000 (red) | #FF69B4 (pink).
 * Comments in English only.
 */

:root {
    --vcd7-bg-deep: #1B263B;
    --vcd7-bg-deep-2: #131c2c;
    --vcd7-bg-deep-3: #0d1422;
    --vcd7-coral: #FA8072;
    --vcd7-red: #FF0000;
    --vcd7-pink: #FF69B4;
    --vcd7-ink: #f7f9ff;
    --vcd7-ink-soft: #c8d1e3;
    --vcd7-ink-mute: #8b97b0;
    --vcd7-line: rgba(255, 255, 255, 0.10);
    --vcd7-line-strong: rgba(250, 128, 114, 0.55);
    --vcd7-card: linear-gradient(160deg, #1f2c44 0%, #16203a 100%);
    --vcd7-card-flat: #1f2c44;
    --vcd7-shadow: 0 10px 24px rgba(0, 0, 0, 0.42);
    --vcd7-radius: 14px;
    --vcd7-radius-sm: 10px;
    --vcd7-radius-lg: 20px;
    --vcd7-max-canvas: 460px;
    --vcd7-header-h: 58px;
    --vcd7-bottomnav-h: 64px;
    --vcd7-font: "Hind Siliguri", "Noto Sans Bengali", "Shonar Bangla", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }

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

body {
    margin: 0;
    padding: 0;
    font-family: var(--vcd7-font);
    color: var(--vcd7-ink);
    background:
        radial-gradient(1200px 600px at 80% -10%, rgba(255, 105, 180, 0.18), transparent 60%),
        radial-gradient(900px 500px at -10% 20%, rgba(250, 128, 114, 0.16), transparent 60%),
        linear-gradient(180deg, var(--vcd7-bg-deep) 0%, var(--vcd7-bg-deep-2) 60%, var(--vcd7-bg-deep-3) 100%);
    background-attachment: fixed;
    font-size: 15px;
    line-height: 1.65;
    overflow-x: hidden;
    min-height: 100vh;
    /* Centered mobile canvas on wide screens. */
    max-width: 100vw;
}

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

a { color: var(--vcd7-coral); text-decoration: none; }
a:hover, a:focus-visible { color: var(--vcd7-pink); text-decoration: underline; }

.vcd7-skip {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--vcd7-red);
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    z-index: 2000;
}
.vcd7-skip:focus {
    left: 8px;
    top: 8px;
}

/* Page canvas: locked to a phone-width frame. */
.vcd7-canvas {
    max-width: var(--vcd7-max-canvas);
    margin: 0 auto;
    min-height: 100vh;
    position: relative;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.55);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

/* ============ Header ============ */
.vcd7-header {
    position: sticky;
    top: 0;
    z-index: 80;
    height: var(--vcd7-header-h);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 10px;
    background: linear-gradient(180deg, rgba(13, 20, 34, 0.96), rgba(27, 38, 59, 0.92));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--vcd7-line);
}

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

.vcd7-brand-logo {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    object-fit: cover;
    border: 1px solid var(--vcd7-line-strong);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.04), 0 4px 10px rgba(0, 0, 0, 0.45);
    background: #fff;
}

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

.vcd7-brand-name {
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 0.4px;
    background: linear-gradient(90deg, var(--vcd7-coral), var(--vcd7-pink) 70%, #ffd6e7);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.vcd7-brand-tag {
    font-size: 10.5px;
    color: var(--vcd7-ink-mute);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

.vcd7-btn {
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    border: 0;
    font-family: inherit;
    font-weight: 700;
    border-radius: 999px;
    padding: 9px 14px;
    min-height: 38px;
    font-size: 13.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: transform .15s ease, box-shadow .15s ease, background .2s ease, color .2s ease;
    text-decoration: none;
}

.vcd7-btn:focus-visible {
    outline: 2px solid var(--vcd7-pink);
    outline-offset: 2px;
}

.vcd7-btn-login {
    background: rgba(255, 255, 255, 0.08);
    color: var(--vcd7-ink);
    border: 1px solid var(--vcd7-line);
}

.vcd7-btn-login:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    text-decoration: none;
}

.vcd7-btn-register {
    background: linear-gradient(90deg, var(--vcd7-red), var(--vcd7-coral));
    color: #fff;
    box-shadow: 0 6px 16px rgba(255, 0, 0, 0.32);
}

.vcd7-btn-register:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.42);
    color: #fff;
    text-decoration: none;
}

.vcd7-iconbtn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid var(--vcd7-line);
    color: var(--vcd7-ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.vcd7-iconbtn:hover { background: rgba(255, 255, 255, 0.14); color: #fff; }
.vcd7-iconbtn svg { width: 20px; height: 20px; }

/* ============ Expandable menu panel ============ */
.vcd7-menu-panel {
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(8, 12, 22, 0.72);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}

.vcd7-menu-panel.vcd7-menu-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.vcd7-menu-sheet {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    max-width: var(--vcd7-max-canvas);
    margin: 0 auto;
    background: linear-gradient(180deg, var(--vcd7-bg-deep), var(--vcd7-bg-deep-2));
    border-bottom-left-radius: var(--vcd7-radius-lg);
    border-bottom-right-radius: var(--vcd7-radius-lg);
    padding: 14px 16px calc(env(safe-area-inset-bottom, 0px) + 18px);
    box-shadow: var(--vcd7-shadow);
    max-height: 88vh;
    overflow-y: auto;
}

.vcd7-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.vcd7-menu-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--vcd7-ink);
    margin: 0;
}

.vcd7-menu-close {
    background: transparent;
    border: 0;
    color: var(--vcd7-ink-soft);
    font-size: 22px;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 10px;
}
.vcd7-menu-close:hover { background: rgba(255, 255, 255, 0.08); }

.vcd7-menu-section {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--vcd7-line);
}
.vcd7-menu-section:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }

.vcd7-menu-section-title {
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--vcd7-coral);
    margin: 0 0 8px;
    font-weight: 700;
}

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

.vcd7-menu-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: var(--vcd7-radius-sm);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--vcd7-line);
    color: var(--vcd7-ink);
    font-size: 13.5px;
    font-weight: 600;
    min-height: 44px;
}
.vcd7-menu-link:hover {
    background: rgba(250, 128, 114, 0.16);
    border-color: var(--vcd7-line-strong);
    color: #fff;
    text-decoration: none;
}
.vcd7-menu-link .vcd7-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--vcd7-coral);
    box-shadow: 0 0 8px rgba(250, 128, 114, 0.8);
}

/* ============ Main layout ============ */
.vcd7-main {
    padding: 14px 12px calc(var(--vcd7-bottomnav-h) + env(safe-area-inset-bottom, 0px) + 26px);
}

.vcd7-container { width: 100%; }

/* ============ Hero carousel ============ */
.vcd7-hero {
    position: relative;
    border-radius: var(--vcd7-radius-lg);
    overflow: hidden;
    box-shadow: var(--vcd7-shadow);
    margin-bottom: 14px;
    border: 1px solid var(--vcd7-line);
}

.vcd7-hero-viewport {
    overflow: hidden;
    border-radius: var(--vcd7-radius-lg);
}

.vcd7-hero-track {
    display: flex;
    transition: transform .45s ease;
    will-change: transform;
}

.vcd7-hero-slide {
    min-width: 100%;
    position: relative;
}

.vcd7-hero-slide img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: saturate(1.05);
}

.vcd7-hero-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 26px 14px 14px;
    background: linear-gradient(180deg, rgba(13, 20, 34, 0) 0%, rgba(13, 20, 34, 0.82) 65%, rgba(13, 20, 34, 0.96) 100%);
    color: #fff;
}

.vcd7-hero-title {
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 4px;
    line-height: 1.25;
}

.vcd7-hero-sub {
    font-size: 12.5px;
    color: var(--vcd7-ink-soft);
    margin: 0 0 10px;
}

.vcd7-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(90deg, var(--vcd7-red), var(--vcd7-coral));
    color: #fff;
    padding: 8px 16px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 6px 16px rgba(255, 0, 0, 0.32);
}
.vcd7-hero-cta:hover { color: #fff; transform: translateY(-1px); text-decoration: none; }

.vcd7-hero-dots {
    position: absolute;
    bottom: 8px;
    right: 12px;
    display: flex;
    gap: 5px;
    z-index: 2;
}
.vcd7-hero-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    border: 0;
    padding: 0;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}
.vcd7-hero-dot-active {
    background: var(--vcd7-pink);
    transform: scale(1.25);
}

/* ============ Section + headings ============ */
.vcd7-section {
    margin: 18px 0 0;
}

.vcd7-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 10px;
}

.vcd7-section-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--vcd7-ink);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.vcd7-section-title::before {
    content: "";
    width: 4px;
    height: 16px;
    border-radius: 4px;
    background: linear-gradient(180deg, var(--vcd7-coral), var(--vcd7-pink));
}

.vcd7-section-link {
    font-size: 12px;
    color: var(--vcd7-coral);
    font-weight: 600;
}

.vcd7-lead {
    font-size: 14px;
    color: var(--vcd7-ink-soft);
    margin: 8px 0 0;
}

h1.vcd7-h1 {
    font-size: 22px;
    margin: 6px 0 6px;
    line-height: 1.25;
    color: #fff;
}

h2.vcd7-h2 {
    font-size: 17px;
    margin: 18px 0 8px;
    color: #fff;
}

h3.vcd7-h3 {
    font-size: 15px;
    margin: 12px 0 6px;
    color: var(--vcd7-coral);
}

p { margin: 0 0 10px; color: var(--vcd7-ink-soft); }

/* ============ Chips / filters ============ */
.vcd7-chips {
    display: flex;
    gap: 7px;
    overflow-x: auto;
    padding: 4px 0 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.vcd7-chips::-webkit-scrollbar { display: none; }

.vcd7-chip {
    flex: 0 0 auto;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--vcd7-line);
    color: var(--vcd7-ink-soft);
    padding: 7px 13px;
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
    white-space: nowrap;
}
.vcd7-chip-active, .vcd7-chip:hover {
    background: linear-gradient(90deg, rgba(250, 128, 114, 0.22), rgba(255, 105, 180, 0.22));
    border-color: var(--vcd7-line-strong);
    color: #fff;
}

/* ============ Game grid ============ */
.vcd7-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

@media (min-width: 360px) {
    .vcd7-grid { gap: 9px; }
}

@media (min-width: 400px) {
    .vcd7-grid { grid-template-columns: repeat(5, 1fr); }
}

.vcd7-game {
    background: var(--vcd7-card);
    border: 1px solid var(--vcd7-line);
    border-radius: var(--vcd7-radius-sm);
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5px 5px 8px;
    transition: transform .15s ease, border-color .2s ease, box-shadow .2s ease;
    -webkit-tap-highlight-color: transparent;
}
.vcd7-game:hover, .vcd7-game:focus-visible {
    transform: translateY(-2px);
    border-color: var(--vcd7-line-strong);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.45);
}

.vcd7-game-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
    background: #0d1422;
}

.vcd7-game-name {
    margin-top: 6px;
    font-size: 11.5px;
    line-height: 1.25;
    color: var(--vcd7-ink);
    text-align: center;
    font-weight: 600;
    width: 100%;
    /* Clamp long names to two lines. */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 28px;
}

/* ============ Cards ============ */
.vcd7-card {
    background: var(--vcd7-card);
    border: 1px solid var(--vcd7-line);
    border-radius: var(--vcd7-radius);
    padding: 14px;
    box-shadow: var(--vcd7-shadow);
}

.vcd7-card-title {
    font-size: 14.5px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
}

.vcd7-card-text {
    font-size: 13px;
    color: var(--vcd7-ink-soft);
    margin: 0;
}

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

@media (min-width: 400px) {
    .vcd7-grid-cards { grid-template-columns: repeat(3, 1fr); }
}

/* Winner list */
.vcd7-winner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--vcd7-line);
    border-radius: var(--vcd7-radius-sm);
    margin-bottom: 6px;
}
.vcd7-winner:last-child { margin-bottom: 0; }

.vcd7-winner-name {
    font-weight: 700;
    color: var(--vcd7-ink);
    font-size: 13px;
}
.vcd7-winner-meta {
    font-size: 11.5px;
    color: var(--vcd7-ink-mute);
}
.vcd7-winner-amount {
    font-weight: 800;
    color: var(--vcd7-pink);
    font-size: 13.5px;
}

/* Testimonials */
.vcd7-testi {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--vcd7-line);
    border-radius: var(--vcd7-radius);
    padding: 12px;
    margin-bottom: 10px;
}
.vcd7-testi:last-child { margin-bottom: 0; }
.vcd7-testi-quote {
    font-size: 13px;
    color: var(--vcd7-ink);
    margin: 0 0 8px;
    line-height: 1.55;
}
.vcd7-testi-author {
    font-size: 11.5px;
    color: var(--vcd7-coral);
    font-weight: 700;
}

/* RTP bar */
.vcd7-rtp-row { margin-bottom: 10px; }
.vcd7-rtp-row:last-child { margin-bottom: 0; }
.vcd7-rtp-head {
    display: flex;
    justify-content: space-between;
    font-size: 12.5px;
    margin-bottom: 4px;
}
.vcd7-rtp-name { color: var(--vcd7-ink); font-weight: 600; }
.vcd7-rtp-val { color: var(--vcd7-pink); font-weight: 800; }
.vcd7-rtp-track {
    height: 7px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.07);
    overflow: hidden;
}
.vcd7-rtp-fill {
    height: 100%;
    border-radius: 6px;
    background: linear-gradient(90deg, var(--vcd7-coral), var(--vcd7-pink));
}

/* Steps list */
.vcd7-steps { counter-reset: vcd7step; list-style: none; padding: 0; margin: 0; }
.vcd7-steps li {
    counter-increment: vcd7step;
    padding: 9px 12px 9px 40px;
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--vcd7-line);
    border-radius: var(--vcd7-radius-sm);
    margin-bottom: 7px;
    font-size: 13px;
    color: var(--vcd7-ink-soft);
}
.vcd7-steps li::before {
    content: counter(vcd7step);
    position: absolute;
    left: 9px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, var(--vcd7-coral), var(--vcd7-red));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11.5px;
    font-weight: 800;
}

/* CTA banner */
.vcd7-cta {
    background:
        radial-gradient(120% 80% at 90% 0%, rgba(255, 105, 180, 0.32), transparent 60%),
        linear-gradient(135deg, var(--vcd7-red), var(--vcd7-coral) 60%, var(--vcd7-pink));
    color: #fff;
    border-radius: var(--vcd7-radius-lg);
    padding: 16px;
    text-align: center;
    box-shadow: 0 12px 26px rgba(255, 0, 0, 0.32);
    margin: 16px 0;
}
.vcd7-cta h2 { color: #fff; margin: 0 0 6px; font-size: 17px; }
.vcd7-cta p { color: rgba(255, 255, 255, 0.92); margin: 0 0 12px; font-size: 13px; }
.vcd7-cta .vcd7-btn-register { background: #fff; color: var(--vcd7-red); box-shadow: none; }
.vcd7-cta .vcd7-btn-register:hover { background: #fff2f6; color: var(--vcd7-red); }

/* Inline promo text link */
.vcd7-promo-link {
    color: var(--vcd7-pink);
    font-weight: 700;
    cursor: pointer;
    text-decoration: underline;
}

/* ============ Extended footer ============ */
.vcd7-ext-footer {
    margin-top: 22px;
    padding: 16px;
    border-radius: var(--vcd7-radius);
    background:
        radial-gradient(140% 90% at 100% 0%, rgba(255, 105, 180, 0.10), transparent 60%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
    border: 1px solid var(--vcd7-line);
}

.vcd7-ext-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--vcd7-coral);
    margin: 14px 0 8px;
    font-weight: 700;
}
.vcd7-ext-title:first-of-type { margin-top: 0; }

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

.vcd7-ext-link {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 9px 11px;
    border-radius: var(--vcd7-radius-sm);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--vcd7-line);
    color: var(--vcd7-ink);
    font-size: 12.5px;
    font-weight: 600;
    min-height: 40px;
}
.vcd7-ext-link:hover {
    background: rgba(250, 128, 114, 0.16);
    border-color: var(--vcd7-line-strong);
    color: #fff;
    text-decoration: none;
}
.vcd7-ext-link .vcd7-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--vcd7-coral); }

.vcd7-ext-promo {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.18), rgba(255, 105, 180, 0.18));
    border-color: var(--vcd7-line-strong);
}
.vcd7-ext-promo:hover { background: linear-gradient(135deg, rgba(255, 0, 0, 0.32), rgba(255, 105, 180, 0.32)); }
.vcd7-ext-promo .vcd7-dot { background: var(--vcd7-pink); }

.vcd7-brand-intro {
    font-size: 12.5px;
    color: var(--vcd7-ink-soft);
    margin: 0;
    line-height: 1.6;
}

.vcd7-disclaimer {
    font-size: 11px;
    color: var(--vcd7-ink-mute);
    line-height: 1.55;
    margin-top: 12px;
    padding: 10px;
    border-left: 3px solid var(--vcd7-coral);
    background: rgba(0, 0, 0, 0.18);
    border-radius: 6px;
}

/* ============ Footer copyright band ============ */
.vcd7-foot-band {
    margin-top: 14px;
    padding: 12px 14px;
    text-align: center;
    border-top: 1px solid var(--vcd7-line);
    color: var(--vcd7-ink-mute);
    font-size: 11.5px;
    background: rgba(0, 0, 0, 0.18);
}

/* ============ Bottom navigation ============ */
.vcd7-bottomnav {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 100%;
    max-width: var(--vcd7-max-canvas);
    height: calc(var(--vcd7-bottomnav-h) + env(safe-area-inset-bottom, 0px));
    padding-bottom: env(safe-area-inset-bottom, 0px);
    background: linear-gradient(180deg, rgba(13, 20, 34, 0.96), rgba(8, 12, 22, 0.98));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--vcd7-line-strong);
    display: flex;
    align-items: stretch;
    z-index: 70;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.5);
}

.vcd7-bottomnav-link {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: var(--vcd7-ink-mute);
    text-decoration: none;
    font-size: 10.5px;
    font-weight: 600;
    position: relative;
    padding: 4px 2px;
    -webkit-tap-highlight-color: transparent;
    transition: color .2s ease;
}
.vcd7-bottomnav-link:hover { color: var(--vcd7-ink); text-decoration: none; }
.vcd7-bottomnav-link svg {
    width: 22px;
    height: 22px;
    transition: transform .18s ease, filter .2s ease;
    fill: currentColor;
    color: currentColor;
}
.vcd7-bottomnav-link:hover svg { transform: translateY(-1px); }

.vcd7-bottomnav-link.vcd7-bottomnav-current {
    color: var(--vcd7-pink);
}
.vcd7-bottomnav-link.vcd7-bottomnav-current::after {
    content: "";
    position: absolute;
    top: 0;
    width: 26px;
    height: 3px;
    border-radius: 0 0 6px 6px;
    background: linear-gradient(90deg, var(--vcd7-coral), var(--vcd7-pink));
    box-shadow: 0 0 10px rgba(255, 105, 180, 0.7);
}
.vcd7-bottomnav-link.vcd7-bottomnav-current svg {
    filter: drop-shadow(0 0 6px rgba(255, 105, 180, 0.6));
}

/* Promo bottom buttons get a coral tint. */
.vcd7-bottomnav-link.vcd7-bottomnav-promo { color: var(--vcd7-coral); }
.vcd7-bottomnav-link.vcd7-bottomnav-promo:hover { color: var(--vcd7-pink); }

/* ============ Helpers ============ */
.vcd7-visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0 0 0 0);
    white-space: nowrap; border: 0;
}

.vcd7-row { display: flex; gap: 10px; flex-wrap: wrap; }
.vcd7-col { flex: 1 1 140px; }

.vcd7-note {
    font-size: 11.5px;
    color: var(--vcd7-ink-mute);
    line-height: 1.5;
    padding: 8px 10px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.18);
    border-left: 3px solid var(--vcd7-coral);
    margin: 8px 0;
}

.vcd7-kbd {
    display: inline-block;
    padding: 1px 6px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--vcd7-line);
    font-size: 11px;
    color: var(--vcd7-ink);
}
