/* ============================================
   MEYBET BONUS KUTU — LOOTBOX EXPERIENCE
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: linear-gradient(170deg, #0a1628 0%, #060d1a 40%, #040810 100%);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    user-select: none;
}

/* --- Background Layer --- */
#bg-layer {
    position: fixed;
    inset: 0;
    z-index: 0;
    background: linear-gradient(170deg, #0a1628 0%, #060d1a 40%, #040810 100%);
}

/* --- Particles --- */
#particles {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* --- Screen & Overlay base --- */
.screen {
    position: fixed;
    inset: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hidden {
    display: none !important;
}

/* ============================================
   NICKNAME MODAL
   ============================================ */
#nickname-modal {
    z-index: 200;
    backdrop-filter: blur(18px) brightness(0.3);
    -webkit-backdrop-filter: blur(18px) brightness(0.3);
}

.nm-card {
    position: relative;
    width: 100%;
    max-width: 680px;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(175deg, rgba(12,22,52,0.97) 0%, rgba(6,10,28,0.99) 100%);
    border: 1px solid rgba(218,165,32,0.18);
    box-shadow: 0 40px 120px rgba(0,0,0,0.7), 0 0 80px rgba(218,165,32,0.05);
    will-change: transform, opacity;
}

.nm-gold-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 5%, #DAA520 50%, transparent 95%);
}

.nm-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 48px;
}

.nm-logo {
    height: 110px;
    object-fit: contain;
    margin-bottom: 32px;
    filter: drop-shadow(0 0 24px rgba(59,130,246,0.12));
}

.nm-title {
    font-size: 26px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: 0.03em;
    text-align: center;
    line-height: 1.2;
}

.nm-desc {
    color: rgba(255,255,255,0.35);
    font-size: 14px;
    margin-bottom: 32px;
    text-align: center;
    line-height: 1.6;
}

/* --- Chips Row --- */
.nm-chips {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 12px;
    width: 100%;
}

.nm-chip {
    cursor: pointer;
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), filter 0.3s ease;
}

.nm-chip img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    filter: drop-shadow(0 0 4px rgba(218,165,32,0.2));
    transition: filter 0.3s ease;
    pointer-events: none;
}

.nm-chip:hover,
.nm-chip.active {
    transform: scale(1.15);
}

.nm-chip:hover img,
.nm-chip.active img {
    filter: drop-shadow(0 0 16px rgba(218,165,32,0.6));
}

/* --- Prize Info --- */
.nm-prize-info {
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 14px;
    color: #DAA520;
    transition: opacity 0.2s ease;
}

/* --- Divider --- */
.nm-divider {
    width: 100%;
    height: 1px;
    margin-bottom: 32px;
    background: linear-gradient(90deg, transparent, rgba(218,165,32,0.15), transparent);
}

/* --- Form --- */
.nm-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

#nickname-input {
    width: 100%;
    max-width: 380px;
    padding: 16px 24px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    color: #fff;
    background: rgba(255,255,255,0.04);
    border: 2px solid rgba(255,255,255,0.08);
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
}

#nickname-input::placeholder {
    color: rgba(255,255,255,0.3);
}

#nickname-input:focus {
    background: rgba(218,165,32,0.06);
    border-color: rgba(218,165,32,0.4);
    box-shadow: 0 0 24px rgba(218,165,32,0.08);
}

.nm-btn {
    width: 100%;
    max-width: 380px;
    padding: 16px 28px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.12em;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.nm-btn:not(:disabled) {
    background: linear-gradient(135deg, #DAA520 0%, #B8860B 100%);
    color: #fff;
    box-shadow: 0 4px 24px rgba(218,165,32,0.3);
}

.nm-btn:not(:disabled):hover {
    transform: scale(1.02);
    box-shadow: 0 6px 32px rgba(218,165,32,0.4);
}

.nm-btn:not(:disabled):active {
    transform: scale(0.98);
}

.nm-btn:disabled {
    background: rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.2);
    cursor: not-allowed;
    opacity: 0.5;
}

.nm-form.shake #nickname-input {
    border-color: #ff4444;
    box-shadow: 0 0 15px rgba(255,68,68,0.2);
    animation: shakeInput 0.5s cubic-bezier(0.36,0.07,0.19,0.97) both;
}

@keyframes shakeInput {
    10%, 90% { transform: translateX(-2px); }
    20%, 80% { transform: translateX(4px); }
    30%, 50%, 70% { transform: translateX(-6px); }
    40%, 60% { transform: translateX(6px); }
}

/* ============================================
   BOX SELECTION
   ============================================ */
#box-selection {
    z-index: 10;
}

.ambient-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 70% 50% at 50% 65%, rgba(59,130,246,0.05) 0%, transparent 70%),
        radial-gradient(ellipse 50% 30% at 50% 55%, rgba(255,170,0,0.04) 0%, transparent 60%);
}

.bs-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
    margin-bottom: 24px;
    margin-top: 5vh;
}

.bs-logo {
    height: 56px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(59,130,246,0.2)) drop-shadow(0 0 40px rgba(255,185,0,0.1));
}

.bs-greeting {
    margin-top: 12px;
    color: rgba(147,197,253,0.4);
    font-size: 14px;
    letter-spacing: 0.05em;
}

.bs-greeting span {
    color: rgba(147,197,253,0.7);
    font-weight: 600;
}

.bs-title {
    font-size: clamp(26px, 4.5vw, 42px);
    font-weight: 900;
    letter-spacing: -0.02em;
    text-align: center;
    margin-top: 8px;
    background: linear-gradient(180deg, #FFE082 0%, #FFD700 30%, #FFA000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 16px rgba(255,165,0,0.3));
}

.bs-subtitle {
    color: rgba(147,197,253,0.25);
    font-size: 12px;
    margin-top: 8px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* --- 5 Boxes --- */
.bs-boxes {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    z-index: 10;
    padding: 0 24px;
    width: 100%;
    max-width: 1200px;
    flex-wrap: wrap;
}

.box-btn {
    position: relative;
    cursor: pointer;
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
    flex: 0 0 auto;
    width: 200px;
    perspective: 600px;
    transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1), filter 0.3s ease;
}

.box-btn:hover {
    transform: scale(1.22) translateY(-16px);
    filter: brightness(1.15);
    z-index: 20;
}

.box-btn:active {
    transform: scale(0.95) translateY(-4px);
}

.box-glow {
    position: absolute;
    inset: -20%;
    opacity: 0;
    transition: opacity 0.5s ease;
    background: radial-gradient(circle, rgba(255,185,0,0.25) 0%, rgba(59,130,246,0.12) 50%, transparent 70%);
    filter: blur(24px);
    pointer-events: none;
}

.box-btn:hover .box-glow {
    opacity: 1;
}

.box-float {
    animation: boxFloat var(--float-dur) ease-in-out infinite;
    animation-delay: var(--float-delay);
    transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}

.box-btn:hover .box-float {
    transform: translateY(var(--float-y)) rotateX(-5deg) rotateY(3deg);
}

.box-float img {
    width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 12px 32px rgba(0,0,0,0.5));
    transition: filter 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.box-btn:hover .box-float img {
    filter: drop-shadow(0 16px 40px rgba(255,185,0,0.3)) drop-shadow(0 8px 24px rgba(0,0,0,0.5)) brightness(1.12);
}

@keyframes boxFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(var(--float-y)); }
}

/* --- Footer --- */
.bs-footer {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 10px;
    color: rgba(147,197,253,0.1);
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.bs-line {
    width: 48px;
    height: 1px;
}

.bs-line-left {
    background: linear-gradient(90deg, transparent, rgba(59,130,246,0.12));
}

.bs-line-right {
    background: linear-gradient(90deg, rgba(59,130,246,0.12), transparent);
}

/* ============================================
   BOX VIEW (IDLE STATE)
   ============================================ */
#box-view {
    z-index: 50;
}

.bv-ambient {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(59,130,246,0.06) 0%, rgba(255,165,0,0.04) 40%, transparent 70%);
    filter: blur(40px);
    opacity: 0;
    transition: opacity 1.5s ease;
}

.bv-ambient.visible {
    opacity: 1;
}

.bv-logo-wrap {
    position: absolute;
    top: 20px;
    z-index: 20;
}

.bv-logo {
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(59,130,246,0.15));
}

.bv-box-container {
    position: relative;
    width: min(85vw, 480px);
    aspect-ratio: 1;
    cursor: pointer;
    z-index: 10;
    transition: transform 0.8s cubic-bezier(0.16,1,0.3,1), opacity 0.8s ease;
}

.bv-shake-wrap {
    width: 100%;
    height: 100%;
}

.bv-shake-wrap.shaking {
    animation: shake 0.6s ease-in-out;
}

.bv-breathe {
    width: 100%;
    height: 100%;
    animation: breathe 3s ease-in-out infinite;
}

.bv-breathe.no-breathe {
    animation: none;
}

.bv-box-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
}

/* --- Action Buttons --- */
.bv-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
    height: 56px;
    z-index: 10;
}

.bv-back-btn {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.bv-back-btn:hover {
    transform: scale(1.08);
    background: rgba(255,255,255,0.1);
}

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

.bv-open-btn {
    position: relative;
    padding: 16px 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, #DAA520 0%, #B8860B 100%);
    box-shadow: 0 0 32px rgba(218,165,32,0.35), 0 4px 20px rgba(0,0,0,0.3);
    border: none;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.2s ease;
    font-family: inherit;
}

.bv-open-btn:hover {
    transform: scale(1.03);
}

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

.bv-open-btn span {
    position: relative;
    z-index: 10;
}

.btn-shimmer {
    position: absolute;
    inset: 0;
    opacity: 0.4;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    background-size: 200% 100%;
    animation: shimmer 2s ease-in-out infinite;
}

.bv-hint {
    position: absolute;
    bottom: 20px;
    font-size: 12px;
    color: rgba(147,197,253,0.2);
    letter-spacing: 0.05em;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.bv-hint.visible {
    opacity: 0.3;
}

/* ============================================
   VIDEO OVERLAY
   ============================================ */
#video-overlay {
    z-index: 300;
    background: #000;
}

.video-el {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    outline: none;
}

.video-el.video-hidden {
    visibility: hidden;
}

/* ============================================
   REVEAL (DRAG & DROP)
   ============================================ */
#reveal-overlay {
    z-index: 400;
    background: radial-gradient(ellipse at 50% 40%, rgba(6,12,30,0.97) 0%, rgba(3,6,15,0.99) 100%);
    gap: 0;
}

.rv-title {
    font-size: clamp(22px, 4vw, 30px);
    font-weight: 900;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    background: linear-gradient(180deg, #FFE082, #FFA000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.rv-subtitle {
    color: rgba(255,255,255,0.3);
    font-size: 14px;
    margin-bottom: 40px;
}

.rv-drag-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    width: 100%;
    padding: 0 32px;
}

/* --- Draggable Chip --- */
.rv-chip {
    cursor: grab;
    z-index: 30;
    flex-shrink: 0;
    touch-action: none;
}

.rv-chip:active {
    cursor: grabbing;
}

.rv-chip.dragging {
    z-index: 50;
    transform: scale(1.2);
}

.rv-chip img {
    width: 112px;
    height: 112px;
    object-fit: contain;
    pointer-events: none;
    filter: none;
}

/* --- Arrows --- */
.rv-arrows {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rv-arrow {
    font-size: 20px;
    color: rgba(218,165,32,0.5);
    animation: arrowPulse 1.2s ease-in-out infinite;
    animation-delay: var(--ad);
}

@keyframes arrowPulse {
    0%, 100% { transform: translateX(0); opacity: 0.2; }
    50% { transform: translateX(6px); opacity: 0.6; }
}

/* --- Drop Zone --- */
.rv-dropzone {
    flex-shrink: 0;
    width: 128px;
    height: 128px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
    border: 2px dashed rgba(255,255,255,0.1);
    box-shadow: inset 0 0 20px rgba(0,0,0,0.2);
}

.rv-dropzone.hover {
    background: linear-gradient(135deg, rgba(218,165,32,0.15), rgba(59,130,246,0.1));
    border: 2px solid rgba(218,165,32,0.5);
    box-shadow: 0 0 40px rgba(218,165,32,0.2), inset 0 0 30px rgba(218,165,32,0.05);
    transform: scale(1.08);
}

.rv-dz-logo {
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(59,130,246,0.2));
}

.rv-dz-nick {
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.rv-dz-label {
    font-size: 10px;
    letter-spacing: 0.1em;
    font-weight: 500;
    margin-top: 2px;
    color: rgba(255,255,255,0.25);
    transition: color 0.3s ease;
}

.rv-dropzone.hover .rv-dz-label {
    color: rgba(218,165,32,0.8);
}

/* --- Hint --- */
.rv-hint {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.rv-hint-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(218,165,32,0.1);
    border: 1px solid rgba(218,165,32,0.2);
    animation: hintSlide 2s ease-in-out infinite;
}

.rv-hint span {
    color: rgba(255,255,255,0.2);
    font-size: 12px;
    letter-spacing: 0.05em;
}

@keyframes hintSlide {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(20px); }
}

/* ============================================
   SUCCESS
   ============================================ */
#success-overlay {
    z-index: 500;
    background: radial-gradient(ellipse at 50% 40%, rgba(10,20,40,0.95) 0%, rgba(4,8,16,0.98) 100%);
}

.sc-chip {
    width: 112px;
    height: 112px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: none;
}

.sc-title {
    font-size: clamp(22px, 4vw, 30px);
    font-weight: 900;
    letter-spacing: -0.02em;
    background: linear-gradient(180deg, #FFE082, #FFA000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.sc-subtitle {
    color: rgba(147,197,253,0.4);
    font-size: 14px;
    margin-top: 8px;
}

/* ============================================
   WAIT / COUNTDOWN
   ============================================ */
#wait-popup {
    z-index: 600;
    background: rgba(5,5,15,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.wt-card {
    position: relative;
    background: linear-gradient(165deg, rgba(25,25,50,0.92) 0%, rgba(15,15,35,0.96) 100%);
    border: 1px solid rgba(255,215,0,0.25);
    border-radius: 24px;
    padding: 44px 36px 36px;
    max-width: 460px;
    width: 90%;
    text-align: center;
    box-shadow: 0 0 60px rgba(255,215,0,0.08), 0 25px 80px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.06);
    overflow: hidden;
}

.wt-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,215,0,0.6), transparent);
    border-radius: 2px;
}

.wt-icon {
    font-size: 48px;
    margin-bottom: 20px;
    animation: waitPulse 2s ease-in-out infinite;
}

@keyframes waitPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

.wt-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 16px;
}

.wt-timer span {
    font-family: inherit;
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.02em;
}

.wt-sep {
    font-size: 2.4rem !important;
    opacity: 0.6;
    animation: sepBlink 1s step-end infinite;
}

@keyframes sepBlink {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.15; }
}

.wt-text {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 28px;
    line-height: 1.5;
}

.wt-note {
    background: rgba(255,215,0,0.08);
    border: 1px solid rgba(255,215,0,0.2);
    border-radius: 12px;
    padding: 14px 20px;
}

.wt-note p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
    margin: 0;
}

.wt-note strong {
    color: #FFD700;
    font-weight: 700;
}

/* ============================================
   KEYFRAMES
   ============================================ */
@keyframes breathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10% { transform: translateX(-6px) rotate(-1deg); }
    20% { transform: translateX(6px) rotate(1deg); }
    30% { transform: translateX(-5px) rotate(-0.5deg); }
    40% { transform: translateX(5px) rotate(0.5deg); }
    50% { transform: translateX(-3px); }
    60% { transform: translateX(3px); }
    70% { transform: translateX(-2px); }
    80% { transform: translateX(2px); }
    90% { transform: translateX(-1px); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .nm-content {
        padding: 28px 20px;
    }

    .nm-logo {
        height: 80px;
        margin-bottom: 20px;
    }

    .nm-title {
        font-size: 22px;
    }

    .nm-desc {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .nm-chips {
        gap: 8px;
    }

    .nm-chip img {
        width: 60px;
        height: 60px;
    }

    .bs-logo {
        height: 44px;
    }

    .bs-boxes {
        gap: 10px;
        padding: 0 16px;
        max-width: 400px;
    }

    .box-btn {
        width: calc(33.33% - 10px);
    }

    .box-btn:nth-child(4),
    .box-btn:nth-child(5) {
        width: calc(40% - 10px);
    }

    .rv-drag-row {
        gap: 20px;
        padding: 0 16px;
    }

    .rv-chip img {
        width: 96px;
        height: 96px;
    }

    .rv-dropzone {
        width: 112px;
        height: 112px;
        border-radius: 20px;
    }

    .rv-dz-logo {
        height: 32px;
    }

    .sc-chip {
        width: 96px;
        height: 96px;
    }

    .wt-card {
        padding: 28px 20px 24px;
    }
}

@media (max-width: 400px) {
    .nm-chip img {
        width: 52px;
        height: 52px;
    }

    .nm-chips {
        gap: 6px;
    }

    #nickname-input {
        padding: 12px 16px;
        font-size: 14px;
    }

    .nm-btn {
        padding: 14px 20px;
        font-size: 14px;
    }

    .rv-chip img {
        width: 80px;
        height: 80px;
    }

    .rv-dropzone {
        width: 96px;
        height: 96px;
        border-radius: 16px;
    }

    .bv-open-btn {
        padding: 14px 32px;
        font-size: 14px;
    }
}