-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblocked.css
More file actions
101 lines (92 loc) · 2.29 KB
/
Copy pathblocked.css
File metadata and controls
101 lines (92 loc) · 2.29 KB
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
:root {
--primary: #e11d48;
--accent: #f43f5e;
--gradient: linear-gradient(135deg, #f43f5e 0%, #c8102e 50%, #7a0a1e 100%);
--bg: #140609;
--bg-2: #1e0a0e;
--text: #f7e9ea;
--text-muted: #c2949a;
--glass: rgba(255, 255, 255, 0.055);
--border: rgba(255, 180, 185, 0.14);
--ease: cubic-bezier(0.22, 1, 0.36, 1);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
color: var(--text);
background: linear-gradient(160deg, var(--bg-2), var(--bg));
overflow: hidden;
}
/* Soft liquid-glass light beams behind the card. */
.beams {
position: fixed;
inset: 0;
background:
radial-gradient(50% 40% at 20% 15%, rgba(244, 63, 94, 0.32), transparent 70%),
radial-gradient(45% 45% at 85% 80%, rgba(122, 10, 30, 0.5), transparent 70%),
radial-gradient(35% 30% at 70% 10%, rgba(200, 16, 46, 0.3), transparent 70%);
filter: blur(10px);
animation: drift 16s var(--ease) infinite alternate;
}
@keyframes drift {
to { transform: translate3d(0, -16px, 0) scale(1.06); }
}
.card {
position: relative;
z-index: 1;
width: min(92vw, 460px);
padding: 48px 44px 44px;
text-align: center;
border-radius: 24px;
background: var(--glass);
border: 1px solid var(--border);
box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
backdrop-filter: blur(26px) saturate(160%);
-webkit-backdrop-filter: blur(26px) saturate(160%);
}
.shield {
display: inline-flex;
align-items: center;
justify-content: center;
width: 76px;
height: 76px;
border-radius: 22px;
color: #fff;
background: var(--gradient);
box-shadow: 0 18px 44px rgba(225, 29, 72, 0.5);
margin-bottom: 22px;
}
.eyebrow {
font-size: 12px;
letter-spacing: 1.4px;
text-transform: uppercase;
color: var(--accent);
font-weight: 600;
}
h1 {
margin-top: 10px;
font-size: 30px;
font-weight: 700;
letter-spacing: -0.3px;
}
.domain {
margin-top: 14px;
display: inline-block;
padding: 7px 16px;
border-radius: 999px;
font-size: 15px;
font-weight: 600;
color: var(--text);
background: rgba(255, 255, 255, 0.06);
border: 1px solid var(--border);
}
.msg {
margin-top: 20px;
font-size: 15px;
line-height: 1.6;
color: var(--text-muted);
}