*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Galindo';
    background: radial-gradient(circle at 70% 30%, rgba(30, 30, 80, 0.9) 0%, rgba(15, 12, 41, 0.95) 40%, #0a081f 100%);

}
h2{
    text-align: center;
    color: #f0f4f8;
    
}
label{
    font-size: .9em;
}


.title-principal{
    width: 100vw;
    min-height: 30vh;
    padding: 20px 12px;
    display: flex;
    gap: 1rem;
    flex-direction: column;
    justify-content: space-evenly;
    position: relative;
    align-items: center;
    background: linear-gradient(to bottom, rgba(30, 30, 80, 0.9) 0%, rgba(15, 12, 41, 0.95) 40%, transparent);
}
.exit{
    position: absolute;
    display: flex;
    min-width: 30px;
    min-height: 30px;
    left: 20px;
    top: 40px;
    padding: 10px 16px;
    background-color: #d63031;
    color: #fff;
    border-radius: .5rem;
    border: none;
}
.exit a{
    text-decoration: none;
    color: aliceblue;
    font-size: 1.5em;
}

.image-profile{
    width: 175px;
    height: 175px;
    object-fit:contain;
    border-radius: 30%;
    padding: 24px;
   margin-top: 3rem;
   filter: brightness(1.1);
   background-blend-mode: exclusion;
    background-color: rgb(255, 255, 255);
    transition: all .3s ease;
    
}
.image-profile:hover{
    scale: 1.1;
}
main{
    width: 100vw;
    min-height: 100vh;
    background: linear-gradient(to bottom, transparent, rgba(15, 12, 41, 0.95) 40%, #0a081f00 100%);
    backdrop-filter: blur(10px);
    color: #1f2d3d;
    padding: 12px 20px;
    margin: auto;
}
h3{
    text-align: center;
    margin-bottom: 2rem;
    margin-top: 2rem;
}
#premium-logo{
    font-size: 3em;
    color:#ccc;
    align-self: flex-end;
}
.container-titles{
    width: 90vw;
    min-height: 90vh;
    background:#f0f4f8;
    border-radius: .6rem;
    padding: 12px 20px;
    margin: auto;
    border: 1px solid #ccc;
}
.title-first{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.box {
    height: 30px;
    width: 100%;
    
    background: #cfd8dc;
    border-radius: .4rem;
    border: none;
    margin: 5px 0 15px 0;
    overflow: hidden;
    transition: width 0.3s ease;
}

.boxbar {
    height: 100%;
    width: 0%;
   background: linear-gradient(to right,rgb(123, 159, 123) 20%, rgb(82, 156, 82) 50%, rgb(29, 255, 29) 100%);
    transition: width 0.3s ease; /* Añade una transición suave */
}

/* Estilos específicos para las barras de guardados */


/* Estilos para las barras de visitas */


