/* ===================================================================
   BRINKLEY VIDEO KIOSK — STYLESHEET
   Official Brand Tokens: Teko + Roboto + Brinkley Color Palette
   =================================================================== */

/* ─── CSS Custom Properties (Brand Tokens) ─── */
:root {
    --bvk-black: #000000;
    --bvk-dark-grey: #393f45;
    --bvk-medium-grey: #cad0d5;
    --bvk-bg-grey: #eeeeee;
    --bvk-white: #ffffff;
    --bvk-blue: #698fb1;
    --bvk-blue-hover: #567a9a;
    --bvk-blue-light: rgba(105, 143, 177, 0.15);
    --bvk-error: #D32F2F;
    --bvk-error-bg: rgba(211, 47, 47, 0.1);
    --bvk-success: #2E7D32;
    --bvk-success-bg: rgba(46, 125, 50, 0.1);
    --bvk-font-headline: 'Teko', 'Arial Narrow', sans-serif;
    --bvk-font-body: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    --bvk-font-condensed: 'Roboto Condensed', 'Arial Narrow', sans-serif;
    --bvk-radius: 4px;
    --bvk-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset & Base ─── */
.bvk-fullpage-body {
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    background: var(--bvk-black);
}

.bvk-kiosk {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999999;
    overflow: hidden;
    font-family: var(--bvk-font-body);
    color: var(--bvk-dark-grey);
    background: var(--bvk-black);
    -webkit-user-select: none;
    user-select: none;
    touch-action: manipulation;
    overscroll-behavior: none;
}

.bvk-kiosk * {
    box-sizing: border-box;
}

/* ─── Screen System ─── */
.bvk-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.97);
    transition: opacity var(--bvk-transition), visibility var(--bvk-transition), transform var(--bvk-transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bvk-screen.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 1;
}

.bvk-screen-inner {
    width: 100%;
    max-width: 680px;
    padding: 40px 30px;
    margin: 0 auto;
    overflow-y: auto;
    max-height: 100vh;
}

.bvk-center-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* ─── Typography ─── */
.bvk-section-title {
    font-family: var(--bvk-font-headline);
    font-weight: 500;
    font-size: 2.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--bvk-white);
    margin: 0 0 25px;
}

/* ─── Buttons ─── */
.bvk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 36px;
    font-family: var(--bvk-font-body);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    border-radius: var(--bvk-radius);
    cursor: pointer;
    transition: all var(--bvk-transition);
    outline: none;
    text-decoration: none;
    min-height: 54px;
    min-width: 120px;
}

.bvk-btn:active {
    transform: scale(0.97);
}

.bvk-btn--primary {
    background: var(--bvk-blue);
    color: var(--bvk-white);
    box-shadow: 0 4px 15px rgba(105, 143, 177, 0.4);
}

.bvk-btn--primary:hover,
.bvk-btn--primary:focus {
    background: var(--bvk-blue-hover);
    box-shadow: 0 6px 20px rgba(105, 143, 177, 0.55);
}

.bvk-btn--secondary {
    background: transparent;
    color: var(--bvk-white);
    border: 2px solid var(--bvk-medium-grey);
}

.bvk-btn--secondary:hover,
.bvk-btn--secondary:focus {
    border-color: var(--bvk-white);
    background: rgba(255, 255, 255, 0.08);
}

.bvk-btn--ghost {
    background: transparent;
    color: var(--bvk-medium-grey);
    border: 1px solid var(--bvk-medium-grey);
}

.bvk-btn--ghost:hover,
.bvk-btn--ghost:focus {
    color: var(--bvk-white);
    border-color: var(--bvk-white);
}

.bvk-btn--xl {
    padding: 18px 56px;
    font-size: 1.3rem;
    letter-spacing: 4px;
    min-height: 64px;
}

.bvk-btn-icon {
    font-size: 1.4em;
}

/* ─── WELCOME SCREEN ─── */
.bvk-screen--welcome {
    background: var(--bvk-black);
    overflow: hidden;
}

.bvk-welcome-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 0;
}

.bvk-welcome-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px;
    gap: 20px;
}

.bvk-logo-container {
    margin-bottom: 10px;
}

.bvk-logo {
    width: auto;
    max-width: 280px;
    max-height: 120px;
    object-fit: contain;
}

.bvk-welcome-heading {
    font-family: var(--bvk-font-headline);
    font-weight: 500;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--bvk-white);
    letter-spacing: 6px;
    margin: 0;
    line-height: 1.1;
}

.bvk-welcome-sub {
    font-family: var(--bvk-font-condensed);
    font-weight: 300;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: var(--bvk-medium-grey);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0 0 30px;
}

.bvk-welcome-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

/* ─── FORM SCREEN ─── */
.bvk-screen--form {
    background: var(--bvk-dark-grey);
    align-items: flex-start; /* Push top instead of center to allow room for keyboard */
}

.bvk-screen--form .bvk-screen-inner {
    padding-top: 5vh; /* Responsive top margin */
    padding-bottom: 50vh; /* Massive bottom padding so user can scroll form above keyboard */
}

.bvk-form-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
}

.bvk-form-logo {
    width: 140px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.bvk-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bvk-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bvk-label {
    font-family: var(--bvk-font-condensed);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--bvk-medium-grey);
}

.bvk-label .bvk-required {
    color: var(--bvk-error);
    margin-left: 3px;
}

.bvk-input {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--bvk-font-body);
    font-size: 1.1rem;
    color: var(--bvk-white);
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid var(--bvk-medium-grey);
    border-radius: var(--bvk-radius);
    outline: none;
    transition: border-color var(--bvk-transition), background var(--bvk-transition);
}

.bvk-input:focus {
    border-color: var(--bvk-blue);
    background: rgba(105, 143, 177, 0.1);
}

.bvk-input.bvk-input--error {
    border-color: var(--bvk-error);
    background: var(--bvk-error-bg);
}

.bvk-input::placeholder {
    color: rgba(202, 208, 213, 0.5);
}

.bvk-error {
    font-size: 0.82rem;
    color: var(--bvk-error);
    min-height: 1em;
    font-weight: 500;
}

/* Disclaimer / Consent */
.bvk-disclaimer {
    margin-top: 10px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(202, 208, 213, 0.2);
    border-radius: var(--bvk-radius);
}

.bvk-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    cursor: pointer;
    position: relative;
}

.bvk-checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.bvk-checkmark {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border: 2px solid var(--bvk-medium-grey);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--bvk-transition);
    margin-top: 2px;
}

.bvk-checkbox:checked + .bvk-checkmark {
    background: var(--bvk-blue);
    border-color: var(--bvk-blue);
}

.bvk-checkbox:checked + .bvk-checkmark::after {
    content: '✓';
    color: var(--bvk-white);
    font-size: 16px;
    font-weight: bold;
}

.bvk-disclaimer-text {
    font-family: var(--bvk-font-condensed);
    font-size: 0.9rem;
    color: var(--bvk-medium-grey);
    line-height: 1.5;
}

.bvk-form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    gap: 16px;
}

/* ─── RECORDING SCREEN ─── */
.bvk-screen--recording {
    background: var(--bvk-black);
}

.bvk-viewfinder {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.bvk-camera-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scaleX(-1);  /* Mirror for front camera */
}

.bvk-recording-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 30px;
    pointer-events: none;
}

.bvk-recording-overlay > * {
    pointer-events: auto;
}

.bvk-rec-idle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
}

.bvk-rec-prompt {
    font-family: var(--bvk-font-condensed);
    font-size: 1.1rem;
    color: var(--bvk-white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    letter-spacing: 1px;
}

.bvk-btn--record {
    background: var(--bvk-error);
    color: var(--bvk-white);
    padding: 18px 48px;
    font-size: 1.2rem;
    border-radius: 50px;
    border: none;
    box-shadow: 0 4px 20px rgba(211, 47, 47, 0.5);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--bvk-font-body);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--bvk-transition);
    min-height: 64px;
}

.bvk-btn--record:hover {
    background: #c62828;
    transform: scale(1.03);
}

.bvk-rec-dot {
    width: 14px;
    height: 14px;
    background: var(--bvk-white);
    border-radius: 50%;
    display: inline-block;
}

.bvk-rec-dot--pulse {
    background: var(--bvk-error);
    animation: bvk-pulse 1s ease-in-out infinite;
}

@keyframes bvk-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

/* Recording active controls */
.bvk-rec-active {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.bvk-rec-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.65);
    padding: 10px 24px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.bvk-rec-label {
    font-family: var(--bvk-font-body);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--bvk-error);
    letter-spacing: 2px;
}

.bvk-rec-timer {
    font-family: var(--bvk-font-headline);
    font-size: 1.8rem;
    color: var(--bvk-white);
    letter-spacing: 2px;
    font-weight: 400;
    min-width: 80px;
    text-align: center;
}

/* Progress bar */
.bvk-progress-bar {
    width: 80%;
    max-width: 500px;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
}

.bvk-progress-fill {
    height: 100%;
    width: 0%;
    background: var(--bvk-blue);
    border-radius: 3px;
    transition: width 0.5s linear, background-color 0.4s;
}

.bvk-progress-fill.bvk-progress-fill--warning {
    background: var(--bvk-error);
}

/* Countdown warning */
.bvk-countdown-warning {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(211, 47, 47, 0.85);
    padding: 10px 28px;
    border-radius: 50px;
    animation: bvk-countdown-glow 1.5s ease-in-out infinite;
}

@keyframes bvk-countdown-glow {
    0%, 100% { box-shadow: 0 0 10px rgba(211, 47, 47, 0.3); }
    50% { box-shadow: 0 0 25px rgba(211, 47, 47, 0.7); }
}

.bvk-countdown-num {
    font-family: var(--bvk-font-headline);
    font-size: 2rem;
    font-weight: 500;
    color: var(--bvk-white);
}

.bvk-countdown-label {
    font-family: var(--bvk-font-condensed);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.bvk-btn--stop {
    background: rgba(0, 0, 0, 0.65);
    color: var(--bvk-white);
    border: 2px solid var(--bvk-error);
    padding: 16px 42px;
    font-size: 1.1rem;
    border-radius: 50px;
    font-family: var(--bvk-font-body);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--bvk-transition);
    min-height: 58px;
    backdrop-filter: blur(10px);
}

.bvk-btn--stop:hover {
    background: var(--bvk-error);
}

/* ─── REVIEW SCREEN ─── */
.bvk-screen--review {
    background: var(--bvk-dark-grey);
}

.bvk-review-header {
    text-align: center;
    margin-bottom: 20px;
}

.bvk-review-player {
    width: 100%;
    border-radius: var(--bvk-radius);
    overflow: hidden;
    background: var(--bvk-black);
    margin-bottom: 25px;
}

.bvk-review-video {
    width: 100%;
    max-height: 55vh;
    object-fit: contain;
    background: var(--bvk-black);
}

.bvk-review-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ─── UPLOADING SCREEN ─── */
.bvk-screen--uploading {
    background: var(--bvk-black);
}

.bvk-upload-logo {
    width: 150px;
    margin-bottom: 30px;
    filter: brightness(0) invert(1);
}

.bvk-screen--uploading .bvk-section-title {
    font-size: 1.8rem;
}

.bvk-upload-progress {
    width: 80%;
    max-width: 400px;
    margin: 25px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.bvk-upload-bar {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 5px;
    overflow: hidden;
}

.bvk-upload-fill {
    height: 100%;
    width: 0%;
    background: var(--bvk-blue);
    border-radius: 5px;
    transition: width 0.3s ease;
}

.bvk-upload-pct {
    font-family: var(--bvk-font-headline);
    font-size: 1.8rem;
    color: var(--bvk-blue);
    letter-spacing: 2px;
}

.bvk-upload-msg {
    font-family: var(--bvk-font-condensed);
    color: var(--bvk-medium-grey);
    font-size: 1rem;
    letter-spacing: 1px;
}

/* ─── THANK YOU SCREEN ─── */
.bvk-screen--thankyou {
    background: var(--bvk-black);
}

.bvk-thankyou-logo {
    width: 150px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
}

.bvk-thankyou-check {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bvk-success);
    color: var(--bvk-white);
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    animation: bvk-check-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes bvk-check-pop {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

.bvk-thankyou-heading {
    font-family: var(--bvk-font-headline);
    font-weight: 500;
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--bvk-white);
    letter-spacing: 6px;
    margin: 0 0 15px;
}

.bvk-thankyou-msg {
    font-family: var(--bvk-font-condensed);
    font-size: 1.1rem;
    color: var(--bvk-medium-grey);
    letter-spacing: 1px;
    max-width: 400px;
}

.bvk-thankyou-countdown {
    margin-top: 30px;
}

.bvk-thankyou-countdown span {
    font-family: var(--bvk-font-condensed);
    font-size: 0.85rem;
    color: rgba(202, 208, 213, 0.5);
    letter-spacing: 1px;
}

/* ─── MODALS ─── */
.bvk-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bvk-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
}

.bvk-modal-content {
    position: relative;
    z-index: 1;
    background: var(--bvk-dark-grey);
    border-radius: 8px;
    padding: 30px;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.bvk-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: var(--bvk-medium-grey);
    font-size: 28px;
    cursor: pointer;
    padding: 5px 10px;
    transition: color var(--bvk-transition);
}

.bvk-modal-close:hover {
    color: var(--bvk-white);
}

.bvk-modal-title {
    font-family: var(--bvk-font-headline);
    font-weight: 500;
    font-size: 1.6rem;
    color: var(--bvk-white);
    letter-spacing: 3px;
    margin: 0 0 20px;
    text-align: center;
}

.bvk-example-video {
    width: 100%;
    border-radius: var(--bvk-radius);
    background: var(--bvk-black);
}

/* ─── PIN MODAL ─── */
.bvk-pin-content {
    max-width: 380px;
    text-align: center;
}

.bvk-pin-display {
    margin-bottom: 20px;
}

.bvk-pin-input {
    width: 200px;
    padding: 12px 20px;
    font-family: var(--bvk-font-headline);
    font-size: 2rem;
    text-align: center;
    letter-spacing: 10px;
    color: var(--bvk-white);
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid var(--bvk-medium-grey);
    border-radius: var(--bvk-radius);
    outline: none;
}

.bvk-pin-input:focus {
    border-color: var(--bvk-blue);
}

.bvk-pin-error {
    color: var(--bvk-error);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.bvk-pin-keypad {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-width: 280px;
    margin: 0 auto 20px;
}

.bvk-pin-key {
    padding: 16px;
    font-family: var(--bvk-font-headline);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--bvk-white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(202, 208, 213, 0.3);
    border-radius: var(--bvk-radius);
    cursor: pointer;
    transition: all var(--bvk-transition);
    min-height: 58px;
}

.bvk-pin-key:hover,
.bvk-pin-key:active {
    background: var(--bvk-blue);
    border-color: var(--bvk-blue);
}

.bvk-pin-key--clear {
    font-family: var(--bvk-font-body);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.bvk-pin-key--enter {
    background: var(--bvk-blue);
    border-color: var(--bvk-blue);
}

.bvk-pin-cancel {
    margin-top: 5px;
}

/* ─── RESPONSIVE: LANDSCAPE ─── */
@media (orientation: landscape) {
    .bvk-welcome-content {
        flex-direction: column;
    }

    .bvk-welcome-heading {
        font-size: clamp(2rem, 4vw, 3.5rem);
    }

    .bvk-welcome-actions {
        flex-direction: row;
        gap: 20px;
    }

    .bvk-screen-inner {
        padding: 25px 40px;
        max-height: 100vh;
    }

    .bvk-form {
        gap: 14px;
    }

    .bvk-form-header {
        flex-direction: row;
        gap: 20px;
        align-items: center;
    }

    .bvk-form-logo {
        width: 100px;
        margin-bottom: 0;
    }

    .bvk-form-header .bvk-section-title {
        margin-bottom: 0;
    }

    .bvk-review-video {
        max-height: 50vh;
    }

    .bvk-rec-active {
        margin-bottom: 25px;
    }
}

/* ─── RESPONSIVE: PORTRAIT ─── */
@media (orientation: portrait) {
    .bvk-welcome-heading {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }

    .bvk-btn--xl {
        width: 80%;
        max-width: 360px;
    }

    .bvk-screen-inner {
        padding: 30px 20px;
    }

    .bvk-review-video {
        max-height: 40vh;
    }
}

/* ─── LARGE TABLETS (Galaxy Tab S8 Ultra: 1848px landscape) ─── */
@media (min-width: 1400px) {
    .bvk-screen-inner {
        max-width: 760px;
    }

    .bvk-welcome-heading {
        font-size: 4rem;
    }

    .bvk-logo {
        max-width: 320px;
        max-height: 140px;
    }

    .bvk-input {
        font-size: 1.2rem;
        padding: 16px 20px;
    }

    .bvk-btn--xl {
        padding: 20px 64px;
        font-size: 1.4rem;
    }
}

/* ─── ORIENTATION LOCK CLASSES ─── */
.bvk-kiosk.bvk-lock-landscape {
    /* Applied via JS: shows message to rotate screen in portrait */
}

.bvk-kiosk.bvk-lock-portrait {
    /* Applied via JS: shows message to rotate screen in landscape */
}

/* Orientation lock warning overlay */
.bvk-orientation-warning {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bvk-black);
    z-index: 1000001;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.bvk-orientation-warning-icon {
    font-size: 60px;
    animation: bvk-rotate-hint 2s ease-in-out infinite;
}

@keyframes bvk-rotate-hint {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(90deg); }
    75% { transform: rotate(90deg); }
}

.bvk-orientation-warning-text {
    font-family: var(--bvk-font-headline);
    font-size: 1.8rem;
    color: var(--bvk-white);
    letter-spacing: 3px;
    text-align: center;
}

/* ─── Scrollbar styling ─── */
.bvk-kiosk ::-webkit-scrollbar {
    width: 5px;
}

.bvk-kiosk ::-webkit-scrollbar-track {
    background: transparent;
}

.bvk-kiosk ::-webkit-scrollbar-thumb {
    background: var(--bvk-medium-grey);
    border-radius: 3px;
}

/* ─── Animation utilities ─── */
.bvk-fade-in {
    animation: bvk-fadein 0.4s ease-out forwards;
}

@keyframes bvk-fadein {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
