.us-ticker-container {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(90deg, 
                #0a3161 0%,        /* Azul oscuro */
                #bf0a30 50%,       /* Rojo */
                #0a3161 100%);     /* Azul oscuro */
    border-top: 3px solid #ffffff;  /* Borde blanco */
    border-bottom: 3px solid #ffffff;
    padding: 15px 0;
    box-shadow: 0 4px 12px rgba(10, 49, 97, 0.5); /* Sombra azul */
}

.us-ticker-track {
    display: flex;
    white-space: nowrap;
    animation: ticker-scroll 50s linear infinite;
}

.us-ticker-item {
    display: inline-flex;
    align-items: center;
    padding-right: 150px;
    flex-shrink: 0;
}

.us-flag {
    height: 40px;                   /* Bandera más grande */
    width: auto;
    margin: 0 20px;                 /* Más espacio */
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.7)); /* Brillante */
}

.ticker-message {
    font-family: 'Arial', sans-serif;
    font-size: 16px;                /* Texto más grande */
    color: #ffffff;                 /* Letras blancas */
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Sombra para legibilidad */
    letter-spacing: 0.5px;          /* Espaciado entre letras */
}

.ticker-message strong {
    color: #ffd700;                 /* Dorado para "BREAKING" */
    font-size: 18px;
    text-transform: uppercase;      /* Mayúsculas */
    margin-right: 12px;
}

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