/* BeatValhalla Credit System Styles */

.bv-instant-unlock-btn {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    border: none;
    padding: 14px 28px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 200px;
    text-align: center;
}

.bv-instant-unlock-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
}

.bv-instant-unlock-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    background: linear-gradient(135deg, #ccc 0%, #999 100%);
}

.bv-download-btn {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(17, 153, 142, 0.3);
}

.bv-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(17, 153, 142, 0.4);
    text-decoration: none;
    color: white;
}

.bv-download-btn.unlocked {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(17, 153, 142, 0.3);
    }
    50% {
        box-shadow: 0 6px 25px rgba(17, 153, 142, 0.6);
    }
    100% {
        box-shadow: 0 4px 15px rgba(17, 153, 142, 0.3);
    }
}

.bv-user-credits {
    background: #f8f9fa;
    color: #495057;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    border: 2px solid #e9ecef;
    display: inline-block;
    margin: 5px 0;
}

.bv-credit-info {
    background: #e3f2fd;
    border: 1px solid #bbdefb;
    border-radius: 6px;
    padding: 12px;
    margin: 10px 0;
    color: #1565c0;
}

.bv-error {
    background: #ffebee;
    border: 1px solid #ffcdd2;
    border-radius: 6px;
    padding: 12px;
    margin: 10px 0;
    color: #c62828;
}

.bv-success {
    background: #e8f5e8;
    border: 1px solid #c8e6c9;
    border-radius: 6px;
    padding: 12px;
    margin: 10px 0;
    color: #2e7d32;
}