| @tailwind base; | |
| @tailwind components; | |
| @tailwind utilities; | |
| :root { | |
| --money-gold: #FDC065; | |
| --jeopardy-gradient: linear-gradient(135deg, #0A0F99 0%, #071277 50%, #0A0F99 100%); | |
| } | |
| html, body { | |
| background: #000; | |
| font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; | |
| overflow-x: hidden; | |
| } | |
| .money-value { | |
| color: var(--money-gold); | |
| font-family: "Swiss 911 BT", "Swiss 921 BT", "Arial Black", Helvetica, serif; | |
| font-weight: 900; | |
| font-size: 2.25rem; | |
| text-shadow: 0 3px 8px rgba(0,0,0,0.7), 0 0 12px rgba(255,255,255,0.04); | |
| } | |