|
1 | 1 | .bitcoin-spreadsheet-page { |
2 | 2 | background: #000000; |
3 | | - color: white; |
| 3 | + color: #ffffff; |
4 | 4 | min-height: 100vh; |
5 | 5 | overflow-x: hidden; |
| 6 | + font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', sans-serif; |
6 | 7 | } |
7 | 8 |
|
8 | 9 | /* Hero Section */ |
|
11 | 12 | display: flex; |
12 | 13 | align-items: center; |
13 | 14 | justify-content: center; |
14 | | - background: radial-gradient(ellipse at center, rgba(0, 122, 204, 0.1) 0%, transparent 70%); |
| 15 | + background: radial-gradient(ellipse at center, rgba(255, 51, 51, 0.1) 0%, transparent 70%); |
15 | 16 | position: relative; |
16 | 17 | padding: 60px 20px; |
17 | 18 | } |
|
28 | 29 |
|
29 | 30 | .bitcoin-logo-large { |
30 | 31 | font-size: 80px; |
31 | | - color: #007acc; |
| 32 | + color: #ff3333; |
32 | 33 | font-weight: bold; |
33 | 34 | display: inline-block; |
34 | 35 | animation: pulse-glow 3s ease-in-out infinite; |
35 | 36 | } |
36 | 37 |
|
37 | 38 | @keyframes pulse-glow { |
38 | 39 | 0%, 100% { |
39 | | - text-shadow: 0 0 20px rgba(0, 122, 204, 0.5); |
| 40 | + text-shadow: 0 0 20px rgba(255, 51, 51, 0.5); |
40 | 41 | } |
41 | 42 | 50% { |
42 | | - text-shadow: 0 0 40px rgba(0, 122, 204, 0.8); |
| 43 | + text-shadow: 0 0 40px rgba(255, 51, 51, 0.8); |
43 | 44 | } |
44 | 45 | } |
45 | 46 |
|
|
51 | 52 | } |
52 | 53 |
|
53 | 54 | .bitcoin-text { |
54 | | - color: #007acc; |
| 55 | + color: #ff3333; |
55 | 56 | } |
56 | 57 |
|
57 | 58 | .hero-subtitle { |
|
89 | 90 | } |
90 | 91 |
|
91 | 92 | .cta-button.primary { |
92 | | - background: linear-gradient(135deg, #007acc, #0051a2); |
| 93 | + background: linear-gradient(135deg, #ff3333, #cc0000); |
93 | 94 | color: white; |
94 | 95 | } |
95 | 96 |
|
96 | 97 | .cta-button.primary:hover { |
97 | | - background: linear-gradient(135deg, #0088dd, #0066bb); |
| 98 | + background: linear-gradient(135deg, #ff4444, #dd1111); |
98 | 99 | transform: translateY(-2px); |
99 | | - box-shadow: 0 10px 30px rgba(0, 122, 204, 0.4); |
| 100 | + box-shadow: 0 10px 30px rgba(255, 51, 51, 0.4); |
100 | 101 | } |
101 | 102 |
|
102 | 103 | .cta-button.secondary { |
|
120 | 121 | /* Features Section */ |
121 | 122 | .features-section { |
122 | 123 | padding: 100px 20px; |
123 | | - background: linear-gradient(180deg, transparent, rgba(0, 122, 204, 0.02)); |
| 124 | + background: linear-gradient(180deg, transparent, rgba(255, 51, 51, 0.02)); |
124 | 125 | } |
125 | 126 |
|
126 | 127 | .section-title { |
|
148 | 149 |
|
149 | 150 | .feature-card:hover { |
150 | 151 | background: rgba(255, 255, 255, 0.05); |
151 | | - border-color: rgba(0, 122, 204, 0.3); |
| 152 | + border-color: rgba(255, 51, 51, 0.3); |
152 | 153 | transform: translateY(-5px); |
153 | 154 | } |
154 | 155 |
|
|
173 | 174 | /* Tokenization Section */ |
174 | 175 | .tokenization-section { |
175 | 176 | padding: 100px 20px; |
176 | | - background: rgba(0, 122, 204, 0.03); |
| 177 | + background: rgba(255, 51, 51, 0.03); |
177 | 178 | } |
178 | 179 |
|
179 | 180 | .tokenization-content { |
|
205 | 206 |
|
206 | 207 | .protocol-name { |
207 | 208 | font-weight: 500; |
208 | | - color: #007acc; |
| 209 | + color: #ff3333; |
209 | 210 | } |
210 | 211 |
|
211 | 212 | .protocol-desc { |
212 | 213 | color: rgba(255, 255, 255, 0.6); |
213 | 214 | } |
214 | 215 |
|
215 | 216 | .token-card { |
216 | | - background: linear-gradient(135deg, rgba(0, 122, 204, 0.1), rgba(0, 122, 204, 0.05)); |
217 | | - border: 2px solid rgba(0, 122, 204, 0.3); |
| 217 | + background: linear-gradient(135deg, rgba(255, 51, 51, 0.1), rgba(255, 51, 51, 0.05)); |
| 218 | + border: 2px solid rgba(255, 51, 51, 0.3); |
218 | 219 | border-radius: 16px; |
219 | 220 | padding: 30px; |
220 | 221 | max-width: 400px; |
|
232 | 233 | font-size: 12px; |
233 | 234 | font-weight: 600; |
234 | 235 | letter-spacing: 2px; |
235 | | - color: #007acc; |
| 236 | + color: #ff3333; |
236 | 237 | } |
237 | 238 |
|
238 | 239 | .token-badge { |
|
291 | 292 | } |
292 | 293 |
|
293 | 294 | .pricing-card.featured { |
294 | | - border-color: rgba(0, 122, 204, 0.5); |
295 | | - background: rgba(0, 122, 204, 0.05); |
| 295 | + border-color: rgba(255, 51, 51, 0.5); |
| 296 | + background: rgba(255, 51, 51, 0.05); |
296 | 297 | } |
297 | 298 |
|
298 | 299 | .featured-badge { |
299 | 300 | position: absolute; |
300 | 301 | top: -12px; |
301 | 302 | left: 50%; |
302 | 303 | transform: translateX(-50%); |
303 | | - background: linear-gradient(135deg, #007acc, #0051a2); |
| 304 | + background: linear-gradient(135deg, #ff3333, #cc0000); |
304 | 305 | color: white; |
305 | 306 | padding: 4px 20px; |
306 | 307 | border-radius: 20px; |
|
322 | 323 | .pricing-value { |
323 | 324 | font-size: 36px; |
324 | 325 | font-weight: 600; |
325 | | - color: #007acc; |
| 326 | + color: #ff3333; |
326 | 327 | } |
327 | 328 |
|
328 | 329 | .pricing-unit { |
|
341 | 342 | .cta-section { |
342 | 343 | padding: 100px 20px; |
343 | 344 | text-align: center; |
344 | | - background: radial-gradient(ellipse at center, rgba(0, 122, 204, 0.1) 0%, transparent 70%); |
| 345 | + background: radial-gradient(ellipse at center, rgba(255, 51, 51, 0.1) 0%, transparent 70%); |
345 | 346 | } |
346 | 347 |
|
347 | 348 | .cta-title { |
|
384 | 385 |
|
385 | 386 | .footer-logo { |
386 | 387 | font-size: 24px; |
387 | | - color: #007acc; |
| 388 | + color: #ff3333; |
388 | 389 | font-weight: bold; |
389 | 390 | } |
390 | 391 |
|
|
406 | 407 | } |
407 | 408 |
|
408 | 409 | .footer-links a:hover { |
409 | | - color: #007acc; |
| 410 | + color: #ff3333; |
410 | 411 | } |
411 | 412 |
|
412 | 413 | .footer-copyright { |
|
465 | 466 | } |
466 | 467 |
|
467 | 468 | .infrastructure-item h3 { |
468 | | - color: #007acc; |
| 469 | + color: #ff3333; |
469 | 470 | font-size: 24px; |
470 | 471 | margin-bottom: 15px; |
471 | 472 | } |
|
496 | 497 | .table-header { |
497 | 498 | display: grid; |
498 | 499 | grid-template-columns: 2fr 1fr 1fr 1fr 1fr; |
499 | | - background: #007acc; |
| 500 | + background: #ff3333; |
500 | 501 | color: white; |
501 | 502 | font-weight: 600; |
502 | 503 | font-size: 14px; |
|
520 | 521 | } |
521 | 522 |
|
522 | 523 | .table-row:hover { |
523 | | - background: rgba(0, 122, 204, 0.1); |
| 524 | + background: rgba(255, 51, 51, 0.1); |
524 | 525 | } |
525 | 526 |
|
526 | 527 | .table-row.featured { |
527 | | - background: rgba(0, 122, 204, 0.05); |
528 | | - border: 1px solid rgba(0, 122, 204, 0.3); |
| 528 | + background: rgba(255, 51, 51, 0.05); |
| 529 | + border: 1px solid rgba(255, 51, 51, 0.3); |
529 | 530 | } |
530 | 531 |
|
531 | 532 | .dataset-name { |
|
589 | 590 | } |
590 | 591 |
|
591 | 592 | .testimonial-author strong { |
592 | | - color: #007acc; |
| 593 | + color: #ff3333; |
593 | 594 | display: block; |
594 | 595 | margin-bottom: 5px; |
595 | 596 | } |
|
0 commit comments