body{
    background-color: #fdf8ff;
    height: 100vh;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.top-bar{
    display: flex;
    position: fixed;
    top: 0;
    left: 15%;
    right: 0;
    height: 60px;
    z-index: 10;
    background-color: #fdf8ff;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.aside{
    z-index: 1000;
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 15%;
    height: 100vh;
    background-color: #1A1A2E;
    flex-direction: column;
    align-items: center;
    align-content: center;
    padding-top: 5%;
    box-sizing: border-box;
}
.brand-logo{
    width: 105%;
    margin-left: 15%;
}
.main-content{
    margin-top: 60px;
    margin-left: 15%;
    padding: 20px;
}

.clock-Area{
    --second-progress: 0;
    --border-color: #0032C4;
    --border-track: #4C6AF7;
    width: 240px;
    aspect-ratio: 1 / 1;
    padding: 6px;
    background: conic-gradient(
        from 0deg,
        var(--border-track) calc(var(--second-progress) * 1turn),
        var(--border-color) 0
    );
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.clock-content{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #FFFFFF;
    text-align: center;
    box-sizing: border-box;
    padding: 20px;
}

#clock{
    font-size: 2rem;
    font-weight: 700;
}

#clock-date{
    font-size: 1rem;
    font-weight: 500;
}

.main-content8{
    
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.main-header{
    justify-content: space-evenly;
    margin-top: 5%;
    display: flex;
    font-size: 1rem;
    font-weight: 700;
    color: #1A1A2E;
}
.start-button{
    width: 80%;
    padding: 10px;
    background-color: #0032C4;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
}

.daily-goal-section{
    margin-top: 5%;
    width: 100%;
    display: flex;
    justify-content: space-around;
}

.goal-card{
    width: 90%;
    height: 50%;
    background: #F4F1FB;
    border: 1px solid #E6E2F4;
    border-radius: 20px;
    padding: 22px;
    color: #1A1A2E;
    box-sizing: border-box;
}
.goal-tracker{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}

.goal-card h2{
    margin: 0 0 10px;
    font-size: 1.95rem;
    font-weight: 700;
}

.goal-value{
    margin: 0 0 20px;
    font-size: 4rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.goal-value span{
    font-size: 2rem;
    color: #93A0BD;
    font-weight: 700;
}

.goal-bars{
    height: 180px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    align-items: end;
    margin-bottom: 8px;
}

.goal-bar{
    border-radius: 8px 8px 4px 4px;
    background: #D9D4EE;
}

.goal-bar:nth-child(1){ height: 48%; }
.goal-bar:nth-child(2){ height: 72%; }
.goal-bar:nth-child(3){ height: 34%; }
.goal-bar:nth-child(4){ height: 56%; }
.goal-bar:nth-child(5){ height: 78%; }
.goal-bar:nth-child(6){ height: 84%; }

.goal-bar.active{
    background: #3557E8;
}

.goal-days{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #9AA7C2;
    margin-bottom: 18px;
}

.goal-days span{
    text-align: center;
}

.goal-days .active{
    color: #3557E8;
}

.goal-status{
    border-top: 1px solid #DDD7EE;
    padding-top: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #24A26A;
}

@media (max-width: 900px){
    .main-header{
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .goal-card{
        width: min(100%, 320px);
    }
}
