| /* src/styles/Support.css */ | |
| .support-page { | |
| background-color: #0F172A; | |
| color: #F8FAFC; | |
| font-family: 'Inter', sans-serif; | |
| padding: 60px 40px; | |
| min-height: 100vh; | |
| } | |
| .support-header { | |
| text-align: center; | |
| margin-bottom: 40px; | |
| } | |
| .support-header h1 { | |
| font-size: 40px; | |
| font-weight: bold; | |
| margin-bottom: 16px; | |
| } | |
| .support-header p { | |
| font-size: 18px; | |
| color: #94A3B8; | |
| max-width: 600px; | |
| margin: 0 auto; | |
| } | |
| .support-options { | |
| display: flex; | |
| flex-wrap: wrap; | |
| gap: 32px; | |
| justify-content: center; | |
| } | |
| .support-card { | |
| background-color: #1E293B; | |
| border-radius: 16px; | |
| padding: 32px; | |
| width: 300px; | |
| box-shadow: 0 0 12px rgba(0, 255, 160, 0.05); | |
| text-align: center; | |
| } | |
| .support-card h2 { | |
| font-size: 22px; | |
| margin-bottom: 12px; | |
| } | |
| .support-card p { | |
| font-size: 16px; | |
| color: #CBD5E1; | |
| } | |
| .support-btn { | |
| margin-top: 16px; | |
| background-color: #22C55E; | |
| color: white; | |
| border: none; | |
| padding: 10px 20px; | |
| border-radius: 10px; | |
| cursor: pointer; | |
| } | |
| .support-btn:hover { | |
| background-color: #16A34A; | |
| } | |
| .support-btn.disabled { | |
| background-color: #64748B; | |
| cursor: not-allowed; | |
| } | |