/* The Daily Draw Down - supplemental styles (Tailwind handles 99% via CDN) */

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

.ticker {
  animation: ticker 40s linear infinite;
  width: max-content;
}

@media (prefers-reduced-motion: reduce) {
  .ticker { animation: none; }
  .animate-pulse { animation: none; }
}

/* Cleaner details/summary on Safari */
summary::-webkit-details-marker { display: none; }
summary { list-style: none; }

/* Scrollbar (subtle, dark) */
*::-webkit-scrollbar { width: 10px; height: 10px; }
*::-webkit-scrollbar-track { background: #0B0F1A; }
*::-webkit-scrollbar-thumb { background: #1E293B; border-radius: 8px; }
*::-webkit-scrollbar-thumb:hover { background: #334155; }

/* Selection */
::selection { background: #A3E635; color: #0B0F1A; }
