| @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap'); | |
| body { | |
| font-family: 'Inter', sans-serif; | |
| background-color: #f8fafc; | |
| } | |
| .container { | |
| max-width: 1200px; | |
| } | |
| .prose { | |
| color: #334155; | |
| line-height: 1.6; | |
| } | |
| .prose ol { | |
| margin-top: 1em; | |
| margin-bottom: 1em; | |
| } | |
| .prose li { | |
| margin-bottom: 0.5em; | |
| } | |
| /* Animation for important notices */ | |
| @keyframes pulse { | |
| 0% { transform: scale(1); } | |
| 50% { transform: scale(1.05); } | |
| 100% { transform: scale(1); } | |
| } | |
| .important-notice { | |
| animation: pulse 2s infinite; | |
| background-color: #fef3c7; | |
| border-left: 4px solid #f59e0b; | |
| } |