File size: 1,253 Bytes
b682363
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/* 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;
  }