@koehler8/cms-theme-neon 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +44 -0
- package/index.js +5 -0
- package/package.json +31 -0
- package/theme.config.js +212 -0
- package/theme.css +808 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 koehler8
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
# @koehler8/cms-theme-neon — Neon Gradient
|
|
2
|
+
|
|
3
|
+
- **Slug**: `neon`
|
|
4
|
+
- **Version**: 1.0.1
|
|
5
|
+
- **Author**: koehler8
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install @koehler8/cms-theme-neon
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
```js
|
|
14
|
+
// vite.config.js
|
|
15
|
+
import cms from '@koehler8/cms/vite';
|
|
16
|
+
|
|
17
|
+
export default {
|
|
18
|
+
plugins: cms({ siteDir: './site', themes: ['@koehler8/cms-theme-neon'] }),
|
|
19
|
+
};
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
Set `site.theme` to `"neon"` in your site config. The CSS rewrites WalletConnect/AppKit chrome. If you cannot reach Google Fonts, self-host the families and update the `@import`.
|
|
23
|
+
|
|
24
|
+
## Visual Direction
|
|
25
|
+
- High-energy dark canvas with magenta–violet–cyan gradients, kinetic glow pulses, and animated CTA shimmers (prefers-reduced-motion is respected).
|
|
26
|
+
- Body backgrounds layer drifting radials; CTA rows and hero/promo shells pick up neon highlights and narrower container widths for focus.
|
|
27
|
+
- Designed for nightlife/gaming drops or high-intensity presales where motion cues reinforce urgency.
|
|
28
|
+
|
|
29
|
+
## Token Highlights
|
|
30
|
+
- CTA/chip/outline tokens bias toward saturated accents; focus rings and field chrome inherit electric-blue highlights.
|
|
31
|
+
- Dedicated modal/backdrop tokens ensure AppKit and in-app dialogs match the neon palette without extra overrides.
|
|
32
|
+
- Countdown/status/chart tokens use electric blue for digits and gradients for headline ribbons to stay legible on dark cards.
|
|
33
|
+
|
|
34
|
+
## Compatibility Notes
|
|
35
|
+
- Motion-heavy: shimmer/glow animations are enabled when users allow motion; ensure brand approvals for animated CTAs.
|
|
36
|
+
- Theme CSS touches legacy sections (legal cards, sticky CTAs, status metrics, curiosity teasers). Keep any additional overrides inside this folder so other themes remain unaffected.
|
|
37
|
+
|
|
38
|
+
## Contributing
|
|
39
|
+
|
|
40
|
+
See [CONTRIBUTING.md](./CONTRIBUTING.md) for guidelines.
|
|
41
|
+
|
|
42
|
+
## License
|
|
43
|
+
|
|
44
|
+
[MIT](./LICENSE)
|
package/index.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@koehler8/cms-theme-neon",
|
|
3
|
+
"version": "1.0.2",
|
|
4
|
+
"description": "Neon Gradient theme for Vertex CMS — ultra-vibrant neon pink/cyan/purple palette",
|
|
5
|
+
"author": "koehler8",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"keywords": ["cms", "theme", "koehler8", "neon", "dark-theme"],
|
|
8
|
+
"homepage": "https://github.com/koehler8/cms-theme-neon#readme",
|
|
9
|
+
"bugs": {
|
|
10
|
+
"url": "https://github.com/koehler8/cms-theme-neon/issues"
|
|
11
|
+
},
|
|
12
|
+
"type": "module",
|
|
13
|
+
"exports": {
|
|
14
|
+
".": "./index.js",
|
|
15
|
+
"./config": "./theme.config.js"
|
|
16
|
+
},
|
|
17
|
+
"files": [
|
|
18
|
+
"index.js",
|
|
19
|
+
"theme.config.js",
|
|
20
|
+
"theme.css",
|
|
21
|
+
"README.md",
|
|
22
|
+
"LICENSE"
|
|
23
|
+
],
|
|
24
|
+
"peerDependencies": {
|
|
25
|
+
"@koehler8/cms": "^1.0.0-beta.1"
|
|
26
|
+
},
|
|
27
|
+
"repository": {
|
|
28
|
+
"type": "git",
|
|
29
|
+
"url": "git+https://github.com/koehler8/cms-theme-neon.git"
|
|
30
|
+
}
|
|
31
|
+
}
|
package/theme.config.js
ADDED
|
@@ -0,0 +1,212 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"slug": "neon",
|
|
3
|
+
"meta": {
|
|
4
|
+
"name": "Neon Gradient",
|
|
5
|
+
"version": "1.0.0",
|
|
6
|
+
"author": "koehler8"
|
|
7
|
+
},
|
|
8
|
+
"tokens": {
|
|
9
|
+
"palette": {
|
|
10
|
+
"primary": "#ff2d86",
|
|
11
|
+
"primaryAccent": "#9a2eff",
|
|
12
|
+
"secondary": "#27f3ff",
|
|
13
|
+
"accent": "#ffaa1d",
|
|
14
|
+
"accentSoft": "rgba(39, 243, 255, 0.18)",
|
|
15
|
+
"neutral": "#0a0a0d",
|
|
16
|
+
"neutralStrong": "#f0eaf3",
|
|
17
|
+
"neutralSoft": "#a798b0",
|
|
18
|
+
"inverse": "#ffffff",
|
|
19
|
+
"success": "#27f3ff",
|
|
20
|
+
"info": "#27f3ff",
|
|
21
|
+
"warning": "#ffaa1d",
|
|
22
|
+
"critical": "#d9164b",
|
|
23
|
+
"criticalSoft": "rgba(217, 22, 75, 0.25)"
|
|
24
|
+
},
|
|
25
|
+
"text": {
|
|
26
|
+
"primary": "#f0eaf3",
|
|
27
|
+
"muted": "#a798b0",
|
|
28
|
+
"mutedStrong": "#c9bfd0",
|
|
29
|
+
"inverse": "#ffffff",
|
|
30
|
+
"accent": "#27f3ff",
|
|
31
|
+
"onAccent": "#0a0a0d"
|
|
32
|
+
},
|
|
33
|
+
"surfaces": {
|
|
34
|
+
"base": "#0a0a0d",
|
|
35
|
+
"baseAlt": "#141216",
|
|
36
|
+
"raised": "#1c1a1f",
|
|
37
|
+
"sunken": "#141216",
|
|
38
|
+
"callout": "rgba(154, 46, 255, 0.16)",
|
|
39
|
+
"card": "rgba(10, 10, 13, 0.88)",
|
|
40
|
+
"cardAlt": "rgba(10, 10, 13, 0.88)",
|
|
41
|
+
"overlay": "rgba(16, 12, 24, 0.96)",
|
|
42
|
+
"backdrop": "rgba(6, 4, 12, 0.78)",
|
|
43
|
+
"border": "rgba(154, 46, 255, 0.45)",
|
|
44
|
+
"divider": "rgba(255, 45, 134, 0.45)",
|
|
45
|
+
"input": "rgba(22, 18, 28, 0.96)",
|
|
46
|
+
"chip": "rgba(255, 45, 134, 0.28)",
|
|
47
|
+
"chipAccent": "#ff2d86",
|
|
48
|
+
"helper": {
|
|
49
|
+
"background": "rgba(154, 46, 255, 0.16)",
|
|
50
|
+
"hover": "rgba(154, 46, 255, 0.28)",
|
|
51
|
+
"text": "#f0eaf3",
|
|
52
|
+
"border": "rgba(154, 46, 255, 0.45)",
|
|
53
|
+
"heading": "#f0eaf3",
|
|
54
|
+
"body": "rgba(240, 234, 243, 0.85)",
|
|
55
|
+
"hoverColor": "#27f3ff"
|
|
56
|
+
},
|
|
57
|
+
"tabs": {
|
|
58
|
+
"background": "rgba(10, 10, 13, 0.88)",
|
|
59
|
+
"border": "rgba(154, 46, 255, 0.35)",
|
|
60
|
+
"shadow": "0 18px 34px rgba(28, 42, 96, 0.3)",
|
|
61
|
+
"tabColor": "rgba(249, 246, 255, 0.92)",
|
|
62
|
+
"activeBackground": "rgba(39, 243, 255, 0.16)",
|
|
63
|
+
"activeColor": "rgba(249, 246, 255, 0.98)",
|
|
64
|
+
"activeShadow": "0 18px 40px rgba(28, 42, 96, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.4)",
|
|
65
|
+
"stepBackground": "rgba(255, 255, 255, 0.06)",
|
|
66
|
+
"stepBorder": "rgba(255, 255, 255, 0.18)",
|
|
67
|
+
"stepColor": "rgba(255, 255, 255, 0.72)",
|
|
68
|
+
"activeStepBackground": "rgba(39, 243, 255, 0.18)",
|
|
69
|
+
"activeStepBorder": "rgba(39, 243, 255, 0.42)",
|
|
70
|
+
"activeStepColor": "#27f3ff"
|
|
71
|
+
},
|
|
72
|
+
"field": {
|
|
73
|
+
"background": "rgba(22, 18, 28, 0.96)",
|
|
74
|
+
"border": "rgba(154, 46, 255, 0.35)",
|
|
75
|
+
"shadow": "0 8px 24px rgba(217, 22, 75, 0.18)",
|
|
76
|
+
"addonBackground": "rgba(10, 10, 13, 0.88)",
|
|
77
|
+
"addonBorder": "rgba(154, 46, 255, 0.35)",
|
|
78
|
+
"addonColor": "#f0eaf3",
|
|
79
|
+
"inputColor": "#f0eaf3",
|
|
80
|
+
"inputPlaceholder": "rgba(201, 191, 208, 0.55)"
|
|
81
|
+
},
|
|
82
|
+
"strip": {
|
|
83
|
+
"background": "rgba(10, 10, 13, 0.9)",
|
|
84
|
+
"border": "rgba(154, 46, 255, 0.28)",
|
|
85
|
+
"text": "#f0eaf3"
|
|
86
|
+
},
|
|
87
|
+
"chrome": {
|
|
88
|
+
"background": "rgba(8, 4, 16, 0.94)",
|
|
89
|
+
"text": "#f0eaf3",
|
|
90
|
+
"shadow": "0 18px 45px rgba(2, 3, 11, 0.6)",
|
|
91
|
+
"compactShadow": "0 12px 32px rgba(2, 3, 11, 0.72)"
|
|
92
|
+
},
|
|
93
|
+
"backdropPrimary": {
|
|
94
|
+
"background": "radial-gradient(circle at 18% 12%, rgba(255, 45, 134, 0.42), rgba(7, 3, 18, 0.95) 60%), radial-gradient(circle at 75% 88%, rgba(39, 243, 255, 0.36), rgba(8, 4, 20, 0.94) 58%), linear-gradient(150deg, rgba(6, 2, 16, 0.98), rgba(24, 9, 49, 0.88))",
|
|
95
|
+
"before": "radial-gradient(circle, rgba(39, 243, 255, 0.55), rgba(0, 0, 0, 0))",
|
|
96
|
+
"after": "radial-gradient(circle, rgba(255, 45, 134, 0.72), rgba(0, 0, 0, 0))"
|
|
97
|
+
},
|
|
98
|
+
"backdropSecondary": {
|
|
99
|
+
"background": "radial-gradient(circle at 20% 15%, rgba(255, 45, 134, 0.42), rgba(8, 4, 18, 0.92) 60%), radial-gradient(circle at 70% 85%, rgba(39, 243, 255, 0.36), rgba(10, 6, 24, 0.9) 58%), linear-gradient(145deg, rgba(6, 2, 18, 0.96), rgba(24, 9, 49, 0.9))",
|
|
100
|
+
"before": "radial-gradient(circle, rgba(39, 243, 255, 0.55), rgba(0, 0, 0, 0))",
|
|
101
|
+
"after": "radial-gradient(circle, rgba(255, 45, 134, 0.7), rgba(0, 0, 0, 0))"
|
|
102
|
+
}
|
|
103
|
+
},
|
|
104
|
+
"typography": {
|
|
105
|
+
"bodyFamily": "\"Inter\", \"Segoe UI\", system-ui, -apple-system, BlinkMacSystemFont, sans-serif",
|
|
106
|
+
"headingFamily": "\"Clash Display\", \"Inter\", \"Segoe UI\", system-ui, -apple-system, BlinkMacSystemFont, sans-serif",
|
|
107
|
+
"monoFamily": "\"JetBrains Mono\", \"SFMono-Regular\", Menlo, Consolas, monospace",
|
|
108
|
+
"baseSize": "16px",
|
|
109
|
+
"scale": 1.125,
|
|
110
|
+
"weightRegular": 400,
|
|
111
|
+
"weightMedium": 500,
|
|
112
|
+
"weightBold": 600,
|
|
113
|
+
"letterSpacingTight": "-0.015em",
|
|
114
|
+
"letterSpacingWide": "0.08em"
|
|
115
|
+
},
|
|
116
|
+
"ctas": {
|
|
117
|
+
"primary": {
|
|
118
|
+
"bg": "linear-gradient(135deg, #ff2d86 0%, #9a2eff 55%, #27f3ff 100%)",
|
|
119
|
+
"text": "#0a0a0d",
|
|
120
|
+
"border": "1px solid rgba(255, 255, 255, 0.18)",
|
|
121
|
+
"hoverBg": "linear-gradient(135deg, #ff2d86 0%, #9a2eff 55%, #27f3ff 100%)",
|
|
122
|
+
"hoverBorder": "1px solid rgba(255, 255, 255, 0.18)",
|
|
123
|
+
"shadow": "0 18px 35px rgba(255, 60, 125, 0.45)"
|
|
124
|
+
},
|
|
125
|
+
"secondary": {
|
|
126
|
+
"bg": "rgba(10, 10, 13, 0.88)",
|
|
127
|
+
"text": "#f0eaf3",
|
|
128
|
+
"border": "rgba(154, 46, 255, 0.45)",
|
|
129
|
+
"hoverBg": "rgba(154, 46, 255, 0.16)",
|
|
130
|
+
"hoverBorder": "rgba(154, 46, 255, 0.45)",
|
|
131
|
+
"shadow": "0 8px 24px rgba(217, 22, 75, 0.18)"
|
|
132
|
+
},
|
|
133
|
+
"ghost": {
|
|
134
|
+
"bg": "transparent",
|
|
135
|
+
"text": "#ff2d86",
|
|
136
|
+
"border": "rgba(154, 46, 255, 0.45)",
|
|
137
|
+
"hoverBg": "rgba(154, 46, 255, 0.16)",
|
|
138
|
+
"hoverBorder": "rgba(154, 46, 255, 0.45)",
|
|
139
|
+
"shadow": "none"
|
|
140
|
+
},
|
|
141
|
+
"link": {
|
|
142
|
+
"text": "#ff2d86",
|
|
143
|
+
"hoverText": "#ffaa1d",
|
|
144
|
+
"underline": "rgba(154, 46, 255, 0.45)"
|
|
145
|
+
}
|
|
146
|
+
},
|
|
147
|
+
"chips": {
|
|
148
|
+
"neutral": {
|
|
149
|
+
"bg": "rgba(255, 45, 134, 0.28)",
|
|
150
|
+
"text": "#f0eaf3",
|
|
151
|
+
"border": "rgba(154, 46, 255, 0.45)"
|
|
152
|
+
},
|
|
153
|
+
"accent": {
|
|
154
|
+
"bg": "rgba(39, 243, 255, 0.18)",
|
|
155
|
+
"text": "#ffffff",
|
|
156
|
+
"border": "rgba(154, 46, 255, 0.45)"
|
|
157
|
+
},
|
|
158
|
+
"outline": {
|
|
159
|
+
"bg": "transparent",
|
|
160
|
+
"text": "#ff2d86",
|
|
161
|
+
"border": "rgba(154, 46, 255, 0.45)"
|
|
162
|
+
}
|
|
163
|
+
},
|
|
164
|
+
"focus": {
|
|
165
|
+
"ring": "0 0 0 2px rgba(39, 243, 255, 0.35)",
|
|
166
|
+
"ringMuted": "0 0 0 1px rgba(39, 243, 255, 0.35)",
|
|
167
|
+
"outline": "rgba(39, 243, 255, 0.65)",
|
|
168
|
+
"shadowInset": "0 0 22px rgba(39, 243, 255, 0.32)"
|
|
169
|
+
},
|
|
170
|
+
"radii": {
|
|
171
|
+
"sm": "8px",
|
|
172
|
+
"md": "14px",
|
|
173
|
+
"lg": "24px",
|
|
174
|
+
"pill": "999px",
|
|
175
|
+
"full": "50%"
|
|
176
|
+
},
|
|
177
|
+
"elevation": {
|
|
178
|
+
"flat": "0 8px 24px rgba(217, 22, 75, 0.18)",
|
|
179
|
+
"raised": "0 0 28px rgba(255, 45, 134, 0.5)",
|
|
180
|
+
"overlay": "0 0 42px rgba(39, 243, 255, 0.4)"
|
|
181
|
+
},
|
|
182
|
+
"utility": {
|
|
183
|
+
"divider": "rgba(154, 46, 255, 0.45)",
|
|
184
|
+
"inputBorder": "rgba(154, 46, 255, 0.35)",
|
|
185
|
+
"inputText": "#f0eaf3",
|
|
186
|
+
"inputPlaceholder": "rgba(201, 191, 208, 0.55)",
|
|
187
|
+
"selectionBg": "rgba(39, 243, 255, 0.18)",
|
|
188
|
+
"selectionText": "#ffffff",
|
|
189
|
+
"gradientHero": "radial-gradient(circle at 18% 12%, rgba(255, 45, 134, 0.42), rgba(7, 3, 18, 0.95) 60%), radial-gradient(circle at 75% 88%, rgba(39, 243, 255, 0.36), rgba(8, 4, 20, 0.94) 58%), linear-gradient(150deg, rgba(6, 2, 16, 0.98), rgba(24, 9, 49, 0.88))",
|
|
190
|
+
"gradientPromo": "radial-gradient(circle at 20% 15%, rgba(255, 45, 134, 0.42), rgba(8, 4, 18, 0.92) 60%), radial-gradient(circle at 70% 85%, rgba(39, 243, 255, 0.36), rgba(10, 6, 24, 0.9) 58%), linear-gradient(145deg, rgba(6, 2, 18, 0.96), rgba(24, 9, 49, 0.9))",
|
|
191
|
+
"bodyBackground": [
|
|
192
|
+
"radial-gradient(circle at 20% 15%, rgba(255, 45, 134, 0.42), rgba(8, 4, 18, 0.92) 60%)",
|
|
193
|
+
"radial-gradient(circle at 70% 85%, rgba(39, 243, 255, 0.36), rgba(10, 6, 24, 0.9) 58%)",
|
|
194
|
+
"linear-gradient(145deg, rgba(6, 2, 18, 0.96), rgba(24, 9, 49, 0.9))"
|
|
195
|
+
],
|
|
196
|
+
"modalSurface": "rgba(16, 12, 24, 0.96)",
|
|
197
|
+
"modalBorder": "rgba(154, 46, 255, 0.32)",
|
|
198
|
+
"modalShadow": "0 8px 24px rgba(217, 22, 75, 0.18)",
|
|
199
|
+
"modalRadius": "24px",
|
|
200
|
+
"chartTrack": "rgba(20, 18, 22, 0.88)",
|
|
201
|
+
"chartCenterText": "#f0eaf3",
|
|
202
|
+
"statusHeadline": {
|
|
203
|
+
"background": "linear-gradient(120deg, rgba(39, 243, 255, 0.16), rgba(255, 45, 134, 0.18))",
|
|
204
|
+
"color": "var(--brand-accent-electric, #27f3ff)",
|
|
205
|
+
"shadow": "0 12px 24px rgba(28, 42, 96, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.4)"
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
},
|
|
209
|
+
"assets": {
|
|
210
|
+
"css": "./theme.css"
|
|
211
|
+
}
|
|
212
|
+
};
|
package/theme.css
ADDED
|
@@ -0,0 +1,808 @@
|
|
|
1
|
+
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@400;600;700&display=swap');
|
|
2
|
+
|
|
3
|
+
:root[data-site-theme="neon"] {
|
|
4
|
+
--brand-neon-pink: #ff2d86;
|
|
5
|
+
--brand-crimson-red: #d9164b;
|
|
6
|
+
--brand-sultry-purple: #9a2eff;
|
|
7
|
+
--brand-electric-blue: #27f3ff;
|
|
8
|
+
--brand-amber-heat: #ffaa1d;
|
|
9
|
+
--brand-deep-violet: #5a1b9d;
|
|
10
|
+
|
|
11
|
+
--brand-bg-900: #0a0a0d;
|
|
12
|
+
--brand-bg-800: #141216;
|
|
13
|
+
--brand-bg-700: #1c1a1f;
|
|
14
|
+
--brand-fg-100: #f0eaf3;
|
|
15
|
+
--brand-fg-200: #c9bfd0;
|
|
16
|
+
--brand-fg-300: #a798b0;
|
|
17
|
+
|
|
18
|
+
--brand-radius-sm: 8px;
|
|
19
|
+
--brand-radius-md: 14px;
|
|
20
|
+
--brand-radius-lg: 24px;
|
|
21
|
+
|
|
22
|
+
--brand-gradient-ignition: linear-gradient(
|
|
23
|
+
135deg,
|
|
24
|
+
#ff2d86 0%,
|
|
25
|
+
#9a2eff 52%,
|
|
26
|
+
#27f3ff 100%
|
|
27
|
+
);
|
|
28
|
+
--brand-shadow-glow: 0 0 28px rgba(255, 45, 134, 0.5);
|
|
29
|
+
--brand-shadow-glow-strong: 0 0 42px rgba(39, 243, 255, 0.4);
|
|
30
|
+
--brand-chart-track: rgba(20, 18, 22, 0.88);
|
|
31
|
+
--brand-chart-center-text: var(--brand-fg-100);
|
|
32
|
+
--brand-cta-text: var(--brand-bg-900);
|
|
33
|
+
|
|
34
|
+
--brand-accent-electric: var(--brand-electric-blue);
|
|
35
|
+
--brand-accent-electric-soft: rgba(39, 243, 255, 0.18);
|
|
36
|
+
--brand-accent-warm: var(--brand-amber-heat);
|
|
37
|
+
|
|
38
|
+
--brand-card-soft: rgba(10, 10, 13, 0.88);
|
|
39
|
+
--brand-card-border: rgba(154, 46, 255, 0.45);
|
|
40
|
+
--brand-card-shadow: 0 8px 24px rgba(217, 22, 75, 0.18);
|
|
41
|
+
|
|
42
|
+
--brand-primary-cta-gradient: var(--brand-gradient-ignition);
|
|
43
|
+
--brand-primary-cta-text: var(--brand-cta-text);
|
|
44
|
+
--brand-primary-cta-shadow: var(--brand-shadow-glow);
|
|
45
|
+
--brand-primary-cta-hover-shadow: var(--brand-shadow-glow-strong);
|
|
46
|
+
--brand-primary-cta-hover-translate: translateY(-2px);
|
|
47
|
+
|
|
48
|
+
--brand-surface-card-bg: var(--brand-card-soft);
|
|
49
|
+
--brand-surface-card-border: var(--brand-card-border);
|
|
50
|
+
--brand-surface-card-shadow: var(--brand-card-shadow);
|
|
51
|
+
--brand-surface-helper-bg: rgba(154, 46, 255, 0.16);
|
|
52
|
+
--brand-surface-helper-hover-bg: rgba(154, 46, 255, 0.28);
|
|
53
|
+
--brand-card-radius: var(--brand-radius-lg);
|
|
54
|
+
--brand-button-radius: var(--brand-radius-md);
|
|
55
|
+
|
|
56
|
+
--brand-icon-badge-bg: rgba(255, 45, 134, 0.28);
|
|
57
|
+
--brand-icon-badge-color: var(--brand-neon-pink);
|
|
58
|
+
|
|
59
|
+
--brand-pill-gradient: linear-gradient(
|
|
60
|
+
135deg,
|
|
61
|
+
var(--brand-neon-pink) 0%,
|
|
62
|
+
var(--brand-sultry-purple) 100%
|
|
63
|
+
);
|
|
64
|
+
--brand-pill-alt-gradient: linear-gradient(
|
|
65
|
+
135deg,
|
|
66
|
+
var(--brand-sultry-purple) 0%,
|
|
67
|
+
var(--brand-electric-blue) 100%
|
|
68
|
+
);
|
|
69
|
+
--brand-pill-contrast: var(--brand-fg-100, #f5f2fc);
|
|
70
|
+
|
|
71
|
+
--brand-border-highlight: rgba(255, 45, 134, 0.45);
|
|
72
|
+
--brand-border-glow: rgba(154, 46, 255, 0.48);
|
|
73
|
+
|
|
74
|
+
--brand-status-success: var(--brand-electric-blue);
|
|
75
|
+
--brand-status-error: var(--brand-crimson-red);
|
|
76
|
+
--brand-status-error-soft: rgba(217, 22, 75, 0.25);
|
|
77
|
+
|
|
78
|
+
--brand-input-bg: rgba(22, 18, 28, 0.96);
|
|
79
|
+
--brand-input-border: rgba(154, 46, 255, 0.35);
|
|
80
|
+
--brand-input-border-active: rgba(39, 243, 255, 0.65);
|
|
81
|
+
--brand-input-text: var(--brand-fg-100);
|
|
82
|
+
--brand-input-placeholder: rgba(201, 191, 208, 0.55);
|
|
83
|
+
--brand-focus-ring: 0 0 0 2px rgba(39, 243, 255, 0.35);
|
|
84
|
+
--brand-focus-glow: 0 0 22px rgba(39, 243, 255, 0.32);
|
|
85
|
+
|
|
86
|
+
--brand-modal-backdrop: rgba(6, 4, 12, 0.78);
|
|
87
|
+
--brand-modal-surface: rgba(16, 12, 24, 0.96);
|
|
88
|
+
--brand-modal-border: rgba(154, 46, 255, 0.32);
|
|
89
|
+
--brand-modal-shadow: 0 8px 24px rgba(217, 22, 75, 0.18);
|
|
90
|
+
--brand-modal-radius: var(--brand-radius-lg);
|
|
91
|
+
--brand-countdown-digit: var(--brand-electric-blue);
|
|
92
|
+
--brand-countdown-label: rgba(240, 234, 243, 0.7);
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
[data-site-theme="neon"] body {
|
|
96
|
+
font-family: 'Inter', 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
|
|
97
|
+
font-weight: 400;
|
|
98
|
+
line-height: 1.65;
|
|
99
|
+
color: var(--brand-fg-100, #f0eaf3);
|
|
100
|
+
background-color: var(--brand-bg-900, #0a0a0d);
|
|
101
|
+
position: relative;
|
|
102
|
+
overflow-x: hidden;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
[data-site-theme="neon"] .container {
|
|
106
|
+
max-width: min(1180px, 92vw);
|
|
107
|
+
margin-left: auto;
|
|
108
|
+
margin-right: auto;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
[data-site-theme="neon"] .container-fluid {
|
|
112
|
+
padding-left: clamp(16px, 4vw, 48px);
|
|
113
|
+
padding-right: clamp(16px, 4vw, 48px);
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
[data-site-theme="neon"] h1,
|
|
117
|
+
[data-site-theme="neon"] h2,
|
|
118
|
+
[data-site-theme="neon"] h3,
|
|
119
|
+
[data-site-theme="neon"] h4,
|
|
120
|
+
[data-site-theme="neon"] h5,
|
|
121
|
+
[data-site-theme="neon"] h6 {
|
|
122
|
+
font-family: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
|
|
123
|
+
font-weight: 600;
|
|
124
|
+
letter-spacing: 0.02em;
|
|
125
|
+
color: var(--brand-fg-100, #f0eaf3);
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
[data-site-theme="neon"] a {
|
|
129
|
+
color: var(--brand-electric-blue, #27f3ff);
|
|
130
|
+
text-decoration: none;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
[data-site-theme="neon"] a:hover,
|
|
134
|
+
[data-site-theme="neon"] a:focus {
|
|
135
|
+
color: var(--brand-neon-pink, #ff2d86);
|
|
136
|
+
text-decoration: underline;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
[data-site-theme="neon"] h1 {
|
|
140
|
+
font-weight: 700;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
[data-site-theme="neon"] strong,
|
|
144
|
+
[data-site-theme="neon"] b {
|
|
145
|
+
font-family: inherit;
|
|
146
|
+
font-weight: 600;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
[data-site-theme="neon"] input,
|
|
150
|
+
[data-site-theme="neon"] select,
|
|
151
|
+
[data-site-theme="neon"] textarea {
|
|
152
|
+
background: var(--brand-input-bg);
|
|
153
|
+
border: 1px solid var(--brand-input-border);
|
|
154
|
+
color: var(--brand-input-text);
|
|
155
|
+
border-radius: var(--brand-radius-md);
|
|
156
|
+
transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
[data-site-theme="neon"] input::placeholder,
|
|
160
|
+
[data-site-theme="neon"] textarea::placeholder {
|
|
161
|
+
color: var(--brand-input-placeholder);
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
[data-site-theme="neon"] input:focus,
|
|
165
|
+
[data-site-theme="neon"] select:focus,
|
|
166
|
+
[data-site-theme="neon"] textarea:focus {
|
|
167
|
+
outline: 2px solid transparent;
|
|
168
|
+
border-color: var(--brand-input-border-active);
|
|
169
|
+
box-shadow: var(--brand-focus-ring), var(--brand-focus-glow);
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
[data-site-theme="neon"] button:focus-visible,
|
|
173
|
+
[data-site-theme="neon"] a:focus-visible {
|
|
174
|
+
outline: 2px solid var(--brand-accent-electric);
|
|
175
|
+
outline-offset: 3px;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
[data-site-theme="neon"] .modal,
|
|
179
|
+
[data-site-theme="neon"] [role="dialog"] {
|
|
180
|
+
background: var(--brand-modal-surface);
|
|
181
|
+
border: 1px solid var(--brand-modal-border);
|
|
182
|
+
box-shadow: var(--brand-modal-shadow);
|
|
183
|
+
color: var(--brand-input-text);
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
[data-site-theme="neon"] .modal::backdrop,
|
|
187
|
+
[data-site-theme="neon"] [role="dialog"]::backdrop {
|
|
188
|
+
background: var(--brand-modal-backdrop);
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
[data-site-theme="neon"] .need-eth-modal__backdrop,
|
|
192
|
+
[data-site-theme="neon"] .w3m-modal-backdrop {
|
|
193
|
+
background: var(--brand-modal-backdrop) !important;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
[data-site-theme="neon"] .legal-page {
|
|
197
|
+
background: linear-gradient(180deg, #f3f4f8 0%, #eceef5 100%);
|
|
198
|
+
color: #1f1f25;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
[data-site-theme="neon"] .legal-card {
|
|
202
|
+
background: var(--brand-surface-card-bg, rgba(10, 10, 13, 0.88));
|
|
203
|
+
color: var(--brand-card-text, #f0eaf3);
|
|
204
|
+
box-shadow: var(--brand-surface-card-shadow, 0 18px 40px rgba(8, 6, 14, 0.65));
|
|
205
|
+
border: 1px solid var(--brand-surface-card-border, rgba(154, 46, 255, 0.35));
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
[data-site-theme="neon"] .legal-card h1,
|
|
209
|
+
[data-site-theme="neon"] .legal-card h2,
|
|
210
|
+
[data-site-theme="neon"] .legal-card h3,
|
|
211
|
+
[data-site-theme="neon"] .legal-card h4,
|
|
212
|
+
[data-site-theme="neon"] .legal-card h5,
|
|
213
|
+
[data-site-theme="neon"] .legal-card h6 {
|
|
214
|
+
color: var(--brand-card-text, #f0eaf3);
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
[data-site-theme="neon"] .legal-card p,
|
|
218
|
+
[data-site-theme="neon"] .legal-card li,
|
|
219
|
+
[data-site-theme="neon"] .legal-card ol,
|
|
220
|
+
[data-site-theme="neon"] .legal-card ul,
|
|
221
|
+
[data-site-theme="neon"] .legal-card span {
|
|
222
|
+
color: var(--brand-card-text, #f0eaf3);
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
[data-site-theme="neon"] .legal-card a {
|
|
226
|
+
color: var(--brand-accent-electric, #27f3ff);
|
|
227
|
+
text-decoration: underline;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
[data-site-theme="neon"] .legal-card a:hover,
|
|
231
|
+
[data-site-theme="neon"] .legal-card a:focus {
|
|
232
|
+
color: var(--brand-cta-text, #0a0a0d);
|
|
233
|
+
text-decoration: underline;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
[data-site-theme="neon"] .w3m-modal,
|
|
237
|
+
[data-site-theme="neon"] .w3m-modal__inner,
|
|
238
|
+
[data-site-theme="neon"] .w3m-modal__content,
|
|
239
|
+
[data-site-theme="neon"] .w3m-modal-content,
|
|
240
|
+
[data-site-theme="neon"] .w3m-modal-card {
|
|
241
|
+
background: var(--brand-modal-surface) !important;
|
|
242
|
+
border: 1px solid var(--brand-modal-border) !important;
|
|
243
|
+
box-shadow: var(--brand-modal-shadow) !important;
|
|
244
|
+
color: var(--brand-input-text) !important;
|
|
245
|
+
position: fixed !important;
|
|
246
|
+
z-index: 2147483001 !important;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
[data-site-theme="neon"] .w3m-modal-backdrop {
|
|
250
|
+
position: fixed !important;
|
|
251
|
+
inset: 0 !important;
|
|
252
|
+
z-index: 2147483000 !important;
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
[data-site-theme="neon"] .w3m-overlay,
|
|
256
|
+
[data-site-theme="neon"] .w3m-modal-container,
|
|
257
|
+
[data-site-theme="neon"] .w3m-modal-header {
|
|
258
|
+
z-index: inherit !important;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
[data-site-theme="neon"] w3m-modal,
|
|
262
|
+
[data-site-theme="neon"] appkit-overlay {
|
|
263
|
+
position: fixed !important;
|
|
264
|
+
inset: 0 !important;
|
|
265
|
+
z-index: 2147483001 !important;
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
[data-site-theme="neon"] w3m-modal::part(backdrop),
|
|
269
|
+
[data-site-theme="neon"] w3m-modal::part(modal) {
|
|
270
|
+
z-index: inherit !important;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
[data-site-theme="neon"] .w3m-button,
|
|
274
|
+
[data-site-theme="neon"] .w3m-input,
|
|
275
|
+
[data-site-theme="neon"] .w3m-text,
|
|
276
|
+
[data-site-theme="neon"] .w3m-option,
|
|
277
|
+
[data-site-theme="neon"] .w3m-chip,
|
|
278
|
+
[data-site-theme="neon"] .w3m-card {
|
|
279
|
+
background: var(--brand-input-bg) !important;
|
|
280
|
+
color: var(--brand-input-text) !important;
|
|
281
|
+
border-color: var(--brand-input-border) !important;
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
[data-site-theme="neon"] .w3m-button:hover,
|
|
285
|
+
[data-site-theme="neon"] .w3m-option:hover,
|
|
286
|
+
[data-site-theme="neon"] .w3m-chip:hover {
|
|
287
|
+
border-color: var(--brand-input-border-active) !important;
|
|
288
|
+
box-shadow: var(--brand-focus-ring) !important;
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
[data-site-theme="neon"] #countdown .js-cd-days,
|
|
292
|
+
[data-site-theme="neon"] #countdown .js-cd-hours,
|
|
293
|
+
[data-site-theme="neon"] #countdown .js-cd-minutes,
|
|
294
|
+
[data-site-theme="neon"] #countdown .js-cd-seconds {
|
|
295
|
+
color: var(--brand-countdown-digit);
|
|
296
|
+
font-family: 'Space Grotesk', 'Inter', sans-serif;
|
|
297
|
+
text-shadow: 0 0 20px rgba(39, 243, 255, 0.45);
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
[data-site-theme="neon"] #countdown span {
|
|
301
|
+
color: var(--brand-countdown-label);
|
|
302
|
+
letter-spacing: 0.15em;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
[data-site-theme="neon"] .sticky-cta__button,
|
|
306
|
+
[data-site-theme="neon"] .primary-button,
|
|
307
|
+
[data-site-theme="neon"] .curiosity-teaser__cta {
|
|
308
|
+
position: relative;
|
|
309
|
+
overflow: hidden;
|
|
310
|
+
filter: brightness(1);
|
|
311
|
+
will-change: box-shadow, filter;
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
@media (prefers-reduced-motion: no-preference) {
|
|
315
|
+
[data-site-theme="neon"] .sticky-cta__button,
|
|
316
|
+
[data-site-theme="neon"] .primary-button,
|
|
317
|
+
[data-site-theme="neon"] .curiosity-teaser__cta {
|
|
318
|
+
animation: brandGlowPulse 9s ease-in-out infinite;
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
[data-site-theme="neon"] .sticky-cta__button::after,
|
|
322
|
+
[data-site-theme="neon"] .primary-button::after,
|
|
323
|
+
[data-site-theme="neon"] .curiosity-teaser__cta::after {
|
|
324
|
+
content: '';
|
|
325
|
+
position: absolute;
|
|
326
|
+
inset: 0;
|
|
327
|
+
background: linear-gradient(120deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
|
|
328
|
+
transform: translateX(-130%);
|
|
329
|
+
pointer-events: none;
|
|
330
|
+
mix-blend-mode: screen;
|
|
331
|
+
animation: brandButtonShimmer 5.6s ease-in-out infinite;
|
|
332
|
+
}
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
@media (prefers-reduced-motion: reduce) {
|
|
336
|
+
[data-site-theme="neon"] .sticky-cta__button,
|
|
337
|
+
[data-site-theme="neon"] .primary-button,
|
|
338
|
+
[data-site-theme="neon"] .curiosity-teaser__cta {
|
|
339
|
+
animation: none !important;
|
|
340
|
+
filter: none;
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
[data-site-theme="neon"] .sticky-cta__button::after,
|
|
344
|
+
[data-site-theme="neon"] .primary-button::after,
|
|
345
|
+
[data-site-theme="neon"] .curiosity-teaser__cta::after {
|
|
346
|
+
display: none;
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
[data-site-theme="neon"] body::before {
|
|
350
|
+
animation: none !important;
|
|
351
|
+
}
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
@keyframes brandButtonShimmer {
|
|
355
|
+
0% {
|
|
356
|
+
transform: translateX(-130%);
|
|
357
|
+
opacity: 0;
|
|
358
|
+
}
|
|
359
|
+
45% {
|
|
360
|
+
opacity: 0.8;
|
|
361
|
+
}
|
|
362
|
+
65% {
|
|
363
|
+
transform: translateX(125%);
|
|
364
|
+
opacity: 0.55;
|
|
365
|
+
}
|
|
366
|
+
100% {
|
|
367
|
+
transform: translateX(145%);
|
|
368
|
+
opacity: 0;
|
|
369
|
+
}
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
@keyframes brandGlowPulse {
|
|
373
|
+
0%,
|
|
374
|
+
24% {
|
|
375
|
+
box-shadow: var(--brand-primary-cta-shadow, 0 18px 35px rgba(255, 45, 134, 0.45));
|
|
376
|
+
filter: brightness(1);
|
|
377
|
+
}
|
|
378
|
+
30% {
|
|
379
|
+
box-shadow: 0 24px 48px rgba(39, 243, 255, 0.45);
|
|
380
|
+
filter: brightness(1.08);
|
|
381
|
+
}
|
|
382
|
+
42% {
|
|
383
|
+
box-shadow: var(--brand-primary-cta-shadow, 0 18px 35px rgba(255, 45, 134, 0.45));
|
|
384
|
+
filter: brightness(1);
|
|
385
|
+
}
|
|
386
|
+
58% {
|
|
387
|
+
box-shadow: 0 16px 30px rgba(255, 45, 134, 0.35);
|
|
388
|
+
filter: brightness(0.94);
|
|
389
|
+
}
|
|
390
|
+
58.6% {
|
|
391
|
+
box-shadow: 0 28px 54px rgba(255, 154, 220, 0.48);
|
|
392
|
+
filter: brightness(1.09);
|
|
393
|
+
}
|
|
394
|
+
59.2% {
|
|
395
|
+
box-shadow: 0 14px 26px rgba(255, 45, 134, 0.32);
|
|
396
|
+
filter: brightness(0.92);
|
|
397
|
+
}
|
|
398
|
+
59.8% {
|
|
399
|
+
box-shadow: 0 26px 52px rgba(39, 243, 255, 0.48);
|
|
400
|
+
filter: brightness(1.06);
|
|
401
|
+
}
|
|
402
|
+
60.5%,
|
|
403
|
+
100% {
|
|
404
|
+
box-shadow: var(--brand-primary-cta-shadow, 0 18px 35px rgba(255, 45, 134, 0.45));
|
|
405
|
+
filter: brightness(1);
|
|
406
|
+
}
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
[data-site-theme="neon"] body::before,
|
|
410
|
+
[data-site-theme="neon"] body::after {
|
|
411
|
+
content: '';
|
|
412
|
+
position: fixed;
|
|
413
|
+
inset: 0;
|
|
414
|
+
pointer-events: none;
|
|
415
|
+
z-index: -2;
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
[data-site-theme="neon"] body::before {
|
|
419
|
+
background:
|
|
420
|
+
radial-gradient(65% 85% at 18% 18%, rgba(255, 45, 134, 0.22), transparent 70%),
|
|
421
|
+
radial-gradient(55% 75% at 82% 28%, rgba(39, 243, 255, 0.18), transparent 68%),
|
|
422
|
+
radial-gradient(45% 65% at 48% 82%, rgba(154, 46, 255, 0.16), transparent 75%);
|
|
423
|
+
mix-blend-mode: screen;
|
|
424
|
+
opacity: 0.64;
|
|
425
|
+
transform: translateZ(0);
|
|
426
|
+
animation: neonBackgroundDrift 28s ease-in-out infinite;
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
[data-site-theme="neon"] body::after {
|
|
430
|
+
z-index: -1;
|
|
431
|
+
background:
|
|
432
|
+
linear-gradient(120deg, rgba(6, 4, 14, 0.82), rgba(10, 6, 18, 0.88) 40%, rgba(8, 5, 18, 0.92)),
|
|
433
|
+
radial-gradient(120% 140% at 50% 120%, rgba(8, 6, 18, 0.88), rgba(8, 6, 18, 0.95));
|
|
434
|
+
opacity: 0.92;
|
|
435
|
+
}
|
|
436
|
+
|
|
437
|
+
@keyframes logoFlashBloom {
|
|
438
|
+
0% {
|
|
439
|
+
opacity: 0;
|
|
440
|
+
transform: scale(0.75);
|
|
441
|
+
}
|
|
442
|
+
18% {
|
|
443
|
+
opacity: 0.6;
|
|
444
|
+
transform: scale(1.05);
|
|
445
|
+
}
|
|
446
|
+
46% {
|
|
447
|
+
opacity: 0.2;
|
|
448
|
+
transform: scale(1.28);
|
|
449
|
+
}
|
|
450
|
+
100% {
|
|
451
|
+
opacity: 0;
|
|
452
|
+
transform: scale(1.4);
|
|
453
|
+
}
|
|
454
|
+
}
|
|
455
|
+
|
|
456
|
+
@keyframes logoFlashBrighten {
|
|
457
|
+
0% {
|
|
458
|
+
filter: brightness(1) drop-shadow(0 0 0 rgba(255, 45, 134, 0));
|
|
459
|
+
}
|
|
460
|
+
20% {
|
|
461
|
+
filter: brightness(1.35) drop-shadow(0 0 14px rgba(255, 45, 134, 0.45));
|
|
462
|
+
}
|
|
463
|
+
45% {
|
|
464
|
+
filter: brightness(0.96) drop-shadow(0 0 8px rgba(39, 243, 255, 0.28));
|
|
465
|
+
}
|
|
466
|
+
100% {
|
|
467
|
+
filter: brightness(1) drop-shadow(0 0 0 rgba(255, 45, 134, 0));
|
|
468
|
+
}
|
|
469
|
+
}
|
|
470
|
+
|
|
471
|
+
[data-site-theme="neon"] .logo-flash-trigger {
|
|
472
|
+
position: relative;
|
|
473
|
+
display: inline-flex;
|
|
474
|
+
align-items: center;
|
|
475
|
+
justify-content: center;
|
|
476
|
+
transition: transform 0.18s ease;
|
|
477
|
+
}
|
|
478
|
+
|
|
479
|
+
[data-site-theme="neon"] .logo-flash-image {
|
|
480
|
+
display: block;
|
|
481
|
+
max-height: 48px;
|
|
482
|
+
transition: filter 0.24s ease;
|
|
483
|
+
}
|
|
484
|
+
|
|
485
|
+
[data-site-theme="neon"] .logo-flash-trigger::after {
|
|
486
|
+
content: '';
|
|
487
|
+
position: absolute;
|
|
488
|
+
inset: -10%;
|
|
489
|
+
border-radius: 999px;
|
|
490
|
+
background: radial-gradient(circle, rgba(255, 255, 255, 0.75), rgba(255, 45, 134, 0) 60%);
|
|
491
|
+
opacity: 0;
|
|
492
|
+
transform: scale(0.8);
|
|
493
|
+
pointer-events: none;
|
|
494
|
+
}
|
|
495
|
+
|
|
496
|
+
[data-site-theme="neon"] .logo-flash-trigger.logo-flash-active::after {
|
|
497
|
+
animation: logoFlashBloom 0.45s ease-out 1;
|
|
498
|
+
}
|
|
499
|
+
|
|
500
|
+
[data-site-theme="neon"] .logo-flash-trigger.logo-flash-active .logo-flash-image {
|
|
501
|
+
animation: logoFlashBrighten 0.45s ease-out 1;
|
|
502
|
+
}
|
|
503
|
+
|
|
504
|
+
@keyframes neonBackgroundDrift {
|
|
505
|
+
0% {
|
|
506
|
+
opacity: 0.52;
|
|
507
|
+
background-position:
|
|
508
|
+
0% 0%,
|
|
509
|
+
100% 12%,
|
|
510
|
+
46% 86%;
|
|
511
|
+
filter: hue-rotate(0deg);
|
|
512
|
+
}
|
|
513
|
+
38% {
|
|
514
|
+
opacity: 0.7;
|
|
515
|
+
background-position:
|
|
516
|
+
8% 14%,
|
|
517
|
+
94% 24%,
|
|
518
|
+
53% 78%;
|
|
519
|
+
filter: hue-rotate(6deg);
|
|
520
|
+
}
|
|
521
|
+
62% {
|
|
522
|
+
opacity: 0.6;
|
|
523
|
+
background-position:
|
|
524
|
+
14% 6%,
|
|
525
|
+
86% 20%,
|
|
526
|
+
49% 90%;
|
|
527
|
+
filter: hue-rotate(-4deg);
|
|
528
|
+
}
|
|
529
|
+
100% {
|
|
530
|
+
opacity: 0.52;
|
|
531
|
+
background-position:
|
|
532
|
+
0% 0%,
|
|
533
|
+
100% 12%,
|
|
534
|
+
46% 86%;
|
|
535
|
+
filter: hue-rotate(0deg);
|
|
536
|
+
}
|
|
537
|
+
}
|
|
538
|
+
|
|
539
|
+
[data-site-theme="neon"] .logo-flash-trigger {
|
|
540
|
+
transform: translateZ(0);
|
|
541
|
+
}
|
|
542
|
+
|
|
543
|
+
[data-site-theme="neon"] .logo-flash-trigger {
|
|
544
|
+
position: relative;
|
|
545
|
+
display: inline-flex;
|
|
546
|
+
align-items: center;
|
|
547
|
+
justify-content: center;
|
|
548
|
+
transition: transform 0.18s ease;
|
|
549
|
+
}
|
|
550
|
+
|
|
551
|
+
[data-site-theme="neon"] .logo-flash-image {
|
|
552
|
+
display: block;
|
|
553
|
+
max-height: 48px;
|
|
554
|
+
transition: filter 0.24s ease;
|
|
555
|
+
}
|
|
556
|
+
|
|
557
|
+
[data-site-theme="neon"] .logo-flash-trigger::after {
|
|
558
|
+
content: '';
|
|
559
|
+
position: absolute;
|
|
560
|
+
inset: -10%;
|
|
561
|
+
border-radius: 999px;
|
|
562
|
+
background: radial-gradient(circle, rgba(255, 255, 255, 0.75), rgba(255, 45, 134, 0) 60%);
|
|
563
|
+
opacity: 0;
|
|
564
|
+
transform: scale(0.8);
|
|
565
|
+
pointer-events: none;
|
|
566
|
+
}
|
|
567
|
+
|
|
568
|
+
[data-site-theme="neon"] .logo-flash-trigger.logo-flash-active::after {
|
|
569
|
+
animation: logoFlashBloom 0.45s ease-out 1;
|
|
570
|
+
}
|
|
571
|
+
|
|
572
|
+
[data-site-theme="neon"] .logo-flash-trigger.logo-flash-active .logo-flash-image {
|
|
573
|
+
animation: logoFlashBrighten 0.45s ease-out 1;
|
|
574
|
+
}
|
|
575
|
+
|
|
576
|
+
@keyframes logoFlashBloom {
|
|
577
|
+
0% {
|
|
578
|
+
opacity: 0;
|
|
579
|
+
transform: scale(0.75);
|
|
580
|
+
}
|
|
581
|
+
18% {
|
|
582
|
+
opacity: 0.6;
|
|
583
|
+
transform: scale(1.05);
|
|
584
|
+
}
|
|
585
|
+
46% {
|
|
586
|
+
opacity: 0.2;
|
|
587
|
+
transform: scale(1.28);
|
|
588
|
+
}
|
|
589
|
+
100% {
|
|
590
|
+
opacity: 0;
|
|
591
|
+
transform: scale(1.4);
|
|
592
|
+
}
|
|
593
|
+
}
|
|
594
|
+
|
|
595
|
+
@keyframes logoFlashBrighten {
|
|
596
|
+
0% {
|
|
597
|
+
filter: brightness(1) drop-shadow(0 0 0 rgba(255, 45, 134, 0));
|
|
598
|
+
}
|
|
599
|
+
20% {
|
|
600
|
+
filter: brightness(1.35) drop-shadow(0 0 14px rgba(255, 45, 134, 0.45));
|
|
601
|
+
}
|
|
602
|
+
45% {
|
|
603
|
+
filter: brightness(0.96) drop-shadow(0 0 8px rgba(39, 243, 255, 0.28));
|
|
604
|
+
}
|
|
605
|
+
100% {
|
|
606
|
+
filter: brightness(1) drop-shadow(0 0 0 rgba(255, 45, 134, 0));
|
|
607
|
+
}
|
|
608
|
+
}
|
|
609
|
+
|
|
610
|
+
@media (prefers-reduced-motion: reduce) {
|
|
611
|
+
[data-site-theme="neon"] .logo-flash-trigger.logo-flash-active::after,
|
|
612
|
+
[data-site-theme="neon"] .logo-flash-trigger.logo-flash-active .logo-flash-image {
|
|
613
|
+
animation: none !important;
|
|
614
|
+
}
|
|
615
|
+
}
|
|
616
|
+
[data-site-theme="neon"] #promo .container,
|
|
617
|
+
[data-site-theme="neon"] #hero-presale .container {
|
|
618
|
+
max-width: min(960px, 90vw);
|
|
619
|
+
}
|
|
620
|
+
|
|
621
|
+
[data-site-theme="neon"] .hero-promo {
|
|
622
|
+
max-width: min(980px, 92vw);
|
|
623
|
+
margin-left: auto;
|
|
624
|
+
margin-right: auto;
|
|
625
|
+
}
|
|
626
|
+
|
|
627
|
+
[data-site-theme="neon"] .hero-copy {
|
|
628
|
+
max-width: 640px;
|
|
629
|
+
margin-left: auto;
|
|
630
|
+
margin-right: auto;
|
|
631
|
+
}
|
|
632
|
+
|
|
633
|
+
[data-site-theme="neon"] .curiosity-teaser {
|
|
634
|
+
max-width: min(760px, 94vw);
|
|
635
|
+
margin: 64px auto 0;
|
|
636
|
+
}
|
|
637
|
+
|
|
638
|
+
|
|
639
|
+
[data-site-theme="neon"] .ui-visual-shell {
|
|
640
|
+
background: linear-gradient(135deg, rgba(255, 45, 134, 0.35), rgba(39, 243, 255, 0.22));
|
|
641
|
+
}
|
|
642
|
+
|
|
643
|
+
[data-site-theme="neon"] .header-wallet__button {
|
|
644
|
+
background: linear-gradient(
|
|
645
|
+
135deg,
|
|
646
|
+
var(--brand-neon-pink, #ff2d86) 0%,
|
|
647
|
+
#7a3fff 45%,
|
|
648
|
+
var(--brand-accent-electric, #27f3ff) 100%
|
|
649
|
+
);
|
|
650
|
+
border: none;
|
|
651
|
+
color: var(--brand-primary-cta-text, #0b0413);
|
|
652
|
+
box-shadow: var(--brand-primary-cta-shadow, 0 20px 48px rgba(39, 243, 255, 0.22));
|
|
653
|
+
}
|
|
654
|
+
|
|
655
|
+
[data-site-theme="neon"] .header-wallet__button:hover,
|
|
656
|
+
[data-site-theme="neon"] .header-wallet__button:focus-visible {
|
|
657
|
+
box-shadow: 0 16px 32px color-mix(in srgb, var(--brand-accent-electric, #27f3ff) 35%, transparent);
|
|
658
|
+
}
|
|
659
|
+
|
|
660
|
+
[data-site-theme="neon"] .connect-banner::before {
|
|
661
|
+
background:
|
|
662
|
+
linear-gradient(
|
|
663
|
+
140deg,
|
|
664
|
+
color-mix(in srgb, var(--brand-neon-pink, #ff2d86) 18%, transparent) 0%,
|
|
665
|
+
transparent 65%
|
|
666
|
+
),
|
|
667
|
+
radial-gradient(
|
|
668
|
+
120% 120% at 10% 20%,
|
|
669
|
+
color-mix(in srgb, var(--brand-accent-electric, #27f3ff) 32%, transparent) 0%,
|
|
670
|
+
transparent 75%
|
|
671
|
+
);
|
|
672
|
+
}
|
|
673
|
+
|
|
674
|
+
[data-site-theme="neon"] .connect-banner__icon {
|
|
675
|
+
background: var(
|
|
676
|
+
--brand-primary-cta-gradient,
|
|
677
|
+
linear-gradient(135deg, #ff2d86 0%, #7a3fff 45%, #27f3ff 100%)
|
|
678
|
+
);
|
|
679
|
+
color: var(--brand-primary-cta-text, #0b0413);
|
|
680
|
+
box-shadow: 0 0 26px color-mix(in srgb, var(--brand-accent-electric, #27f3ff) 28%, transparent);
|
|
681
|
+
}
|
|
682
|
+
|
|
683
|
+
[data-site-theme="neon"] .connect-badge--alert {
|
|
684
|
+
border-color: color-mix(in srgb, var(--brand-neon-pink, #ff2d86) 55%, transparent);
|
|
685
|
+
background: color-mix(in srgb, var(--brand-neon-pink, #ff2d86) 18%, transparent);
|
|
686
|
+
}
|
|
687
|
+
|
|
688
|
+
|
|
689
|
+
[data-site-theme="neon"] .stake-toggle__input:checked + .stake-toggle__track {
|
|
690
|
+
background: color-mix(in srgb, var(--brand-neon-pink, #ff2d86) 55%, transparent);
|
|
691
|
+
box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--brand-neon-pink, #ff2d86) 65%, transparent);
|
|
692
|
+
}
|
|
693
|
+
|
|
694
|
+
[data-site-theme="neon"] .primary-button {
|
|
695
|
+
background: linear-gradient(
|
|
696
|
+
135deg,
|
|
697
|
+
var(--brand-neon-pink, #ff2d86) 0%,
|
|
698
|
+
#7a3fff 45%,
|
|
699
|
+
var(--brand-accent-electric, #27f3ff) 100%
|
|
700
|
+
);
|
|
701
|
+
border: none;
|
|
702
|
+
color: var(--brand-primary-cta-text, #0b0413);
|
|
703
|
+
box-shadow: var(--brand-primary-cta-shadow, 0 18px 35px rgba(255, 60, 125, 0.45));
|
|
704
|
+
}
|
|
705
|
+
|
|
706
|
+
[data-site-theme="neon"] .primary-button:hover,
|
|
707
|
+
[data-site-theme="neon"] .primary-button:focus-visible {
|
|
708
|
+
box-shadow: 0 16px 32px color-mix(in srgb, var(--brand-accent-electric, #27f3ff) 35%, transparent);
|
|
709
|
+
}
|
|
710
|
+
|
|
711
|
+
[data-site-theme="neon"] .micro-cta__link:hover,
|
|
712
|
+
[data-site-theme="neon"] .micro-cta__link:focus {
|
|
713
|
+
color: var(--brand-neon-pink, #ff2d86);
|
|
714
|
+
border-color: color-mix(in srgb, var(--brand-neon-pink, #ff2d86) 55%, transparent);
|
|
715
|
+
box-shadow: 0 12px 26px color-mix(in srgb, var(--brand-neon-pink, #ff2d86) 26%, transparent);
|
|
716
|
+
}
|
|
717
|
+
|
|
718
|
+
[data-site-theme="neon"] .status-countdown--loading {
|
|
719
|
+
border-color: var(--brand-surface-card-border, rgba(154, 46, 255, 0.35));
|
|
720
|
+
box-shadow: var(--ui-shadow-card, 0 8px 24px rgba(217, 22, 75, 0.18));
|
|
721
|
+
}
|
|
722
|
+
|
|
723
|
+
[data-site-theme="neon"] .countdown {
|
|
724
|
+
border-color: var(--brand-surface-card-border, rgba(154, 46, 255, 0.35));
|
|
725
|
+
box-shadow: var(--ui-shadow-card, 0 8px 24px rgba(217, 22, 75, 0.18));
|
|
726
|
+
background: rgba(12, 14, 28, 0.65);
|
|
727
|
+
}
|
|
728
|
+
|
|
729
|
+
[data-site-theme="neon"] .countdown__value {
|
|
730
|
+
color: var(--brand-accent-electric, #27f3ff);
|
|
731
|
+
text-shadow:
|
|
732
|
+
0 0 12px rgba(39, 243, 255, 0.35),
|
|
733
|
+
0 0 24px rgba(39, 243, 255, 0.25);
|
|
734
|
+
}
|
|
735
|
+
|
|
736
|
+
[data-site-theme="neon"] .status-metric {
|
|
737
|
+
background: color-mix(in srgb, var(--brand-bg-900, #0e0b11) 92%, transparent);
|
|
738
|
+
border: 1px solid rgba(255, 255, 255, 0.05);
|
|
739
|
+
box-shadow:
|
|
740
|
+
0 10px 22px rgba(14, 11, 17, 0.24),
|
|
741
|
+
inset 0 1px 0 rgba(255, 255, 255, 0.05);
|
|
742
|
+
}
|
|
743
|
+
|
|
744
|
+
[data-site-theme="neon"] .status-metric--personal {
|
|
745
|
+
background: color-mix(in srgb, var(--brand-bg-900, #0e0b11) 88%, var(--brand-accent-electric, #27f3ff) 12%);
|
|
746
|
+
border-color: color-mix(in srgb, var(--brand-accent-electric, #27f3ff) 65%, transparent);
|
|
747
|
+
box-shadow:
|
|
748
|
+
0 10px 28px rgba(24, 20, 44, 0.32),
|
|
749
|
+
inset 0 0 0 1px color-mix(in srgb, var(--brand-accent-electric, #27f3ff) 25%, transparent);
|
|
750
|
+
}
|
|
751
|
+
|
|
752
|
+
[data-site-theme="neon"] .status-card__line--headline {
|
|
753
|
+
background: linear-gradient(120deg, rgba(39, 243, 255, 0.16), rgba(255, 45, 134, 0.18));
|
|
754
|
+
color: var(--brand-accent-electric, #27f3ff);
|
|
755
|
+
}
|
|
756
|
+
|
|
757
|
+
[data-site-theme="neon"] .status-metric__number {
|
|
758
|
+
text-shadow:
|
|
759
|
+
0 0 9px rgba(39, 243, 255, 0.18),
|
|
760
|
+
0 0 20px rgba(39, 243, 255, 0.1);
|
|
761
|
+
}
|
|
762
|
+
|
|
763
|
+
[data-site-theme="neon"] .status-card__price-value {
|
|
764
|
+
color: var(--brand-accent-electric, #27f3ff);
|
|
765
|
+
text-shadow:
|
|
766
|
+
0 0 22px rgba(39, 243, 255, 0.24),
|
|
767
|
+
0 0 48px rgba(39, 243, 255, 0.16);
|
|
768
|
+
}
|
|
769
|
+
|
|
770
|
+
[data-site-theme="neon"] .ui-icon--purchase {
|
|
771
|
+
color: color-mix(in srgb, var(--brand-accent-electric, #27f3ff) 70%, #79ffb4 30%);
|
|
772
|
+
}
|
|
773
|
+
|
|
774
|
+
[data-site-theme="neon"] .ui-icon--supply {
|
|
775
|
+
color: color-mix(in srgb, var(--brand-accent-electric, #27f3ff) 60%, #ffd36b 40%);
|
|
776
|
+
}
|
|
777
|
+
|
|
778
|
+
[data-site-theme="neon"] .ui-icon--wallet {
|
|
779
|
+
color: color-mix(in srgb, var(--brand-accent-electric, #27f3ff) 65%, #ff77d9 35%);
|
|
780
|
+
}
|
|
781
|
+
|
|
782
|
+
[data-site-theme="neon"] .ui-icon--stake {
|
|
783
|
+
color: color-mix(in srgb, var(--brand-accent-electric, #27f3ff) 55%, #ffd36b 45%);
|
|
784
|
+
}
|
|
785
|
+
|
|
786
|
+
[data-site-theme="neon"] .stake-metric__icon--rewards {
|
|
787
|
+
color: var(--brand-neon-pink, #ff2d86);
|
|
788
|
+
}
|
|
789
|
+
|
|
790
|
+
[data-site-theme="neon"] .stake-card__button--primary {
|
|
791
|
+
border: none;
|
|
792
|
+
background: var(
|
|
793
|
+
--brand-primary-cta-gradient,
|
|
794
|
+
linear-gradient(
|
|
795
|
+
135deg,
|
|
796
|
+
var(--brand-neon-pink) 0%,
|
|
797
|
+
var(--brand-sultry-purple) 55%,
|
|
798
|
+
var(--brand-electric-blue) 100%
|
|
799
|
+
)
|
|
800
|
+
);
|
|
801
|
+
color: var(--brand-primary-cta-text);
|
|
802
|
+
box-shadow: var(--brand-primary-cta-shadow);
|
|
803
|
+
}
|
|
804
|
+
|
|
805
|
+
[data-site-theme="neon"] .stake-card__button--primary:hover,
|
|
806
|
+
[data-site-theme="neon"] .stake-card__button--primary:focus {
|
|
807
|
+
box-shadow: var(--brand-primary-cta-hover-shadow);
|
|
808
|
+
}
|