/* Vani Core Player and Lead Capture Box styling */

.vani-audio-player {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.06);
    border-radius: 20px;
    padding: 20px;
    margin: 25px 0;
    max-width: 100%;
}

.vani-player-title {
    font-size: 16px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 12px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.vani-player-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.vani-play-btn {
    background: #2ecc71;
    border: none;
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, background 0.2s;
    box-shadow: 0 4px 10px rgba(46, 204, 113, 0.3);
}

.vani-play-btn:hover {
    transform: scale(1.05);
    background: #27ae60;
}

.vani-play-btn svg {
    width: 20px;
    height: 20px;
}

.vani-time {
    font-size: 13px;
    color: #7f8c8d;
    font-family: monospace;
    min-width: 35px;
}

.vani-progress-container {
    flex-grow: 1;
    display: flex;
    align-items: center;
    min-width: 150px;
}

.vani-progress-bar {
    width: 100%;
    cursor: pointer;
    accent-color: #2ecc71;
}

.vani-speed-container {
    position: relative;
}

.vani-speed-btn {
    background: #f1f2f6;
    border: 1px solid #ced6e0;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 13px;
    cursor: pointer;
    font-weight: bold;
    color: #2f3542;
    transition: background 0.2s;
}

.vani-speed-btn:hover {
    background: #dfe4ea;
}

.vani-speed-menu {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 1px solid #ced6e0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 100;
    min-width: 70px;
}

.vani-speed-option {
    padding: 8px 12px;
    cursor: pointer;
    font-size: 13px;
    text-align: center;
    transition: background 0.2s;
}

.vani-speed-option:hover {
    background: #f1f2f6;
}

.vani-speed-option.active {
    background: #2ecc71;
    color: white;
    font-weight: bold;
}

.vani-volume-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.vani-volume-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #57606f;
    padding: 0;
    display: flex;
    align-items: center;
}

.vani-volume-btn svg {
    width: 22px;
    height: 22px;
}

.vani-volume-slider {
    width: 70px;
    cursor: pointer;
    accent-color: #2ecc71;
}

/* Lead Magnet Form Styles */
.vani-lead-box {
    background: #f9fbf9;
    border: 2px dashed #2ecc71;
    border-radius: 16px;
    padding: 30px;
    margin: 30px 0;
}

.vani-form-group {
    margin-bottom: 20px;
}

.vani-input {
    width: 100%;
    padding: 12px 18px;
    border-radius: 30px;
    border: 1px solid #ced6e0;
    font-size: 15px;
    box-sizing: border-box;
}

.vani-submit-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    width: 100%;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.2);
    transition: transform 0.2s, background 0.2s;
}

.vani-submit-btn:hover {
    transform: translateY(-2px);
    background: #c0392b;
}

.consent-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #57606f;
    line-height: 1.4;
}

.consent-group input {
    margin-top: 3px;
}
