#ticker span { font-size: 24px; font-weight: 800; font-family: Arial, sans-serif; margin-right: 50px; transition: all 0.3s ease; } /* green + red states */ .up { color: #00ff6a; } .down { color: #ff3b3b; } /* flash animation */ .flash { animation: flashAnim 0.4s ease; } @keyframes flashAnim { 0% { opacity: 0.2; transform: scale(1.1); } 100% { opacity: 1; transform: scale(1); } }