linkitylink 0.0.1

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.
@@ -0,0 +1,1004 @@
1
+ /* Global Styles */
2
+ * {
3
+ margin: 0;
4
+ padding: 0;
5
+ box-sizing: border-box;
6
+ }
7
+
8
+ body {
9
+ font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
10
+ background: #0a0e27;
11
+ background-image:
12
+ radial-gradient(white, rgba(255,255,255,.2) 2px, transparent 40px),
13
+ radial-gradient(white, rgba(255,255,255,.15) 1px, transparent 30px),
14
+ radial-gradient(white, rgba(255,255,255,.1) 2px, transparent 40px),
15
+ radial-gradient(rgba(255,255,255,.4), rgba(255,255,255,.1) 2px, transparent 30px),
16
+ linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0a0e27 100%);
17
+ background-size: 550px 550px, 350px 350px, 250px 250px, 150px 150px, 100% 100%;
18
+ background-position: 0 0, 40px 60px, 130px 270px, 70px 100px, 0 0;
19
+ min-height: 100vh;
20
+ display: flex;
21
+ align-items: center;
22
+ justify-content: center;
23
+ padding: 20px;
24
+ animation: cosmic-drift 60s ease-in-out infinite;
25
+ }
26
+
27
+ @keyframes cosmic-drift {
28
+ 0%, 100% { background-position: 0 0, 40px 60px, 130px 270px, 70px 100px, 0 0; }
29
+ 50% { background-position: 100px 100px, 140px 160px, 230px 370px, 170px 200px, 0 0; }
30
+ }
31
+
32
+ /* Landing Page */
33
+ .landing-container {
34
+ display: flex;
35
+ gap: 40px;
36
+ max-width: 1400px;
37
+ width: 100%;
38
+ align-items: center;
39
+ }
40
+
41
+ .left-panel {
42
+ flex: 1;
43
+ display: flex;
44
+ flex-direction: column;
45
+ gap: 30px;
46
+ }
47
+
48
+ .tagline {
49
+ font-size: 3rem;
50
+ font-weight: 800;
51
+ color: #ffffff;
52
+ text-align: center;
53
+ text-shadow:
54
+ 0 0 20px rgba(138, 92, 246, 0.8),
55
+ 0 0 40px rgba(59, 130, 246, 0.6),
56
+ 0 4px 20px rgba(0, 0, 0, 0.5);
57
+ line-height: 1.2;
58
+ }
59
+
60
+ .example-card {
61
+ background: rgba(15, 23, 42, 0.7);
62
+ border-radius: 24px;
63
+ padding: 20px;
64
+ box-shadow:
65
+ 0 0 40px rgba(138, 92, 246, 0.3),
66
+ 0 20px 60px rgba(0, 0, 0, 0.5),
67
+ inset 0 0 60px rgba(138, 92, 246, 0.1);
68
+ border: 1px solid rgba(138, 92, 246, 0.3);
69
+ backdrop-filter: blur(10px);
70
+ }
71
+
72
+ .example-card svg {
73
+ width: 100%;
74
+ height: auto;
75
+ display: block;
76
+ filter: drop-shadow(0 0 20px rgba(138, 92, 246, 0.4));
77
+ }
78
+
79
+ .right-panel {
80
+ flex: 1;
81
+ display: flex;
82
+ flex-direction: column;
83
+ gap: 40px;
84
+ padding: 40px;
85
+ background: rgba(15, 23, 42, 0.6);
86
+ backdrop-filter: blur(10px);
87
+ border-radius: 24px;
88
+ border: 1px solid rgba(138, 92, 246, 0.4);
89
+ box-shadow:
90
+ 0 0 40px rgba(138, 92, 246, 0.2),
91
+ 0 20px 60px rgba(0, 0, 0, 0.5),
92
+ inset 0 0 60px rgba(138, 92, 246, 0.05);
93
+ }
94
+
95
+ .cta-text {
96
+ font-size: 2.5rem;
97
+ font-weight: 700;
98
+ background: linear-gradient(135deg, #a78bfa 0%, #60a5fa 100%);
99
+ -webkit-background-clip: text;
100
+ -webkit-text-fill-color: transparent;
101
+ background-clip: text;
102
+ text-align: center;
103
+ filter: drop-shadow(0 0 20px rgba(138, 92, 246, 0.6));
104
+ }
105
+
106
+ .button-grid {
107
+ display: grid;
108
+ grid-template-columns: repeat(3, 1fr);
109
+ gap: 20px;
110
+ }
111
+
112
+ .style-button {
113
+ position: relative;
114
+ padding: 20px 30px;
115
+ font-size: 1.1rem;
116
+ font-weight: 600;
117
+ border: none;
118
+ border-radius: 16px;
119
+ cursor: pointer;
120
+ transition: all 0.3s ease;
121
+ box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
122
+ color: white;
123
+ text-transform: capitalize;
124
+ overflow: hidden;
125
+ z-index: 1;
126
+ }
127
+
128
+ .style-button::before {
129
+ content: '';
130
+ position: absolute;
131
+ top: -50%;
132
+ left: -50%;
133
+ width: 200%;
134
+ height: 200%;
135
+ z-index: -1;
136
+ }
137
+
138
+ .style-button span {
139
+ position: relative;
140
+ z-index: 2;
141
+ }
142
+
143
+ .style-button:hover {
144
+ transform: translateY(-4px) scale(1.05);
145
+ box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
146
+ }
147
+
148
+ .style-button:active {
149
+ transform: translateY(-2px) scale(1.02);
150
+ }
151
+
152
+ /* Button Colors with SVG Effects */
153
+ .style-button.stunning {
154
+ background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
155
+ }
156
+
157
+ .style-button.stunning::before {
158
+ background-image:
159
+ radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
160
+ radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
161
+ animation: pulse 3s ease-in-out infinite;
162
+ }
163
+
164
+ .style-button.dazzling {
165
+ background: linear-gradient(135deg, #feca57, #ff9ff3);
166
+ }
167
+
168
+ .style-button.dazzling::before {
169
+ background-image: repeating-linear-gradient(
170
+ 45deg,
171
+ rgba(255, 255, 255, 0.1) 0px,
172
+ rgba(255, 255, 255, 0.1) 10px,
173
+ transparent 10px,
174
+ transparent 20px
175
+ );
176
+ animation: slide 2s linear infinite;
177
+ }
178
+
179
+ .style-button.electric {
180
+ background: linear-gradient(135deg, #00d2ff, #3a47d5);
181
+ }
182
+
183
+ .style-button.electric::before {
184
+ background-image:
185
+ linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.6) 50%, transparent 100%);
186
+ animation: flash 1.5s ease-in-out infinite;
187
+ }
188
+
189
+ .style-button.polished {
190
+ background: linear-gradient(135deg, #2c3e50, #4ca1af);
191
+ }
192
+
193
+ .style-button.polished::before {
194
+ background-image:
195
+ radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 60%);
196
+ animation: shine 4s ease-in-out infinite;
197
+ }
198
+
199
+ .style-button.professional {
200
+ background: linear-gradient(135deg, #141e30, #243b55);
201
+ }
202
+
203
+ .style-button.professional::before {
204
+ background-image:
205
+ repeating-linear-gradient(
206
+ 90deg,
207
+ rgba(255, 255, 255, 0.05) 0px,
208
+ rgba(255, 255, 255, 0.05) 2px,
209
+ transparent 2px,
210
+ transparent 4px
211
+ );
212
+ animation: scroll 3s linear infinite;
213
+ }
214
+
215
+ .style-button.captivating {
216
+ background: linear-gradient(135deg, #fc466b, #3f5efb);
217
+ }
218
+
219
+ .style-button.captivating::before {
220
+ background-image:
221
+ radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
222
+ animation: ripple 2s ease-in-out infinite;
223
+ }
224
+
225
+ .style-button.delightful {
226
+ background: linear-gradient(135deg, #fdbb2d, #22c1c3);
227
+ }
228
+
229
+ .style-button.delightful::before {
230
+ background-image:
231
+ conic-gradient(from 0deg at 50% 50%,
232
+ rgba(255,255,255,0.3) 0deg,
233
+ transparent 90deg,
234
+ rgba(255,255,255,0.3) 180deg,
235
+ transparent 270deg,
236
+ rgba(255,255,255,0.3) 360deg
237
+ );
238
+ animation: rotate 4s linear infinite;
239
+ }
240
+
241
+ .style-button.magical {
242
+ background: linear-gradient(135deg, #a8edea, #fed6e3);
243
+ }
244
+
245
+ .style-button.magical::before {
246
+ background-image:
247
+ radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.4) 0%, transparent 50%),
248
+ radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.4) 0%, transparent 50%),
249
+ radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.3) 0%, transparent 50%);
250
+ animation: sparkle 3s ease-in-out infinite;
251
+ }
252
+
253
+ .style-button.basic {
254
+ background: linear-gradient(135deg, #6a85b6, #bac8e0);
255
+ }
256
+
257
+ .style-button.basic::before {
258
+ background-image:
259
+ linear-gradient(45deg, rgba(255,255,255,0.1) 25%, transparent 25%),
260
+ linear-gradient(-45deg, rgba(255,255,255,0.1) 25%, transparent 25%);
261
+ background-size: 20px 20px;
262
+ }
263
+
264
+ /* SVG Effect Animations */
265
+ @keyframes pulse {
266
+ 0%, 100% { opacity: 0.6; }
267
+ 50% { opacity: 1; }
268
+ }
269
+
270
+ @keyframes slide {
271
+ 0% { transform: translateX(-100%); }
272
+ 100% { transform: translateX(100%); }
273
+ }
274
+
275
+ @keyframes flash {
276
+ 0%, 100% { transform: translateX(-200%); }
277
+ 50% { transform: translateX(200%); }
278
+ }
279
+
280
+ @keyframes shine {
281
+ 0%, 100% { transform: translate(-50%, -50%); }
282
+ 50% { transform: translate(50%, 50%); }
283
+ }
284
+
285
+ @keyframes scroll {
286
+ 0% { transform: translateX(0); }
287
+ 100% { transform: translateX(4px); }
288
+ }
289
+
290
+ @keyframes ripple {
291
+ 0% { transform: scale(0.8); opacity: 0.8; }
292
+ 50% { transform: scale(1.2); opacity: 1; }
293
+ 100% { transform: scale(0.8); opacity: 0.8; }
294
+ }
295
+
296
+ @keyframes rotate {
297
+ 0% { transform: rotate(0deg); }
298
+ 100% { transform: rotate(360deg); }
299
+ }
300
+
301
+ @keyframes sparkle {
302
+ 0%, 100% { opacity: 0.5; transform: scale(1); }
303
+ 50% { opacity: 1; transform: scale(1.1); }
304
+ }
305
+
306
+ /* Create Page */
307
+ .create-page {
308
+ max-width: 1600px;
309
+ width: 100%;
310
+ height: 100vh;
311
+ display: flex;
312
+ flex-direction: column;
313
+ padding: 10px;
314
+ overflow: hidden;
315
+ }
316
+
317
+ .create-header {
318
+ flex-shrink: 0;
319
+ margin-bottom: 10px;
320
+ }
321
+
322
+ .create-content {
323
+ display: grid;
324
+ grid-template-columns: 1fr 1fr 1fr;
325
+ gap: 15px;
326
+ flex: 1;
327
+ min-height: 0;
328
+ overflow: hidden;
329
+ }
330
+
331
+ .create-column {
332
+ display: flex;
333
+ flex-direction: column;
334
+ gap: 15px;
335
+ min-height: 0;
336
+ overflow: hidden;
337
+ }
338
+
339
+ .preview-section {
340
+ background: rgba(15, 23, 42, 0.7);
341
+ border-radius: 16px;
342
+ padding: 15px;
343
+ box-shadow:
344
+ 0 0 30px rgba(138, 92, 246, 0.3),
345
+ 0 10px 40px rgba(0, 0, 0, 0.5),
346
+ inset 0 0 40px rgba(138, 92, 246, 0.1);
347
+ border: 1px solid rgba(138, 92, 246, 0.3);
348
+ backdrop-filter: blur(10px);
349
+ flex: 1;
350
+ min-height: 0;
351
+ display: flex;
352
+ flex-direction: column;
353
+ overflow: hidden;
354
+ }
355
+
356
+ .preview-section h2 {
357
+ font-size: 1.2rem;
358
+ margin-bottom: 10px;
359
+ text-align: center;
360
+ color: #a78bfa;
361
+ flex-shrink: 0;
362
+ text-shadow: 0 0 10px rgba(138, 92, 246, 0.6);
363
+ }
364
+
365
+ .preview-container {
366
+ background: rgba(10, 14, 39, 0.6);
367
+ border-radius: 12px;
368
+ flex: 1;
369
+ display: flex;
370
+ align-items: center;
371
+ justify-content: center;
372
+ overflow: auto;
373
+ min-height: 0;
374
+ border: 1px solid rgba(138, 92, 246, 0.2);
375
+ padding: 20px;
376
+ }
377
+
378
+ .preview-container svg {
379
+ width: 100%;
380
+ max-width: 400px;
381
+ height: auto;
382
+ display: block;
383
+ filter: drop-shadow(0 0 15px rgba(138, 92, 246, 0.3));
384
+ }
385
+
386
+ .preview-placeholder {
387
+ color: #94a3b8;
388
+ font-size: 1rem;
389
+ text-align: center;
390
+ padding: 20px;
391
+ text-shadow: 0 0 10px rgba(138, 92, 246, 0.4);
392
+ }
393
+
394
+ .create-container {
395
+ max-width: 1400px;
396
+ width: 100%;
397
+ background: rgba(255, 255, 255, 0.95);
398
+ border-radius: 24px;
399
+ padding: 40px;
400
+ box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
401
+ }
402
+
403
+ .create-header {
404
+ text-align: center;
405
+ margin-bottom: 40px;
406
+ }
407
+
408
+ .create-header h1 {
409
+ font-size: 2.5rem;
410
+ font-weight: 800;
411
+ background: linear-gradient(135deg, #a78bfa 0%, #60a5fa 100%);
412
+ -webkit-background-clip: text;
413
+ -webkit-text-fill-color: transparent;
414
+ margin-bottom: 10px;
415
+ filter: drop-shadow(0 0 20px rgba(138, 92, 246, 0.6));
416
+ }
417
+
418
+ .style-badge {
419
+ display: inline-block;
420
+ padding: 8px 20px;
421
+ border-radius: 20px;
422
+ font-weight: 600;
423
+ color: #ffffff;
424
+ background: rgba(138, 92, 246, 0.3);
425
+ border: 1px solid rgba(138, 92, 246, 0.5);
426
+ box-shadow: 0 0 20px rgba(138, 92, 246, 0.4);
427
+ font-size: 0.9rem;
428
+ text-transform: capitalize;
429
+ backdrop-filter: blur(10px);
430
+ }
431
+
432
+ .input-section {
433
+ padding: 15px;
434
+ background: rgba(15, 23, 42, 0.7);
435
+ border-radius: 16px;
436
+ box-shadow:
437
+ 0 0 30px rgba(138, 92, 246, 0.3),
438
+ 0 10px 40px rgba(0, 0, 0, 0.5),
439
+ inset 0 0 40px rgba(138, 92, 246, 0.1);
440
+ border: 1px solid rgba(138, 92, 246, 0.3);
441
+ backdrop-filter: blur(10px);
442
+ flex: 1;
443
+ min-height: 0;
444
+ display: flex;
445
+ flex-direction: column;
446
+ overflow: auto;
447
+ }
448
+
449
+ .input-section h2 {
450
+ font-size: 1.2rem;
451
+ margin-bottom: 10px;
452
+ color: #a78bfa;
453
+ text-align: center;
454
+ flex-shrink: 0;
455
+ text-shadow: 0 0 10px rgba(138, 92, 246, 0.6);
456
+ }
457
+
458
+ .buy-button {
459
+ position: relative;
460
+ background: linear-gradient(135deg, rgba(16, 185, 129, 0.8) 0%, rgba(5, 150, 105, 0.8) 100%);
461
+ color: white;
462
+ border: 2px solid rgba(16, 185, 129, 0.6);
463
+ border-radius: 40px;
464
+ padding: 20px 40px;
465
+ font-size: 1.2rem;
466
+ font-weight: 700;
467
+ cursor: pointer;
468
+ display: flex;
469
+ flex-direction: column;
470
+ align-items: center;
471
+ gap: 5px;
472
+ width: 100%;
473
+ box-shadow:
474
+ 0 0 40px rgba(16, 185, 129, 0.5),
475
+ 0 15px 40px rgba(0, 0, 0, 0.5),
476
+ inset 0 0 40px rgba(16, 185, 129, 0.2);
477
+ transition: all 0.3s ease;
478
+ overflow: hidden;
479
+ animation: pulse-glow 2s ease-in-out infinite;
480
+ flex-shrink: 0;
481
+ backdrop-filter: blur(10px);
482
+ }
483
+
484
+ .buy-button:hover {
485
+ transform: translateY(-2px) scale(1.03);
486
+ box-shadow:
487
+ 0 0 60px rgba(16, 185, 129, 0.7),
488
+ 0 20px 50px rgba(0, 0, 0, 0.5),
489
+ inset 0 0 60px rgba(16, 185, 129, 0.3);
490
+ border-color: rgba(16, 185, 129, 0.8);
491
+ }
492
+
493
+ .buy-button:active {
494
+ transform: translateY(-1px) scale(1.01);
495
+ }
496
+
497
+ .buy-button .glow {
498
+ position: absolute;
499
+ top: -50%;
500
+ left: -50%;
501
+ width: 200%;
502
+ height: 200%;
503
+ background: radial-gradient(circle, rgba(16, 255, 200, 0.4) 0%, transparent 70%);
504
+ animation: rotate-glow 3s linear infinite;
505
+ }
506
+
507
+ .buy-button .price {
508
+ font-size: 2rem;
509
+ font-weight: 900;
510
+ text-shadow:
511
+ 0 0 20px rgba(16, 185, 129, 0.8),
512
+ 0 4px 20px rgba(0, 0, 0, 0.5);
513
+ position: relative;
514
+ z-index: 1;
515
+ }
516
+
517
+ .buy-button .action {
518
+ font-size: 1rem;
519
+ font-weight: 600;
520
+ opacity: 0.95;
521
+ position: relative;
522
+ z-index: 1;
523
+ text-shadow: 0 0 10px rgba(16, 185, 129, 0.6);
524
+ }
525
+
526
+ /* Purchase Options - Dual CTA */
527
+ .purchase-options {
528
+ display: flex;
529
+ gap: 15px;
530
+ flex-shrink: 0;
531
+ }
532
+
533
+ .purchase-options .buy-button {
534
+ flex: 1;
535
+ padding: 15px 20px;
536
+ }
537
+
538
+ .purchase-options .buy-button .price {
539
+ font-size: 1.5rem;
540
+ }
541
+
542
+ .purchase-options .buy-button .action {
543
+ font-size: 0.85rem;
544
+ }
545
+
546
+ /* Web Purchase - Green */
547
+ .buy-button.web-purchase {
548
+ background: linear-gradient(135deg, rgba(16, 185, 129, 0.8) 0%, rgba(5, 150, 105, 0.8) 100%);
549
+ border-color: rgba(16, 185, 129, 0.6);
550
+ }
551
+
552
+ /* App Purchase - Purple with discount badge */
553
+ .buy-button.app-purchase {
554
+ background: linear-gradient(135deg, rgba(139, 92, 246, 0.8) 0%, rgba(124, 58, 237, 0.8) 100%);
555
+ border-color: rgba(139, 92, 246, 0.6);
556
+ box-shadow:
557
+ 0 0 40px rgba(139, 92, 246, 0.5),
558
+ 0 15px 40px rgba(0, 0, 0, 0.5),
559
+ inset 0 0 40px rgba(139, 92, 246, 0.2);
560
+ }
561
+
562
+ .buy-button.app-purchase:hover {
563
+ box-shadow:
564
+ 0 0 60px rgba(139, 92, 246, 0.7),
565
+ 0 20px 50px rgba(0, 0, 0, 0.5),
566
+ inset 0 0 60px rgba(139, 92, 246, 0.3);
567
+ border-color: rgba(139, 92, 246, 0.8);
568
+ }
569
+
570
+ .buy-button.app-purchase .glow {
571
+ background: radial-gradient(circle, rgba(180, 120, 255, 0.4) 0%, transparent 70%);
572
+ }
573
+
574
+ .buy-button.app-purchase .price {
575
+ text-shadow:
576
+ 0 0 20px rgba(139, 92, 246, 0.8),
577
+ 0 4px 20px rgba(0, 0, 0, 0.5);
578
+ }
579
+
580
+ .buy-button.app-purchase .action {
581
+ text-shadow: 0 0 10px rgba(139, 92, 246, 0.6);
582
+ }
583
+
584
+ /* Discount Badge */
585
+ .discount-badge {
586
+ position: absolute;
587
+ top: -8px;
588
+ right: -8px;
589
+ background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
590
+ color: white;
591
+ font-size: 0.7rem;
592
+ font-weight: 800;
593
+ padding: 4px 10px;
594
+ border-radius: 12px;
595
+ box-shadow: 0 2px 10px rgba(245, 158, 11, 0.5);
596
+ z-index: 10;
597
+ transform: rotate(10deg);
598
+ animation: badge-pulse 2s ease-in-out infinite;
599
+ }
600
+
601
+ @keyframes badge-pulse {
602
+ 0%, 100% {
603
+ transform: rotate(10deg) scale(1);
604
+ box-shadow: 0 2px 10px rgba(245, 158, 11, 0.5);
605
+ }
606
+ 50% {
607
+ transform: rotate(10deg) scale(1.1);
608
+ box-shadow: 0 4px 20px rgba(245, 158, 11, 0.7);
609
+ }
610
+ }
611
+
612
+ @keyframes pulse-glow {
613
+ 0%, 100% {
614
+ box-shadow:
615
+ 0 0 40px rgba(16, 185, 129, 0.5),
616
+ 0 15px 40px rgba(0, 0, 0, 0.5),
617
+ inset 0 0 40px rgba(16, 185, 129, 0.2);
618
+ }
619
+ 50% {
620
+ box-shadow:
621
+ 0 0 60px rgba(16, 185, 129, 0.7),
622
+ 0 20px 50px rgba(0, 0, 0, 0.5),
623
+ inset 0 0 60px rgba(16, 185, 129, 0.3);
624
+ }
625
+ }
626
+
627
+ @keyframes rotate-glow {
628
+ 0% {
629
+ transform: rotate(0deg);
630
+ }
631
+ 100% {
632
+ transform: rotate(360deg);
633
+ }
634
+ }
635
+
636
+ .input-tabs {
637
+ display: flex;
638
+ gap: 10px;
639
+ margin-bottom: 20px;
640
+ }
641
+
642
+ .tab-button {
643
+ padding: 12px 24px;
644
+ border: 2px solid rgba(138, 92, 246, 0.3);
645
+ background: rgba(10, 14, 39, 0.6);
646
+ color: #94a3b8;
647
+ border-radius: 8px;
648
+ cursor: pointer;
649
+ font-weight: 600;
650
+ transition: all 0.3s ease;
651
+ backdrop-filter: blur(5px);
652
+ }
653
+
654
+ .tab-button.active {
655
+ background: linear-gradient(135deg, rgba(138, 92, 246, 0.4), rgba(59, 130, 246, 0.4));
656
+ color: white;
657
+ border-color: rgba(138, 92, 246, 0.6);
658
+ box-shadow: 0 0 20px rgba(138, 92, 246, 0.4);
659
+ }
660
+
661
+ .tab-content {
662
+ display: none;
663
+ }
664
+
665
+ .tab-content.active {
666
+ display: block;
667
+ }
668
+
669
+ .form-group {
670
+ margin-bottom: 20px;
671
+ }
672
+
673
+ .form-group label {
674
+ display: block;
675
+ font-weight: 600;
676
+ margin-bottom: 8px;
677
+ color: #a78bfa;
678
+ text-shadow: 0 0 10px rgba(138, 92, 246, 0.4);
679
+ }
680
+
681
+ .form-group input {
682
+ width: 100%;
683
+ padding: 12px 16px;
684
+ border: 2px solid rgba(138, 92, 246, 0.3);
685
+ background: rgba(10, 14, 39, 0.6);
686
+ color: #ffffff;
687
+ border-radius: 8px;
688
+ font-size: 1rem;
689
+ transition: all 0.3s ease;
690
+ backdrop-filter: blur(5px);
691
+ }
692
+
693
+ .form-group input::placeholder {
694
+ color: #64748b;
695
+ }
696
+
697
+ .form-group input:focus {
698
+ outline: none;
699
+ border-color: rgba(138, 92, 246, 0.8);
700
+ box-shadow: 0 0 20px rgba(138, 92, 246, 0.4);
701
+ background: rgba(10, 14, 39, 0.8);
702
+ }
703
+
704
+ .add-link-button {
705
+ padding: 12px 24px;
706
+ background: linear-gradient(135deg, rgba(16, 185, 129, 0.6), rgba(5, 150, 105, 0.6));
707
+ color: white;
708
+ border: 2px solid rgba(16, 185, 129, 0.4);
709
+ border-radius: 8px;
710
+ font-weight: 600;
711
+ cursor: pointer;
712
+ transition: all 0.3s ease;
713
+ backdrop-filter: blur(5px);
714
+ box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
715
+ }
716
+
717
+ .add-link-button:hover {
718
+ transform: translateY(-2px);
719
+ box-shadow: 0 0 30px rgba(16, 185, 129, 0.5);
720
+ border-color: rgba(16, 185, 129, 0.6);
721
+ }
722
+
723
+ .link-list {
724
+ margin-top: 20px;
725
+ }
726
+
727
+ .link-item {
728
+ display: flex;
729
+ justify-content: space-between;
730
+ align-items: center;
731
+ padding: 12px;
732
+ background: rgba(10, 14, 39, 0.6);
733
+ border-radius: 8px;
734
+ margin-bottom: 10px;
735
+ border: 1px solid rgba(138, 92, 246, 0.3);
736
+ backdrop-filter: blur(5px);
737
+ color: #ffffff;
738
+ }
739
+
740
+ .link-item strong {
741
+ color: #a78bfa;
742
+ }
743
+
744
+ .link-item small {
745
+ color: #94a3b8;
746
+ }
747
+
748
+ .remove-link {
749
+ padding: 6px 12px;
750
+ background: rgba(239, 68, 68, 0.6);
751
+ color: white;
752
+ border: 1px solid rgba(239, 68, 68, 0.4);
753
+ border-radius: 6px;
754
+ cursor: pointer;
755
+ font-size: 0.9rem;
756
+ transition: all 0.3s ease;
757
+ backdrop-filter: blur(5px);
758
+ }
759
+
760
+ .remove-link:hover {
761
+ background: rgba(239, 68, 68, 0.8);
762
+ box-shadow: 0 0 15px rgba(239, 68, 68, 0.4);
763
+ }
764
+
765
+ .carousel-section {
766
+ background: rgba(15, 23, 42, 0.7);
767
+ border-radius: 16px;
768
+ padding: 15px;
769
+ box-shadow:
770
+ 0 0 30px rgba(138, 92, 246, 0.3),
771
+ 0 10px 40px rgba(0, 0, 0, 0.5),
772
+ inset 0 0 40px rgba(138, 92, 246, 0.1);
773
+ border: 1px solid rgba(138, 92, 246, 0.3);
774
+ backdrop-filter: blur(10px);
775
+ flex: 1;
776
+ min-height: 0;
777
+ display: flex;
778
+ flex-direction: column;
779
+ overflow: hidden;
780
+ }
781
+
782
+ .carousel-section h2 {
783
+ font-size: 1.2rem;
784
+ margin-bottom: 10px;
785
+ text-align: center;
786
+ color: #a78bfa;
787
+ flex-shrink: 0;
788
+ text-shadow: 0 0 10px rgba(138, 92, 246, 0.6);
789
+ }
790
+
791
+ .carousel-container {
792
+ display: flex;
793
+ flex-direction: column;
794
+ gap: 10px;
795
+ flex: 1;
796
+ min-height: 0;
797
+ overflow: auto;
798
+ padding: 15px;
799
+ background: rgba(10, 14, 39, 0.6);
800
+ border-radius: 12px;
801
+ border: 1px solid rgba(138, 92, 246, 0.2);
802
+ }
803
+
804
+ .carousel-arrow {
805
+ padding: 12px 20px;
806
+ background: linear-gradient(135deg, rgba(138, 92, 246, 0.6), rgba(59, 130, 246, 0.6));
807
+ color: white;
808
+ border: 1px solid rgba(138, 92, 246, 0.4);
809
+ border-radius: 8px;
810
+ cursor: pointer;
811
+ font-size: 1.2rem;
812
+ flex-shrink: 0;
813
+ transition: all 0.3s ease;
814
+ backdrop-filter: blur(5px);
815
+ }
816
+
817
+ .carousel-arrow:hover {
818
+ box-shadow: 0 0 20px rgba(138, 92, 246, 0.5);
819
+ }
820
+
821
+ .carousel-track {
822
+ display: flex;
823
+ flex-direction: column;
824
+ gap: 15px;
825
+ overflow-y: auto;
826
+ flex: 1;
827
+ }
828
+
829
+ .carousel-track::-webkit-scrollbar {
830
+ height: 8px;
831
+ }
832
+
833
+ .carousel-track::-webkit-scrollbar-thumb {
834
+ background: linear-gradient(135deg, #8b5cf6, #3b82f6);
835
+ border-radius: 4px;
836
+ }
837
+
838
+ .carousel-track::-webkit-scrollbar-track {
839
+ background: rgba(10, 14, 39, 0.6);
840
+ }
841
+
842
+ .template-card {
843
+ flex-shrink: 0;
844
+ width: 100%;
845
+ height: 200px;
846
+ border-radius: 12px;
847
+ box-shadow:
848
+ 0 0 20px rgba(138, 92, 246, 0.2),
849
+ 0 4px 15px rgba(0, 0, 0, 0.3);
850
+ border: 1px solid rgba(138, 92, 246, 0.3);
851
+ cursor: pointer;
852
+ transition: all 0.3s ease;
853
+ overflow: hidden;
854
+ backdrop-filter: blur(5px);
855
+ }
856
+
857
+ .template-card:hover {
858
+ transform: scale(1.05);
859
+ box-shadow:
860
+ 0 0 30px rgba(138, 92, 246, 0.5),
861
+ 0 8px 25px rgba(0, 0, 0, 0.4);
862
+ border-color: rgba(138, 92, 246, 0.6);
863
+ }
864
+
865
+ .template-card.selected {
866
+ border: 3px solid #8b5cf6;
867
+ box-shadow:
868
+ 0 0 40px rgba(138, 92, 246, 0.6),
869
+ 0 8px 25px rgba(0, 0, 0, 0.4);
870
+ }
871
+
872
+ .template-card svg {
873
+ width: 100%;
874
+ height: 100%;
875
+ filter: drop-shadow(0 0 10px rgba(138, 92, 246, 0.2));
876
+ }
877
+
878
+ .add-template-card {
879
+ flex-shrink: 0;
880
+ width: 100%;
881
+ height: 200px;
882
+ border-radius: 12px;
883
+ border: 3px dashed rgba(138, 92, 246, 0.5);
884
+ background: rgba(10, 14, 39, 0.4);
885
+ display: flex;
886
+ flex-direction: column;
887
+ align-items: center;
888
+ justify-content: center;
889
+ cursor: pointer;
890
+ transition: all 0.3s ease;
891
+ backdrop-filter: blur(5px);
892
+ }
893
+
894
+ .add-template-card:hover {
895
+ background: rgba(10, 14, 39, 0.6);
896
+ transform: scale(1.05);
897
+ border-color: rgba(138, 92, 246, 0.8);
898
+ box-shadow: 0 0 30px rgba(138, 92, 246, 0.3);
899
+ }
900
+
901
+ .add-template-card .plus-icon {
902
+ font-size: 4rem;
903
+ color: #a78bfa;
904
+ margin-bottom: 10px;
905
+ text-shadow: 0 0 20px rgba(138, 92, 246, 0.6);
906
+ }
907
+
908
+ .add-template-card .add-text {
909
+ font-size: 1.2rem;
910
+ font-weight: 600;
911
+ color: #a78bfa;
912
+ text-shadow: 0 0 10px rgba(138, 92, 246, 0.4);
913
+ }
914
+
915
+ .create-button {
916
+ display: block;
917
+ width: 100%;
918
+ max-width: 400px;
919
+ margin: 0 auto;
920
+ padding: 20px;
921
+ background: linear-gradient(135deg, #667eea, #764ba2);
922
+ color: white;
923
+ border: none;
924
+ border-radius: 12px;
925
+ font-size: 1.2rem;
926
+ font-weight: 700;
927
+ cursor: pointer;
928
+ transition: all 0.3s ease;
929
+ box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
930
+ }
931
+
932
+ .create-button:hover {
933
+ transform: translateY(-2px);
934
+ box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
935
+ }
936
+
937
+ /* Responsive Design */
938
+
939
+ /* Switch to 3-row layout when height > width */
940
+ @media (max-aspect-ratio: 1/1) {
941
+ .create-content {
942
+ grid-template-columns: 1fr;
943
+ grid-template-rows: 1fr 1fr 1fr;
944
+ }
945
+ }
946
+
947
+ @media (max-width: 1024px) {
948
+ .button-grid {
949
+ grid-template-columns: repeat(2, 1fr);
950
+ }
951
+ }
952
+
953
+ @media (max-width: 768px) or (orientation: portrait) {
954
+ .landing-container {
955
+ flex-direction: column;
956
+ }
957
+
958
+ .tagline {
959
+ font-size: 2rem;
960
+ }
961
+
962
+ .cta-text {
963
+ font-size: 1.8rem;
964
+ }
965
+
966
+ .button-grid {
967
+ grid-template-columns: 1fr;
968
+ }
969
+
970
+ .create-container {
971
+ padding: 20px;
972
+ }
973
+
974
+ .buy-button {
975
+ padding: 25px 50px;
976
+ }
977
+
978
+ .buy-button .price {
979
+ font-size: 2.5rem;
980
+ }
981
+
982
+ .carousel-container {
983
+ flex-direction: column;
984
+ }
985
+
986
+ .carousel-arrow {
987
+ display: none;
988
+ }
989
+ }
990
+
991
+ @media (max-width: 480px) {
992
+ .tagline {
993
+ font-size: 1.5rem;
994
+ }
995
+
996
+ .cta-text {
997
+ font-size: 1.3rem;
998
+ }
999
+
1000
+ .style-button {
1001
+ padding: 15px 20px;
1002
+ font-size: 1rem;
1003
+ }
1004
+ }