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
.wallet-card {
width: 260px;
padding: 26px 24px;
border-radius: 20px;
background: rgba(99, 102, 241, 0.1);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
border: 1px solid rgba(165, 180, 252, 0.25);
font-family: system-ui, sans-serif;
color: #eef2ff;
box-shadow: 0 14px 30px -16px rgba(99, 102, 241, 0.4);
transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.wallet-card:hover {
transform: translateY(-6px);
box-shadow: 0 26px 46px -18px rgba(99, 102, 241, 0.6);
}
.wallet-card__top {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 16px;
}
.wallet-card__label {
font-size: 12px;
color: #c7d2fe;
text-transform: uppercase;
letter-spacing: 0.06em;
}
.wallet-card__icon {
font-size: 18px;
filter: drop-shadow(0 0 6px rgba(165, 180, 252, 0.6));
}
.wallet-card__balance {
font-size: 32px;
font-weight: 800;
margin-bottom: 8px;
animation: balance-glow 2.6s ease-in-out infinite;
}
.wallet-card__dots {
font-size: 12px;
color: #a5b4fc;
letter-spacing: 0.05em;
}
@keyframes balance-glow {
0%, 100% { text-shadow: 0 0 0 rgba(165, 180, 252, 0); }
50% { text-shadow: 0 0 14px rgba(165, 180, 252, 0.5); }
}