/* Wrapper Ticker */
.ticker-wrapper-v {
    display: flex;
    align-items: center;
    height: 100%;
}

.ticker-wrapper-v .heading {
    background-color: #0099FF;
    color: #fff;
    padding: 0 15px;
    height: 100%;
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 13px;
    position: relative;
    z-index: 10;
}

/* Efek Panah di Heading */
.ticker-wrapper-v .heading:after {
    content: "";
    position: absolute;
    right: -15px;
    border-left: 15px solid #0099FF;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
}

/* Area Teks */
.home-text {
    padding-left: 25px;
    height: 100%;
    overflow: hidden;
}

.animate-text {
    display: flex;
    flex-direction: column;
    animation: move-up 12s infinite ease-in-out; /* Jalankan Animasi */
}

.animate-text span {
    height: 40px; /* Harus sama dengan height panel */
    line-height: 40px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
    white-space: nowrap;
}

/* Keyframes Animasi Jalan ke Atas */
@keyframes move-up {
    0%, 15% { transform: translateY(0); }
    20%, 35% { transform: translateY(-40px); }
    40%, 55% { transform: translateY(-80px); }
    60%, 75% { transform: translateY(-120px); }
    80%, 95% { transform: translateY(-160px); }
    100% { transform: translateY(0); }
}

/* Pause saat di-hover */
.home-text:hover .animate-text {
    animation-play-state: paused;
}