|
105 | 105 |
|
106 | 106 | <!-- Inline critical CSS -->
|
107 | 107 | <style>
|
108 |
| - body { |
109 |
| - font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; |
110 |
| - line-height: 1.6; |
111 |
| - color: #333; |
112 |
| - margin: 0; |
113 |
| - padding: 0; |
114 |
| - } |
| 108 | +
|
| 109 | + @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap&text=0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz&display=swap'); |
| 110 | +
|
| 111 | + html { |
| 112 | + font-size: 16px; |
| 113 | + line-height: 1.5; |
| 114 | + -webkit-text-size-adjust: 100%; |
| 115 | + font-family: 'Poppins', var(--font-sans), ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; |
| 116 | + font-feature-settings: normal; |
| 117 | + font-variation-settings: normal; |
| 118 | + -moz-tab-size: 4; |
| 119 | + tab-size: 4; |
| 120 | + /* Make all content non-selectable */ |
| 121 | + -webkit-user-select: none; |
| 122 | + -moz-user-select: none; |
| 123 | + -ms-user-select: none; |
| 124 | + user-select: none; |
| 125 | + /* Improve rendering */ |
| 126 | + -webkit-font-smoothing: antialiased; |
| 127 | + -moz-osx-font-smoothing: grayscale; |
| 128 | + /* Improve accessibility */ |
| 129 | + scroll-behavior: smooth; |
| 130 | +} |
| 131 | +
|
| 132 | +/* Improve focus visibility for accessibility and SEO */ |
| 133 | +:focus { |
| 134 | + outline: 2px solid #dd98ff; |
| 135 | + outline-offset: 2px; |
| 136 | +} |
| 137 | +
|
| 138 | +/* Add print styles for better SEO */ |
| 139 | +@media print { |
| 140 | + body { |
| 141 | + background-color: #fff; |
| 142 | + color: #000; |
| 143 | + } |
| 144 | + |
| 145 | + .social-btn { |
| 146 | + border: 1px solid #000; |
| 147 | + background-image: none; |
| 148 | + } |
| 149 | +} |
| 150 | +body { |
| 151 | + background-color: #101218; |
| 152 | + color: #f2f4f9; |
| 153 | + font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif; |
| 154 | + font-size: 16px; |
| 155 | + font-weight: 400; |
| 156 | + margin: 0; |
| 157 | + padding: 0; |
| 158 | + min-height: 100vh; |
| 159 | + overflow-x: hidden; |
| 160 | + /* Prevent text selection */ |
| 161 | + -webkit-user-select: none; |
| 162 | + -moz-user-select: none; |
| 163 | + -ms-user-select: none; |
| 164 | + user-select: none; |
| 165 | +} |
115 | 166 | .redirect-container {
|
116 | 167 | text-align: center;
|
117 | 168 | margin: 50px auto;
|
|
0 commit comments