.liquid-glass .lg-stage {
    position: relative;
    border-radius: var(--radius, 16px);
    min-height: 360px;
    overflow: hidden;
}

.liquid-glass .lg-stage::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(125deg, rgba(255, 255, 255, .15), rgba(15, 23, 42, .65));
    mix-blend-mode: soft-light
}

.liquid-glass .lg-card {
    position: absolute;
    width: 280px;
    height: 120px;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    color: var(--text, #f8fafc);
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .35);
    box-shadow: 0 25px 65px rgba(8, 15, 40, .55);
    text-shadow: 0 1px 2px rgba(15, 15, 15, .35);
    isolation: isolate;
    cursor: grab;
    user-select: none;
    touch-action: none
}

.liquid-glass .lg-card.is-dragging {
    cursor: grabbing
}

.liquid-glass .lg-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--glass-pseudo, radial-gradient(circle, rgba(255, 255, 255, .9) 0%, rgba(255, 255, 255, 0) 70%));
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: var(--hl-opacity, .85);
    filter: blur(35px);
    mix-blend-mode: screen;
    z-index: 0;
}

.liquid-glass .lg-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--glass-noise, none);
    background-size: 200px 200px;
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
}

.liquid-glass .lg-card>* {
    position: relative;
    z-index: 2
}

.liquid-glass .lg-ghost-btn {
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, .9);
    text-align: center
}

.liquid-glass .lg-field {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.liquid-glass .lg-code {
    width: 100%;
    font-family: var(--font-mono, "JetBrains Mono", monospace);
    border: 1px dashed rgba(255, 255, 255, .2);
    padding: 12px;
    background: rgba(15, 23, 42, .35);
    border-radius: 12px;
    color: inherit
}
