.fade-up-title {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    display: inline-block;
    padding: 15px 30px;
    border-radius: 15px;
    background: linear-gradient(90deg, #5e4bfa, #8f6efc);
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.fade-up-title.visible { opacity: 1; transform: translateY(0); }
.center-horizontal { width: 100%; text-align: center; }
