.lsi-floating-btn {
    z-index: 999999;
    padding: 8px 14px;
    font-size: 13px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    background: #ff2c55;
    color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    display: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

/* ---------------- Modal ---------------- */

.lsi-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999999;
    padding: 20px;
}

.lsi-modal-content {
    background: #fff;
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    padding: 20px;
    position: relative;
    animation: lsiFadeIn 0.3s ease;
}

.lsi-close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 22px;
    cursor: pointer;
}

.lsi-preview {
    margin-top: 20px;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 8px;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.lsi-preview-text {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
}

@keyframes lsiFadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.lsi-card {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lsi-overlay {
    position: absolute;
    inset: 0;
    backdrop-filter: blur(10px);
    background: rgba(0,0,0,0.6);
}

.lsi-card-content {
    position: relative;
    color: #fff;
    text-align: center;
    padding: 30px;
    z-index: 2;
}

.lsi-quote-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.lsi-lyrics {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.6;
}

.lsi-song-title {
    margin-top: 15px;
    font-size: 16px;
    opacity: 0.8;
}

.lsi-watermark {
    margin-top: 10px;
    font-size: 13px;
    opacity: 0.7;
}
.lsi-actions {
    margin-top: 20px;
    text-align: center;
}

#lsi-download {
    padding: 10px 20px;
    background: #ff2c55;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

#lsi-download:hover {
    opacity: 0.9;
}

/* Export size fixed square */
#lsi-quote-card {
    width: 500px;
    height: 500px;
}

/* ---------- LyricsMint Style Share Buttons ---------- */

.lsi-actions {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    gap: 18px;
}

.lsi-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.lsi-btn:hover {
    transform: translateY(-3px);
}

/* SVG base */
.lsi-svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    color: #555;
}

/* Brand Colors */

.lsi-btn.wa .lsi-svg {
    color: #25D366;
}

.lsi-btn.x .lsi-svg {
    color: #000;
}

.lsi-btn.fb .lsi-svg {
    color: #1877F2;
}

/* Download Accent */

.lsi-btn.download.active {
    background: #ff2c55;
}

.lsi-btn.download.active .lsi-svg {
    color: #fff;
}

/* Copy Neutral */
.lsi-btn.copy .lsi-svg {
    color: #666;
}

.lsi-btn:hover {
    background: #e8e8e8;
}