/* ============================================================
   DESIGN HUB — FUSION & EDIT MODE
   Liquid Glass 3D System with Tactile Depth
   ============================================================ */

/* ── Input Bar Wrapper — Professional Glass Surface ────── */
.dh-input-bar {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: rgba(16, 18, 41, 0.55);
    -webkit-backdrop-filter: blur(12px) saturate(1.3);
    backdrop-filter: blur(12px) saturate(1.3);
    border: 1px solid rgba(100, 130, 200, 0.12);
    border-radius: 18px;
    padding: 1rem 1.1rem;
    box-shadow:
        0 2px 12px rgba(0, 0, 0, 0.18),
        0 8px 28px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.dh-input-bar:focus-within {
    border-color: rgba(0, 195, 255, 0.18);
    box-shadow:
        0 2px 12px rgba(0, 0, 0, 0.18),
        0 8px 28px rgba(0, 0, 0, 0.1),
        0 0 24px rgba(0, 195, 255, 0.06);
}

/* Textarea — borderless inside glass surface */
.dh-input-bar textarea {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    min-height: 120px;
    padding: 0.25rem 0.35rem;
    font-size: 1.1em;
}
.dh-input-bar textarea:focus {
    outline: none;
    border: none !important;
    box-shadow: none !important;
}

/* ── Mode Row: toolbar inside input bar ───────────────── */
.dh-mode-row-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 0.15rem;
    width: 100%;
}

/* ── Mode Pill Buttons — Tactile Liquid Glass ─────────── */
.dh-mode-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.03em;
    font-family: inherit;
    color: rgba(180, 200, 230, 0.7);
    cursor: pointer;
    border: 1px solid rgba(100, 160, 255, 0.12);
    border-radius: 20px;
    position: relative;
    overflow: hidden;

    /* Liquid glass tactile surface */
    background:
        linear-gradient(180deg, rgba(255,255,255,0.06) 0%, transparent 60%),
        rgba(10, 16, 38, 0.4);
    -webkit-backdrop-filter: blur(14px) saturate(1.2);
    backdrop-filter: blur(14px) saturate(1.2);

    /* Soft shadow + inner light = physical depth */
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.25),
        0 4px 10px rgba(0, 0, 0, 0.15),
        0 6px 16px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(220, 240, 255, 0.12),
        inset 0 -1px 0 rgba(40, 60, 140, 0.06);

    /* 3D perspective for tactile feel */
    transform: perspective(500px) rotateX(0deg) translateZ(0);
    transform-style: preserve-3d;
    transition: all 0.28s cubic-bezier(.4,0,.2,1);
}

/* Top-light crescent for physical lighting */
.dh-mode-pill::before {
    content: '';
    position: absolute;
    top: 0; left: 15%; right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(180, 220, 255, 0.22), transparent);
    pointer-events: none;
}

/* Subtle inner radial glow */
.dh-mode-pill::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(
        ellipse at 50% -20%,
        rgba(140, 200, 255, 0.06) 0%,
        transparent 65%
    );
    pointer-events: none;
}

.dh-mode-pill i {
    font-size: 11px;
    transition: transform 0.22s ease;
    z-index: 1;
}

/* Hover — lift + brighten */
.dh-mode-pill:hover {
    color: rgba(220, 240, 255, 0.95);
    border-color: rgba(100, 180, 255, 0.25);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.09) 0%, transparent 55%),
        rgba(14, 22, 48, 0.5);
    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.28),
        0 6px 16px rgba(0, 0, 0, 0.18),
        0 10px 24px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(220, 240, 255, 0.16),
        inset 0 -1px 0 rgba(40, 60, 140, 0.08),
        0 0 14px rgba(0, 140, 255, 0.06);
    transform: perspective(500px) rotateX(-1.5deg) translateY(-1px) translateZ(2px);
}

.dh-mode-pill:hover i {
    transform: scale(1.15);
}

/* Active press — push down into surface */
.dh-mode-pill:active {
    transform: perspective(500px) rotateX(1deg) translateY(0.5px) scale(0.97);
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.3),
        0 2px 6px rgba(0, 0, 0, 0.2),
        inset 0 2px 4px rgba(0, 0, 0, 0.18),
        inset 0 -1px 0 rgba(40, 60, 140, 0.04);
    transition: all 0.1s ease;
}

/* Active (toggled ON) state */
.dh-mode-pill.active {
    color: #fff;
    border-color: rgba(0, 170, 255, 0.3);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.08) 0%, transparent 50%),
        linear-gradient(145deg, rgba(0, 120, 255, 0.22) 0%, rgba(80, 60, 200, 0.14) 100%);
    box-shadow:
        0 2px 6px rgba(0, 120, 255, 0.12),
        0 6px 18px rgba(0, 0, 0, 0.18),
        0 0 20px rgba(0, 170, 255, 0.08),
        inset 0 1px 0 rgba(220, 240, 255, 0.15),
        inset 0 -1px 0 rgba(40, 80, 200, 0.06);
    transform: perspective(500px) rotateX(-0.5deg) translateY(-0.5px) scale(1.02);
}

/* ── Drop Zone Container ──────────────────────────────── */
.dh-drop-zone {
    width: 100%;
    margin-top: 14px;
    padding: 16px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;

    /* Deep liquid glass surface */
    background: rgba(6, 10, 28, 0.45);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    backdrop-filter: blur(24px) saturate(1.4);
    border: 1px solid rgba(100, 160, 255, 0.12);
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.22),
        0 16px 36px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(180, 220, 255, 0.06),
        inset 0 -1px 0 rgba(40, 70, 160, 0.04);

    /* 3D depth */
    transform: perspective(800px) rotateX(0deg);
    transform-style: preserve-3d;
    transition: transform 0.4s cubic-bezier(.4,0,.2,1), opacity 0.4s ease;
}

.dh-drop-zone::before {
    content: '';
    position: absolute;
    top: 0; left: 20px; right: 20px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(130, 195, 255, 0.15), transparent);
    pointer-events: none;
}

/* Zone header */
.dh-drop-zone-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

/* Compact edit zone */
#dh-edit-zone {
    padding: 10px 14px;
    margin-top: 10px;
    border-radius: 12px;
}
#dh-edit-zone .dh-drop-zone-header {
    margin-bottom: 8px;
}

.dh-drop-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(160, 185, 220, 0.55);
}

.dh-drop-clear {
    background: rgba(255, 80, 80, 0.08);
    border: 1px solid rgba(255, 80, 80, 0.15);
    border-radius: 8px;
    color: rgba(255, 120, 120, 0.7);
    font-size: 11px;
    padding: 4px 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.dh-drop-clear:hover {
    background: rgba(255, 80, 80, 0.15);
    color: rgba(255, 140, 140, 0.95);
    border-color: rgba(255, 80, 80, 0.3);
}

/* ── Slots Grid ───────────────────────────────────────── */
.dh-slots-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    width: 100%;
}

.dh-slots-single {
    grid-template-columns: 1fr;
    max-width: 160px;
    margin: 0 auto;
}

/* ── Individual Slot — Liquid Glass 3D Card ───────────── */
.dh-slot {
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;

    /* Liquid glass inner card */
    background: rgba(10, 16, 38, 0.55);
    border: 2px dashed rgba(100, 160, 255, 0.2);
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.2),
        0 8px 20px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(180, 220, 255, 0.05),
        inset 0 -1px 0 rgba(40, 70, 160, 0.03);

    /* 3D card depth */
    transform: perspective(400px) rotateX(0deg) rotateY(0deg) scale(1);
    transform-style: preserve-3d;
    transition: all 0.35s cubic-bezier(.4,0,.2,1);
    backface-visibility: hidden;
}

/* Slot top-light crescent */
.dh-slot::before {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(140, 200, 255, 0.12), transparent);
    pointer-events: none;
    opacity: 0.6;
}

/* Subtle inner glow overlay */
.dh-slot::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(
        ellipse at 50% 0%,
        rgba(120, 180, 255, 0.04) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.dh-slot i {
    font-size: 1.4rem;
    color: rgba(160, 190, 230, 0.35);
    transition: all 0.3s ease;
    z-index: 1;
}

.dh-slot:hover {
    border-color: rgba(0, 170, 255, 0.35);
    background: rgba(12, 22, 48, 0.6);
    box-shadow:
        0 4px 16px rgba(0, 120, 255, 0.12),
        0 12px 28px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(180, 220, 255, 0.1),
        inset 0 -1px 0 rgba(60, 100, 200, 0.05);
    transform: perspective(400px) rotateX(-2deg) rotateY(1deg) scale(1.03);
}

.dh-slot:hover i {
    color: rgba(0, 190, 255, 0.7);
    transform: scale(1.2);
}

/* Active drag-over state */
.dh-slot.drag-over {
    border-color: rgba(0, 200, 255, 0.55);
    border-style: solid;
    background: rgba(0, 120, 255, 0.1);
    box-shadow:
        0 0 30px rgba(0, 170, 255, 0.15),
        0 8px 24px rgba(0, 0, 0, 0.2),
        inset 0 0 20px rgba(0, 160, 255, 0.06);
    transform: perspective(400px) rotateX(-1deg) scale(1.05);
}

/* Slot with loaded image */
.dh-slot.has-image {
    border-style: solid;
    border-color: rgba(0, 170, 255, 0.28);
    background-size: cover;
    background-position: center;
    box-shadow:
        0 4px 14px rgba(0, 0, 0, 0.25),
        0 12px 30px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.dh-slot.has-image i { display: none; }

.dh-slot.has-image::after {
    background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.35) 100%);
}

/* Large single slot for edit mode — compact */
.dh-slot-large {
    aspect-ratio: 3 / 2;
    min-height: 90px;
    max-height: 120px;
}

/* ── Action Buttons (Morphed Generate Button) ─────────── */
/* Generate Design button morphed into Fuse Now */
.generate-btn.dh-fuse-active {
    background: linear-gradient(135deg, rgba(120, 80, 255, 0.95), rgba(0, 200, 255, 0.9)) !important;
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.2),
        0 8px 24px rgba(0, 0, 0, 0.15),
        0 0 20px rgba(0, 170, 255, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(.34,1.56,.64,1);
}

.generate-btn.dh-fuse-active:not(:disabled):hover {
    transform: perspective(500px) rotateX(-1.5deg) translateY(-1px);
    box-shadow:
        0 4px 16px rgba(0, 140, 255, 0.22),
        0 12px 32px rgba(0, 0, 0, 0.2),
        0 0 30px rgba(0, 170, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.generate-btn.dh-fuse-active:disabled,
.generate-btn.dh-edit-active:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    filter: saturate(0.5);
}

/* Generate Design button morphed into Edit Now */
.generate-btn.dh-edit-active {
    background: linear-gradient(135deg, rgba(255, 140, 50, 0.92), rgba(255, 60, 120, 0.88)) !important;
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.2),
        0 8px 24px rgba(0, 0, 0, 0.15),
        0 0 20px rgba(255, 120, 60, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(.34,1.56,.64,1);
}

.generate-btn.dh-edit-active:not(:disabled):hover {
    transform: perspective(500px) rotateX(-1.5deg) translateY(-1px);
    box-shadow:
        0 4px 16px rgba(255, 120, 60, 0.22),
        0 12px 32px rgba(0, 0, 0, 0.2),
        0 0 30px rgba(255, 120, 60, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* ── Design Hub Controls Panel — scrollable with custom scrollbar ── */
#design-hub > .studio-controls-panel {
    overflow-y: auto;
    max-height: 82vh;
    scrollbar-width: thin;
    scrollbar-color: rgba(80, 140, 255, 0.25) rgba(10, 16, 38, 0.3);
}

/* WebKit custom scrollbar — matching liquid glass aesthetic */
#design-hub > .studio-controls-panel::-webkit-scrollbar {
    width: 6px;
}
#design-hub > .studio-controls-panel::-webkit-scrollbar-track {
    background: rgba(10, 16, 38, 0.3);
    border-radius: 6px;
    margin: 6px 0;
}
#design-hub > .studio-controls-panel::-webkit-scrollbar-thumb {
    background:
        linear-gradient(180deg, rgba(80, 160, 255, 0.35) 0%, rgba(120, 80, 200, 0.3) 100%);
    border-radius: 6px;
    border: 1px solid rgba(100, 160, 255, 0.12);
    box-shadow: inset 0 1px 0 rgba(220, 240, 255, 0.12);
}
#design-hub > .studio-controls-panel::-webkit-scrollbar-thumb:hover {
    background:
        linear-gradient(180deg, rgba(80, 170, 255, 0.5) 0%, rgba(140, 90, 220, 0.45) 100%);
    border-color: rgba(100, 180, 255, 0.25);
}
#design-hub > .studio-controls-panel::-webkit-scrollbar-thumb:active {
    background:
        linear-gradient(180deg, rgba(60, 140, 255, 0.6) 0%, rgba(120, 70, 200, 0.55) 100%);
}

/* ── Three.js Animation Canvas Overlay ────────────────── */
.dh-three-canvas {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    border-radius: inherit;
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 768px) {
    .dh-slots-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .dh-mode-row-inline {
        flex-wrap: wrap;
        gap: 6px;
    }
    .dh-mode-pill {
        padding: 7px 12px;
        font-size: 10.5px;
    }
    .dh-slot-large {
        min-height: 70px;
        max-height: 100px;
    }
    .dh-input-bar {
        border-radius: 14px;
        padding: 0.75rem 0.85rem;
    }
    .dh-input-bar textarea {
        min-height: 90px;
    }
}

@media (max-width: 480px) {
    .dh-slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================================
   MUSIC LAB — VOCAL MODE
   Reuses dh-mode-pill & lyr- classes from Aura Labs Lyricist
   ============================================================ */

/* ── Input Bar Wrapper (mirrors dh-input-bar) ─────────── */
.ml-input-bar {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: rgba(16, 18, 41, 0.55);
    -webkit-backdrop-filter: blur(12px) saturate(1.3);
    backdrop-filter: blur(12px) saturate(1.3);
    border: 1px solid rgba(100, 130, 200, 0.12);
    border-radius: 18px;
    padding: 1rem 1.1rem;
    box-shadow:
        0 2px 12px rgba(0, 0, 0, 0.18),
        0 8px 28px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}
.ml-input-bar:focus-within {
    border-color: rgba(0, 195, 255, 0.18);
    box-shadow:
        0 2px 12px rgba(0, 0, 0, 0.18),
        0 8px 28px rgba(0, 0, 0, 0.1),
        0 0 24px rgba(0, 195, 255, 0.06);
}
.ml-input-bar textarea {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    min-height: 120px;
    padding: 0.25rem 0.35rem;
    font-size: 1.1em;
}
.ml-input-bar textarea:focus {
    outline: none;
    border: none !important;
    box-shadow: none !important;
}

/* ── Vocal Zone — 3D Glass Surface ────────────────────── */
.ml-vocal-zone {
    width: 100%;
    margin-top: 10px;
    padding: 10px 11px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.045) 0%, rgba(255,255,255,0.01) 50%, transparent 100%),
        rgba(6, 8, 22, 0.6);
    -webkit-backdrop-filter: blur(24px) saturate(1.4) brightness(1.05);
    backdrop-filter: blur(24px) saturate(1.4) brightness(1.05);
    border: 1px solid rgba(140, 110, 255, 0.12);
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.25),
        0 4px 16px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    transform: perspective(600px) rotateX(0deg);
    transform-style: preserve-3d;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ml-vocal-zone:hover {
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.25),
        0 6px 20px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1),
        0 0 20px rgba(120, 80, 255, 0.04);
}

/* ── Lyricist sub-components within Studio context ──── */
#music-lab .lyr-lyrics-block {
    margin-bottom: 0;
}
#music-lab .lyr-lyrics-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 5px;
    border-bottom: 1px solid rgba(140, 110, 255, 0.08);
    margin-bottom: 5px;
}
#music-lab .lyr-section-label {
    font-size: 11px;
    font-weight: 700;
    color: rgba(180, 160, 255, 0.5);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
}
#music-lab .lyr-section-label i {
    font-size: 10px;
}
#music-lab .lyr-ai-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 600;
    color: rgba(180, 200, 230, 0.7);
    background: rgba(120, 80, 255, 0.1);
    border: 1px solid rgba(120, 80, 255, 0.15);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.25s ease;
}
#music-lab .lyr-ai-btn:hover {
    color: #fff;
    background: rgba(120, 80, 255, 0.2);
    border-color: rgba(120, 80, 255, 0.3);
}
#music-lab .lyr-editor {
    display: flex;
    border: 1px solid rgba(140, 110, 255, 0.08);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.18);
    overflow: hidden;
    min-height: 72px;
    max-height: 120px;
}
#music-lab .lyr-line-nums {
    display: flex;
    flex-direction: column;
    padding: 6px 5px;
    background: rgba(100, 70, 220, 0.03);
    border-right: 1px solid rgba(140, 110, 255, 0.06);
    font-size: 10px;
    color: rgba(180, 160, 255, 0.28);
    user-select: none;
    min-width: 32px;
    text-align: right;
    line-height: 1.6;
    overflow: hidden;
}
#music-lab .lyr-line-nums span {
    display: block;
}
#music-lab .lyr-lyrics-area {
    flex: 1;
    resize: none;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 6px 9px;
    font-size: 12px;
    line-height: 1.6;
    color: rgba(220, 210, 255, 0.9);
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    overflow-y: auto;
}
#music-lab .lyr-lyrics-area:focus { outline: none; }
#music-lab .lyr-lyrics-area::placeholder { color: rgba(180, 160, 255, 0.3); }

/* AI Panel */
#music-lab .lyr-ai-panel {
    margin-top: 6px;
    padding: 8px 9px;
    border-radius: 8px;
    background: rgba(100, 70, 220, 0.05);
    border: 1px solid rgba(140, 110, 255, 0.08);
}
#music-lab .lyr-ai-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}
#music-lab .lyr-ai-title {
    font-size: 11.5px;
    font-weight: 700;
    color: rgba(200, 180, 255, 0.75);
    letter-spacing: 0.02em;
}
#music-lab .lyr-ai-close {
    background: none;
    border: none;
    color: rgba(180, 160, 255, 0.5);
    cursor: pointer;
    font-size: 14px;
    padding: 4px;
}
#music-lab .lyr-ai-close:hover { color: #fff; }
#music-lab .lyr-ai-prompt-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.2) !important;
    border: 1px solid rgba(140, 110, 255, 0.08) !important;
    border-radius: 6px !important;
    padding: 6px 8px;
    font-size: 11.5px;
    color: rgba(220, 210, 255, 0.9);
    resize: none;
    margin-bottom: 6px;
}
#music-lab .lyr-ai-prompt-input:focus { outline: none; border-color: rgba(120, 80, 255, 0.25) !important; }
#music-lab .lyr-ai-options {
    margin-bottom: 6px;
}
#music-lab .lyr-select-sm {
    padding: 5px 10px;
    font-size: 11px;
    background: rgba(0, 0, 0, 0.2);
    color: rgba(200, 180, 255, 0.8);
    border: 1px solid rgba(120, 80, 255, 0.12);
    border-radius: 8px;
    cursor: pointer;
}
#music-lab .lyr-ai-run {
    width: 100%;
    padding: 5px;
    border: none;
    border-radius: 6px;
    background: linear-gradient(135deg, rgba(120, 80, 255, 0.3), rgba(80, 60, 200, 0.25));
    color: rgba(230, 220, 255, 0.95);
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
}
#music-lab .lyr-ai-run:hover { background: linear-gradient(135deg, rgba(120, 80, 255, 0.5), rgba(80, 60, 200, 0.4)); }

/* Tags */
#music-lab .lyr-tags-block {
    margin-top: 6px;
}
#music-lab .lyr-tags-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
    padding: 4px 6px;
    background: rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(140, 110, 255, 0.06);
    border-radius: 8px;
    margin-bottom: 5px;
}
#music-lab .lyr-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}
#music-lab .lyr-tags-input {
    flex: 1;
    min-width: 60px;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    color: rgba(220, 210, 255, 0.9);
    font-size: 12px;
    padding: 4px;
}
#music-lab .lyr-tags-input:focus { outline: none; }
#music-lab .lyr-presets {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}
#music-lab .lyr-preset {
    padding: 3px 8px;
    font-size: 9.5px;
    font-weight: 600;
    color: rgba(180, 160, 255, 0.55);
    background: rgba(120, 80, 255, 0.06);
    border: 1px solid rgba(120, 80, 255, 0.08);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}
#music-lab .lyr-preset:hover {
    color: rgba(220, 200, 255, 0.9);
    background: rgba(120, 80, 255, 0.14);
    border-color: rgba(120, 80, 255, 0.2);
}
#music-lab .lyr-preset.active {
    color: #fff;
    background: rgba(120, 80, 255, 0.25);
    border-color: rgba(120, 80, 255, 0.35);
}
#music-lab .ml-tag-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    font-size: 10px;
    font-weight: 600;
    color: rgba(220, 200, 255, 0.9);
    background: rgba(120, 80, 255, 0.18);
    border: 1px solid rgba(120, 80, 255, 0.2);
    border-radius: 10px;
}
#music-lab .ml-tag-chip .ml-tag-remove {
    cursor: pointer;
    font-size: 9px;
    opacity: 0.5;
    transition: opacity 0.2s;
    background: none;
    border: none;
    color: inherit;
    padding: 0;
}
#music-lab .ml-tag-chip .ml-tag-remove:hover { opacity: 1; }

/* ── Custom Scrollbar — Studio Panels ───────────────── */

/* ── SFX Zone — 3D Glass Surface ──────────────────── */
.ml-sfx-zone {
    width: 100%;
    margin-top: 10px;
    padding: 12px 11px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(0,195,255,0.04) 0%, rgba(120,80,255,0.02) 50%, transparent 100%),
        rgba(6, 8, 22, 0.6);
    -webkit-backdrop-filter: blur(24px) saturate(1.4) brightness(1.05);
    backdrop-filter: blur(24px) saturate(1.4) brightness(1.05);
    border: 1px solid rgba(0, 195, 255, 0.1);
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.25),
        0 4px 16px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    transform: perspective(600px) rotateX(0deg);
    transform-style: preserve-3d;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ml-sfx-zone:hover {
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.25),
        0 6px 20px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.07),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1),
        0 0 20px rgba(0, 195, 255, 0.04);
}
.ml-sfx-section-label {
    font-size: 10.5px;
    font-weight: 700;
    color: rgba(130, 210, 255, 0.5);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px;
}
.ml-sfx-presets-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    margin-bottom: 10px;
}
.ml-sfx-preset-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 7px 6px;
    font-size: 10px;
    font-weight: 600;
    color: rgba(180, 210, 240, 0.65);
    background: rgba(0, 195, 255, 0.05);
    border: 1px solid rgba(0, 195, 255, 0.08);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(8px);
    animation: mlSfxItemIn 0.35s ease forwards;
}
.ml-sfx-preset-btn:nth-child(1)  { animation-delay: 0.03s; }
.ml-sfx-preset-btn:nth-child(2)  { animation-delay: 0.06s; }
.ml-sfx-preset-btn:nth-child(3)  { animation-delay: 0.09s; }
.ml-sfx-preset-btn:nth-child(4)  { animation-delay: 0.12s; }
.ml-sfx-preset-btn:nth-child(5)  { animation-delay: 0.15s; }
.ml-sfx-preset-btn:nth-child(6)  { animation-delay: 0.18s; }
.ml-sfx-preset-btn:nth-child(7)  { animation-delay: 0.21s; }
.ml-sfx-preset-btn:nth-child(8)  { animation-delay: 0.24s; }
.ml-sfx-preset-btn:nth-child(9)  { animation-delay: 0.27s; }
.ml-sfx-preset-btn:nth-child(10) { animation-delay: 0.30s; }
.ml-sfx-preset-btn:nth-child(11) { animation-delay: 0.33s; }
.ml-sfx-preset-btn:nth-child(12) { animation-delay: 0.36s; }
.ml-sfx-preset-btn i { font-size: 11px; }
.ml-sfx-preset-btn:hover {
    color: #fff;
    background: rgba(0, 195, 255, 0.12);
    border-color: rgba(0, 195, 255, 0.2);
    transform: translateY(0) scale(1.03);
}
.ml-sfx-preset-btn.active {
    color: #fff;
    background: rgba(0, 195, 255, 0.18);
    border-color: rgba(0, 195, 255, 0.3);
    box-shadow: 0 0 10px rgba(0, 195, 255, 0.08);
}
@keyframes mlSfxItemIn {
    to { opacity: 1; transform: translateY(0); }
}

/* Duration section */
.ml-sfx-duration-section {
    padding: 8px 0 0;
    border-top: 1px solid rgba(0, 195, 255, 0.06);
    opacity: 0;
    animation: mlSfxItemIn 0.4s ease 0.4s forwards;
}
.ml-sfx-duration-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}
.ml-sfx-duration-label {
    font-size: 10.5px;
    font-weight: 700;
    color: rgba(130, 210, 255, 0.5);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
}
.ml-sfx-auto-label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 10.5px;
    font-weight: 600;
    color: rgba(180, 210, 240, 0.6);
    cursor: pointer;
}
.ml-sfx-auto-label input[type="checkbox"] {
    accent-color: rgba(0, 195, 255, 0.6);
    width: 13px;
    height: 13px;
    cursor: pointer;
}
.ml-sfx-slider-row {
    display: flex;
    align-items: center;
    gap: 8px;
}
.ml-sfx-slider {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 4px;
    background: rgba(0, 195, 255, 0.1);
    border-radius: 4px;
    outline: none;
    transition: opacity 0.25s;
}
.ml-sfx-slider:disabled { opacity: 0.35; }
.ml-sfx-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 195, 255, 0.6);
    border: 1px solid rgba(0, 195, 255, 0.3);
    cursor: pointer;
    transition: box-shadow 0.2s;
}
.ml-sfx-slider::-webkit-slider-thumb:hover {
    box-shadow: 0 0 8px rgba(0, 195, 255, 0.3);
}
.ml-sfx-slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 195, 255, 0.6);
    border: 1px solid rgba(0, 195, 255, 0.3);
    cursor: pointer;
}
.ml-sfx-duration-value {
    font-size: 10.5px;
    font-weight: 700;
    color: rgba(0, 195, 255, 0.55);
    min-width: 32px;
    text-align: right;
}

/* ── Custom Scrollbar — Studio Panels ───────────────── */
.content-area,
.studio-controls-panel {
    scrollbar-width: thin;
    scrollbar-color: rgba(120, 80, 255, 0.18) transparent;
}
.content-area::-webkit-scrollbar,
.studio-controls-panel::-webkit-scrollbar {
    width: 4px;
}
.content-area::-webkit-scrollbar-track,
.studio-controls-panel::-webkit-scrollbar-track {
    background: transparent;
}
.content-area::-webkit-scrollbar-thumb,
.studio-controls-panel::-webkit-scrollbar-thumb {
    background: rgba(120, 80, 255, 0.15);
    border-radius: 10px;
}
.content-area::-webkit-scrollbar-thumb:hover,
.studio-controls-panel::-webkit-scrollbar-thumb:hover {
    background: rgba(120, 80, 255, 0.3);
}

/* Lyrics editor inner scroll */
#music-lab .lyr-lyrics-area {
    scrollbar-width: thin;
    scrollbar-color: rgba(120, 80, 255, 0.15) transparent;
}
#music-lab .lyr-lyrics-area::-webkit-scrollbar { width: 3px; }
#music-lab .lyr-lyrics-area::-webkit-scrollbar-track { background: transparent; }
#music-lab .lyr-lyrics-area::-webkit-scrollbar-thumb {
    background: rgba(120, 80, 255, 0.12);
    border-radius: 10px;
}
#music-lab .lyr-lyrics-area::-webkit-scrollbar-thumb:hover {
    background: rgba(120, 80, 255, 0.25);
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 768px) {
    .ml-input-bar {
        border-radius: 14px;
        padding: 0.75rem 0.85rem;
    }
    .ml-input-bar textarea {
        min-height: 90px;
    }
    #music-lab .lyr-editor {
        min-height: 60px;
        max-height: 100px;
    }
    .ml-sfx-presets-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* ============================================================
   VIDEO STUDIO — FRAME WEAVER & INGREDIENT WEAVER MODES
   Liquid Glass 3D System (mirrors Design Hub Fusion)
   ============================================================ */

/* ── Video Studio Input Bar ─────────────────────────────── */
.vs-input-bar {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: rgba(16, 18, 41, 0.55);
    -webkit-backdrop-filter: blur(12px) saturate(1.3);
    backdrop-filter: blur(12px) saturate(1.3);
    border: 1px solid rgba(100, 130, 200, 0.12);
    border-radius: 18px;
    padding: 1rem 1.1rem;
    box-shadow:
        0 2px 12px rgba(0, 0, 0, 0.18),
        0 8px 28px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}
.vs-input-bar:focus-within {
    border-color: rgba(0, 195, 255, 0.18);
    box-shadow:
        0 2px 12px rgba(0, 0, 0, 0.18),
        0 8px 28px rgba(0, 0, 0, 0.1),
        0 0 24px rgba(0, 195, 255, 0.06);
}
.vs-input-bar textarea {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    min-height: 120px;
    padding: 0.25rem 0.35rem;
    font-size: 1.1em;
}
.vs-input-bar textarea:focus {
    outline: none;
    border: none !important;
    box-shadow: none !important;
}

/* ── Video Studio Drop Zones ────────────────────────────── */
.vs-drop-zone {
    width: 100%;
    margin-top: 14px;
    padding: 16px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    background: rgba(6, 10, 28, 0.45);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    backdrop-filter: blur(24px) saturate(1.4);
    border: 1px solid rgba(100, 160, 255, 0.12);
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.22),
        0 16px 36px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(180, 220, 255, 0.06),
        inset 0 -1px 0 rgba(40, 70, 160, 0.04);
    transform: perspective(800px) rotateX(0deg);
    transform-style: preserve-3d;
    transition: transform 0.4s cubic-bezier(.4,0,.2,1), opacity 0.4s ease;
}
.vs-drop-zone::before {
    content: '';
    position: absolute;
    top: 0; left: 20px; right: 20px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(130, 195, 255, 0.15), transparent);
    pointer-events: none;
}

/* ── Frame Weaver Slots — 2 Column Grid ─────────────────── */
.vs-fw-slots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    width: 100%;
}
.vs-fw-slot {
    aspect-ratio: 16 / 10;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background: rgba(10, 16, 38, 0.55);
    border: 2px dashed rgba(100, 160, 255, 0.2);
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.2),
        0 8px 20px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(180, 220, 255, 0.05);
    transform: perspective(400px) rotateX(0deg) rotateY(0deg) scale(1);
    transform-style: preserve-3d;
    transition: all 0.35s cubic-bezier(.4,0,.2,1);
    backface-visibility: hidden;
}
.vs-fw-slot::before {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(140, 200, 255, 0.12), transparent);
    pointer-events: none;
    opacity: 0.6;
}
.vs-fw-slot i {
    font-size: 1.6rem;
    color: rgba(160, 190, 230, 0.35);
    transition: all 0.3s ease;
    z-index: 1;
}
.vs-fw-slot-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(160, 185, 220, 0.45);
    z-index: 1;
    transition: color 0.3s ease;
}
.vs-fw-slot:hover {
    border-color: rgba(0, 170, 255, 0.35);
    background: rgba(12, 22, 48, 0.6);
    box-shadow:
        0 4px 16px rgba(0, 120, 255, 0.12),
        0 12px 28px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(180, 220, 255, 0.1);
    transform: perspective(400px) rotateX(-2deg) rotateY(1deg) scale(1.03);
}
.vs-fw-slot:hover i { color: rgba(0, 190, 255, 0.7); transform: scale(1.15); }
.vs-fw-slot:hover .vs-fw-slot-label { color: rgba(0, 190, 255, 0.6); }
.vs-fw-slot.drag-over {
    border-color: rgba(0, 200, 255, 0.55);
    border-style: solid;
    background: rgba(0, 120, 255, 0.1);
    box-shadow: 0 0 30px rgba(0, 170, 255, 0.15), inset 0 0 20px rgba(0, 160, 255, 0.06);
    transform: perspective(400px) rotateX(-1deg) scale(1.05);
}
.vs-fw-slot.has-image {
    border-style: solid;
    border-color: rgba(0, 170, 255, 0.28);
    background-size: cover;
    background-position: center;
    box-shadow:
        0 4px 14px rgba(0, 0, 0, 0.25),
        0 12px 30px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.vs-fw-slot.has-image i,
.vs-fw-slot.has-image .vs-fw-slot-label { display: none; }
.vs-fw-slot.has-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.35) 100%);
    pointer-events: none;
}

/* ── Ingredient Weaver Slots — 3 Column Grid ────────────── */
.vs-iw-slots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
}
.vs-iw-slot {
    aspect-ratio: 16 / 10;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background: rgba(10, 16, 38, 0.55);
    border: 2px dashed rgba(140, 100, 255, 0.2);
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.2),
        0 8px 20px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(200, 180, 255, 0.05);
    transform: perspective(400px) rotateX(0deg) rotateY(0deg) scale(1);
    transform-style: preserve-3d;
    transition: all 0.35s cubic-bezier(.4,0,.2,1);
    backface-visibility: hidden;
}
.vs-iw-slot::before {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(180, 140, 255, 0.12), transparent);
    pointer-events: none;
    opacity: 0.6;
}
.vs-iw-slot i {
    font-size: 1.3rem;
    color: rgba(180, 160, 230, 0.35);
    transition: all 0.3s ease;
    z-index: 1;
}
.vs-iw-slot-label {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(180, 165, 220, 0.45);
    z-index: 1;
    transition: color 0.3s ease;
}
.vs-iw-slot:hover {
    border-color: rgba(140, 80, 255, 0.35);
    background: rgba(18, 14, 48, 0.6);
    box-shadow:
        0 4px 16px rgba(120, 60, 255, 0.12),
        0 12px 28px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(200, 180, 255, 0.1);
    transform: perspective(400px) rotateX(-2deg) rotateY(1deg) scale(1.03);
}
.vs-iw-slot:hover i { color: rgba(160, 100, 255, 0.7); transform: scale(1.15); }
.vs-iw-slot:hover .vs-iw-slot-label { color: rgba(160, 100, 255, 0.6); }
.vs-iw-slot.drag-over {
    border-color: rgba(160, 80, 255, 0.55);
    border-style: solid;
    background: rgba(100, 40, 255, 0.1);
    box-shadow: 0 0 30px rgba(140, 80, 255, 0.15), inset 0 0 20px rgba(120, 60, 255, 0.06);
    transform: perspective(400px) rotateX(-1deg) scale(1.05);
}
.vs-iw-slot.has-video {
    border-style: solid;
    border-color: rgba(140, 80, 255, 0.28);
    box-shadow:
        0 4px 14px rgba(0, 0, 0, 0.25),
        0 12px 30px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.vs-iw-slot.has-video i,
.vs-iw-slot.has-video .vs-iw-slot-label { display: none; }
.vs-iw-slot .vs-iw-thumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    pointer-events: none;
}

/* ── Morphed Generate Button States ─────────────────────── */
.generate-btn.vs-fw-active {
    background: linear-gradient(135deg, rgba(0, 180, 255, 0.92), rgba(0, 140, 220, 0.88)) !important;
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.2),
        0 8px 24px rgba(0, 0, 0, 0.15),
        0 0 20px rgba(0, 170, 255, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(.34,1.56,.64,1);
}
.generate-btn.vs-fw-active:not(:disabled):hover {
    transform: perspective(500px) rotateX(-1.5deg) translateY(-1px);
}
.generate-btn.vs-iw-active {
    background: linear-gradient(135deg, rgba(140, 80, 255, 0.92), rgba(100, 40, 220, 0.88)) !important;
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.2),
        0 8px 24px rgba(0, 0, 0, 0.15),
        0 0 20px rgba(140, 80, 255, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(.34,1.56,.64,1);
}
.generate-btn.vs-iw-active:not(:disabled):hover {
    transform: perspective(500px) rotateX(-1.5deg) translateY(-1px);
}
.generate-btn.vs-fw-active:disabled,
.generate-btn.vs-iw-active:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    filter: saturate(0.5);
}

/* ── Zone Fade-In Animation ─────────────────────────────── */
@keyframes vsZoneFadeIn {
    from {
        opacity: 0;
        transform: perspective(800px) rotateX(-4deg) translateY(12px);
    }
    to {
        opacity: 1;
        transform: perspective(800px) rotateX(0deg) translateY(0);
    }
}
@keyframes vsSlotFadeIn {
    from {
        opacity: 0;
        transform: perspective(400px) rotateX(-6deg) translateY(10px) scale(0.92);
    }
    to {
        opacity: 1;
        transform: perspective(400px) rotateX(0) translateY(0) scale(1);
    }
}

/* ── Video Studio Controls Panel — scrollable ───────────── */
#video-studio > .studio-controls-panel {
    overflow-y: auto;
    max-height: 82vh;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 160, 255, 0.25) rgba(10, 16, 38, 0.3);
}
#video-studio > .studio-controls-panel::-webkit-scrollbar { width: 6px; }
#video-studio > .studio-controls-panel::-webkit-scrollbar-track {
    background: rgba(10, 16, 38, 0.3);
    border-radius: 6px;
}
#video-studio > .studio-controls-panel::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(0, 160, 255, 0.35) 0%, rgba(0, 100, 200, 0.3) 100%);
    border-radius: 6px;
    border: 1px solid rgba(0, 160, 255, 0.12);
}
#video-studio > .studio-controls-panel::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(0, 170, 255, 0.5) 0%, rgba(0, 120, 220, 0.45) 100%);
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 768px) {
    .vs-input-bar {
        border-radius: 14px;
        padding: 0.75rem 0.85rem;
    }
    .vs-input-bar textarea {
        min-height: 90px;
    }
    .vs-fw-slots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .vs-iw-slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .vs-iw-slots-grid {
        grid-template-columns: 1fr;
    }
}
