.styled-title-container {
    text-align: center;
    margin-bottom: 1.5rem;
    margin-top: 10rem;
    opacity: 0;
    transform: translateY(30px); 
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.styled-title-container.visible {
    opacity: 3; 
    transform: translateY(0); 
}

.styled-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--violet);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.styled-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--violet);
    border-radius: 2px;
}
