.balance-progress-container {
    background: linear-gradient(135deg, #002eff 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 8px 15px;
    margin: 20px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.balance-progress-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.balance-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}



.balance-title {
    color: white;
    font-weight: 600;
    font-size: 16px;
    opacity: 0.9;
}

.balance-display {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 16px;
}

.balance-amount {
    font-size: 32px;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.balance-separator {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 8px;
}

.balance-target {
    font-size: 24px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.progress-bar-container {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    height: 8px;
    overflow: hidden;
    margin-bottom: 12px;
    position: relative;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #4facfe, #00f2fe);
    border-radius: 12px;
    transition: width 0.8s ease;
    position: relative;
    overflow: hidden;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progressShine 2s infinite;
}

@keyframes progressShine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.balance-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    font-size: 14px;
}

.status-text {
    opacity: 0.9;
    font-weight: 500;
}

.percentage-text {
    background: rgb(31 227 212 / 94%);
    padding: 4px 12px;
    font-weight: 600;
    font-size: 15px;
    position: absolute;
    top: 0;
    right: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .balance-amount {
        font-size: 28px;
    }

    .balance-target {
        font-size: 20px;
    }

    .balance-separator {
        font-size: 20px;
    }
}