-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpromo-card.html
More file actions
173 lines (155 loc) · 4.61 KB
/
promo-card.html
File metadata and controls
173 lines (155 loc) · 4.61 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
<!DOCTYPE html>
<html>
<head>
<style>
body {
margin: 0;
padding: 40px;
background: #1a1a1a;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.card {
width: 1200px;
height: 630px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border-radius: 20px;
padding: 60px;
box-shadow: 0 20px 60px rgba(0,0,0,0.5);
display: flex;
flex-direction: column;
justify-content: space-between;
color: white;
position: relative;
overflow: hidden;
}
.card::before {
content: '';
position: absolute;
top: -50%;
right: -50%;
width: 100%;
height: 100%;
background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse {
0%, 100% { transform: scale(1); opacity: 0.5; }
50% { transform: scale(1.1); opacity: 0.8; }
}
.header {
position: relative;
z-index: 1;
}
.logo {
font-size: 4rem;
margin-bottom: 20px;
}
.title {
font-size: 5rem;
font-weight: bold;
margin: 0;
text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
line-height: 1.1;
}
.subtitle {
font-size: 2.5rem;
margin: 20px 0;
opacity: 0.95;
font-weight: 300;
}
.features {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
margin: 40px 0;
position: relative;
z-index: 1;
}
.feature {
background: rgba(255,255,255,0.15);
backdrop-filter: blur(10px);
padding: 25px;
border-radius: 15px;
font-size: 1.8rem;
border: 2px solid rgba(255,255,255,0.3);
}
.feature-icon {
font-size: 2.5rem;
margin-right: 15px;
}
.footer {
position: relative;
z-index: 1;
display: flex;
justify-content: space-between;
align-items: flex-end;
}
.cta {
background: rgba(255,255,255,0.95);
color: #667eea;
padding: 25px 50px;
border-radius: 50px;
font-size: 2.2rem;
font-weight: bold;
box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.price {
text-align: right;
}
.price-big {
font-size: 3rem;
font-weight: bold;
color: #ffd700;
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.price-small {
font-size: 1.5rem;
opacity: 0.9;
margin-top: 10px;
}
</style>
</head>
<body>
<div class="card">
<div class="header">
<div class="logo">📱</div>
<h1 class="title">SpineRip Posts</h1>
<p class="subtitle">Social Trading Platform</p>
</div>
<div class="features">
<div class="feature">
<span class="feature-icon">🔐</span> QR Code Sign-In
</div>
<div class="feature">
<span class="feature-icon">📈</span> Trading Signals
</div>
<div class="feature">
<span class="feature-icon">👥</span> Community Feed
</div>
<div class="feature">
<span class="feature-icon">💎</span> PRO Features
</div>
</div>
<div class="footer">
<div class="cta">
LAUNCH NOW
</div>
<div class="price">
<div class="price-big">$19/mo</div>
<div class="price-small">or $99 Lifetime</div>
</div>
</div>
</div>
<script>
// Auto-screenshot hint
setTimeout(() => {
console.log('📸 Take a screenshot of this card for your X post!');
console.log('🖥️ Press Windows + Shift + S to capture');
}, 1000);
</script>
</body>
</html>