/* Simple one-time animations */
.ticker-logo {
    width: 8rem;
    height: 8rem;
    border-radius: 1rem;
    opacity: 0;
    transform: translateX(-100px);
    animation: logoSlideIn 2s ease-out forwards;
}

.ticker-letter {
    display: inline-block;
    opacity: 0;
    transform: translateX(-200px);
    animation: letterSlideIn 0.6s ease-out forwards;
    font-size: 6rem;
    font-weight: 900;
    color: #1e40af;
}

.ticker-letter:nth-child(2) { animation-delay: 1.2s; }
.ticker-letter:nth-child(3) { animation-delay: 1.4s; }
.ticker-letter:nth-child(4) { animation-delay: 1.6s; }
.ticker-letter:nth-child(5) { animation-delay: 1.8s; }
.ticker-letter:nth-child(6) { animation-delay: 2.0s; }
.ticker-letter:nth-child(7) { animation-delay: 2.2s; }
.ticker-letter:nth-child(8) { animation-delay: 2.4s; }
.ticker-letter:nth-child(9) { animation-delay: 2.6s; }
.ticker-letter:nth-child(10) { animation-delay: 2.8s; }
.ticker-letter:nth-child(11) { animation-delay: 3.0s; }
.ticker-letter:nth-child(12) { animation-delay: 3.2s; }
.ticker-letter:nth-child(13) { animation-delay: 3.4s; }
.ticker-letter:nth-child(14) { animation-delay: 3.6s; }
.ticker-letter:nth-child(15) { animation-delay: 3.8s; }
.ticker-letter:nth-child(16) { animation-delay: 4.0s; }
.ticker-letter:nth-child(17) { animation-delay: 4.2s; }
.ticker-letter:nth-child(18) { animation-delay: 4.4s; }
.ticker-letter:nth-child(19) { animation-delay: 4.6s; }

@keyframes logoSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-100px) rotate(-180deg);
    }
    100% {
        opacity: 1;
        transform: translateX(0) rotate(0deg);
    }
}

@keyframes letterSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-200px) scale(0.5) rotateY(-180deg);
    }
    50% {
        opacity: 0.8;
        transform: translateX(-20px) scale(1.1) rotateY(-90deg);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1) rotateY(0deg);
    }
}