.vqmm-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px 0;
    text-align: center;
}
.vqmm-wheel-container {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 600px;
}
.vqmm-canvas {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    margin: 0 auto;
}
/* Spin button - overlays center of canvas, transparent, just for click */
.vqmm-spin-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22%;
    height: 22%;
    margin: -11%;
    background: transparent;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    user-select: none;
    z-index: 10;
    font-size: 0;
    color: transparent;
}
.vqmm-spin-btn:hover {
    transform: scale(1.03);
}
.vqmm-spin-btn:disabled {
    cursor: not-allowed;
}
/* Arrow pointer at top */
.vqmm-pointer {
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 28px solid #fff;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.4));
    z-index: 20;
}
/* Result modal */
.vqmm-modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}
.vqmm-modal-overlay.active {
    display: flex;
}
.vqmm-modal {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: vqmm-pop 0.35s cubic-bezier(0.2, 0.9, 0.2, 1);
    position: relative;
}
@keyframes vqmm-pop {
    0% { transform: scale(0.7); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}
.vqmm-modal-prize {
    font-size: 1.6em;
    font-weight: bold;
    margin: 15px 0;
    padding: 15px;
    border-radius: 10px;
    color: #fff;
}
.vqmm-modal-title {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 5px;
}
.vqmm-modal-close {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 30px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.2s;
}
.vqmm-modal-close:hover {
    background: #555;
}
.vqmm-modal-image {
    max-width: 100px;
    max-height: 100px;
    border-radius: 8px;
    margin-bottom: 10px;
}
/* Tick animation */
.vqmm-tick svg {
    display: block;
    margin: 0 auto 10px;
}
.vqmm-tick .circ {
    fill: transparent;
    stroke: #4caf50;
    stroke-width: 4;
    transform-origin: 32px 32px;
    stroke-dasharray: 176;
    stroke-dashoffset: 176;
    animation: vqmm-drawCircle 0.62s cubic-bezier(0.2,0.9,0.2,1) forwards;
}
.vqmm-tick .chk {
    stroke: #4caf50;
    stroke-width: 4.5;
    stroke-dasharray: 35;
    stroke-dashoffset: 35;
    opacity: 1;
    animation: vqmm-drawCheck 0.32s cubic-bezier(0.2,0.9,0.2,1) 0.44s forwards;
}
@keyframes vqmm-drawCircle {
    0% { stroke-dashoffset: 176; transform: rotate(-90deg); }
    100% { stroke-dashoffset: 0; transform: rotate(270deg); }
}
@keyframes vqmm-drawCheck {
    0% { stroke-dashoffset: 35; }
    100% { stroke-dashoffset: 0; }
}
/* Spin limit message */
.vqmm-limit-msg {
    margin-top: 15px;
    padding: 10px 20px;
    background: rgba(255,255,255,0.85);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 8px;
    color: #333;
    font-size: 0.95em;
    backdrop-filter: blur(4px);
}

/* Quick Editor Toggle */
.vqmm-editor-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    padding: 8px 20px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    color: #fff;
    font-size: 0.9em;
    cursor: pointer;
    transition: all 0.2s;
    backdrop-filter: blur(4px);
}
.vqmm-editor-toggle:hover {
    background: rgba(255,255,255,0.25);
    color: #fff;
}
.vqmm-editor-toggle.active {
    background: rgba(255,255,255,0.9);
    color: #333;
    border-color: rgba(255,255,255,0.9);
}
.vqmm-editor-toggle-icon {
    font-size: 1em;
}

/* Quick Editor Panel */
.vqmm-editor-panel {
    margin-top: 16px;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 12px;
    padding: 20px;
    text-align: left;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
    backdrop-filter: blur(12px);
    animation: vqmm-slideDown 0.25s ease;
}
@keyframes vqmm-slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
.vqmm-editor-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}
.vqmm-editor-header h3 {
    margin: 0;
    font-size: 0.95em;
    font-weight: 700;
    color: #222;
}
.vqmm-editor-reset {
    padding: 4px 12px;
    background: none;
    border: 1px solid #ddd;
    border-radius: 6px;
    color: #888;
    font-size: 0.78em;
    cursor: pointer;
    transition: all 0.2s;
}
.vqmm-editor-reset:hover {
    background: #f5f5f5;
    color: #333;
}

/* Editor list - bordered box */
.vqmm-editor-list {
    border: 1px solid #e2e4e9;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

/* Editor items - mỗi option 1 dòng rõ ràng */
.vqmm-editor-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-bottom: 1px solid #eef0f3;
    background: #fff;
    transition: background 0.15s;
}
.vqmm-editor-item:last-child {
    border-bottom: none;
}
.vqmm-editor-item:hover {
    background: #f8f9fb;
}
.vqmm-editor-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #eef0f3;
    color: #888;
    font-size: 0.7em;
    font-weight: 600;
    flex-shrink: 0;
}
.vqmm-editor-color {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    border: 2px solid rgba(0,0,0,0.08);
    cursor: pointer;
    padding: 0;
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
}
.vqmm-editor-color input[type="color"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    border: none;
}
.vqmm-editor-input {
    flex: 1;
    padding: 5px 8px;
    border: 1px solid transparent;
    border-radius: 5px;
    font-size: 0.88em;
    color: #333;
    outline: none;
    background: transparent;
    transition: all 0.15s;
    min-width: 0;
}
.vqmm-editor-input:hover {
    border-color: #ddd;
    background: #fff;
}
.vqmm-editor-input:focus {
    border-color: #aab;
    background: #fff;
    box-shadow: 0 0 0 2px rgba(26,26,46,0.06);
}
.vqmm-editor-remove {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    border: none;
    background: none;
    color: #ccc;
    font-size: 0.85em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.15s;
    opacity: 0;
}
.vqmm-editor-item:hover .vqmm-editor-remove {
    opacity: 1;
}
.vqmm-editor-remove:hover {
    background: #fee;
    color: #e53935;
}

/* Editor actions */
.vqmm-editor-actions {
    margin-top: 10px;
    display: flex;
    gap: 6px;
}
.vqmm-editor-add {
    padding: 7px 14px;
    background: #f5f6f8;
    border: 1px dashed #d0d3d9;
    border-radius: 8px;
    color: #555;
    font-size: 0.82em;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
}
.vqmm-editor-add:hover {
    background: #eceef2;
    border-color: #999;
    color: #222;
}
.vqmm-editor-clear {
    padding: 7px 14px;
    background: #fff0f0;
    border: 1px solid #fcc;
    border-radius: 8px;
    color: #c0392b;
    font-size: 0.82em;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
    margin-left: auto;
}
.vqmm-editor-clear:hover {
    background: #fee;
    border-color: #e74c3c;
    color: #e74c3c;
}

/* Paste area */
.vqmm-editor-paste {
    margin-top: 10px;
    animation: vqmm-slideDown 0.2s ease;
}
.vqmm-editor-paste-text {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.85em;
    font-family: inherit;
    resize: vertical;
    outline: none;
    box-sizing: border-box;
    line-height: 1.5;
}
.vqmm-editor-paste-text:focus {
    border-color: #999;
    box-shadow: 0 0 0 2px rgba(26,26,46,0.06);
}
.vqmm-editor-paste-opts {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
    font-size: 0.8em;
    color: #555;
    flex-wrap: wrap;
}
.vqmm-editor-paste-opts label {
    cursor: pointer;
}
.vqmm-editor-paste-apply {
    padding: 5px 14px;
    background: #1a1a2e;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 0.82em;
    cursor: pointer;
    transition: background 0.2s;
    margin-left: auto;
}
.vqmm-editor-paste-apply:hover {
    background: #333;
}

/* ===== Customize Trigger Button ===== */
.vqmm-customize-trigger-wrap {
    margin-top: 12px;
    display: flex;
    gap: 8px;
    align-items: stretch;
}
.vqmm-customize-trigger {
    flex: 1 1 auto;
    padding: 10px 16px;
    background: linear-gradient(135deg, #1a1a2e, #2d2b55);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    color: #fff;
    font-size: 0.88em;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
    letter-spacing: 0.01em;
}
.vqmm-customize-trigger:hover {
    background: linear-gradient(135deg, #2d2b55, #3d3a6e);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
.vqmm-customize-trigger-icon {
    font-size: 1.15em;
}
.vqmm-share-trigger {
    flex: 0 0 auto;
    padding: 10px 16px;
    background: linear-gradient(135deg, #0f5132, #198754);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    color: #fff;
    font-size: 0.88em;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s;
    letter-spacing: 0.01em;
}
.vqmm-share-trigger:hover {
    background: linear-gradient(135deg, #198754, #20a366);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
.vqmm-share-trigger-icon {
    font-size: 1.1em;
}

/* ===== Share Popup ===== */
.vqmm-share-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.vqmm-share-overlay.active {
    display: flex;
}
.vqmm-share-popup {
    background: #1a1a2e;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    width: 100%;
    max-width: 420px;
    color: #fff;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    overflow: hidden;
}
.vqmm-share-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.vqmm-share-header h3 {
    margin: 0;
    font-size: 1.05em;
}
.vqmm-share-close {
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 1.6em;
    cursor: pointer;
    line-height: 1;
}
.vqmm-share-body {
    padding: 16px 18px 20px;
}
.vqmm-share-url-row {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
}
.vqmm-share-url {
    flex: 1;
    padding: 9px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.06);
    color: #fff;
    font-size: 0.85em;
    outline: none;
}
.vqmm-share-copy {
    padding: 9px 14px;
    border-radius: 8px;
    border: 0;
    background: #198754;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.85em;
}
.vqmm-share-copy:hover {
    background: #20a366;
}
.vqmm-share-copy.copied {
    background: #0d6efd;
}
.vqmm-share-networks {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.vqmm-share-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 10px 6px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: #fff;
    text-decoration: none;
    font-size: 0.75em;
    cursor: pointer;
    transition: all 0.15s;
}
.vqmm-share-btn:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-1px);
}
.vqmm-share-btn-icon {
    font-size: 1.4em;
}
@media (max-width: 480px) {
    .vqmm-share-trigger span:not(.vqmm-share-trigger-icon) {
        display: none;
    }
    .vqmm-share-trigger {
        padding: 10px 12px;
    }
}

/* ===== Customize Popup Overlay ===== */
.vqmm-cust-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 99998;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    padding: 16px;
}
.vqmm-cust-overlay.active {
    display: flex;
}

/* ===== Popup ===== */
.vqmm-cust-popup {
    background: #fff;
    border-radius: 16px;
    width: 100%;
    max-width: 580px;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 24px 80px rgba(0,0,0,0.3);
    animation: vqmm-pop 0.3s cubic-bezier(0.2,0.9,0.2,1);
    overflow: hidden;
}

/* Header */
.vqmm-cust-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px 14px;
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
}
.vqmm-cust-header h3 {
    margin: 0;
    font-size: 1.1em;
    font-weight: 700;
    color: #1a1a2e;
}
.vqmm-cust-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}
.vqmm-cust-reset {
    padding: 5px 14px;
    background: none;
    border: 1px solid #ddd;
    border-radius: 7px;
    color: #888;
    font-size: 0.8em;
    cursor: pointer;
    transition: all 0.2s;
}
.vqmm-cust-reset:hover {
    background: #f5f5f5;
    color: #333;
    border-color: #bbb;
}
.vqmm-cust-close {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: #f0f1f4;
    color: #555;
    font-size: 1.3em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
    line-height: 1;
}
.vqmm-cust-close:hover {
    background: #e0e2e8;
    color: #222;
}

/* Tabs */
.vqmm-cust-tabs {
    display: flex;
    gap: 0;
    padding: 0 22px;
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
    background: #fafbfc;
}
.vqmm-cust-tab {
    flex: 1;
    padding: 13px 16px;
    border: none;
    background: none;
    font-size: 0.9em;
    font-weight: 600;
    color: #888;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    position: relative;
}
.vqmm-cust-tab::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 12px;
    right: 12px;
    height: 2.5px;
    border-radius: 2px 2px 0 0;
    background: transparent;
    transition: background 0.2s;
}
.vqmm-cust-tab:hover {
    color: #555;
}
.vqmm-cust-tab.active {
    color: #1a237e;
}
.vqmm-cust-tab.active::after {
    background: #1a237e;
}
.vqmm-cust-tab-icon {
    font-size: 1.1em;
}

/* Body - scrollable */
.vqmm-cust-body {
    flex: 1;
    overflow-y: auto;
    padding: 18px 22px 22px;
    -webkit-overflow-scrolling: touch;
}

/* Tab content */
.vqmm-tab-content {
    display: none;
}
.vqmm-tab-content.active {
    display: block;
}

/* ===== Music sections ===== */
.vqmm-music-section {
    margin-bottom: 20px;
}
.vqmm-music-section:last-child {
    margin-bottom: 0;
}
.vqmm-music-label {
    display: block;
    font-size: 0.85em;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    padding-left: 2px;
}

/* Music list */
.vqmm-music-list {
    max-height: 220px;
    overflow-y: auto;
    border: 1px solid #e2e4e9;
    border-radius: 10px;
    background: #fff;
}
.vqmm-music-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border-bottom: 1px solid #f0f1f4;
    cursor: pointer;
    transition: background 0.15s;
    font-size: 0.88em;
    color: #444;
}
.vqmm-music-item:last-child {
    border-bottom: none;
}
.vqmm-music-item:hover {
    background: #f5f7fa;
}
.vqmm-music-item.selected {
    background: #eef2ff;
    color: #1a237e;
    font-weight: 600;
}
.vqmm-music-item.selected .vqmm-music-check {
    display: flex;
}
.vqmm-music-check {
    display: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #1a237e;
    color: #fff;
    font-size: 0.7em;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.vqmm-music-name {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.vqmm-music-preview {
    width: 32px;
    height: 32px;
    border: none;
    background: #f0f1f4;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.82em;
    transition: all 0.15s;
    color: #555;
}
.vqmm-music-preview:hover {
    background: #e0e2e8;
    color: #222;
}
.vqmm-music-preview.playing {
    background: #1a237e;
    color: #fff;
    box-shadow: 0 0 0 3px rgba(26,35,126,0.2);
}
.vqmm-music-default {
    padding: 9px 14px;
    font-size: 0.88em;
    color: #1a237e;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 1px solid #f0f1f4;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.15s;
}
.vqmm-music-default:hover {
    background: #f5f7fa;
}
.vqmm-music-default.selected {
    background: #eef2ff;
}
.vqmm-music-default .vqmm-music-check {
    display: none;
}
.vqmm-music-default.selected .vqmm-music-check {
    display: flex;
}

/* ===== Background grid ===== */
.vqmm-bg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.vqmm-bg-item {
    position: relative;
    aspect-ratio: 16/10;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.2s;
}
.vqmm-bg-item:hover {
    border-color: rgba(26,35,126,0.35);
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.vqmm-bg-item.selected {
    border-color: #1a237e;
    box-shadow: 0 0 0 2px rgba(26,35,126,0.25), 0 4px 12px rgba(0,0,0,0.15);
}
.vqmm-bg-item.selected::after {
    content: '\2713';
    position: absolute;
    top: 6px;
    right: 6px;
    width: 22px;
    height: 22px;
    background: #1a237e;
    color: #fff;
    border-radius: 50%;
    font-size: 0.7em;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.vqmm-bg-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.vqmm-bg-item-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3px 6px;
    background: linear-gradient(transparent, rgba(0,0,0,0.65));
    color: #fff;
    font-size: 0.7em;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.vqmm-bg-default {
    aspect-ratio: 16/10;
    border-radius: 10px;
    border: 3px solid transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82em;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(160deg, #0a0e27 0%, #131842 35%, #1a237e 70%, #0d1137 100%);
    transition: all 0.2s;
}
.vqmm-bg-default:hover {
    border-color: rgba(26,35,126,0.35);
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.vqmm-bg-default.selected {
    border-color: #1a237e;
    box-shadow: 0 0 0 2px rgba(26,35,126,0.25), 0 4px 12px rgba(0,0,0,0.15);
}

/* Custom background applied to hero */
.vqmm-hero.vqmm-custom-bg {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

/* ===== Mobile responsive ===== */
@media (max-width: 600px) {
    .vqmm-cust-overlay {
        padding: 0;
        align-items: flex-end;
    }
    .vqmm-cust-popup {
        max-width: 100%;
        max-height: 92vh;
        border-radius: 16px 16px 0 0;
        animation: vqmm-slideUp 0.3s cubic-bezier(0.2,0.9,0.2,1);
    }
    @keyframes vqmm-slideUp {
        from { transform: translateY(100%); }
        to { transform: translateY(0); }
    }
    .vqmm-cust-header {
        padding: 14px 16px 12px;
    }
    .vqmm-cust-header h3 {
        font-size: 1em;
    }
    .vqmm-cust-tabs {
        padding: 0 16px;
    }
    .vqmm-cust-tab {
        padding: 11px 10px;
        font-size: 0.85em;
    }
    .vqmm-cust-body {
        padding: 14px 16px 20px;
    }
    .vqmm-bg-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .vqmm-music-list {
        max-height: 180px;
    }
    .vqmm-music-item {
        padding: 8px 12px;
    }
}
