
.aeternum-banner-container {
    height: 30px;
    width: 100%;
    overflow: hidden;
    background: #000;
    position: relative;
    z-index: 2;
}

.aeternum-banner-track {
    display: inline-block;
    white-space: nowrap;
    animation: aeternumScroll 40s linear infinite;
}

.aeternum-banner-track span {
    display: inline-block;
    padding: 6px 0;
    font-size: 16px;
    color: white;
}

@keyframes aeternumScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
