.reward-palier-container {
    padding: 10px;
    background-color: transparent;
    text-align: center;
    font-weight: 600;
    border: 2px solid #f5efe6;
}

.reward-palier-progress {
    width: 100%;
    padding: 0.75rem;
}

.progress {
    height: 2.5rem;
    background-color: #dcdcdc;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.15);
    position: relative;
}

.progress-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #63ad87;
    transition: width 0.6s ease;
    font-weight: bold;
    height: 100%;
}

.progress-number {
    display: block;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.reward-palier-text {
    text-align: center;
    margin-top: 0.8rem;
    color: #333;
    font-size: 16px;
}

@media (max-width: 768px) {
    .reward-palier-container {
        width: 90%;
        padding: 1.25rem;
        margin: 1.25rem auto;
    }

    .progress {
        height: 2rem;
    }
}

@media (max-width: 480px) {
    .reward-palier-container {
        width: 95%;
        padding: 1rem;
        margin: 1rem auto;
    }

    .progress {
        height: 1.75rem;
    }
}
