.animated-title {
     text-align: center;
     font-weight: bold;
     color: #079c02;
     font-size: 28px;
     position: relative;
     animation: glow 2s infinite alternate, moveUpDown 3s infinite;
 }
 
 /* Efek glow / bercahaya hijau */
 @keyframes glow {
     0% { text-shadow: 0 0 5px #079c02; color: #079c02; }
     50% { text-shadow: 0 0 20px #00ff55; color: #12d12b; }
     100% { text-shadow: 0 0 10px #1bff00; color: #079c02; }
 }
 
 /* Efek gerakan naik turun */
 @keyframes moveUpDown {
     0% { transform: translateY(0px); }
     50% { transform: translateY(-5px); }
     100% { transform: translateY(0px); }
 }
