body {
    font-family: 'Montserrat', sans-serif;
    /* Темный фон вместо картинки */
    background-color: #050a14;
}

.pulse-btn {
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7); }
    70% { transform: scale(1.02); box-shadow: 0 0 0 20px rgba(220, 38, 38, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
}

.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background-color: #991b1b;
    color: white;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}
