.alert-marquee {
    margin: 2.5rem 0 1rem;
    display: grid;
    gap: 0.6rem;
}
.alert-line {
    height: 3px;
    background: linear-gradient(90deg, rgba(255, 93, 81, 0), #ff5d51 20%, #ff5d51 80%, rgba(255, 93, 81, 0));
    opacity: 0.8;
}
.alert-track {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 93, 81, 0.6);
    border-radius: 999px;
    padding: 0.4rem 0;
    color: #ffb0a6;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.92rem;
}
.alert-loop {
    display: inline-flex;
    gap: 3rem;
    white-space: nowrap;
    animation: marquee 50s linear infinite;
}
.alert-loop span {
    display: inline-block;
    white-space: nowrap;
}
@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}
