File size: 1,922 Bytes
8d0b054
 
 
 
 
 
 
 
 
 
191a27f
 
 
 
 
 
 
 
 
 
 
 
 
 
8d0b054
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/* Custom styles for x402 AI Demo */

.btn {
    @apply px-4 py-2 rounded-lg font-medium transition-colors duration-200;
}

.btn-primary {
    @apply bg-blue-600 text-white hover:bg-blue-700 disabled:bg-gray-400 disabled:cursor-not-allowed;
}

.btn-secondary {
    @apply bg-gray-600 text-white hover:bg-gray-700 disabled:bg-gray-400 disabled:cursor-not-allowed;
}

.btn-cool {
    @apply px-6 py-4 rounded-full font-semibold text-white text-lg;
    @apply bg-gradient-to-r from-blue-600 to-purple-600;
    @apply hover:from-blue-700 hover:to-purple-700;
    @apply transform transition-all duration-200 ease-in-out;
    @apply hover:scale-105 hover:shadow-lg active:scale-95;
    @apply shadow-md hover:shadow-xl;
    @apply disabled:bg-gray-400 disabled:cursor-not-allowed disabled:transform-none disabled:shadow-none;
}

.price-tag {
    @apply inline-block bg-green-100 text-green-800 text-sm font-semibold px-3 py-1 rounded-full mb-3;
}

.service-card {
    @apply border-t-4 border-blue-500;
}

.result-box {
    @apply min-h-16 p-4 bg-gray-50 rounded-lg border;
}

.loading {
    @apply text-center text-gray-600 animate-pulse;
}

.success-result {
    @apply p-4 bg-green-50 border border-green-200 rounded-lg;
}

.error-result {
    @apply p-4 bg-red-50 border border-red-200 rounded-lg;
}

.payment-required {
    @apply p-4 bg-orange-50 border border-orange-200 rounded-lg;
}

.sentiment-result {
    @apply text-center py-2;
}

/* Loading animation */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Code blocks */
code {
    @apply bg-gray-100 px-1 py-0.5 rounded text-sm font-mono;
}

pre {
    @apply text-xs font-mono whitespace-pre-wrap;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        @apply px-2;
    }
    
    .service-card {
        @apply p-4;
    }
}