* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #1F1F1F; /* Seu fundo preto suave */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #F5F1ED;
}

.container {
    text-align: center;
    width: 80%;
    max-width: 500px;
}

h1 {
    font-weight: 300;
    font-size: 1.2rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
    color: #E6A8C4; /* Rosa suave da sua paleta */
}

.progress-container {
    background-color: #2d2d2d;
    border-radius: 50px;
    height: 12px;
    width: 100%;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.5);
}

.progress-bar {
    background: linear-gradient(90deg, #5A2F3F, #C72C48); /* Gradiente com as cores de base */
    height: 100%;
    width: 0%; /* Começa em 0 */
    border-radius: 50px;
    transition: width 0.4s cubic-bezier(0.17, 0.67, 0.83, 0.67);
    position: relative;
}

/* Efeito de brilho na ponta da barra */
.glow {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 10px;
    box-shadow: 0 0 15px 5px #F2545B;
    background: #F2545B;
}

.percentage {
    margin-top: 15px;
    font-size: 2rem;
    font-weight: bold;
    color: #A1E44D; /* Verde vibrante para contraste */
    text-shadow: 0 0 10px rgba(161, 228, 77, 0.3);
}