    .banner-usdt-full {
        width: 100%;
        background: var(--cr-surface, transparent);
        overflow: hidden;
        display: flex;
        align-items: center;
        height: 50px;
        border-top: 1px solid var(--cr-border, rgba(0,0,0,0.1));
        border-bottom: 1px solid var(--cr-border, rgba(0,0,0,0.1));
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    #ticker-final-box {
        display: flex;
        white-space: nowrap;
        color: var(--cr-gray-lt, #555);
        font-size: 14px;
        align-items: center;
    }

    .animar-ticker {
        animation: scroll-p2p-full 50s linear infinite;
    }

    /* Estilo para la FECHA */
    .fecha-item {
        display: flex;
        align-items: center;
        padding: 0 40px;
        font-weight: 800;
        color: var(--cr-crimson-lt, #dc1e3c);
        border-right: 2px solid var(--cr-border, rgba(0,0,0,0.1));
        margin-right: 10px;
    }

    .calendar-icon {
        margin-right: 10px;
        font-size: 1.2rem;
    }

    /* Estilo para los PAISES */
    .card-pais {
        display: flex;
        align-items: center;
        padding: 0 30px;
        font-weight: 700;
        color: var(--cr-gray-lt, #333);
    }

    .flag-img {
        width: 22px;
        height: 16px;
        margin-right: 10px;
        border-radius: 2px;
        box-shadow: 0 1px 2px rgba(0,0,0,0.2);
    }

    .badge-precio {
        color: #fff;
        margin-left: 10px;
        background: var(--cr-crimson, #dc1e3c);
        padding: 3px 10px;
        border-radius: 5px;
        font-family: monospace;
        font-size: 1.1rem;
        font-weight: 700;
    }

    .precio-updated {
        animation: priceFlash 0.5s ease-in-out;
    }

    @keyframes priceFlash {
        0% { background: var(--cr-gold, #ffd700); color: #000; }
        100% { background: var(--cr-crimson, #dc1e3c); color: #fff; }
    }

    @keyframes scroll-p2p-full {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

    .banner-usdt-full:hover #ticker-final-box {
        animation-play-state: paused;
    }
