@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;600;700;900&display=swap');
body { background-color: #050505; color: #e5e5e5; -webkit-tap-highlight-color: transparent; font-family: 'Space Grotesk', sans-serif; }
.orange-glow { box-shadow: 0 0 25px rgba(255, 107, 0, 0.1); }
.text-orange { color: #FF6B00; }
.bg-orange { background-color: #FF6B00; }
.option-btn { transition: all 0.2s ease; }
.option-btn.selected { border-color: #71717a; background-color: rgba(113, 113, 122, 0.2); color: #e4e4e7; }
.fade-in { animation: fadeIn 0.3s ease-out; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }
