yhzheng1031 commited on
Commit
fdeca5f
·
verified ·
1 Parent(s): de17875

Add files using upload-large-folder tool

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. code/1444/1444_2.html +179 -0
  2. code/14469/14469_1.html +337 -0
  3. code/14469/14469_6.html +287 -0
  4. code/14469/14469_7.html +364 -0
  5. code/14474/14474_0.html +272 -0
  6. code/14474/14474_1.html +411 -0
  7. code/14477/14477_0.html +287 -0
  8. code/14477/14477_1.html +323 -0
  9. code/14477/14477_2.html +362 -0
  10. code/14477/14477_4.html +244 -0
  11. code/14477/14477_5.html +279 -0
  12. code/14481/14481_0.html +215 -0
  13. code/14481/14481_1.html +313 -0
  14. code/14481/14481_2.html +202 -0
  15. code/14481/14481_3.html +248 -0
  16. code/14482/14482_0.html +319 -0
  17. code/14482/14482_1.html +331 -0
  18. code/14483/14483_0.html +327 -0
  19. code/14483/14483_1.html +152 -0
  20. code/14483/14483_2.html +203 -0
  21. code/14487/14487_0.html +375 -0
  22. code/14487/14487_1.html +378 -0
  23. code/14490/14490_0.html +271 -0
  24. code/14490/14490_1.html +240 -0
  25. code/14490/14490_2.html +165 -0
  26. code/14490/14490_3.html +177 -0
  27. code/14490/14490_4.html +221 -0
  28. code/14491/14491_0.html +333 -0
  29. code/14491/14491_1.html +248 -0
  30. code/14491/14491_2.html +415 -0
  31. code/14491/14491_3.html +233 -0
  32. code/14491/14491_4.html +301 -0
  33. code/14491/14491_5.html +328 -0
  34. code/14491/14491_6.html +300 -0
  35. code/14492/14492_0.html +282 -0
  36. code/14492/14492_1.html +270 -0
  37. code/14492/14492_10.html +294 -0
  38. code/14492/14492_11.html +291 -0
  39. code/14492/14492_12.html +200 -0
  40. code/14492/14492_2.html +302 -0
  41. code/14492/14492_3.html +312 -0
  42. code/14492/14492_4.html +189 -0
  43. code/14492/14492_5.html +350 -0
  44. code/14492/14492_6.html +256 -0
  45. code/14492/14492_7.html +268 -0
  46. code/14492/14492_8.html +289 -0
  47. code/14492/14492_9.html +386 -0
  48. code/14498/14498_0.html +308 -0
  49. code/14498/14498_1.html +267 -0
  50. code/14498/14498_2.html +295 -0
code/1444/1444_2.html ADDED
@@ -0,0 +1,179 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Toolbar Canvas UI</title>
7
+ <style>
8
+ body {
9
+ margin: 0;
10
+ padding: 0;
11
+ background: transparent;
12
+ font-family: Arial, Helvetica, sans-serif;
13
+ }
14
+ #render-target {
15
+ width: 1080px;
16
+ height: 2400px;
17
+ position: relative;
18
+ overflow: hidden;
19
+ background: #7a7a7a; /* app background */
20
+ }
21
+
22
+ /* Top black status area */
23
+ .status-bar {
24
+ position: absolute;
25
+ top: 0;
26
+ left: 0;
27
+ width: 1080px;
28
+ height: 140px;
29
+ background: #000;
30
+ }
31
+
32
+ /* Light toolbar */
33
+ .toolbar {
34
+ position: absolute;
35
+ top: 170px;
36
+ left: 30px;
37
+ width: 1020px;
38
+ height: 120px;
39
+ background: #e8e8e8;
40
+ border-radius: 6px;
41
+ box-shadow: inset 0 0 0 1px #d0d0d0;
42
+ display: flex;
43
+ align-items: center;
44
+ padding: 0 22px;
45
+ gap: 34px;
46
+ }
47
+ .icon {
48
+ width: 84px;
49
+ height: 84px;
50
+ border-radius: 10px;
51
+ display: grid;
52
+ place-items: center;
53
+ }
54
+ .icon svg {
55
+ width: 72px;
56
+ height: 72px;
57
+ }
58
+ .muted svg {
59
+ opacity: 0.4;
60
+ }
61
+
62
+ /* Central white canvas */
63
+ .canvas {
64
+ position: absolute;
65
+ left: 50%;
66
+ transform: translateX(-50%);
67
+ top: 610px;
68
+ width: 640px;
69
+ height: 1260px;
70
+ background: #ffffff;
71
+ box-shadow: 0 0 0 1px #e0e0e0 inset;
72
+ }
73
+
74
+ /* Bottom small spinner/indicator */
75
+ .spinner {
76
+ position: absolute;
77
+ left: 50%;
78
+ transform: translateX(-50%);
79
+ bottom: 170px;
80
+ width: 42px;
81
+ height: 42px;
82
+ border-radius: 50%;
83
+ border: 5px solid #cfcfcf;
84
+ border-top-color: #8f8f8f;
85
+ }
86
+ </style>
87
+ </head>
88
+ <body>
89
+ <div id="render-target">
90
+ <div class="status-bar"></div>
91
+
92
+ <div class="toolbar">
93
+ <!-- List/Menu icon -->
94
+ <div class="icon">
95
+ <svg viewBox="0 0 100 100">
96
+ <rect x="18" y="22" width="64" height="8" fill="#6b6b6b" rx="4"></rect>
97
+ <rect x="18" y="46" width="64" height="8" fill="#6b6b6b" rx="4"></rect>
98
+ <rect x="18" y="70" width="64" height="8" fill="#6b6b6b" rx="4"></rect>
99
+ </svg>
100
+ </div>
101
+
102
+ <!-- Back arrow -->
103
+ <div class="icon muted">
104
+ <svg viewBox="0 0 100 100">
105
+ <polyline points="60,18 34,50 60,82" fill="none" stroke="#8a8a8a" stroke-width="10" stroke-linecap="round" stroke-linejoin="round"></polyline>
106
+ </svg>
107
+ </div>
108
+
109
+ <!-- Forward arrow -->
110
+ <div class="icon muted">
111
+ <svg viewBox="0 0 100 100">
112
+ <polyline points="40,18 66,50 40,82" fill="none" stroke="#8a8a8a" stroke-width="10" stroke-linecap="round" stroke-linejoin="round"></polyline>
113
+ </svg>
114
+ </div>
115
+
116
+ <!-- Grid icon -->
117
+ <div class="icon">
118
+ <svg viewBox="0 0 100 100">
119
+ <rect x="18" y="18" width="20" height="20" fill="#666"></rect>
120
+ <rect x="40" y="18" width="20" height="20" fill="#666"></rect>
121
+ <rect x="62" y="18" width="20" height="20" fill="#666"></rect>
122
+ <rect x="18" y="40" width="20" height="20" fill="#666"></rect>
123
+ <rect x="40" y="40" width="20" height="20" fill="#666"></rect>
124
+ <rect x="62" y="40" width="20" height="20" fill="#666"></rect>
125
+ <rect x="18" y="62" width="20" height="20" fill="#666"></rect>
126
+ <rect x="40" y="62" width="20" height="20" fill="#666"></rect>
127
+ <rect x="62" y="62" width="20" height="20" fill="#666"></rect>
128
+ </svg>
129
+ </div>
130
+
131
+ <!-- Pen/Nib icon -->
132
+ <div class="icon">
133
+ <svg viewBox="0 0 100 100">
134
+ <polygon points="50,12 70,72 50,88 30,72" fill="#4f4f4f"></polygon>
135
+ <circle cx="50" cy="60" r="6" fill="#e8e8e8"></circle>
136
+ </svg>
137
+ </div>
138
+
139
+ <!-- Color wheel (simple colored circle) -->
140
+ <div class="icon">
141
+ <svg viewBox="0 0 100 100">
142
+ <defs>
143
+ <linearGradient id="g" x1="0" y1="0" x2="1" y2="1">
144
+ <stop offset="0%" stop-color="#ff5252"/>
145
+ <stop offset="25%" stop-color="#ffd740"/>
146
+ <stop offset="50%" stop-color="#69f0ae"/>
147
+ <stop offset="75%" stop-color="#40c4ff"/>
148
+ <stop offset="100%" stop-color="#7c4dff"/>
149
+ </linearGradient>
150
+ </defs>
151
+ <circle cx="50" cy="50" r="30" fill="url(#g)" stroke="#666" stroke-width="6"></circle>
152
+ </svg>
153
+ </div>
154
+
155
+ <!-- Layers icon -->
156
+ <div class="icon">
157
+ <svg viewBox="0 0 100 100">
158
+ <polygon points="50,18 82,36 50,54 18,36" fill="#5f5f5f"></polygon>
159
+ <polygon points="50,44 82,62 50,80 18,62" fill="#8a8a8a"></polygon>
160
+ </svg>
161
+ </div>
162
+
163
+ <!-- Fullscreen icon -->
164
+ <div class="icon">
165
+ <svg viewBox="0 0 100 100">
166
+ <polyline points="18,38 18,18 38,18" fill="none" stroke="#5f5f5f" stroke-width="10" stroke-linecap="round"></polyline>
167
+ <polyline points="62,18 82,18 82,38" fill="none" stroke="#5f5f5f" stroke-width="10" stroke-linecap="round"></polyline>
168
+ <polyline points="82,62 82,82 62,82" fill="none" stroke="#5f5f5f" stroke-width="10" stroke-linecap="round"></polyline>
169
+ <polyline points="38,82 18,82 18,62" fill="none" stroke="#5f5f5f" stroke-width="10" stroke-linecap="round"></polyline>
170
+ </svg>
171
+ </div>
172
+ </div>
173
+
174
+ <div class="canvas"></div>
175
+
176
+ <div class="spinner" title="Loading indicator"></div>
177
+ </div>
178
+ </body>
179
+ </html>
code/14469/14469_1.html ADDED
@@ -0,0 +1,337 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
5
+ <title>Profile UI Mock</title>
6
+ <style>
7
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
8
+ #render-target {
9
+ width: 1080px;
10
+ height: 2400px;
11
+ position: relative;
12
+ overflow: hidden;
13
+ background: radial-gradient(1100px 900px at 540px 250px, #3c3c3c 0%, #222 40%, #121212 100%);
14
+ color: #fff;
15
+ }
16
+
17
+ /* Top bar / hamburger */
18
+ .top-bar {
19
+ position: absolute;
20
+ top: 44px;
21
+ right: 36px;
22
+ width: 72px;
23
+ height: 72px;
24
+ display: flex;
25
+ align-items: center;
26
+ justify-content: center;
27
+ }
28
+ .hamburger svg { width: 64px; height: 64px; }
29
+ .hamburger line {
30
+ stroke: #dcdcdc;
31
+ stroke-width: 8;
32
+ stroke-linecap: round;
33
+ }
34
+
35
+ /* Profile header */
36
+ .profile-header {
37
+ position: absolute;
38
+ top: 120px;
39
+ left: 40px;
40
+ right: 40px;
41
+ height: 420px;
42
+ }
43
+ .avatar {
44
+ position: absolute;
45
+ top: 0;
46
+ left: 0;
47
+ width: 330px;
48
+ height: 330px;
49
+ background: #E0E0E0;
50
+ border: 1px solid #BDBDBD;
51
+ border-radius: 28px;
52
+ display: flex;
53
+ align-items: center;
54
+ justify-content: center;
55
+ color: #757575;
56
+ font-weight: 600;
57
+ }
58
+ .username {
59
+ position: absolute;
60
+ left: 380px;
61
+ top: 70px;
62
+ font-size: 64px;
63
+ font-weight: 800;
64
+ letter-spacing: 1px;
65
+ }
66
+ .edit-btn {
67
+ position: absolute;
68
+ right: 20px;
69
+ top: 220px;
70
+ background: linear-gradient(0deg, #b7f187, #c9ff94);
71
+ color: #0d0d0d;
72
+ padding: 24px 36px;
73
+ font-weight: 700;
74
+ border-radius: 24px;
75
+ box-shadow: 0 4px 0 rgba(0,0,0,0.25);
76
+ }
77
+ .stats {
78
+ position: absolute;
79
+ left: 0;
80
+ bottom: 0;
81
+ display: flex;
82
+ gap: 80px;
83
+ align-items: center;
84
+ }
85
+ .stat {
86
+ text-align: left;
87
+ }
88
+ .stat .num {
89
+ font-size: 56px;
90
+ font-weight: 800;
91
+ }
92
+ .stat .label {
93
+ margin-top: -6px;
94
+ font-size: 36px;
95
+ color: #cfcfcf;
96
+ }
97
+
98
+ /* Rated videos card */
99
+ .rated-card {
100
+ position: absolute;
101
+ left: 24px;
102
+ right: 24px;
103
+ top: 560px;
104
+ height: 540px;
105
+ background: #141414;
106
+ border-radius: 36px;
107
+ box-shadow: inset 0 0 0 2px #0f0f0f, 0 18px 40px rgba(0,0,0,0.45);
108
+ }
109
+ .rated-card .title {
110
+ position: absolute;
111
+ top: 36px;
112
+ left: 36px;
113
+ font-size: 54px;
114
+ font-weight: 800;
115
+ }
116
+ .heart {
117
+ position: absolute;
118
+ top: 170px;
119
+ left: 50%;
120
+ transform: translateX(-50%);
121
+ width: 130px;
122
+ height: 130px;
123
+ }
124
+ .heart svg { width: 130px; height: 130px; }
125
+ .rated-sub {
126
+ position: absolute;
127
+ top: 330px;
128
+ left: 50%;
129
+ transform: translateX(-50%);
130
+ font-size: 44px;
131
+ color: #dcdcdc;
132
+ text-align: center;
133
+ width: 900px;
134
+ }
135
+ .watch-btn {
136
+ position: absolute;
137
+ left: 48px;
138
+ right: 48px;
139
+ bottom: 36px;
140
+ height: 120px;
141
+ background: linear-gradient(90deg, #c7ff87, #9cf36a);
142
+ border-radius: 28px;
143
+ display: flex;
144
+ align-items: center;
145
+ justify-content: center;
146
+ color: #0b0b0b;
147
+ font-weight: 800;
148
+ font-size: 52px;
149
+ box-shadow: 0 10px 18px rgba(0,0,0,0.35);
150
+ }
151
+
152
+ /* Suggested video bar above nav */
153
+ .suggestion {
154
+ position: absolute;
155
+ left: 24px;
156
+ right: 24px;
157
+ bottom: 220px;
158
+ height: 280px;
159
+ display: flex;
160
+ align-items: center;
161
+ gap: 24px;
162
+ }
163
+ .thumb {
164
+ width: 260px;
165
+ height: 220px;
166
+ background: #E0E0E0;
167
+ border: 1px solid #BDBDBD;
168
+ display: flex;
169
+ align-items: center;
170
+ justify-content: center;
171
+ color: #757575;
172
+ font-weight: 600;
173
+ }
174
+ .video-info {
175
+ flex: 1;
176
+ color: #fff;
177
+ }
178
+ .video-title {
179
+ font-size: 48px;
180
+ font-weight: 800;
181
+ line-height: 1.15;
182
+ }
183
+ .video-author {
184
+ margin-top: 16px;
185
+ font-size: 40px;
186
+ color: #cfcfcf;
187
+ display: flex;
188
+ align-items: center;
189
+ gap: 12px;
190
+ }
191
+ .close-x {
192
+ position: absolute;
193
+ right: 16px;
194
+ top: 14px;
195
+ width: 60px;
196
+ height: 60px;
197
+ border-radius: 50%;
198
+ display: flex;
199
+ align-items: center;
200
+ justify-content: center;
201
+ color: #bdbdbd;
202
+ font-size: 48px;
203
+ }
204
+
205
+ /* Bottom nav bar */
206
+ .bottom-nav {
207
+ position: absolute;
208
+ bottom: 0;
209
+ left: 0;
210
+ width: 1080px;
211
+ height: 180px;
212
+ background: linear-gradient(0deg, rgba(60,120,60,0.45), rgba(50,100,50,0.35));
213
+ border-top: 1px solid rgba(255,255,255,0.08);
214
+ display: flex;
215
+ justify-content: space-around;
216
+ align-items: center;
217
+ }
218
+ .nav-item {
219
+ width: 140px;
220
+ height: 140px;
221
+ display: flex;
222
+ align-items: center;
223
+ justify-content: center;
224
+ }
225
+ .nav-item svg {
226
+ width: 88px;
227
+ height: 88px;
228
+ fill: none;
229
+ stroke: #e8f6e8;
230
+ stroke-width: 8;
231
+ stroke-linecap: round;
232
+ stroke-linejoin: round;
233
+ }
234
+ .profile-dot {
235
+ position: absolute;
236
+ bottom: 190px;
237
+ left: 540px;
238
+ width: 1px;
239
+ height: 1px;
240
+ }
241
+
242
+ /* Divider/hint: nothing else */
243
+ </style>
244
+ </head>
245
+ <body>
246
+ <div id="render-target">
247
+
248
+ <!-- Top right hamburger -->
249
+ <div class="top-bar">
250
+ <div class="hamburger">
251
+ <svg viewBox="0 0 100 100">
252
+ <line x1="18" y1="28" x2="82" y2="28"></line>
253
+ <line x1="18" y1="50" x2="82" y2="50"></line>
254
+ <line x1="18" y1="72" x2="82" y2="72"></line>
255
+ </svg>
256
+ </div>
257
+ </div>
258
+
259
+ <!-- Profile header -->
260
+ <div class="profile-header">
261
+ <div class="avatar">[IMG: User Avatar]</div>
262
+ <div class="username">@dbwscratch.test.id1</div>
263
+ <div class="edit-btn">Edit profile</div>
264
+ <div class="stats">
265
+ <div class="stat">
266
+ <div class="num">0</div>
267
+ <div class="label">Followers</div>
268
+ </div>
269
+ <div class="stat">
270
+ <div class="num">1</div>
271
+ <div class="label">Following</div>
272
+ </div>
273
+ </div>
274
+ </div>
275
+
276
+ <!-- Rated videos card -->
277
+ <div class="rated-card">
278
+ <div class="title">Rated videos</div>
279
+ <div class="heart">
280
+ <svg viewBox="0 0 100 100">
281
+ <path d="M50 86s-30-18-30-40c0-12 9-22 22-22 6 0 12 3 16 8 4-5 10-8 16-8 13 0 22 10 22 22 0 22-30 40-30 40s-8 5-16 0z" fill="#e74c3c"></path>
282
+ </svg>
283
+ </div>
284
+ <div class="rated-sub">Find your rated videos here.</div>
285
+ <div class="watch-btn">Watch videos</div>
286
+ </div>
287
+
288
+ <!-- Suggested video item above nav -->
289
+ <div class="suggestion">
290
+ <div class="thumb">[IMG: Maria Callas performance]</div>
291
+ <div class="video-info">
292
+ <div class="video-title">Maria CALLAS - Casta Diva 1958 - by Guseppe INFANTINO</div>
293
+ <div class="video-author">
294
+ <span>Giuseppe Infantino</span>
295
+ <svg viewBox="0 0 24 24" width="32" height="32" style="fill:#9bdc79;stroke:none">
296
+ <path d="M12 2l2.3 5.9L20 9.1l-4.7 3.8L16.6 19 12 15.9 7.4 19l1.3-6.1L4 9.1l5.7-1.2L12 2z"></path>
297
+ </svg>
298
+ </div>
299
+ </div>
300
+ <div class="close-x">✕</div>
301
+ </div>
302
+
303
+ <!-- Bottom navigation -->
304
+ <div class="bottom-nav">
305
+ <div class="nav-item">
306
+ <!-- Home -->
307
+ <svg viewBox="0 0 100 100">
308
+ <path d="M20 58 L50 32 L80 58" />
309
+ <rect x="28" y="58" width="44" height="28" rx="6" ry="6" />
310
+ </svg>
311
+ </div>
312
+ <div class="nav-item">
313
+ <!-- Search -->
314
+ <svg viewBox="0 0 100 100">
315
+ <circle cx="44" cy="44" r="22" />
316
+ <line x1="62" y1="62" x2="82" y2="82" />
317
+ </svg>
318
+ </div>
319
+ <div class="nav-item">
320
+ <!-- Profile -->
321
+ <svg viewBox="0 0 100 100">
322
+ <circle cx="50" cy="36" r="16" />
323
+ <path d="M20 80c8-16 24-20 30-20s22 4 30 20" />
324
+ </svg>
325
+ </div>
326
+ <div class="nav-item">
327
+ <!-- Settings -->
328
+ <svg viewBox="0 0 100 100">
329
+ <circle cx="50" cy="50" r="12" />
330
+ <path d="M50 20v10M50 70v10M20 50h10M70 50h10M32 32l7 7M61 61l7 7M32 68l7-7M61 39l7-7" />
331
+ </svg>
332
+ </div>
333
+ </div>
334
+
335
+ </div>
336
+ </body>
337
+ </html>
code/14469/14469_6.html ADDED
@@ -0,0 +1,287 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Mobile UI Mock</title>
5
+ <style>
6
+ body {
7
+ margin: 0;
8
+ padding: 0;
9
+ background: transparent;
10
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
11
+ }
12
+ #render-target {
13
+ width: 1080px;
14
+ height: 2400px;
15
+ position: relative;
16
+ overflow: hidden;
17
+ border-radius: 60px;
18
+ background: linear-gradient(180deg, #0b0b0b 0%, #0b0b0b 86%, #1e3c22 100%);
19
+ color: #fff;
20
+ }
21
+
22
+ /* Status bar */
23
+ .status-bar {
24
+ position: absolute;
25
+ top: 0;
26
+ left: 0;
27
+ width: 100%;
28
+ height: 120px;
29
+ padding: 24px 36px;
30
+ box-sizing: border-box;
31
+ display: flex;
32
+ align-items: center;
33
+ justify-content: space-between;
34
+ color: #eaeaea;
35
+ font-weight: 600;
36
+ }
37
+ .status-left {
38
+ font-size: 44px;
39
+ letter-spacing: 0.5px;
40
+ }
41
+ .status-right {
42
+ display: flex;
43
+ align-items: center;
44
+ gap: 22px;
45
+ }
46
+ .status-icon {
47
+ display: inline-flex;
48
+ align-items: center;
49
+ justify-content: center;
50
+ width: 44px;
51
+ height: 44px;
52
+ }
53
+
54
+ /* Header tabs */
55
+ .tabs {
56
+ position: absolute;
57
+ top: 170px;
58
+ left: 160px;
59
+ display: flex;
60
+ align-items: center;
61
+ gap: 36px;
62
+ }
63
+ .tab-pill {
64
+ background: #2f2f2f;
65
+ color: #fff;
66
+ border-radius: 44px;
67
+ padding: 18px 34px;
68
+ font-size: 46px;
69
+ font-weight: 800;
70
+ letter-spacing: 0.3px;
71
+ }
72
+ .tab-link {
73
+ font-size: 46px;
74
+ font-weight: 800;
75
+ color: #ffffff;
76
+ opacity: 0.9;
77
+ }
78
+
79
+ /* Right vertical quick actions */
80
+ .right-bubbles {
81
+ position: absolute;
82
+ top: 460px;
83
+ right: 40px;
84
+ display: flex;
85
+ flex-direction: column;
86
+ gap: 90px;
87
+ }
88
+ .bubble {
89
+ width: 150px;
90
+ height: 150px;
91
+ border-radius: 36px;
92
+ background: #3a3a3a;
93
+ box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
94
+ }
95
+
96
+ /* Bottom input/quick bar */
97
+ .bottom-input {
98
+ position: absolute;
99
+ bottom: 220px;
100
+ left: 40px;
101
+ width: 1000px;
102
+ display: flex;
103
+ align-items: center;
104
+ justify-content: space-between;
105
+ gap: 24px;
106
+ }
107
+ .input-side {
108
+ width: 140px;
109
+ height: 120px;
110
+ border-radius: 36px;
111
+ background: #3a3a3a;
112
+ }
113
+ .input-field {
114
+ flex: 1;
115
+ height: 120px;
116
+ border-radius: 60px;
117
+ background: #3a3a3a;
118
+ }
119
+
120
+ /* Bottom navigation bar */
121
+ .bottom-nav {
122
+ position: absolute;
123
+ bottom: 90px;
124
+ left: 0;
125
+ width: 100%;
126
+ height: 160px;
127
+ display: flex;
128
+ align-items: center;
129
+ justify-content: space-around;
130
+ padding: 0 60px;
131
+ box-sizing: border-box;
132
+ }
133
+ .nav-icon {
134
+ width: 120px;
135
+ height: 120px;
136
+ display: flex;
137
+ align-items: center;
138
+ justify-content: center;
139
+ }
140
+ .nav-icon svg {
141
+ width: 86px;
142
+ height: 86px;
143
+ stroke-width: 2.5;
144
+ }
145
+ .nav-inactive {
146
+ opacity: 0.65;
147
+ }
148
+
149
+ /* Home indicator */
150
+ .home-indicator {
151
+ position: absolute;
152
+ bottom: 34px;
153
+ left: 50%;
154
+ transform: translateX(-50%);
155
+ width: 320px;
156
+ height: 14px;
157
+ border-radius: 7px;
158
+ background: #eaeaea;
159
+ opacity: 0.9;
160
+ }
161
+ </style>
162
+ </head>
163
+ <body>
164
+ <div id="render-target">
165
+
166
+ <!-- Status Bar -->
167
+ <div class="status-bar">
168
+ <div class="status-left">12:07</div>
169
+ <div class="status-right">
170
+ <span class="status-icon">
171
+ <!-- chat bubble -->
172
+ <svg viewBox="0 0 24 24" width="38" height="38" fill="none" stroke="#eaeaea">
173
+ <path d="M4 5h16a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H10l-5 4v-4H4a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2z" />
174
+ </svg>
175
+ </span>
176
+ <span class="status-icon">
177
+ <!-- watch/band -->
178
+ <svg viewBox="0 0 24 24" width="38" height="38" fill="none" stroke="#eaeaea">
179
+ <rect x="6" y="6" width="12" height="12" rx="2"></rect>
180
+ <rect x="9" y="1" width="6" height="4" rx="1"></rect>
181
+ <rect x="9" y="19" width="6" height="4" rx="1"></rect>
182
+ </svg>
183
+ </span>
184
+ <span class="status-icon">
185
+ <!-- cloud -->
186
+ <svg viewBox="0 0 24 24" width="40" height="40" fill="none" stroke="#eaeaea">
187
+ <path d="M6 18h11a4 4 0 0 0 0-8 6 6 0 0 0-11-2A4 4 0 0 0 6 18z"></path>
188
+ </svg>
189
+ </span>
190
+ <span class="status-icon">
191
+ <!-- lock -->
192
+ <svg viewBox="0 0 24 24" width="40" height="40" fill="none" stroke="#eaeaea">
193
+ <rect x="5" y="11" width="14" height="10" rx="2"></rect>
194
+ <path d="M8 11V8a4 4 0 0 1 8 0v3"></path>
195
+ </svg>
196
+ </span>
197
+ <span class="status-icon">
198
+ <!-- small dot -->
199
+ <svg viewBox="0 0 24 24" width="24" height="24" fill="#eaeaea">
200
+ <circle cx="12" cy="12" r="4"></circle>
201
+ </svg>
202
+ </span>
203
+ <span class="status-icon">
204
+ <!-- Do Not Disturb -->
205
+ <svg viewBox="0 0 24 24" width="40" height="40" fill="none" stroke="#eaeaea">
206
+ <circle cx="12" cy="12" r="9"></circle>
207
+ <path d="M7 12h10"></path>
208
+ </svg>
209
+ </span>
210
+ <span class="status-icon">
211
+ <!-- WiFi -->
212
+ <svg viewBox="0 0 24 24" width="40" height="40" fill="none" stroke="#eaeaea">
213
+ <path d="M2 8a14 14 0 0 1 20 0"></path>
214
+ <path d="M5 12a10 10 0 0 1 14 0"></path>
215
+ <path d="M8 16a6 6 0 0 1 8 0"></path>
216
+ <circle cx="12" cy="20" r="1.8" fill="#eaeaea" stroke="none"></circle>
217
+ </svg>
218
+ </span>
219
+ <span class="status-icon">
220
+ <!-- Battery -->
221
+ <svg viewBox="0 0 28 24" width="48" height="40" fill="none" stroke="#eaeaea">
222
+ <rect x="2" y="6" width="20" height="12" rx="2"></rect>
223
+ <rect x="22" y="9" width="4" height="6" rx="1"></rect>
224
+ <path d="M10 9l-3 5h4l-1 3 5-8h-5z" fill="#eaeaea" stroke="none"></path>
225
+ </svg>
226
+ </span>
227
+ </div>
228
+ </div>
229
+
230
+ <!-- Header Tabs -->
231
+ <div class="tabs">
232
+ <div class="tab-pill">Explore</div>
233
+ <div class="tab-link">Following</div>
234
+ </div>
235
+
236
+ <!-- Right vertical actions -->
237
+ <div class="right-bubbles">
238
+ <div class="bubble"></div>
239
+ <div class="bubble"></div>
240
+ <div class="bubble"></div>
241
+ <div class="bubble"></div>
242
+ </div>
243
+
244
+ <!-- Bottom input/quick bar -->
245
+ <div class="bottom-input">
246
+ <div class="input-side"></div>
247
+ <div class="input-field"></div>
248
+ <div class="input-side"></div>
249
+ </div>
250
+
251
+ <!-- Bottom navigation -->
252
+ <div class="bottom-nav">
253
+ <div class="nav-icon">
254
+ <!-- Home (active) -->
255
+ <svg viewBox="0 0 24 24" fill="none" stroke="#ffffff">
256
+ <path d="M3 10l9-7 9 7v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"></path>
257
+ <path d="M9 21V12h6v9"></path>
258
+ </svg>
259
+ </div>
260
+ <div class="nav-icon nav-inactive">
261
+ <!-- Search -->
262
+ <svg viewBox="0 0 24 24" fill="none" stroke="#d9d9d9">
263
+ <circle cx="11" cy="11" r="7"></circle>
264
+ <path d="M21 21l-4.5-4.5"></path>
265
+ </svg>
266
+ </div>
267
+ <div class="nav-icon nav-inactive">
268
+ <!-- User -->
269
+ <svg viewBox="0 0 24 24" fill="none" stroke="#d9d9d9">
270
+ <circle cx="12" cy="8" r="4"></circle>
271
+ <path d="M4 21a8 8 0 0 1 16 0"></path>
272
+ </svg>
273
+ </div>
274
+ <div class="nav-icon nav-inactive">
275
+ <!-- Settings -->
276
+ <svg viewBox="0 0 24 24" fill="none" stroke="#d9d9d9">
277
+ <circle cx="12" cy="12" r="3"></circle>
278
+ <path d="M19.4 15a1 1 0 0 0 .2-1.1l-1-1.7a6 6 0 0 0 .1-1.4l1-1.7a1 1 0 0 0-.2-1.1l-1.8-1.8a1 1 0 0 0-1.1-.2l-1.7 1a6 6 0 0 0-1.4-.1l-1.7-1a1 1 0 0 0-1.1.2L8 5.6a1 1 0 0 0-.2 1.1l1 1.7a6 6 0 0 0-.1 1.4l-1 1.7a1 1 0 0 0 .2 1.1l1.8 1.8a1 1 0 0 0 1.1.2l1.7-1a6 6 0 0 0 1.4.1l1.7 1a1 1 0 0 0 1.1-.2z"></path>
279
+ </svg>
280
+ </div>
281
+ </div>
282
+
283
+ <!-- Home indicator -->
284
+ <div class="home-indicator"></div>
285
+ </div>
286
+ </body>
287
+ </html>
code/14469/14469_7.html ADDED
@@ -0,0 +1,364 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Mobile UI Mock</title>
5
+ <style>
6
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
7
+ #render-target {
8
+ width: 1080px;
9
+ height: 2400px;
10
+ position: relative;
11
+ overflow: hidden;
12
+ background: linear-gradient(180deg, #0e1410 0%, #0d120e 30%, #0f1b12 100%);
13
+ color: #fff;
14
+ }
15
+ /* Status bar */
16
+ .status-bar {
17
+ position: absolute;
18
+ top: 0;
19
+ left: 0;
20
+ width: 100%;
21
+ height: 100px;
22
+ display: flex;
23
+ align-items: center;
24
+ justify-content: space-between;
25
+ padding: 0 40px;
26
+ font-weight: 600;
27
+ letter-spacing: 0.5px;
28
+ font-size: 34px;
29
+ color: #e8e8e8;
30
+ }
31
+ .status-right {
32
+ display: flex;
33
+ gap: 28px;
34
+ align-items: center;
35
+ }
36
+ .icon {
37
+ width: 38px;
38
+ height: 38px;
39
+ }
40
+
41
+ /* Tabs */
42
+ .tabs {
43
+ position: absolute;
44
+ top: 110px;
45
+ left: 0;
46
+ width: 100%;
47
+ display: flex;
48
+ gap: 30px;
49
+ padding-left: 150px;
50
+ }
51
+ .tab {
52
+ padding: 22px 38px;
53
+ border-radius: 60px;
54
+ border: 2px solid #3a3a3a;
55
+ color: #cfcfcf;
56
+ font-size: 36px;
57
+ }
58
+ .tab.active {
59
+ background: #2a2a2a;
60
+ color: #fff;
61
+ border-color: #2a2a2a;
62
+ box-shadow: inset 0 0 0 2px #00000033;
63
+ }
64
+
65
+ /* Spacer dark area */
66
+ .spacer {
67
+ position: absolute;
68
+ top: 200px;
69
+ left: 0;
70
+ width: 100%;
71
+ height: 700px;
72
+ background: #0a0a0a;
73
+ }
74
+
75
+ /* Video block */
76
+ .video-card {
77
+ position: absolute;
78
+ top: 900px;
79
+ left: 0;
80
+ width: 100%;
81
+ height: 850px;
82
+ display: flex;
83
+ align-items: center;
84
+ justify-content: center;
85
+ background: #0a0a0a;
86
+ }
87
+ .video-placeholder {
88
+ width: 100%;
89
+ height: 100%;
90
+ background: #E0E0E0;
91
+ border: 1px solid #BDBDBD;
92
+ display: flex;
93
+ align-items: center;
94
+ justify-content: center;
95
+ color: #4d4d4d;
96
+ font-size: 36px;
97
+ }
98
+ /* Overlays on video */
99
+ .watermark {
100
+ position: absolute;
101
+ top: 930px;
102
+ right: 40px;
103
+ font-weight: 800;
104
+ color: #ff4a5a;
105
+ font-size: 34px;
106
+ opacity: 0.9;
107
+ }
108
+ .side-actions {
109
+ position: absolute;
110
+ right: 40px;
111
+ top: 1040px;
112
+ display: flex;
113
+ flex-direction: column;
114
+ gap: 38px;
115
+ align-items: center;
116
+ }
117
+ .circle-btn {
118
+ width: 98px;
119
+ height: 98px;
120
+ border-radius: 50%;
121
+ background: #141414;
122
+ border: 2px solid #323232;
123
+ display: flex;
124
+ align-items: center;
125
+ justify-content: center;
126
+ }
127
+ .dots {
128
+ position: absolute;
129
+ right: 60px;
130
+ bottom: 160px;
131
+ display: flex;
132
+ gap: 16px;
133
+ }
134
+ .dot {
135
+ width: 16px;
136
+ height: 16px;
137
+ background: #bfbfbf;
138
+ border-radius: 50%;
139
+ opacity: 0.8;
140
+ }
141
+ .full-screen {
142
+ position: absolute;
143
+ bottom: 180px;
144
+ left: 50%;
145
+ transform: translateX(-50%);
146
+ display: flex;
147
+ align-items: center;
148
+ gap: 18px;
149
+ padding: 22px 28px;
150
+ background: #1a1a1a;
151
+ border: 2px solid #3a3a3a;
152
+ border-radius: 18px;
153
+ color: #f2f2f2;
154
+ font-size: 34px;
155
+ }
156
+
157
+ /* Caption area */
158
+ .caption {
159
+ position: absolute;
160
+ top: 1750px;
161
+ left: 0;
162
+ width: 100%;
163
+ padding: 30px 40px;
164
+ background: #0a0a0a;
165
+ display: flex;
166
+ align-items: center;
167
+ gap: 30px;
168
+ }
169
+ .avatar {
170
+ width: 100px;
171
+ height: 100px;
172
+ border-radius: 26px;
173
+ background: #E0E0E0;
174
+ border: 1px solid #BDBDBD;
175
+ display: flex;
176
+ align-items: center;
177
+ justify-content: center;
178
+ color: #606060;
179
+ font-size: 28px;
180
+ }
181
+ .caption-text {
182
+ display: flex;
183
+ flex-direction: column;
184
+ gap: 12px;
185
+ max-width: 860px;
186
+ }
187
+ .brand-line {
188
+ display: flex;
189
+ align-items: center;
190
+ gap: 16px;
191
+ font-size: 36px;
192
+ font-weight: 700;
193
+ color: #ffffff;
194
+ }
195
+ .verify {
196
+ width: 32px;
197
+ height: 32px;
198
+ background: #2bd563;
199
+ border-radius: 50%;
200
+ display: inline-block;
201
+ }
202
+ .desc {
203
+ font-size: 32px;
204
+ color: #cfcfcf;
205
+ white-space: nowrap;
206
+ overflow: hidden;
207
+ text-overflow: ellipsis;
208
+ }
209
+
210
+ /* Bottom nav */
211
+ .bottom-nav {
212
+ position: absolute;
213
+ left: 0;
214
+ bottom: 0;
215
+ width: 100%;
216
+ height: 220px;
217
+ background: linear-gradient(180deg, rgba(20,28,18,0.6) 0%, rgba(20,28,18,0.9) 40%, #141c12 100%);
218
+ display: flex;
219
+ align-items: center;
220
+ justify-content: space-around;
221
+ padding: 0 40px;
222
+ }
223
+ .nav-btn {
224
+ width: 120px;
225
+ height: 120px;
226
+ border-radius: 28px;
227
+ background: rgba(255,255,255,0.06);
228
+ border: 1px solid rgba(255,255,255,0.12);
229
+ display: flex;
230
+ align-items: center;
231
+ justify-content: center;
232
+ }
233
+
234
+ /* Buffer below caption to match overall height */
235
+ .buffer {
236
+ position: absolute;
237
+ left: 0;
238
+ top: 1970px;
239
+ width: 100%;
240
+ height: 220px;
241
+ background: transparent;
242
+ }
243
+ </style>
244
+ </head>
245
+ <body>
246
+ <div id="render-target">
247
+
248
+ <!-- Status Bar -->
249
+ <div class="status-bar">
250
+ <div>12:08</div>
251
+ <div class="status-right">
252
+ <!-- simple icons -->
253
+ <svg class="icon" viewBox="0 0 24 24" fill="#cfcfcf"><circle cx="12" cy="12" r="4"/></svg>
254
+ <svg class="icon" viewBox="0 0 24 24" fill="none" stroke="#cfcfcf" stroke-width="2">
255
+ <path d="M3 8l9-6 9 6v8a4 4 0 0 1-4 4H7a4 4 0 0 1-4-4V8z"/>
256
+ </svg>
257
+ <svg class="icon" viewBox="0 0 24 24" fill="none" stroke="#cfcfcf" stroke-width="2">
258
+ <path d="M3 11h18M5 7h14M7 3h10"/>
259
+ </svg>
260
+ <svg class="icon" viewBox="0 0 24 24" fill="none" stroke="#cfcfcf" stroke-width="2">
261
+ <path d="M4 10a8 8 0 0 1 16 0v6H4v-6z"/><path d="M7 20h10"/>
262
+ </svg>
263
+ </div>
264
+ </div>
265
+
266
+ <!-- Tabs -->
267
+ <div class="tabs">
268
+ <div class="tab active">Explore</div>
269
+ <div class="tab">Following</div>
270
+ </div>
271
+
272
+ <!-- Spacer -->
273
+ <div class="spacer"></div>
274
+
275
+ <!-- Video Card -->
276
+ <div class="video-card">
277
+ <div class="video-placeholder">[IMG: Interview video still on floral backdrop]</div>
278
+ </div>
279
+
280
+ <!-- Watermark -->
281
+ <div class="watermark">FILMIBEAT</div>
282
+
283
+ <!-- Right side actions -->
284
+ <div class="side-actions">
285
+ <div class="circle-btn">
286
+ <!-- smile/emoji icon -->
287
+ <svg width="52" height="52" viewBox="0 0 24 24" fill="none" stroke="#ffffff" stroke-width="2">
288
+ <circle cx="12" cy="12" r="9"/>
289
+ <circle cx="9" cy="10" r="1.4"/>
290
+ <circle cx="15" cy="10" r="1.4"/>
291
+ <path d="M8 14c1.5 2 6.5 2 8 0"/>
292
+ </svg>
293
+ </div>
294
+ <div class="circle-btn">
295
+ <!-- share arrow -->
296
+ <svg width="52" height="52" viewBox="0 0 24 24" fill="none" stroke="#ffffff" stroke-width="2">
297
+ <path d="M4 12h10"/>
298
+ <path d="M10 7l6 5-6 5"/>
299
+ </svg>
300
+ </div>
301
+ </div>
302
+
303
+ <!-- Three dots -->
304
+ <div class="dots">
305
+ <div class="dot"></div>
306
+ <div class="dot"></div>
307
+ <div class="dot"></div>
308
+ </div>
309
+
310
+ <!-- Full screen button -->
311
+ <div class="full-screen">
312
+ <svg width="34" height="34" viewBox="0 0 24 24" fill="none" stroke="#ffffff" stroke-width="2">
313
+ <path d="M4 9V4h5M20 9V4h-5M4 15v5h5M20 15v5h-5"/>
314
+ </svg>
315
+ <span>Full screen</span>
316
+ </div>
317
+
318
+ <!-- Caption Area -->
319
+ <div class="caption">
320
+ <div class="avatar">[Logo]</div>
321
+ <div class="caption-text">
322
+ <div class="brand-line">Filmibeat <span class="verify"></span></div>
323
+ <div class="desc">Sukhee Actor Chaitanya Choudhry Interview: Tal...</div>
324
+ </div>
325
+ </div>
326
+
327
+ <!-- Buffer to fill height -->
328
+ <div class="buffer"></div>
329
+
330
+ <!-- Bottom Navigation -->
331
+ <div class="bottom-nav">
332
+ <div class="nav-btn">
333
+ <!-- home -->
334
+ <svg width="56" height="56" viewBox="0 0 24 24" fill="none" stroke="#e8e8e8" stroke-width="2">
335
+ <path d="M3 10l9-7 9 7v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-9z"/>
336
+ <path d="M9 21V12h6v9"/>
337
+ </svg>
338
+ </div>
339
+ <div class="nav-btn">
340
+ <!-- search -->
341
+ <svg width="56" height="56" viewBox="0 0 24 24" fill="none" stroke="#e8e8e8" stroke-width="2">
342
+ <circle cx="10" cy="10" r="6"/>
343
+ <path d="M14.8 14.8L21 21"/>
344
+ </svg>
345
+ </div>
346
+ <div class="nav-btn">
347
+ <!-- profile -->
348
+ <svg width="56" height="56" viewBox="0 0 24 24" fill="none" stroke="#e8e8e8" stroke-width="2">
349
+ <circle cx="12" cy="8" r="4"/>
350
+ <path d="M4 20c2-4 6-6 8-6s6 2 8 6"/>
351
+ </svg>
352
+ </div>
353
+ <div class="nav-btn">
354
+ <!-- settings -->
355
+ <svg width="56" height="56" viewBox="0 0 24 24" fill="none" stroke="#e8e8e8" stroke-width="2">
356
+ <path d="M12 15a3 3 0 1 0 0-6 3 3 0 0 0 0 6z"/>
357
+ <path d="M19.4 15a7.5 7.5 0 0 0 .1-6l2.1-1.3-2-3.4-2.4 1a7.2 7.2 0 0 0-5-2.1l-.6-2.5H10l-.6 2.5a7.2 7.2 0 0 0-5 2.1l-2.4-1-2 3.4 2.1 1.3a7.5 7.5 0 0 0 .1 6L.9 16.3l2 3.4 2.4-1A7.2 7.2 0 0 0 10 21.1l.6 2.5h2.8l.6-2.5a7.2 7.2 0 0 0 5-2.1l2.4 1 2-3.4-2-1.3z" opacity="0.3"/>
358
+ </svg>
359
+ </div>
360
+ </div>
361
+
362
+ </div>
363
+ </body>
364
+ </html>
code/14474/14474_0.html ADDED
@@ -0,0 +1,272 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>UI Render - Tito Puente Search</title>
6
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
9
+ #render-target {
10
+ width: 1080px; height: 2400px;
11
+ position: relative; overflow: hidden;
12
+ background: #121212; border-radius: 36px;
13
+ box-shadow: 0 20px 60px rgba(0,0,0,0.35);
14
+ color: #FFFFFF;
15
+ }
16
+
17
+ /* Status bar */
18
+ .status-bar {
19
+ height: 100px; padding: 0 36px;
20
+ display: flex; align-items: center; justify-content: space-between;
21
+ color: #fff; font-weight: 600; font-size: 36px;
22
+ }
23
+ .status-icons { display: flex; align-items: center; gap: 24px; opacity: 0.85; }
24
+ .status-icons svg { width: 40px; height: 40px; fill: none; stroke: #fff; stroke-width: 3; }
25
+
26
+ /* Header */
27
+ .header {
28
+ height: 140px;
29
+ display: flex; align-items: center;
30
+ padding: 0 36px; gap: 28px;
31
+ }
32
+ .header-title { font-size: 48px; font-weight: 700; flex: 1; }
33
+ .icon-btn { width: 72px; height: 72px; display: flex; align-items: center; justify-content: center; }
34
+ .icon-btn svg { width: 48px; height: 48px; fill: none; stroke: #fff; stroke-width: 4; }
35
+
36
+ /* Tabs */
37
+ .tabs { padding: 18px 24px 8px 24px; display: flex; gap: 18px; overflow: hidden; }
38
+ .pill {
39
+ padding: 20px 32px; border-radius: 999px;
40
+ border: 1px solid #3A3A3A; color: #fff; font-size: 32px; line-height: 1;
41
+ white-space: nowrap;
42
+ }
43
+ .pill.active { background: #1DB954; border-color: #1DB954; font-weight: 700; }
44
+
45
+ /* Horizontal cards */
46
+ .cards { padding: 24px 24px 8px 24px; display: flex; gap: 24px; }
47
+ .card { width: 320px; }
48
+ .img {
49
+ background: #E0E0E0; border: 1px solid #BDBDBD; color: #757575;
50
+ display: flex; align-items: center; justify-content: center; text-align: center;
51
+ }
52
+ .card .img { width: 320px; height: 180px; border-radius: 12px; }
53
+ .card-title { margin-top: 14px; font-size: 32px; font-weight: 600; color: #fff; }
54
+
55
+ /* List */
56
+ .list { padding: 18px 24px 0 24px; }
57
+ .list-item {
58
+ display: flex; align-items: center;
59
+ padding: 18px 12px; gap: 28px;
60
+ }
61
+ .thumb-square { width: 120px; height: 120px; border-radius: 8px; }
62
+ .thumb-circle { width: 120px; height: 120px; border-radius: 50%; }
63
+ .li-text { flex: 1; }
64
+ .li-title { font-size: 40px; font-weight: 700; color: #fff; }
65
+ .li-sub { margin-top: 8px; font-size: 30px; color: #B3B3B3; }
66
+ .ellipsis { width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; }
67
+ .ellipsis svg { width: 16px; height: 40px; fill: #B3B3B3; }
68
+
69
+ /* Mini player */
70
+ .mini-player {
71
+ position: absolute; left: 24px; right: 24px; bottom: 180px;
72
+ background: #163447; border-radius: 24px;
73
+ padding: 18px; display: flex; align-items: center; gap: 24px;
74
+ }
75
+ .mini-player .img { width: 120px; height: 120px; border-radius: 12px; }
76
+ .mp-text { flex: 1; }
77
+ .mp-title { font-size: 36px; font-weight: 700; }
78
+ .mp-sub { margin-top: 6px; font-size: 28px; color: #B3B3B3; }
79
+ .mp-actions { display: flex; align-items: center; gap: 24px; }
80
+ .mp-actions .icon { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; }
81
+ .mp-actions svg { width: 40px; height: 40px; stroke: #fff; fill: none; stroke-width: 3; }
82
+
83
+ /* Bottom navigation */
84
+ .bottom-nav {
85
+ position: absolute; left: 0; right: 0; bottom: 60px;
86
+ height: 120px; display: flex; align-items: center; justify-content: space-around;
87
+ padding: 0 24px;
88
+ }
89
+ .nav-item { display: flex; align-items: center; flex-direction: column; gap: 8px; color: #B3B3B3; font-size: 26px; }
90
+ .nav-item.active { color: #fff; }
91
+ .nav-item svg { width: 48px; height: 48px; stroke: currentColor; fill: none; stroke-width: 3.5; }
92
+ .home-indicator {
93
+ position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
94
+ width: 220px; height: 12px; background: #2A2A2A; border-radius: 12px;
95
+ }
96
+ </style>
97
+ </head>
98
+ <body>
99
+ <div id="render-target">
100
+
101
+ <!-- Status Bar -->
102
+ <div class="status-bar">
103
+ <div>10:53</div>
104
+ <div class="status-icons">
105
+ <!-- Wi-Fi -->
106
+ <svg viewBox="0 0 24 24"><path d="M2 8c5-4 15-4 20 0"/><path d="M5 11c4-3 10-3 14 0"/><path d="M8 14c3-2 5-2 8 0"/><circle cx="12" cy="18" r="1.6" fill="#fff"/></svg>
107
+ <!-- Signal -->
108
+ <svg viewBox="0 0 24 24"><rect x="2" y="14" width="3" height="8" fill="#fff"/><rect x="8" y="12" width="3" height="10" fill="#fff"/><rect x="14" y="8" width="3" height="14" fill="#fff"/><rect x="20" y="4" width="2" height="18" fill="#fff"/></svg>
109
+ <!-- Battery -->
110
+ <svg viewBox="0 0 30 18"><rect x="1" y="3" width="24" height="12" rx="2" stroke="#fff"/><rect x="3" y="5" width="18" height="8" fill="#fff"/><rect x="26" y="6" width="3" height="6" rx="1" fill="#fff"/></svg>
111
+ </div>
112
+ </div>
113
+
114
+ <!-- Search Header -->
115
+ <div class="header">
116
+ <div class="icon-btn">
117
+ <svg viewBox="0 0 24 24"><path d="M15 5l-7 7 7 7"/></svg>
118
+ </div>
119
+ <div class="header-title">Tito puente songs</div>
120
+ <div class="icon-btn">
121
+ <svg viewBox="0 0 24 24"><path d="M6 6l12 12M18 6L6 18"/></svg>
122
+ </div>
123
+ </div>
124
+
125
+ <!-- Tabs -->
126
+ <div class="tabs">
127
+ <div class="pill active">Top</div>
128
+ <div class="pill">Artists</div>
129
+ <div class="pill">Songs</div>
130
+ <div class="pill">Playlists</div>
131
+ <div class="pill">Albums</div>
132
+ </div>
133
+
134
+ <!-- Horizontal Cards -->
135
+ <div class="cards">
136
+ <div class="card">
137
+ <div class="img">[IMG: This Is Tito Puente - Playlist Cover]</div>
138
+ <div class="card-title">This Is Tito Puente</div>
139
+ </div>
140
+ <div class="card">
141
+ <div class="img">[IMG: Tito Puente Radio - Station Banner]</div>
142
+ <div class="card-title">Tito Puente Radio</div>
143
+ </div>
144
+ <div class="card">
145
+ <div class="img">[IMG: 100 Latin Classics - Compilation Art]</div>
146
+ <div class="card-title">100 Latin Classics</div>
147
+ </div>
148
+ </div>
149
+
150
+ <!-- Results List -->
151
+ <div class="list">
152
+ <!-- Artist -->
153
+ <div class="list-item">
154
+ <div class="img thumb-circle">[IMG: Artist Photo]</div>
155
+ <div class="li-text">
156
+ <div class="li-title">Sophy</div>
157
+ <div class="li-sub">Artist</div>
158
+ </div>
159
+ </div>
160
+
161
+ <!-- Playlist -->
162
+ <div class="list-item">
163
+ <div class="img thumb-square">[IMG: Marvel Series Soundtrack Playlist]</div>
164
+ <div class="li-text">
165
+ <div class="li-title">I am Groot: A Playlist Inspired by the Marvel Studios Series Soundtrack (Season 1 &amp; 2)</div>
166
+ <div class="li-sub">Playlist</div>
167
+ </div>
168
+ </div>
169
+
170
+ <!-- Song -->
171
+ <div class="list-item">
172
+ <div class="img thumb-square">[IMG: Ran Kan Kan - Single Art]</div>
173
+ <div class="li-text">
174
+ <div class="li-title">Ran Kan Kan</div>
175
+ <div class="li-sub">Song • Tito Puente</div>
176
+ </div>
177
+ <div class="ellipsis">
178
+ <svg viewBox="0 0 6 18"><circle cx="3" cy="3" r="2.2"/><circle cx="3" cy="9" r="2.2"/><circle cx="3" cy="15" r="2.2"/></svg>
179
+ </div>
180
+ </div>
181
+
182
+ <!-- Song -->
183
+ <div class="list-item">
184
+ <div class="img thumb-square">[IMG: Mambo Gozon - Single Art]</div>
185
+ <div class="li-text">
186
+ <div class="li-title">Mambo Gozon</div>
187
+ <div class="li-sub">Song • Tito Puente</div>
188
+ </div>
189
+ </div>
190
+
191
+ <!-- Album -->
192
+ <div class="list-item">
193
+ <div class="img thumb-square">[IMG: Tito Puente Swings &amp; Vicentico Valdés - Album Art]</div>
194
+ <div class="li-text">
195
+ <div class="li-title">Tito Puente Swings &amp; Vicentico Valdés Sin...</div>
196
+ <div class="li-sub">Album • Tito Puente, Vicentico Valdés</div>
197
+ </div>
198
+ </div>
199
+
200
+ <!-- Episode -->
201
+ <div class="list-item">
202
+ <div class="img thumb-square">[IMG: Podcast Episode Cover]</div>
203
+ <div class="li-text">
204
+ <div class="li-title">T6 - Ep 5. NO ME VAYAS A ENGAÑAR — Celia Cruz y Adalberto Santiago con Tito ...</div>
205
+ <div class="li-sub">Episode • 3 mins • ASÍ LA ESCUCHÉ YO... • Oct 11, 2022</div>
206
+ </div>
207
+ </div>
208
+
209
+ <!-- Song -->
210
+ <div class="list-item">
211
+ <div class="img thumb-square">[IMG: Guaguanco Pueblo Nuevo - Live - Cover]</div>
212
+ <div class="li-text">
213
+ <div class="li-title">Guaguanco Pueblo Nuevo - Live</div>
214
+ <div class="li-sub">Song • Tito Puente</div>
215
+ </div>
216
+ <div class="ellipsis">
217
+ <svg viewBox="0 0 6 18"><circle cx="3" cy="3" r="2.2"/><circle cx="3" cy="9" r="2.2"/><circle cx="3" cy="15" r="2.2"/></svg>
218
+ </div>
219
+ </div>
220
+ </div>
221
+
222
+ <!-- Mini Player -->
223
+ <div class="mini-player">
224
+ <div class="img">[IMG: Nagada Nagada - Track Art]</div>
225
+ <div class="mp-text">
226
+ <div class="mp-title">Nagada Nagada</div>
227
+ <div class="mp-sub">Pritam</div>
228
+ </div>
229
+ <div class="mp-actions">
230
+ <!-- Connect device -->
231
+ <div class="icon">
232
+ <svg viewBox="0 0 24 24">
233
+ <rect x="2" y="5" width="16" height="12" rx="2"></rect>
234
+ <rect x="6" y="17" width="8" height="2"></rect>
235
+ <rect x="20" y="9" width="2" height="4"></rect>
236
+ </svg>
237
+ </div>
238
+ <!-- Add -->
239
+ <div class="icon">
240
+ <svg viewBox="0 0 24 24"><path d="M12 5v14M5 12h14"/></svg>
241
+ </div>
242
+ <!-- Play -->
243
+ <div class="icon">
244
+ <svg viewBox="0 0 24 24"><polygon points="7,5 19,12 7,19" fill="#fff" stroke="none"/></svg>
245
+ </div>
246
+ </div>
247
+ </div>
248
+
249
+ <!-- Bottom Navigation -->
250
+ <div class="bottom-nav">
251
+ <div class="nav-item">
252
+ <svg viewBox="0 0 24 24"><path d="M3 11l9-7 9 7v9H7v-6H3z"/></svg>
253
+ <div>Home</div>
254
+ </div>
255
+ <div class="nav-item active">
256
+ <svg viewBox="0 0 24 24"><circle cx="11" cy="11" r="7"/><path d="M21 21l-4-4"/></svg>
257
+ <div>Search</div>
258
+ </div>
259
+ <div class="nav-item">
260
+ <svg viewBox="0 0 24 24"><rect x="4" y="4" width="4" height="16"/><rect x="10" y="8" width="4" height="12"/><rect x="16" y="12" width="4" height="8"/></svg>
261
+ <div>Your Library</div>
262
+ </div>
263
+ <div class="nav-item">
264
+ <svg viewBox="0 0 24 24"><circle cx="12" cy="12" r="9"/><path d="M8 9c3-2 7-2 10 0" stroke-linecap="round"/></svg>
265
+ <div>Premium</div>
266
+ </div>
267
+ </div>
268
+ <div class="home-indicator"></div>
269
+
270
+ </div>
271
+ </body>
272
+ </html>
code/14474/14474_1.html ADDED
@@ -0,0 +1,411 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>Spotify Style Search - Tito Puente</title>
6
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; }
9
+ #render-target {
10
+ width: 1080px;
11
+ height: 2400px;
12
+ position: relative;
13
+ overflow: hidden;
14
+ background: #121212;
15
+ color: #FFFFFF;
16
+ }
17
+
18
+ /* Status bar */
19
+ .status-bar {
20
+ height: 110px;
21
+ padding: 0 40px;
22
+ display: flex;
23
+ align-items: center;
24
+ justify-content: space-between;
25
+ color: #EDEDED;
26
+ font-size: 34px;
27
+ }
28
+ .status-right {
29
+ display: flex;
30
+ align-items: center;
31
+ gap: 26px;
32
+ }
33
+ .status-icon {
34
+ width: 34px; height: 34px;
35
+ }
36
+ /* Header search bar */
37
+ .header {
38
+ height: 140px;
39
+ display: flex;
40
+ align-items: center;
41
+ padding: 0 30px;
42
+ }
43
+ .header .title {
44
+ font-size: 48px;
45
+ font-weight: 600;
46
+ margin-left: 18px;
47
+ flex: 1;
48
+ }
49
+ .icon-btn {
50
+ width: 72px; height: 72px;
51
+ display: flex; align-items: center; justify-content: center;
52
+ }
53
+ .icon-btn svg { width: 44px; height: 44px; stroke: #FFFFFF; fill: none; stroke-width: 4; }
54
+
55
+ /* Filter pills */
56
+ .filters {
57
+ display: flex;
58
+ gap: 20px;
59
+ padding: 0 30px;
60
+ height: 110px;
61
+ align-items: center;
62
+ }
63
+ .pill {
64
+ padding: 20px 30px;
65
+ border-radius: 50px;
66
+ border: 2px solid #3A3A3A;
67
+ color: #FFFFFF;
68
+ font-size: 32px;
69
+ }
70
+ .pill.active {
71
+ background: #1DB954;
72
+ border-color: #1DB954;
73
+ color: #000;
74
+ font-weight: 700;
75
+ }
76
+
77
+ /* Horizontal cards */
78
+ .cards-row {
79
+ display: flex;
80
+ gap: 26px;
81
+ padding: 20px 30px 10px 30px;
82
+ }
83
+ .card {
84
+ width: 330px;
85
+ }
86
+ .card .img {
87
+ width: 330px; height: 200px;
88
+ background: #E0E0E0;
89
+ border: 1px solid #BDBDBD;
90
+ display: flex; align-items: center; justify-content: center;
91
+ color: #757575; font-size: 28px;
92
+ border-radius: 6px;
93
+ overflow: hidden;
94
+ }
95
+ .card .label {
96
+ margin-top: 18px;
97
+ color: #EDEDED;
98
+ font-size: 30px;
99
+ }
100
+
101
+ /* List results */
102
+ .list {
103
+ padding: 20px 10px 0 10px;
104
+ }
105
+ .item {
106
+ display: flex;
107
+ align-items: center;
108
+ padding: 24px 20px;
109
+ }
110
+ .thumb {
111
+ width: 120px; height: 120px; border-radius: 6px;
112
+ background: #E0E0E0; border: 1px solid #BDBDBD;
113
+ display: flex; align-items: center; justify-content: center;
114
+ color: #757575; font-size: 24px;
115
+ overflow: hidden;
116
+ }
117
+ .thumb.round { border-radius: 60px; }
118
+ .text {
119
+ flex: 1;
120
+ margin-left: 24px;
121
+ }
122
+ .title {
123
+ font-size: 38px;
124
+ line-height: 1.25;
125
+ color: #FFFFFF;
126
+ }
127
+ .title.green { color: #1DB954; font-weight: 700; }
128
+ .subtitle {
129
+ margin-top: 8px;
130
+ font-size: 28px;
131
+ color: #B3B3B3;
132
+ }
133
+ .dots {
134
+ width: 60px; height: 60px; display: flex; align-items: center; justify-content: center;
135
+ }
136
+ .dots svg { width: 14px; height: 40px; fill: #B3B3B3; }
137
+
138
+ /* Now playing bar */
139
+ .player {
140
+ position: absolute;
141
+ left: 20px; right: 20px; bottom: 210px;
142
+ height: 150px;
143
+ background: #2E2E2E;
144
+ border-radius: 26px;
145
+ padding: 18px 24px;
146
+ display: flex; align-items: center;
147
+ gap: 24px;
148
+ }
149
+ .player .thumb { width: 110px; height: 110px; border-radius: 10px; }
150
+ .player .info .title { font-size: 34px; }
151
+ .player .info .subtitle { font-size: 26px; }
152
+ .player .controls {
153
+ margin-left: auto;
154
+ display: flex; align-items: center; gap: 26px;
155
+ }
156
+ .control-btn svg { width: 42px; height: 42px; fill: none; stroke: #FFFFFF; stroke-width: 4; }
157
+
158
+ /* Bottom navigation */
159
+ .nav {
160
+ position: absolute;
161
+ bottom: 0; left: 0; right: 0;
162
+ height: 200px;
163
+ background: #121212;
164
+ border-top: 1px solid #1E1E1E;
165
+ display: flex; align-items: center; justify-content: space-around;
166
+ padding-bottom: 20px;
167
+ }
168
+ .nav-item {
169
+ display: flex; flex-direction: column; align-items: center; justify-content: center;
170
+ gap: 10px;
171
+ color: #DADADA;
172
+ }
173
+ .nav-item.active { color: #FFFFFF; }
174
+ .nav-item svg { width: 48px; height: 48px; fill: none; stroke: currentColor; stroke-width: 4; }
175
+ .nav-item .label { font-size: 26px; }
176
+ .home-indicator {
177
+ position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
178
+ width: 320px; height: 10px; background: #FFFFFF33; border-radius: 6px;
179
+ }
180
+ </style>
181
+ </head>
182
+ <body>
183
+ <div id="render-target">
184
+
185
+ <!-- Status bar -->
186
+ <div class="status-bar">
187
+ <div class="time">10:53</div>
188
+ <div class="status-right">
189
+ <svg class="status-icon" viewBox="0 0 24 24">
190
+ <circle cx="12" cy="12" r="10" stroke="#EDEDED" stroke-width="2" fill="none"></circle>
191
+ </svg>
192
+ <svg class="status-icon" viewBox="0 0 24 24">
193
+ <path d="M3 16c3-4 7-4 10 0" stroke="#EDEDED" stroke-width="2" fill="none" stroke-linecap="round"></path>
194
+ </svg>
195
+ <svg class="status-icon" viewBox="0 0 24 24">
196
+ <rect x="2" y="6" width="16" height="12" rx="2" stroke="#EDEDED" stroke-width="2" fill="none"></rect>
197
+ <rect x="19" y="10" width="3" height="4" fill="#EDEDED"></rect>
198
+ </svg>
199
+ </div>
200
+ </div>
201
+
202
+ <!-- Header -->
203
+ <div class="header">
204
+ <div class="icon-btn">
205
+ <svg viewBox="0 0 24 24">
206
+ <path d="M15 19L8 12l7-7" stroke-linecap="round" stroke-linejoin="round"></path>
207
+ </svg>
208
+ </div>
209
+ <div class="title">Tito puente songs</div>
210
+ <div class="icon-btn">
211
+ <svg viewBox="0 0 24 24">
212
+ <path d="M5 5l14 14M19 5L5 19" stroke-linecap="round"></path>
213
+ </svg>
214
+ </div>
215
+ </div>
216
+
217
+ <!-- Filters -->
218
+ <div class="filters">
219
+ <div class="pill active">Top</div>
220
+ <div class="pill">Artists</div>
221
+ <div class="pill">Songs</div>
222
+ <div class="pill">Playlists</div>
223
+ <div class="pill">Albums</div>
224
+ </div>
225
+
226
+ <!-- Cards -->
227
+ <div class="cards-row">
228
+ <div class="card">
229
+ <div class="img">[IMG: Tito Puente Collection]</div>
230
+ <div class="label">This Is Tito Puente</div>
231
+ </div>
232
+ <div class="card">
233
+ <div class="img">[IMG: Tito Puente Radio Banner]</div>
234
+ <div class="label">Tito Puente Radio</div>
235
+ </div>
236
+ <div class="card">
237
+ <div class="img">[IMG: 100 Latin Classics]</div>
238
+ <div class="label">100 Latin Classics</div>
239
+ </div>
240
+ </div>
241
+
242
+ <!-- Results List -->
243
+ <div class="list">
244
+
245
+ <div class="item">
246
+ <div class="thumb round">[IMG: User Avatar]</div>
247
+ <div class="text">
248
+ <div class="title">Sophy</div>
249
+ <div class="subtitle">Artist</div>
250
+ </div>
251
+ <div class="dots">
252
+ <svg viewBox="0 0 6 24">
253
+ <circle cx="3" cy="4" r="2"></circle>
254
+ <circle cx="3" cy="12" r="2"></circle>
255
+ <circle cx="3" cy="20" r="2"></circle>
256
+ </svg>
257
+ </div>
258
+ </div>
259
+
260
+ <div class="item">
261
+ <div class="thumb">[IMG: Playlist Cover]</div>
262
+ <div class="text">
263
+ <div class="title">I am Groot: A Playlist Inspired by the Marvel Studios Series Soundtrack (Season 1 &amp; 2)</div>
264
+ <div class="subtitle">Playlist</div>
265
+ </div>
266
+ <div class="dots">
267
+ <svg viewBox="0 0 6 24">
268
+ <circle cx="3" cy="4" r="2"></circle>
269
+ <circle cx="3" cy="12" r="2"></circle>
270
+ <circle cx="3" cy="20" r="2"></circle>
271
+ </svg>
272
+ </div>
273
+ </div>
274
+
275
+ <div class="item">
276
+ <div class="thumb">[IMG: Best 50s Songs Cover]</div>
277
+ <div class="text">
278
+ <div class="title green">Ran Kan Kan</div>
279
+ <div class="subtitle">Song • Tito Puente</div>
280
+ </div>
281
+ <div class="dots">
282
+ <svg viewBox="0 0 6 24">
283
+ <circle cx="3" cy="4" r="2"></circle>
284
+ <circle cx="3" cy="12" r="2"></circle>
285
+ <circle cx="3" cy="20" r="2"></circle>
286
+ </svg>
287
+ </div>
288
+ </div>
289
+
290
+ <div class="item">
291
+ <div class="thumb">[IMG: Tito Puente Live]</div>
292
+ <div class="text">
293
+ <div class="title">Mambo Gozon</div>
294
+ <div class="subtitle">Song • Tito Puente</div>
295
+ </div>
296
+ <div class="dots">
297
+ <svg viewBox="0 0 6 24">
298
+ <circle cx="3" cy="4" r="2"></circle>
299
+ <circle cx="3" cy="12" r="2"></circle>
300
+ <circle cx="3" cy="20" r="2"></circle>
301
+ </svg>
302
+ </div>
303
+ </div>
304
+
305
+ <div class="item">
306
+ <div class="thumb">[IMG: Album Artwork]</div>
307
+ <div class="text">
308
+ <div class="title">Tito Puente Swings &amp; Vicentico Valdés Singles</div>
309
+ <div class="subtitle">Album • Tito Puente, Vicentico Valdés</div>
310
+ </div>
311
+ <div class="dots">
312
+ <svg viewBox="0 0 6 24">
313
+ <circle cx="3" cy="4" r="2"></circle>
314
+ <circle cx="3" cy="12" r="2"></circle>
315
+ <circle cx="3" cy="20" r="2"></circle>
316
+ </svg>
317
+ </div>
318
+ </div>
319
+
320
+ <div class="item">
321
+ <div class="thumb">[IMG: Podcast Episode]</div>
322
+ <div class="text">
323
+ <div class="title">T6 - Ep 5. NO ME VAYAS A ENGAÑAR – Celia Cruz y Adalberto Santiago con Tito Puente</div>
324
+ <div class="subtitle">Episode • 3 mins • ASÍ LA ESCUCHÉ YO… • Oct 11, 2022</div>
325
+ </div>
326
+ <div class="dots">
327
+ <svg viewBox="0 0 6 24">
328
+ <circle cx="3" cy="4" r="2"></circle>
329
+ <circle cx="3" cy="12" r="2"></circle>
330
+ <circle cx="3" cy="20" r="2"></circle>
331
+ </svg>
332
+ </div>
333
+ </div>
334
+
335
+ <div class="item">
336
+ <div class="thumb">[IMG: Archive Album]</div>
337
+ <div class="text">
338
+ <div class="title">Guaguanco Pueblo Nuevo - Live</div>
339
+ <div class="subtitle">Song • Tito Puente</div>
340
+ </div>
341
+ <div class="dots">
342
+ <svg viewBox="0 0 6 24">
343
+ <circle cx="3" cy="4" r="2"></circle>
344
+ <circle cx="3" cy="12" r="2"></circle>
345
+ <circle cx="3" cy="20" r="2"></circle>
346
+ </svg>
347
+ </div>
348
+ </div>
349
+
350
+ </div>
351
+
352
+ <!-- Now Playing -->
353
+ <div class="player">
354
+ <div class="thumb">[IMG: Best 50s Songs Cover]</div>
355
+ <div class="info">
356
+ <div class="title">Ran Kan Kan</div>
357
+ <div class="subtitle">Tito Puente</div>
358
+ </div>
359
+ <div class="controls">
360
+ <div class="control-btn" title="Connect">
361
+ <svg viewBox="0 0 24 24">
362
+ <rect x="3" y="6" width="14" height="10" rx="2"></rect>
363
+ <path d="M18 10h3v2h-3" stroke-linecap="round"></path>
364
+ </svg>
365
+ </div>
366
+ <div class="control-btn" title="Add">
367
+ <svg viewBox="0 0 24 24">
368
+ <path d="M12 5v14M5 12h14" stroke-linecap="round"></path>
369
+ </svg>
370
+ </div>
371
+ <div class="control-btn" title="Pause">
372
+ <svg viewBox="0 0 24 24">
373
+ <path d="M8 5h3v14H8M13 5h3v14h-3"></path>
374
+ </svg>
375
+ </div>
376
+ </div>
377
+ </div>
378
+
379
+ <!-- Bottom Navigation -->
380
+ <div class="nav">
381
+ <div class="nav-item">
382
+ <svg viewBox="0 0 24 24">
383
+ <path d="M4 10l8-6 8 6v8a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2v-4H6a2 2 0 0 1-2-2v-4z" stroke-linejoin="round"></path>
384
+ </svg>
385
+ <div class="label">Home</div>
386
+ </div>
387
+ <div class="nav-item active">
388
+ <svg viewBox="0 0 24 24">
389
+ <circle cx="11" cy="11" r="7"></circle>
390
+ <path d="M20 20l-4-4"></path>
391
+ </svg>
392
+ <div class="label">Search</div>
393
+ </div>
394
+ <div class="nav-item">
395
+ <svg viewBox="0 0 24 24">
396
+ <rect x="3" y="4" width="5" height="16"></rect>
397
+ <rect x="10" y="7" width="5" height="13"></rect>
398
+ <rect x="17" y="10" width="4" height="10"></rect>
399
+ </svg>
400
+ <div class="label">Your Library</div>
401
+ </div>
402
+ <div class="nav-item">
403
+ <div style="font-size:46px; line-height:1;">♪</div>
404
+ <div class="label">Premium</div>
405
+ </div>
406
+ <div class="home-indicator"></div>
407
+ </div>
408
+
409
+ </div>
410
+ </body>
411
+ </html>
code/14477/14477_0.html ADDED
@@ -0,0 +1,287 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Video Detail - Dark UI</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; }
9
+ #render-target {
10
+ width: 1080px;
11
+ height: 2400px;
12
+ position: relative;
13
+ overflow: hidden;
14
+ background: #0f0f0f;
15
+ color: #ffffff;
16
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
17
+ }
18
+
19
+ /* Status bar */
20
+ .status-bar {
21
+ height: 110px;
22
+ padding: 0 32px;
23
+ display: flex;
24
+ align-items: center;
25
+ justify-content: space-between;
26
+ background: #111111;
27
+ box-sizing: border-box;
28
+ font-weight: 600;
29
+ letter-spacing: 1px;
30
+ }
31
+ .status-left { font-size: 36px; }
32
+ .status-right { display: flex; gap: 22px; align-items: center; }
33
+ .status-dot {
34
+ width: 10px; height: 10px; background: #cfcfcf; border-radius: 50%;
35
+ opacity: 0.7;
36
+ }
37
+
38
+ /* Toolbar */
39
+ .toolbar {
40
+ height: 96px;
41
+ display: flex;
42
+ align-items: center;
43
+ padding: 0 24px;
44
+ box-sizing: border-box;
45
+ background: #111111;
46
+ }
47
+ .icon-btn {
48
+ width: 84px; height: 84px;
49
+ display: flex; align-items: center; justify-content: center;
50
+ border-radius: 16px;
51
+ }
52
+ .icon-btn svg { width: 44px; height: 44px; fill: #ffffff; }
53
+
54
+ /* Media placeholder */
55
+ .media {
56
+ width: 100%;
57
+ height: 620px;
58
+ position: relative;
59
+ background: #E0E0E0;
60
+ border: 1px solid #BDBDBD;
61
+ display: flex; align-items: center; justify-content: center;
62
+ color: #757575;
63
+ font-size: 40px;
64
+ box-sizing: border-box;
65
+ }
66
+ .media-caption {
67
+ position: absolute;
68
+ bottom: 0;
69
+ left: 0;
70
+ right: 0;
71
+ height: 80px;
72
+ background: #000000;
73
+ display: flex; align-items: center; justify-content: center;
74
+ color: #ffeb3b;
75
+ font-weight: 700;
76
+ font-size: 44px;
77
+ letter-spacing: 1px;
78
+ }
79
+
80
+ /* Title */
81
+ .title {
82
+ padding: 28px 32px 8px 32px;
83
+ box-sizing: border-box;
84
+ font-size: 44px;
85
+ line-height: 1.25;
86
+ font-weight: 700;
87
+ }
88
+
89
+ /* Action row */
90
+ .actions {
91
+ padding: 16px 24px 0 24px;
92
+ display: flex;
93
+ justify-content: space-around;
94
+ align-items: center;
95
+ }
96
+ .action {
97
+ width: 160px; height: 120px;
98
+ display: flex; align-items: center; justify-content: center;
99
+ }
100
+ .action svg { width: 60px; height: 60px; }
101
+ .action.flag svg { fill: #ff5a5a; }
102
+
103
+ .action-counts {
104
+ display: grid;
105
+ grid-template-columns: repeat(5, 1fr);
106
+ padding: 4px 24px 0 24px;
107
+ color: #bdbdbd;
108
+ font-size: 28px;
109
+ }
110
+ .action-counts div { text-align: center; }
111
+
112
+ .divider {
113
+ height: 1px;
114
+ background: #2b2b2b;
115
+ margin: 24px 24px 0 24px;
116
+ }
117
+
118
+ /* Author row */
119
+ .author {
120
+ display: flex;
121
+ align-items: center;
122
+ gap: 24px;
123
+ padding: 24px 32px 0 32px;
124
+ box-sizing: border-box;
125
+ }
126
+ .avatar {
127
+ width: 96px; height: 96px; border-radius: 50%;
128
+ background: #E0E0E0; border: 1px solid #BDBDBD;
129
+ display: flex; align-items: center; justify-content: center;
130
+ color: #757575; font-size: 22px; text-align: center; line-height: 1.1;
131
+ }
132
+ .author-name {
133
+ font-size: 36px; font-weight: 700;
134
+ }
135
+ .follow-btn {
136
+ margin-left: auto;
137
+ background: #f1f5cf;
138
+ color: #111;
139
+ padding: 16px 28px;
140
+ border-radius: 18px;
141
+ font-weight: 700;
142
+ font-size: 30px;
143
+ }
144
+ .meta {
145
+ padding: 8px 32px 0 152px;
146
+ color: #9e9e9e;
147
+ font-size: 30px;
148
+ }
149
+
150
+ /* Recommendations */
151
+ .section-title {
152
+ padding: 36px 32px 16px 32px;
153
+ font-size: 42px; font-weight: 800;
154
+ }
155
+ .card {
156
+ display: flex;
157
+ gap: 28px;
158
+ padding: 8px 32px 0 32px;
159
+ box-sizing: border-box;
160
+ align-items: flex-start;
161
+ }
162
+ .thumb {
163
+ width: 320px; height: 320px; border-radius: 36px;
164
+ background: #E0E0E0; border: 1px solid #BDBDBD;
165
+ position: relative; overflow: hidden;
166
+ display: flex; align-items: center; justify-content: center;
167
+ color: #757575; font-size: 28px; text-align: center; padding: 10px;
168
+ box-sizing: border-box;
169
+ }
170
+ .time-badge {
171
+ position: absolute;
172
+ bottom: 14px; left: 14px;
173
+ background: rgba(0,0,0,0.75);
174
+ color: #fff;
175
+ padding: 8px 12px;
176
+ border-radius: 12px;
177
+ font-size: 26px;
178
+ }
179
+ .card-title {
180
+ font-size: 40px; font-weight: 800; line-height: 1.25;
181
+ }
182
+ .card-sub {
183
+ margin-top: 10px; font-size: 32px; color: #a7a7a7;
184
+ }
185
+
186
+ /* Home indicator */
187
+ .home-indicator {
188
+ position: absolute;
189
+ left: 50%;
190
+ bottom: 22px;
191
+ transform: translateX(-50%);
192
+ width: 300px;
193
+ height: 10px;
194
+ background: #ffffff;
195
+ opacity: 0.9;
196
+ border-radius: 10px;
197
+ }
198
+ </style>
199
+ </head>
200
+ <body>
201
+ <div id="render-target">
202
+
203
+ <!-- Status Bar -->
204
+ <div class="status-bar">
205
+ <div class="status-left">11:07</div>
206
+ <div class="status-right">
207
+ <!-- Minimal system-like icons -->
208
+ <svg width="36" height="36" viewBox="0 0 24 24"><path fill="#e6e6e6" d="M7 2h10v2H7zM5 6h14v2H5zM3 10h18v2H3z"/></svg>
209
+ <svg width="36" height="36" viewBox="0 0 24 24"><path fill="#e6e6e6" d="M3 18h18l-9-12z"/></svg>
210
+ <svg width="36" height="36" viewBox="0 0 24 24"><path fill="#e6e6e6" d="M12 2a5 5 0 0 0-5 5v4H5v9h14v-9h-2V7a5 5 0 0 0-5-5zm3 9H9V7a3 3 0 0 1 6 0z"/></svg>
211
+ <div class="status-dot"></div>
212
+ <svg width="36" height="36" viewBox="0 0 24 24"><path fill="#e6e6e6" d="M19 18H5a3 3 0 0 1 0-6h1a4 4 0 0 1 7.7-1.6A3.5 3.5 0 0 1 19 13h0a3 3 0 0 1 0 6z"/></svg>
213
+ <svg width="36" height="36" viewBox="0 0 24 24"><circle cx="12" cy="12" r="9" stroke="#e6e6e6" stroke-width="2" fill="none"/><path d="M7 12h10" stroke="#e6e6e6" stroke-width="2"/></svg>
214
+ <svg width="40" height="40" viewBox="0 0 24 24"><path fill="#e6e6e6" d="M16 6v2h1a2 2 0 0 1 2 2v8H5V10a2 2 0 0 1 2-2h1V6h8z"/></svg>
215
+ </div>
216
+ </div>
217
+
218
+ <!-- Toolbar -->
219
+ <div class="toolbar">
220
+ <div class="icon-btn" aria-label="Back">
221
+ <svg viewBox="0 0 24 24"><path d="M15.5 5.5 9 12l6.5 6.5-1.5 1.5L6 12l8-8z"/></svg>
222
+ </div>
223
+ </div>
224
+
225
+ <!-- Main media -->
226
+ <div class="media">
227
+ [IMG: Vintage performance video still]
228
+ <div class="media-caption">Maria CALLAS Casta Diva</div>
229
+ </div>
230
+
231
+ <!-- Title -->
232
+ <div class="title">Maria CALLAS - Casta Diva 1958 - by Guseppe INFANTINO</div>
233
+
234
+ <!-- Actions -->
235
+ <div class="actions">
236
+ <div class="action" aria-label="Like">
237
+ <svg viewBox="0 0 24 24"><path fill="#ffffff" d="M12 21s-6.7-4.4-9.3-7.1A5.3 5.3 0 0 1 12 6.2a5.3 5.3 0 0 1 9.3 7.7C18.7 16.6 12 21 12 21z"/></svg>
238
+ </div>
239
+ <div class="action" aria-label="Save">
240
+ <svg viewBox="0 0 24 24"><path fill="#ffffff" d="M6 2h12v20l-6-3-6 3V2z"/></svg>
241
+ </div>
242
+ <div class="action" aria-label="Download">
243
+ <svg viewBox="0 0 24 24"><path fill="#ffffff" d="M12 3v10l4-4 1.4 1.4L12 17 6.6 10.4 8 9l4 4V3h0zM5 19h14v2H5z"/></svg>
244
+ </div>
245
+ <div class="action" aria-label="Share">
246
+ <svg viewBox="0 0 24 24"><path fill="#ffffff" d="M18 8a3 3 0 1 0-2.8-4H15a3 3 0 0 0 0 6c.3 0 .6 0 .8-.1l-7 3.6A3 3 0 0 0 6 13a3 3 0 1 0 2.2 5l7-3.6c-.1-.3-.2-.7-.2-1 0-.3.1-.7.2-1l-7-3.6A3 3 0 1 0 6 11c.5 0 1 .1 1.4.3l7-3.6C14.2 7.3 14 6.6 14 6a3 3 0 0 0 4-2z"/></svg>
247
+ </div>
248
+ <div class="action flag" aria-label="Report">
249
+ <svg viewBox="0 0 24 24"><path d="M5 3h10l-1 3h5v9h-9l1-3H6v9H5V3z"/></svg>
250
+ </div>
251
+ </div>
252
+ <div class="action-counts">
253
+ <div></div>
254
+ <div>1</div>
255
+ <div></div>
256
+ <div></div>
257
+ <div></div>
258
+ </div>
259
+
260
+ <div class="divider"></div>
261
+
262
+ <!-- Author -->
263
+ <div class="author">
264
+ <div class="avatar">IMG: Avatar</div>
265
+ <div class="author-name">Giuseppe Infantino</div>
266
+ <div class="follow-btn">Following</div>
267
+ </div>
268
+ <div class="meta">12 years ago · opere di Giuseppe INFANTINO</div>
269
+
270
+ <!-- Recommendations -->
271
+ <div class="section-title">Recommendations</div>
272
+ <div class="card">
273
+ <div class="thumb">
274
+ [IMG: Parrot video thumbnail]
275
+ <div class="time-badge">05:49</div>
276
+ </div>
277
+ <div>
278
+ <div class="card-title">PERU' - INTI ILLIMANI - BY GIUSEPPE INFANTINO</div>
279
+ <div class="card-sub">Giuseppe Infantino</div>
280
+ </div>
281
+ </div>
282
+
283
+ <!-- Home indicator -->
284
+ <div class="home-indicator"></div>
285
+ </div>
286
+ </body>
287
+ </html>
code/14477/14477_1.html ADDED
@@ -0,0 +1,323 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1">
6
+ <title>Video Page Mock</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
9
+ #render-target {
10
+ position: relative;
11
+ overflow: hidden;
12
+ width: 1080px;
13
+ height: 2400px;
14
+ background: #0f0f0f;
15
+ color: #fff;
16
+ }
17
+
18
+ /* Status bar */
19
+ .status-bar {
20
+ height: 100px;
21
+ padding: 0 24px;
22
+ display: flex;
23
+ align-items: center;
24
+ justify-content: space-between;
25
+ color: #eaeaea;
26
+ font-weight: 600;
27
+ font-size: 40px;
28
+ }
29
+ .status-icons { display: flex; align-items: center; gap: 26px; }
30
+ .status-dot { width: 12px; height: 12px; background: #cfcfcf; border-radius: 50%; opacity: 0.9; }
31
+ .battery {
32
+ width: 46px; height: 26px; border: 3px solid #cfcfcf; border-radius: 6px; position: relative;
33
+ }
34
+ .battery:after {
35
+ content: ""; position: absolute; right: -10px; top: 6px; width: 6px; height: 14px; background: #cfcfcf; border-radius: 2px;
36
+ }
37
+ .battery-fill { position: absolute; left: 3px; top: 3px; height: 18px; width: 28px; background: #cfcfcf; border-radius: 3px; }
38
+
39
+ /* Video area */
40
+ .video-wrap {
41
+ position: relative;
42
+ width: 1080px;
43
+ height: 720px;
44
+ margin-top: 0px;
45
+ }
46
+ .img-placeholder {
47
+ width: 100%;
48
+ height: 100%;
49
+ background: #E0E0E0;
50
+ border: 1px solid #BDBDBD;
51
+ display: flex;
52
+ align-items: center;
53
+ justify-content: center;
54
+ color: #757575;
55
+ font-size: 36px;
56
+ }
57
+ .v-overlay-top {
58
+ position: absolute; top: 20px; left: 24px; right: 24px;
59
+ display: flex; align-items: center; justify-content: space-between;
60
+ }
61
+ .visit-adv {
62
+ display: flex; align-items: center; gap: 16px; color: #ffffff; font-size: 34px; font-weight: 600;
63
+ }
64
+ .visit-adv .chev {
65
+ width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center;
66
+ }
67
+ .v-right-icons { display: flex; align-items: center; gap: 26px; }
68
+ .icon-btn {
69
+ width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center; opacity: 0.95;
70
+ }
71
+ .play-center {
72
+ position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
73
+ width: 120px; height: 120px; border-radius: 60px; background: rgba(0,0,0,0.45);
74
+ display: flex; align-items: center; justify-content: center;
75
+ }
76
+ .v-bottom {
77
+ position: absolute; bottom: 20px; left: 24px; display: flex; align-items: center; gap: 16px;
78
+ font-size: 32px; color: #ffffff;
79
+ }
80
+ .info-ico { width: 34px; height: 34px; border-radius: 17px; border: 2px solid #ffffff; display: inline-flex; align-items: center; justify-content: center; }
81
+ .pip {
82
+ position: absolute; right: 24px; bottom: 24px; width: 280px; height: 160px; border-radius: 12px; overflow: hidden; box-shadow: 0 8px 24px rgba(0,0,0,0.6);
83
+ }
84
+ .pip .img-placeholder { font-size: 26px; }
85
+ .pip-label {
86
+ position: absolute; bottom: 8px; left: 10px; font-size: 24px; font-weight: 700; background: rgba(0,0,0,0.6); padding: 4px 8px; border-radius: 6px;
87
+ }
88
+ .progress-yellow { height: 6px; background: #FFD54F; }
89
+
90
+ /* Ad row under video */
91
+ .ad-row {
92
+ display: flex; align-items: center;
93
+ padding: 22px 24px;
94
+ gap: 20px;
95
+ }
96
+ .avatar {
97
+ width: 72px; height: 72px; border-radius: 50%;
98
+ background: #E0E0E0; border: 1px solid #BDBDBD;
99
+ display: flex; align-items: center; justify-content: center; color: #757575; font-size: 22px;
100
+ }
101
+ .ad-text { flex: 1; }
102
+ .ad-text .line1 { font-size: 32px; color: #dcdcdc; }
103
+ .ad-text .line2 { font-size: 28px; color: #8f8f8f; margin-top: 4px; }
104
+ .blue-cta {
105
+ background: #2b78ff; color: #fff; border-radius: 36px; padding: 18px 32px; font-size: 32px; font-weight: 700;
106
+ }
107
+ .kebab {
108
+ width: 54px; height: 54px; display: inline-flex; align-items: center; justify-content: center;
109
+ }
110
+
111
+ /* Title & meta */
112
+ .title { padding: 10px 24px 0 24px; font-size: 44px; font-weight: 700; line-height: 1.25; }
113
+ .meta { padding: 6px 24px 0 24px; font-size: 28px; color: #9e9e9e; }
114
+
115
+ /* Channel row */
116
+ .channel-row {
117
+ display: flex; align-items: center; padding: 24px; gap: 20px;
118
+ }
119
+ .channel-name { font-size: 36px; font-weight: 700; }
120
+ .subs { font-size: 28px; color: #9e9e9e; margin-left: 12px; }
121
+ .spacer { flex: 1; }
122
+ .mute-pill {
123
+ display: flex; align-items: center; gap: 12px; border-radius: 30px; background: #1c1c1c; border: 1px solid #2c2c2c; padding: 12px 18px; color: #eaeaea; font-size: 28px;
124
+ }
125
+ .dropdown { margin-left: 12px; width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; }
126
+
127
+ /* Action buttons */
128
+ .actions { padding: 6px 24px 0 24px; display: flex; flex-wrap: nowrap; gap: 18px; }
129
+ .pill {
130
+ display: flex; align-items: center; gap: 14px;
131
+ padding: 18px 26px; border-radius: 36px; background: #1a1a1a; border: 1px solid #303030; color: #eaeaea; font-size: 28px;
132
+ }
133
+
134
+ /* Comments chip */
135
+ .comments-chip {
136
+ margin: 24px; padding: 24px; border-radius: 26px; background: #1a1a1a; border: 1px solid #2e2e2e;
137
+ font-size: 34px; font-weight: 700;
138
+ }
139
+ .comment-preview {
140
+ display: flex; align-items: center; gap: 16px; padding: 12px 24px; color: #cfcfcf; font-size: 28px;
141
+ }
142
+ .avatar-small {
143
+ width: 56px; height: 56px; border-radius: 50%; background: #E0E0E0; border: 1px solid #BDBDBD; display: flex; align-items: center; justify-content: center; color: #757575;
144
+ }
145
+
146
+ /* Banner ad */
147
+ .banner {
148
+ margin: 24px; border-radius: 26px; overflow: hidden; background: #101010; border: 1px solid #2e2e2e;
149
+ }
150
+ .banner .img-placeholder { height: 620px; }
151
+ .banner-bottom {
152
+ display: flex; align-items: center; justify-content: space-between; padding: 22px; background: #111927;
153
+ }
154
+ .shop-btn {
155
+ display: inline-flex; align-items: center; gap: 10px; background: #1a2c45; color: #9ec6ff; padding: 12px 18px; border-radius: 12px; font-size: 32px; font-weight: 700;
156
+ }
157
+
158
+ /* Floating overlay mini-player over banner */
159
+ .floating {
160
+ position: absolute; left: 620px; top: 1460px; width: 420px; height: 420px; border-radius: 34px; background: rgba(0,0,0,0.92);
161
+ overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.6);
162
+ display: flex; align-items: center; justify-content: center;
163
+ }
164
+ .floating .img-placeholder { width: 92%; height: 92%; border-radius: 16px; font-size: 30px; }
165
+
166
+ /* Home indicator */
167
+ .home-indicator {
168
+ position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
169
+ width: 360px; height: 10px; background: #ffffff; border-radius: 6px; opacity: 0.85;
170
+ }
171
+
172
+ /* SVG coloring */
173
+ svg { fill: none; stroke: #ffffff; stroke-width: 3; }
174
+ </style>
175
+ </head>
176
+ <body>
177
+ <div id="render-target">
178
+
179
+ <!-- Status bar -->
180
+ <div class="status-bar">
181
+ <div>11:08</div>
182
+ <div class="status-icons">
183
+ <div class="status-dot"></div>
184
+ <div class="status-dot"></div>
185
+ <div class="status-dot"></div>
186
+ <div class="status-dot"></div>
187
+ <div class="battery"><div class="battery-fill"></div></div>
188
+ </div>
189
+ </div>
190
+
191
+ <!-- Video area -->
192
+ <div class="video-wrap" style="margin-top: 100px;">
193
+ <div class="img-placeholder">[IMG: Video player thumbnail]</div>
194
+
195
+ <div class="v-overlay-top">
196
+ <div class="visit-adv">
197
+ <div class="chev">
198
+ <svg viewBox="0 0 24 24" width="36" height="36"><path d="M15 6l-6 6 6 6"/></svg>
199
+ </div>
200
+ <div>Visit advertiser</div>
201
+ </div>
202
+ <div class="v-right-icons">
203
+ <div class="icon-btn">
204
+ <svg viewBox="0 0 24 24" width="36" height="36"><rect x="4" y="6" width="12" height="10"/><path d="M18 9l3-2v8l-3-2"/></svg>
205
+ </div>
206
+ <div class="icon-btn">
207
+ <svg viewBox="0 0 24 24" width="36" height="36"><rect x="4" y="7" width="16" height="12"/><path d="M7 13h10"/></svg>
208
+ </div>
209
+ <div class="icon-btn">
210
+ <svg viewBox="0 0 24 24" width="36" height="36"><circle cx="12" cy="12" r="8"/><path d="M12 8v4l3 2"/></svg>
211
+ </div>
212
+ <div class="icon-btn">
213
+ <svg viewBox="0 0 24 24" width="36" height="36"><path d="M6 6l12 12M6 18L18 6"/></svg>
214
+ </div>
215
+ </div>
216
+ </div>
217
+
218
+ <div class="play-center">
219
+ <svg viewBox="0 0 24 24" width="64" height="64" style="fill:#ffffff; stroke:none;"><path d="M8 5l12 7-12 7z"/></svg>
220
+ </div>
221
+
222
+ <div class="v-bottom">
223
+ <div class="info-ico">
224
+ <svg viewBox="0 0 24 24" width="22" height="22" style="stroke:#ffffff;"><circle cx="12" cy="12" r="9"/><path d="M12 8h.01M12 12v4"/></svg>
225
+ </div>
226
+ <div>Ad · 1 of 2 · 0:06</div>
227
+ </div>
228
+
229
+ <div class="pip">
230
+ <div class="img-placeholder">[IMG: Mini player preview]</div>
231
+ <div class="pip-label">vevo</div>
232
+ </div>
233
+ </div>
234
+
235
+ <div class="progress-yellow"></div>
236
+
237
+ <!-- Ad row -->
238
+ <div class="ad-row">
239
+ <div class="avatar">Ad</div>
240
+ <div class="ad-text">
241
+ <div class="line1">धूंढेंगे तो मिलेगा</div>
242
+ <div class="line2">Ad · Google.com</div>
243
+ </div>
244
+ <div class="blue-cta">अब देखिये</div>
245
+ <div class="kebab">
246
+ <svg viewBox="0 0 24 24" width="34" height="34"><circle cx="12" cy="5" r="2"/><circle cx="12" cy="12" r="2"/><circle cx="12" cy="19" r="2"/></svg>
247
+ </div>
248
+ </div>
249
+
250
+ <!-- Title & meta -->
251
+ <div class="title">Luciano Pavarotti, James Brown - It's A Man's Man's World (Stereo)</div>
252
+ <div class="meta">92M views · 4y ago · ...more</div>
253
+
254
+ <!-- Channel row -->
255
+ <div class="channel-row">
256
+ <div class="avatar"></div>
257
+ <div style="display:flex; flex-direction:column;">
258
+ <div class="channel-name">Luciano Pavarotti</div>
259
+ <div class="subs">632K</div>
260
+ </div>
261
+ <div class="spacer"></div>
262
+ <div class="mute-pill">
263
+ <svg viewBox="0 0 24 24" width="28" height="28"><path d="M5 10h4l5-4v12l-5-4H5z"/><path d="M16 8l5 5M21 8l-5 5"/></svg>
264
+ <span>Mute</span>
265
+ </div>
266
+ <div class="dropdown">
267
+ <svg viewBox="0 0 24 24" width="28" height="28"><path d="M6 9l6 6 6-6"/></svg>
268
+ </div>
269
+ </div>
270
+
271
+ <!-- Actions -->
272
+ <div class="actions">
273
+ <div class="pill">
274
+ <svg viewBox="0 0 24 24" width="28" height="28"><path d="M10 21V9l4-6 2 4h4v10a4 4 0 0 1-4 4z"/></svg>
275
+ <span>987K</span>
276
+ </div>
277
+ <div class="pill">
278
+ <svg viewBox="0 0 24 24" width="28" height="28"><path d="M14 3v12l-4 6-2-4H4V7a4 4 0 0 1 4-4z"/></svg>
279
+ <span>Dislike</span>
280
+ </div>
281
+ <div class="pill">
282
+ <svg viewBox="0 0 24 24" width="28" height="28"><path d="M4 12h10M10 6l6 6-6 6"/></svg>
283
+ <span>Share</span>
284
+ </div>
285
+ <div class="pill">
286
+ <svg viewBox="0 0 24 24" width="28" height="28"><rect x="4" y="6" width="14" height="12"/><path d="M8 10h6M8 14h6"/></svg>
287
+ <span>Stop ads</span>
288
+ </div>
289
+ <div class="pill">
290
+ <svg viewBox="0 0 24 24" width="28" height="28"><path d="M4 6h6l2 4 2-4h6M8 18h8"/></svg>
291
+ <span>Clip</span>
292
+ </div>
293
+ </div>
294
+
295
+ <!-- Comments -->
296
+ <div class="comments-chip">Comments 30K</div>
297
+ <div class="comment-preview">
298
+ <div class="avatar-small">J</div>
299
+ <div>When you see a Ford Mustang and a Ferrari racing together...</div>
300
+ </div>
301
+
302
+ <!-- Banner ad -->
303
+ <div class="banner">
304
+ <div class="img-placeholder">[IMG: Fashion ad banner – shoes and handbag on pastel background]</div>
305
+ <div class="banner-bottom">
306
+ <div style="color:#cfd8dc; font-size:28px;">Worldwide Shipping · Hassle-Free Returns</div>
307
+ <div class="shop-btn">
308
+ <span>Shop</span>
309
+ <svg viewBox="0 0 24 24" width="28" height="28" style="stroke:#9ec6ff;"><rect x="5" y="5" width="14" height="14"/><path d="M9 9h6v6H9z"/></svg>
310
+ </div>
311
+ </div>
312
+ </div>
313
+
314
+ <!-- Floating overlay mini-player on the banner -->
315
+ <div class="floating">
316
+ <div class="img-placeholder">[IMG: Artwork thumbnail]</div>
317
+ </div>
318
+
319
+ <!-- Home indicator -->
320
+ <div class="home-indicator"></div>
321
+ </div>
322
+ </body>
323
+ </html>
code/14477/14477_2.html ADDED
@@ -0,0 +1,362 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0" />
6
+ <title>Mobile UI Mock</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: Inter, system-ui, -apple-system, Roboto, Arial, sans-serif; }
9
+ #render-target {
10
+ position: relative;
11
+ width: 1080px;
12
+ height: 2400px;
13
+ overflow: hidden;
14
+ background: #0f0f0f;
15
+ color: #fff;
16
+ }
17
+
18
+ /* Status bar */
19
+ .status-bar {
20
+ position: absolute;
21
+ top: 0; left: 0; right: 0;
22
+ height: 110px;
23
+ padding: 0 32px;
24
+ display: flex;
25
+ align-items: center;
26
+ gap: 18px;
27
+ color: #fff;
28
+ font-size: 34px;
29
+ letter-spacing: 0.3px;
30
+ }
31
+ .status-spacer { flex: 1; }
32
+ .sb-icon { width: 34px; height: 34px; opacity: 0.9; }
33
+ .sb-dot { width: 10px; height: 10px; background: #fff; border-radius: 50%; opacity: 0.8; }
34
+
35
+ /* Video area */
36
+ .video-wrap {
37
+ position: absolute;
38
+ top: 110px;
39
+ left: 0;
40
+ width: 1080px;
41
+ height: 608px; /* 16:9 of 1080 */
42
+ }
43
+ .img-ph {
44
+ width: 100%;
45
+ height: 100%;
46
+ background: #E0E0E0;
47
+ border: 1px solid #BDBDBD;
48
+ display: flex;
49
+ align-items: center;
50
+ justify-content: center;
51
+ color: #757575;
52
+ font-weight: 600;
53
+ }
54
+ .video-overlay {
55
+ position: absolute; inset: 0;
56
+ pointer-events: none;
57
+ }
58
+ .ov-row {
59
+ position: absolute; left: 24px; right: 24px; top: 18px;
60
+ display: flex; align-items: center; justify-content: space-between;
61
+ }
62
+ .ov-left {
63
+ display: inline-flex; align-items: center; gap: 14px; background: rgba(0,0,0,0.35);
64
+ padding: 10px 14px; border-radius: 20px; font-size: 28px;
65
+ }
66
+ .ov-right { display: inline-flex; align-items: center; gap: 22px; }
67
+ .ov-ic { width: 40px; height: 40px; }
68
+ .play-center {
69
+ position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
70
+ width: 120px; height: 120px; border-radius: 50%;
71
+ background: rgba(0,0,0,0.45); display: flex; align-items: center; justify-content: center;
72
+ }
73
+ .ad-bottom {
74
+ position: absolute; left: 20px; bottom: 18px; color: #e5e5e5; font-size: 28px; display: flex; gap: 10px; align-items: center;
75
+ text-shadow: 0 1px 2px rgba(0,0,0,0.6);
76
+ }
77
+ .pip-mini {
78
+ position: absolute; right: 20px; top: 210px;
79
+ width: 260px; height: 146px; background: #E0E0E0; border: 1px solid #BDBDBD;
80
+ display: flex; align-items: center; justify-content: center; color: #757575; font-size: 24px;
81
+ }
82
+ .fs-ic {
83
+ position: absolute; right: 18px; bottom: 16px;
84
+ width: 42px; height: 42px; opacity: 0.95;
85
+ }
86
+
87
+ /* Below video */
88
+ .section { padding: 24px 28px; }
89
+ .ad-card {
90
+ display: flex; align-items: center; gap: 22px;
91
+ padding: 20px; margin-top: 16px;
92
+ }
93
+ .ad-app {
94
+ width: 88px; height: 88px; border-radius: 18px;
95
+ background: #E0E0E0; border: 1px solid #BDBDBD;
96
+ display: flex; align-items: center; justify-content: center; color: #757575; font-size: 22px;
97
+ }
98
+ .ad-meta { flex: 1; }
99
+ .ad-title { font-size: 34px; font-weight: 700; }
100
+ .ad-sub { color: #9aa0a6; margin-top: 4px; font-size: 28px; }
101
+ .ad-btn {
102
+ background: #2b7bff; color: #fff; border: none; border-radius: 40px; padding: 18px 28px; font-size: 30px; font-weight: 700;
103
+ }
104
+
105
+ .title { font-size: 44px; line-height: 1.25; font-weight: 800; margin-top: 6px; }
106
+ .meta { color: #9aa0a6; font-size: 28px; margin-top: 10px; }
107
+
108
+ .channel-row {
109
+ margin-top: 22px; display: flex; align-items: center; gap: 20px;
110
+ }
111
+ .avatar {
112
+ width: 88px; height: 88px; border-radius: 50%;
113
+ background: #E0E0E0; border: 1px solid #BDBDBD;
114
+ display: flex; align-items: center; justify-content: center; color: #757575; font-size: 20px;
115
+ }
116
+ .ch-name { font-size: 34px; font-weight: 700; }
117
+ .ch-sub { color: #9aa0a6; margin-left: 10px; font-weight: 600; font-size: 28px; }
118
+ .ch-spacer { flex: 1; }
119
+ .chip-ic { width: 46px; height: 46px; opacity: 0.9; }
120
+ .dots { display: inline-flex; gap: 8px; margin-left: 20px; }
121
+ .dot { width: 8px; height: 8px; background: #e5e5e5; border-radius: 50%; opacity: 0.9; }
122
+
123
+ .actions {
124
+ margin-top: 22px; display: flex; flex-wrap: wrap; gap: 18px;
125
+ }
126
+ .pill {
127
+ display: inline-flex; align-items: center; gap: 14px;
128
+ background: #222; border-radius: 40px; padding: 18px 26px;
129
+ font-size: 30px; color: #f1f1f1; border: 1px solid #2b2b2b;
130
+ }
131
+ .pill svg { width: 34px; height: 34px; }
132
+
133
+ .comments {
134
+ margin: 22px 28px 0 28px; padding: 22px; background: #171717; border-radius: 24px; border: 1px solid #232323;
135
+ }
136
+ .comments h3 { margin: 0 0 14px 0; font-size: 34px; }
137
+ .comment-row { display: flex; gap: 18px; align-items: flex-start; }
138
+ .c-avatar {
139
+ width: 60px; height: 60px; border-radius: 50%; background: #E0E0E0; border: 1px solid #BDBDBD;
140
+ display: flex; align-items: center; justify-content: center; color: #757575; font-weight: 700;
141
+ }
142
+ .c-text { color: #dcdcdc; font-size: 28px; line-height: 1.4; opacity: 0.9; }
143
+
144
+ /* Share sheet */
145
+ .sheet {
146
+ position: absolute; left: 0; right: 0; bottom: 0;
147
+ height: 900px; background: #1c1c1c;
148
+ border-top-left-radius: 36px; border-top-right-radius: 36px;
149
+ box-shadow: 0 -10px 30px rgba(0,0,0,0.55);
150
+ }
151
+ .sheet .handle {
152
+ width: 120px; height: 10px; border-radius: 6px; background: #333;
153
+ margin: 14px auto 8px auto;
154
+ }
155
+ .sheet-inner { padding: 18px 28px 0 28px; }
156
+ .sheet-title { font-size: 44px; font-weight: 800; margin: 10px 0 22px 0; }
157
+ .share-grid { display: flex; gap: 36px; padding: 10px 0 22px 0; }
158
+ .app {
159
+ width: 168px;
160
+ display: flex; flex-direction: column; align-items: center; gap: 14px;
161
+ }
162
+ .app .circle {
163
+ width: 120px; height: 120px; border-radius: 50%;
164
+ display: flex; align-items: center; justify-content: center;
165
+ color: #fff; font-weight: 800; font-size: 44px;
166
+ }
167
+ .app label { font-size: 26px; color: #e9e9e9; text-align: center; }
168
+ .copy-row {
169
+ margin-top: 26px; border-top: 1px solid #2a2a2a; padding-top: 18px;
170
+ display: flex; align-items: center; gap: 18px;
171
+ }
172
+ .copy-ic {
173
+ width: 56px; height: 56px; border-radius: 12px; background: #2a2a2a;
174
+ display: flex; align-items: center; justify-content: center;
175
+ }
176
+ .preview-thumb {
177
+ position: absolute; right: 40px; top: -220px;
178
+ width: 360px; height: 540px; border-radius: 16px;
179
+ background: #E0E0E0; border: 1px solid #BDBDBD; color: #757575;
180
+ display: flex; align-items: center; justify-content: center; font-weight: 700;
181
+ }
182
+
183
+ /* Home indicator */
184
+ .home-indicator {
185
+ position: absolute; left: 50%; bottom: 12px; transform: translateX(-50%);
186
+ width: 240px; height: 10px; background: #fff; border-radius: 6px; opacity: 0.7;
187
+ }
188
+ </style>
189
+ </head>
190
+ <body>
191
+ <div id="render-target">
192
+
193
+ <!-- Status bar -->
194
+ <div class="status-bar">
195
+ <div>11:09</div>
196
+ <div class="status-spacer"></div>
197
+ <svg class="sb-icon" viewBox="0 0 24 24" fill="#fff"><path d="M3 12h2a7 7 0 0 1 7 7v2H9a6 6 0 0 0-6-6v-3z"/></svg>
198
+ <div class="sb-dot"></div>
199
+ <svg class="sb-icon" viewBox="0 0 24 24" fill="none" stroke="#fff" stroke-width="2"><path d="M6 6h12v12H6z"/><path d="M6 10h12"/></svg>
200
+ <div class="sb-dot"></div>
201
+ <svg class="sb-icon" viewBox="0 0 24 24" fill="#fff"><path d="M12 3a9 9 0 1 0 .001 18.001A9 9 0 0 0 12 3z"/></svg>
202
+ <svg class="sb-icon" viewBox="0 0 24 24" fill="#fff"><path d="M4 8h16v8H4z"/></svg>
203
+ </div>
204
+
205
+ <!-- Video player area -->
206
+ <div class="video-wrap">
207
+ <div class="img-ph">[IMG: Video frame]</div>
208
+
209
+ <div class="video-overlay">
210
+ <div class="ov-row">
211
+ <div class="ov-left">
212
+ <svg width="40" height="40" viewBox="0 0 24 24" fill="none" stroke="#fff" stroke-width="2"><path d="M15 6L9 12l6 6"/></svg>
213
+ <span>Visit advertiser</span>
214
+ </div>
215
+ <div class="ov-right">
216
+ <svg class="ov-ic" viewBox="0 0 24 24" fill="none" stroke="#fff" stroke-width="2">
217
+ <path d="M2 7h20v10H2z"/><path d="M4 17c2 0 3 1 4 3"/>
218
+ </svg>
219
+ <svg class="ov-ic" viewBox="0 0 24 24" fill="none" stroke="#fff" stroke-width="2">
220
+ <path d="M4 4h7v7H4zM13 13h7v7h-7z"/>
221
+ </svg>
222
+ <svg class="ov-ic" viewBox="0 0 24 24" fill="none" stroke="#fff" stroke-width="2">
223
+ <circle cx="12" cy="12" r="8"/><path d="M12 8v4l3 2"/>
224
+ </svg>
225
+ <svg class="ov-ic" viewBox="0 0 24 24" fill="none" stroke="#fff" stroke-width="2">
226
+ <path d="M6 6l12 12M6 18L18 6"/>
227
+ </svg>
228
+ </div>
229
+ </div>
230
+
231
+ <div class="play-center">
232
+ <svg width="70" height="70" viewBox="0 0 24 24" fill="#fff"><path d="M8 5v14l11-7z"/></svg>
233
+ </div>
234
+
235
+ <div class="pip-mini">[IMG: PiP Preview]</div>
236
+
237
+ <div class="ad-bottom">
238
+ <span>Ad • 1 of 2</span>
239
+ <svg width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="#e5e5e5" stroke-width="2"><circle cx="12" cy="12" r="9"/><path d="M12 8v5M12 17h.01"/></svg>
240
+ <span>0:06</span>
241
+ </div>
242
+
243
+ <svg class="fs-ic" viewBox="0 0 24 24" fill="none" stroke="#fff" stroke-width="2">
244
+ <path d="M4 9V4h5M20 9V4h-5M4 15v5h5M20 15v5h-5"/>
245
+ </svg>
246
+ </div>
247
+ </div>
248
+
249
+ <!-- Under video: ad card -->
250
+ <div class="section" style="margin-top: 718px;">
251
+ <div class="ad-card">
252
+ <div class="ad-app">App</div>
253
+ <div class="ad-meta">
254
+ <div class="ad-title">ढूंढेंगे तो मिलेगा</div>
255
+ <div class="ad-sub">Ad · Google.com</div>
256
+ </div>
257
+ <button class="ad-btn">अब देखिये</button>
258
+ <svg width="40" height="40" viewBox="0 0 24 24" fill="none" stroke="#eaeaea" stroke-width="2" style="margin-left: 10px;">
259
+ <circle cx="5" cy="12" r="1.5"/><circle cx="12" cy="12" r="1.5"/><circle cx="19" cy="12" r="1.5"/>
260
+ </svg>
261
+ </div>
262
+
263
+ <div class="title">Luciano Pavarotti, James Brown - It's A Man's Man's World (Stereo)</div>
264
+ <div class="meta">92M views • 4y ago • ...more</div>
265
+
266
+ <div class="channel-row">
267
+ <div class="avatar">[IMG]</div>
268
+ <div style="display:flex; align-items:center;">
269
+ <div class="ch-name">Luciano Pavarotti</div>
270
+ <div class="ch-sub">632K</div>
271
+ </div>
272
+ <div class="ch-spacer"></div>
273
+ <svg class="chip-ic" viewBox="0 0 24 24" fill="none" stroke="#fff" stroke-width="2">
274
+ <path d="M12 22c3 0 5-2 5-5V9a5 5 0 1 0-10 0v8c0 3 2 5 5 5z"/><path d="M9 9h6"/>
275
+ </svg>
276
+ <div class="dots">
277
+ <div class="dot"></div><div class="dot"></div><div class="dot"></div>
278
+ </div>
279
+ </div>
280
+
281
+ <div class="actions">
282
+ <div class="pill">
283
+ <svg viewBox="0 0 24 24" fill="#fff"><path d="M4 14h7l3-5h4v8H4z"/></svg>
284
+ <span>987K</span>
285
+ </div>
286
+ <div class="pill">
287
+ <svg viewBox="0 0 24 24" fill="#fff" style="transform: rotate(180deg);"><path d="M4 14h7l3-5h4v8H4z"/></svg>
288
+ </div>
289
+ <div class="pill">
290
+ <svg viewBox="0 0 24 24" fill="none" stroke="#fff" stroke-width="2">
291
+ <path d="M12 5v10"/><path d="M12 5l-4 4"/><path d="M12 5l4 4"/><path d="M6 13v6h12v-6"/>
292
+ </svg>
293
+ <span>Share</span>
294
+ </div>
295
+ <div class="pill">
296
+ <svg viewBox="0 0 24 24" fill="none" stroke="#fff" stroke-width="2"><path d="M4 12h16"/><path d="M8 8H6v8h2zM18 8h-2v8h2z"/></svg>
297
+ <span>Stop ads</span>
298
+ </div>
299
+ <div class="pill">
300
+ <svg viewBox="0 0 24 24" fill="none" stroke="#fff" stroke-width="2">
301
+ <path d="M4 4h16v16H4z"/><path d="M10 8v8l6-4z"/>
302
+ </svg>
303
+ <span>Clip</span>
304
+ </div>
305
+ </div>
306
+ </div>
307
+
308
+ <!-- Comments -->
309
+ <div class="comments">
310
+ <h3>Comments 30K</h3>
311
+ <div class="comment-row">
312
+ <div class="c-avatar">J</div>
313
+ <div class="c-text">When you see a Ford Mustang and a Ferrari racing together...</div>
314
+ </div>
315
+ </div>
316
+
317
+ <!-- Share sheet -->
318
+ <div class="sheet">
319
+ <div class="handle"></div>
320
+ <div class="sheet-inner">
321
+ <div class="sheet-title">Share</div>
322
+
323
+ <div class="share-grid">
324
+ <div class="app">
325
+ <div class="circle" style="background:#EA4335;">M</div>
326
+ <label>Gmail</label>
327
+ </div>
328
+ <div class="app">
329
+ <div class="circle" style="background:#1877F2;">f</div>
330
+ <label>Your Groups</label>
331
+ </div>
332
+ <div class="app">
333
+ <div class="circle" style="background:#1877F2;">f</div>
334
+ <label>News Feed</label>
335
+ </div>
336
+ <div class="app">
337
+ <div class="circle" style="background:#34B7F1; font-size: 36px;">SMS</div>
338
+ <label>Messages</label>
339
+ </div>
340
+ <div class="app">
341
+ <div class="circle" style="background:#1DA1F2;">t</div>
342
+ <label>Twitter</label>
343
+ </div>
344
+ </div>
345
+
346
+ <div class="copy-row">
347
+ <div class="copy-ic">
348
+ <svg width="30" height="30" viewBox="0 0 24 24" fill="none" stroke="#fff" stroke-width="2">
349
+ <rect x="8" y="8" width="12" height="12" rx="2"/><rect x="4" y="4" width="12" height="12" rx="2"/>
350
+ </svg>
351
+ </div>
352
+ <div style="font-size: 30px;">Copy link</div>
353
+ </div>
354
+
355
+ <div class="preview-thumb">[IMG: Share preview]</div>
356
+ </div>
357
+ </div>
358
+
359
+ <div class="home-indicator"></div>
360
+ </div>
361
+ </body>
362
+ </html>
code/14477/14477_4.html ADDED
@@ -0,0 +1,244 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0" />
6
+ <title>Compose - Mock</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; }
9
+ #render-target {
10
+ width: 1080px; height: 2400px; position: relative; overflow: hidden;
11
+ background: #121212; color: #EDEDED;
12
+ }
13
+ /* Status bar */
14
+ .status-bar {
15
+ height: 90px; padding: 0 28px; display: flex; align-items: center; justify-content: space-between; color: #fff; font-weight: 600;
16
+ font-size: 34px; letter-spacing: 0.5px;
17
+ }
18
+ .status-right { display: flex; align-items: center; gap: 22px; }
19
+ .app-bar {
20
+ height: 120px; display: flex; align-items: center; padding: 0 20px; border-bottom: 1px solid #1E1E1E;
21
+ }
22
+ .app-title { font-size: 40px; font-weight: 600; margin-left: 12px; color: #ffffff; }
23
+ .app-actions { margin-left: auto; display: flex; align-items: center; gap: 26px; }
24
+ .icon-btn { width: 72px; height: 72px; display: inline-flex; align-items: center; justify-content: center; border-radius: 36px; }
25
+ .icon-fill { fill: #E0E0E0; }
26
+ .icon-stroke { stroke: #E0E0E0; }
27
+ .compose-area { padding: 18px 28px 0; }
28
+ .row {
29
+ display: flex; align-items: center; gap: 22px; min-height: 86px; border-bottom: 1px solid #1B1B1B;
30
+ }
31
+ .label { width: 120px; color: #B0B0B0; font-size: 30px; }
32
+ .value { flex: 1; font-size: 34px; color: #EDEDED; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
33
+ .dropdown { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; }
34
+ .suggestion {
35
+ display: flex; align-items: center; gap: 22px; padding: 22px 0; border-bottom: 1px solid #1B1B1B;
36
+ }
37
+ .avatar {
38
+ width: 96px; height: 96px; border-radius: 48px;
39
+ background: #E0E0E0; border: 1px solid #BDBDBD;
40
+ display: flex; align-items: center; justify-content: center; color: #757575; font-size: 20px;
41
+ }
42
+ .sugg-text { display: flex; flex-direction: column; }
43
+ .sugg-title { font-size: 34px; color: #EDEDED; }
44
+ .sugg-sub { font-size: 28px; color: #9E9E9E; }
45
+ /* Attachment preview card */
46
+ .attachment-wrap {
47
+ padding: 40px 28px 0;
48
+ }
49
+ .attachment-card {
50
+ width: 720px; height: 480px; margin: 0 auto; background: #000; border-radius: 36px; position: relative;
51
+ box-shadow: 0 8px 24px rgba(0,0,0,0.6);
52
+ }
53
+ .attachment-inner {
54
+ position: absolute; inset: 24px; display: flex; align-items: center; justify-content: center;
55
+ }
56
+ .img-ph {
57
+ width: 390px; height: 390px; background: #E0E0E0; border: 1px solid #BDBDBD;
58
+ display: flex; align-items: center; justify-content: center; color: #616161; font-size: 30px; text-align: center; padding: 10px;
59
+ }
60
+ .nav-arrow {
61
+ position: absolute; top: 50%; transform: translateY(-50%); width: 80px; height: 80px; border-radius: 40px;
62
+ display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.06);
63
+ }
64
+ .nav-left { left: 20px; }
65
+ .nav-right { right: 20px; }
66
+ /* Keyboard mock */
67
+ .keyboard {
68
+ position: absolute; left: 0; right: 0; bottom: 34px; height: 920px; background: #1F1F1F; border-top: 1px solid #2A2A2A;
69
+ box-shadow: 0 -6px 24px rgba(0,0,0,0.4);
70
+ }
71
+ .kb-toolbar {
72
+ height: 90px; padding: 0 22px; display: flex; align-items: center; gap: 26px; border-bottom: 1px solid #2A2A2A; color: #C7C7C7;
73
+ }
74
+ .kb-keys { padding: 18px 16px 0; }
75
+ .kb-row { display: grid; grid-template-columns: repeat(10, 1fr); gap: 14px; margin-bottom: 16px; }
76
+ .kb-row.mid { grid-template-columns: repeat(9, 1fr); }
77
+ .kb-row.bottom {
78
+ grid-template-columns: 1.4fr 1fr 1fr 5fr 1fr 1.6fr; gap: 14px;
79
+ }
80
+ .key {
81
+ height: 110px; background: #2A2A2A; border-radius: 18px; display: flex; align-items: center; justify-content: center;
82
+ color: #E0E0E0; font-size: 36px;
83
+ box-shadow: inset 0 -2px 0 rgba(0,0,0,0.25);
84
+ }
85
+ .key.shift, .key.backspace { font-size: 30px; }
86
+ .key.space { font-size: 26px; color: #BDBDBD; }
87
+ .home-pill {
88
+ position: absolute; left: 50%; transform: translateX(-50%); bottom: 12px;
89
+ width: 360px; height: 10px; background: #FFFFFF; opacity: 0.9; border-radius: 10px;
90
+ }
91
+ </style>
92
+ </head>
93
+ <body>
94
+ <div id="render-target">
95
+ <!-- Status Bar -->
96
+ <div class="status-bar">
97
+ <div class="status-left">11:10</div>
98
+ <div class="status-center" style="display:flex; align-items:center; gap:18px;">
99
+ <!-- small dots to mimic status icons -->
100
+ <svg width="30" height="30"><circle cx="6" cy="15" r="4" fill="#d0d0d0"/><circle cx="15" cy="15" r="4" fill="#d0d0d0"/><circle cx="24" cy="15" r="4" fill="#d0d0d0"/></svg>
101
+ <svg width="36" height="28" viewBox="0 0 36 28">
102
+ <path d="M2 24h4l6-12 6 12h4l8-20" stroke="#d0d0d0" stroke-width="2" fill="none" />
103
+ </svg>
104
+ <svg width="36" height="28" viewBox="0 0 36 28">
105
+ <path d="M2 22l14-14 14 14" stroke="#d0d0d0" stroke-width="2" fill="none" />
106
+ </svg>
107
+ </div>
108
+ <div class="status-right">
109
+ <svg width="42" height="24" viewBox="0 0 42 24">
110
+ <rect x="1" y="4" width="34" height="16" rx="3" stroke="#d0d0d0" stroke-width="2" fill="none"/>
111
+ <rect x="4" y="7" width="28" height="10" rx="2" fill="#d0d0d0"/>
112
+ <rect x="37" y="9" width="4" height="6" rx="1" fill="#d0d0d0"/>
113
+ </svg>
114
+ </div>
115
+ </div>
116
+
117
+ <!-- App Bar -->
118
+ <div class="app-bar">
119
+ <div class="icon-btn">
120
+ <svg width="48" height="48" viewBox="0 0 36 36">
121
+ <path class="icon-stroke" d="M22 8 L10 18 L22 28" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"></path>
122
+ </svg>
123
+ </div>
124
+ <div class="app-title">Compose</div>
125
+ <div class="app-actions">
126
+ <!-- paperclip -->
127
+ <div class="icon-btn">
128
+ <svg width="48" height="48" viewBox="0 0 36 36">
129
+ <path d="M12 19c0-5 4-9 9-9s7 4 7 7v9c0 4-3 7-7 7s-7-3-7-7v-8" fill="none" stroke="#E0E0E0" stroke-width="2.5" stroke-linecap="round"/>
130
+ </svg>
131
+ </div>
132
+ <!-- send -->
133
+ <div class="icon-btn">
134
+ <svg width="48" height="48" viewBox="0 0 36 36">
135
+ <path d="M6 18 L30 6 L24 18 L30 30 Z" fill="#E0E0E0"/>
136
+ </svg>
137
+ </div>
138
+ <!-- more vert -->
139
+ <div class="icon-btn">
140
+ <svg width="36" height="36" viewBox="0 0 24 24">
141
+ <circle cx="12" cy="5" r="2.2" class="icon-fill"></circle>
142
+ <circle cx="12" cy="12" r="2.2" class="icon-fill"></circle>
143
+ <circle cx="12" cy="19" r="2.2" class="icon-fill"></circle>
144
+ </svg>
145
+ </div>
146
+ </div>
147
+ </div>
148
+
149
+ <!-- Compose Fields -->
150
+ <div class="compose-area">
151
+ <div class="row">
152
+ <div class="label">From</div>
153
+ <div class="value">dbwscratch.test.id1@gmail.com</div>
154
+ </div>
155
+ <div class="row">
156
+ <div class="label">To</div>
157
+ <div class="value">rick.weinstein@dayrep.com</div>
158
+ <div class="dropdown">
159
+ <svg width="36" height="36" viewBox="0 0 36 36">
160
+ <path d="M8 14 L18 24 L28 14" fill="none" stroke="#BDBDBD" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"></path>
161
+ </svg>
162
+ </div>
163
+ </div>
164
+
165
+ <div class="suggestion">
166
+ <div class="avatar">User</div>
167
+ <div class="sugg-text">
168
+ <div class="sugg-title">Add recipient</div>
169
+ <div class="sugg-sub">rick.weinstein@dayrep.com</div>
170
+ </div>
171
+ </div>
172
+ </div>
173
+
174
+ <!-- Attachment preview -->
175
+ <div class="attachment-wrap">
176
+ <div class="attachment-card">
177
+ <div class="attachment-inner">
178
+ <div class="img-ph">[IMG: Attached painting]</div>
179
+ </div>
180
+ <div class="nav-arrow nav-left">
181
+ <svg width="40" height="40" viewBox="0 0 36 36">
182
+ <path d="M22 8 L12 18 L22 28" fill="none" stroke="#DADADA" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
183
+ </svg>
184
+ </div>
185
+ <div class="nav-arrow nav-right">
186
+ <svg width="40" height="40" viewBox="0 0 36 36">
187
+ <path d="M14 8 L24 18 L14 28" fill="none" stroke="#DADADA" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
188
+ </svg>
189
+ </div>
190
+ </div>
191
+ </div>
192
+
193
+ <!-- Keyboard Mock -->
194
+ <div class="keyboard">
195
+ <div class="kb-toolbar">
196
+ <div class="icon-btn" style="width:56px;height:56px;">
197
+ <svg width="40" height="40" viewBox="0 0 36 36">
198
+ <rect x="6" y="8" width="24" height="20" rx="4" fill="#C7C7C7"/>
199
+ <rect x="9" y="11" width="18" height="6" rx="2" fill="#1F1F1F"/>
200
+ </svg>
201
+ </div>
202
+ <div style="color:#C7C7C7;font-size:28px;">GIF</div>
203
+ <div class="icon-btn" style="width:56px;height:56px;">
204
+ <svg width="40" height="40" viewBox="0 0 36 36"><circle cx="18" cy="18" r="14" fill="#C7C7C7"/><path d="M18 10v8l5 5" stroke="#1F1F1F" stroke-width="3" stroke-linecap="round"/></svg>
205
+ </div>
206
+ <div class="icon-btn" style="width:56px;height:56px;">
207
+ <svg width="40" height="40" viewBox="0 0 36 36"><rect x="8" y="8" width="20" height="20" rx="6" fill="#C7C7C7"/></svg>
208
+ </div>
209
+ <div class="icon-btn" style="width:56px;height:56px; margin-left:auto;">
210
+ <svg width="40" height="40" viewBox="0 0 36 36"><path d="M8 14h20M8 22h20" stroke="#C7C7C7" stroke-width="3" stroke-linecap="round"/></svg>
211
+ </div>
212
+ <div class="icon-btn" style="width:56px;height:56px;">
213
+ <svg width="40" height="40" viewBox="0 0 36 36"><path d="M18 30c6 0 10-5 10-12S24 6 18 6 8 11 8 18s4 12 10 12z" fill="#C7C7C7"/></svg>
214
+ </div>
215
+ </div>
216
+ <div class="kb-keys">
217
+ <div class="kb-row">
218
+ <div class="key">q</div><div class="key">w</div><div class="key">e</div><div class="key">r</div><div class="key">t</div>
219
+ <div class="key">y</div><div class="key">u</div><div class="key">i</div><div class="key">o</div><div class="key">p</div>
220
+ </div>
221
+ <div class="kb-row mid" style="padding: 0 50px;">
222
+ <div class="key">a</div><div class="key">s</div><div class="key">d</div><div class="key">f</div><div class="key">g</div>
223
+ <div class="key">h</div><div class="key">j</div><div class="key">k</div><div class="key">l</div>
224
+ </div>
225
+ <div class="kb-row" style="grid-template-columns: 1.5fr repeat(7, 1fr) 1.7fr;">
226
+ <div class="key shift">⇧</div>
227
+ <div class="key">z</div><div class="key">x</div><div class="key">c</div><div class="key">v</div><div class="key">b</div><div class="key">n</div><div class="key">m</div>
228
+ <div class="key backspace">⌫</div>
229
+ </div>
230
+ <div class="kb-row bottom">
231
+ <div class="key">?123</div>
232
+ <div class="key">@</div>
233
+ <div class="key">😊</div>
234
+ <div class="key space">space</div>
235
+ <div class="key">.</div>
236
+ <div class="key" style="background:#81D4FA;color:#1F1F1F;font-weight:700;">↵</div>
237
+ </div>
238
+ </div>
239
+ </div>
240
+
241
+ <div class="home-pill"></div>
242
+ </div>
243
+ </body>
244
+ </html>
code/14477/14477_5.html ADDED
@@ -0,0 +1,279 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0" />
6
+ <title>Mobile UI Mock</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: Roboto, Arial, sans-serif; }
9
+ #render-target {
10
+ position: relative;
11
+ overflow: hidden;
12
+ width: 1080px;
13
+ height: 2400px;
14
+ background: #0f0f0f;
15
+ color: #ffffff;
16
+ }
17
+ .status-bar {
18
+ position: absolute;
19
+ top: 0; left: 0; right: 0;
20
+ height: 110px;
21
+ background: #000000;
22
+ display: flex; align-items: center; justify-content: space-between;
23
+ padding: 0 34px;
24
+ box-sizing: border-box;
25
+ color: #ffffff;
26
+ font-size: 34px;
27
+ }
28
+ .status-right svg { margin-left: 24px; }
29
+ .content {
30
+ position: absolute;
31
+ top: 110px; left: 0; right: 0; bottom: 0;
32
+ overflow-y: auto;
33
+ padding-bottom: 120px;
34
+ }
35
+ .section { padding: 0 30px; }
36
+ .player {
37
+ position: relative;
38
+ width: 1080px;
39
+ height: 608px; /* 16:9 for 1080 width */
40
+ background: #1e1e1e;
41
+ }
42
+ .player .placeholder {
43
+ position: absolute; inset: 0;
44
+ display: flex; align-items: center; justify-content: center;
45
+ color: #757575; font-size: 36px;
46
+ background: #E0E0E0; border: 1px solid #BDBDBD;
47
+ }
48
+ .player .top-bar {
49
+ position: absolute; top: 18px; left: 24px; right: 24px;
50
+ display: flex; align-items: center; justify-content: space-between;
51
+ color: #ffffff; font-size: 32px; text-shadow: 0 1px 2px rgba(0,0,0,0.7);
52
+ }
53
+ .player .top-actions { display: flex; align-items: center; gap: 26px; }
54
+ .player .play-btn {
55
+ position: absolute; top: 50%; left: 50%;
56
+ transform: translate(-50%, -50%);
57
+ width: 140px; height: 140px; border-radius: 50%;
58
+ background: rgba(0,0,0,0.55);
59
+ display: flex; align-items: center; justify-content: center;
60
+ }
61
+ .player .pip {
62
+ position: absolute; right: 22px; bottom: 76px;
63
+ width: 240px; height: 135px;
64
+ background: #E0E0E0; border: 2px solid #BDBDBD;
65
+ display: flex; align-items: center; justify-content: center;
66
+ color: #757575; font-size: 24px;
67
+ }
68
+ .player .pip .fs {
69
+ position: absolute; right: 10px; bottom: 8px;
70
+ background: rgba(0,0,0,0.65); border-radius: 8px; padding: 6px;
71
+ }
72
+ .player .ad-meta {
73
+ position: absolute; left: 24px; bottom: 24px;
74
+ display: flex; align-items: center; gap: 10px;
75
+ font-size: 28px; color: #ffffff;
76
+ text-shadow: 0 1px 2px rgba(0,0,0,0.7);
77
+ }
78
+ .player .progress {
79
+ position: absolute; left: 0; right: 0; bottom: 0;
80
+ height: 6px; background: #ffd54f;
81
+ }
82
+ .ad-row {
83
+ display: flex; align-items: center; justify-content: space-between;
84
+ padding: 18px 30px 8px 30px;
85
+ }
86
+ .ad-left { display: flex; align-items: center; gap: 18px; }
87
+ .avatar {
88
+ width: 80px; height: 80px; border-radius: 40px;
89
+ background: #E0E0E0; border: 1px solid #BDBDBD;
90
+ display: flex; align-items: center; justify-content: center;
91
+ color: #757575; font-size: 22px;
92
+ overflow: hidden;
93
+ }
94
+ .ad-txt { display: flex; flex-direction: column; }
95
+ .ad-txt .line1 { color: #ffffff; font-size: 30px; }
96
+ .ad-txt .line2 { color: #a8a8a8; font-size: 26px; }
97
+ .cta {
98
+ background: #3ea6ff; color: #0b0b0b; font-weight: 600;
99
+ padding: 18px 28px; border-radius: 36px; font-size: 30px;
100
+ }
101
+ .title {
102
+ padding: 12px 30px 0 30px; font-size: 44px; line-height: 1.25; font-weight: 600; color: #ffffff;
103
+ }
104
+ .meta {
105
+ padding: 8px 30px 16px 30px; color: #a8a8a8; font-size: 28px;
106
+ }
107
+ .channel-row {
108
+ display: flex; align-items: center; gap: 18px;
109
+ padding: 8px 30px 16px 30px;
110
+ }
111
+ .channel-name { font-size: 32px; color: #ffffff; }
112
+ .actions {
113
+ display: flex; align-items: center; gap: 18px;
114
+ padding: 8px 30px 16px 30px;
115
+ }
116
+ .chip {
117
+ display: inline-flex; align-items: center; gap: 14px;
118
+ background: #222222; color: #ffffff;
119
+ padding: 20px 26px; border-radius: 48px; font-size: 28px;
120
+ }
121
+ .chip svg { width: 36px; height: 36px; }
122
+ .comments-card {
123
+ margin: 16px 30px;
124
+ background: #1f1f1f; border-radius: 28px; padding: 22px;
125
+ }
126
+ .comments-header {
127
+ display: flex; align-items: center; justify-content: space-between;
128
+ color: #ffffff; font-size: 32px; margin-bottom: 14px;
129
+ }
130
+ .comment-row { display: flex; align-items: center; gap: 18px; }
131
+ .commenter {
132
+ width: 52px; height: 52px; border-radius: 26px; background: #ff8a00; display: flex; align-items: center; justify-content: center; color: #111; font-weight: 700;
133
+ }
134
+ .comment-text { color: #d6d6d6; font-size: 28px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
135
+ .ad-banner {
136
+ margin: 16px 30px 30px 30px; background: transparent; border-radius: 30px; overflow: hidden;
137
+ }
138
+ .banner-img {
139
+ width: 1020px; height: 560px; margin: 0 auto;
140
+ background: #E0E0E0; border: 1px solid #BDBDBD;
141
+ display: flex; align-items: center; justify-content: center; color: #757575; font-size: 34px; border-radius: 30px;
142
+ }
143
+ .banner-footer {
144
+ display: flex; align-items: center; justify-content: space-between;
145
+ padding: 14px 8px 0 8px;
146
+ }
147
+ .shop-btn {
148
+ background: #2b3a4a; color: #cfe6ff; border: 1px solid #3e6fa8;
149
+ padding: 16px 26px; border-radius: 16px; font-size: 30px; display: inline-flex; align-items: center; gap: 12px;
150
+ }
151
+ .kebab { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; }
152
+ .gesture {
153
+ position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
154
+ width: 280px; height: 10px; background: rgba(255,255,255,0.85);
155
+ border-radius: 10px;
156
+ }
157
+ .dot {
158
+ width: 8px; height: 8px; background: #ffffff; border-radius: 4px; opacity: 0.85;
159
+ }
160
+ </style>
161
+ </head>
162
+ <body>
163
+ <div id="render-target">
164
+ <div class="status-bar">
165
+ <div>11:11</div>
166
+ <div class="status-right" style="display:flex;align-items:center;">
167
+ <svg width="34" height="34" viewBox="0 0 24 24" fill="#fff"><circle cx="4" cy="4" r="2"/></svg>
168
+ <svg width="34" height="34" viewBox="0 0 24 24" fill="#fff"><rect x="3" y="6" width="14" height="10" rx="2"/><path d="M20 18c-2-3-5-5-8-5" stroke="#fff" stroke-width="2" fill="none"/></svg>
169
+ <svg width="34" height="34" viewBox="0 0 24 24" fill="#fff"><path d="M12 2l1 3 3 1-3 1-1 3-1-3-3-1 3-1 1-3z"/></svg>
170
+ <svg width="34" height="34" viewBox="0 0 24 24" fill="#fff"><circle cx="18" cy="6" r="2"/></svg>
171
+ <svg width="40" height="24" viewBox="0 0 36 20" fill="none"><rect x="2" y="2" width="28" height="16" rx="3" stroke="#fff" stroke-width="2"/><rect x="32" y="6" width="2" height="8" fill="#fff"/></svg>
172
+ </div>
173
+ </div>
174
+
175
+ <div class="content">
176
+ <div class="player">
177
+ <div class="placeholder">[IMG: Video Player Ad]</div>
178
+
179
+ <div class="top-bar">
180
+ <div>Visit advertiser</div>
181
+ <div class="top-actions">
182
+ <svg width="40" height="40" viewBox="0 0 24 24" fill="#fff"><path d="M3 5h12v8H3z"/><path d="M18 17c-2-3-5-5-8-5" stroke="#fff" stroke-width="2" fill="none"/></svg>
183
+ <svg width="40" height="40" viewBox="0 0 24 24" fill="#fff"><circle cx="12" cy="12" r="3"/><path d="M12 2v3M12 19v3M2 12h3M19 12h3M4.2 4.2l2.1 2.1M17.7 17.7l2.1 2.1M4.2 19.8l2.1-2.1M17.7 6.3l2.1-2.1" stroke="#fff" stroke-width="1.5"/></svg>
184
+ <svg width="40" height="40" viewBox="0 0 24 24" stroke="#fff" stroke-width="2" fill="none"><path d="M6 6l12 12M18 6L6 18"/></svg>
185
+ </div>
186
+ </div>
187
+
188
+ <div class="play-btn">
189
+ <svg width="70" height="70" viewBox="0 0 24 24" fill="#fff"><path d="M8 5v14l11-7z"/></svg>
190
+ </div>
191
+
192
+ <div class="pip">[IMG: Ad preview]
193
+ <div class="fs">
194
+ <svg width="26" height="26" viewBox="0 0 24 24" stroke="#fff" stroke-width="2" fill="none">
195
+ <path d="M8 3H3v5M16 3h5v5M21 16v5h-5M3 16v5h5"/>
196
+ </svg>
197
+ </div>
198
+ </div>
199
+
200
+ <div class="ad-meta">
201
+ <svg width="26" height="26" viewBox="0 0 24 24" fill="none" stroke="#fff" stroke-width="2"><circle cx="12" cy="12" r="10"/><path d="M12 8v6M12 17h.01"/></svg>
202
+ <div>Ad 1 of 2 • 0:06</div>
203
+ </div>
204
+
205
+ <div class="progress"></div>
206
+ </div>
207
+
208
+ <div class="ad-row">
209
+ <div class="ad-left">
210
+ <div class="avatar">Ad</div>
211
+ <div class="ad-txt">
212
+ <div class="line1">धूंढेंगे तो मिलेगा</div>
213
+ <div class="line2">Ad · Google.com</div>
214
+ </div>
215
+ </div>
216
+ <div style="display:flex; align-items:center; gap:18px;">
217
+ <div class="cta">अब देखिये</div>
218
+ <div class="kebab">
219
+ <svg width="34" height="34" viewBox="0 0 24 24" fill="#fff"><circle cx="12" cy="5" r="2"/><circle cx="12" cy="12" r="2"/><circle cx="12" cy="19" r="2"/></svg>
220
+ </div>
221
+ </div>
222
+ </div>
223
+
224
+ <div class="title section">
225
+ Luciano Pavarotti, James Brown - It's A Man's Man's Man's World (Stereo)
226
+ </div>
227
+ <div class="meta section">92M views · 4y ago · ...more</div>
228
+
229
+ <div class="channel-row">
230
+ <div class="avatar">[IMG]</div>
231
+ <div class="channel-name">Luciano Pavarotti</div>
232
+ </div>
233
+
234
+ <div class="actions">
235
+ <div class="chip">
236
+ <svg viewBox="0 0 24 24" fill="#fff"><path d="M2 14h5l3 7 6-12h4L14 2z"/></svg>
237
+ 987K
238
+ </div>
239
+ <div class="chip">
240
+ <svg viewBox="0 0 24 24" fill="#fff"><path d="M22 10h-5l-3-7-6 12H4l6 6z"/></svg>
241
+ </div>
242
+ <div class="chip">
243
+ <svg viewBox="0 0 24 24" fill="#fff"><path d="M4 12h9l-3-3 1.5-1.5L18 12l-6.5 4.5L10 15l3-3H4z"/></svg>
244
+ Share
245
+ </div>
246
+ <div class="chip">
247
+ <svg viewBox="0 0 24 24" fill="none" stroke="#fff" stroke-width="2"><rect x="4" y="4" width="16" height="16" rx="3"/><path d="M9 9h6v6H9z"/></svg>
248
+ </div>
249
+ </div>
250
+
251
+ <div class="comments-card">
252
+ <div class="comments-header">
253
+ <div>Comments 30K</div>
254
+ <svg width="36" height="36" viewBox="0 0 24 24" fill="#fff"><path d="M9 6l6 6-6 6"/></svg>
255
+ </div>
256
+ <div class="comment-row">
257
+ <div class="commenter">J</div>
258
+ <div class="comment-text">When you see a Ford Mustang and a Ferrari racing together</div>
259
+ </div>
260
+ </div>
261
+
262
+ <div class="ad-banner">
263
+ <div class="banner-img">[IMG: Fashion banner - shoes, clutch, pastel background]</div>
264
+ <div class="banner-footer">
265
+ <div class="shop-btn">
266
+ Shop
267
+ <svg width="26" height="26" viewBox="0 0 24 24" stroke="#cfe6ff" stroke-width="2" fill="none">
268
+ <path d="M7 17h10V7"/><path d="M10 7h7v7"/>
269
+ </svg>
270
+ </div>
271
+ <div></div>
272
+ </div>
273
+ </div>
274
+ </div>
275
+
276
+ <div class="gesture"></div>
277
+ </div>
278
+ </body>
279
+ </html>
code/14481/14481_0.html ADDED
@@ -0,0 +1,215 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Settings Screen Mock</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
9
+ #render-target {
10
+ width: 1080px;
11
+ height: 2400px;
12
+ position: relative;
13
+ overflow: hidden;
14
+ background: #232427;
15
+ color: #E9E9EA;
16
+ }
17
+
18
+ /* Status bar */
19
+ .status-bar {
20
+ position: absolute;
21
+ top: 0;
22
+ left: 0;
23
+ width: 1080px;
24
+ height: 110px;
25
+ padding: 0 36px;
26
+ box-sizing: border-box;
27
+ display: flex;
28
+ align-items: center;
29
+ justify-content: space-between;
30
+ color: #fff;
31
+ font-weight: 600;
32
+ font-size: 36px;
33
+ letter-spacing: 0.5px;
34
+ opacity: 0.95;
35
+ }
36
+ .status-icons {
37
+ display: flex;
38
+ align-items: center;
39
+ gap: 28px;
40
+ }
41
+
42
+ /* Header row with back */
43
+ .header {
44
+ position: absolute;
45
+ top: 110px;
46
+ left: 0;
47
+ width: 1080px;
48
+ height: 120px;
49
+ display: flex;
50
+ align-items: center;
51
+ padding: 0 36px 0 36px;
52
+ box-sizing: border-box;
53
+ }
54
+ .back-btn {
55
+ width: 80px;
56
+ height: 80px;
57
+ display: flex;
58
+ align-items: center;
59
+ justify-content: center;
60
+ margin-left: 8px;
61
+ }
62
+ .back-btn svg { width: 48px; height: 48px; }
63
+
64
+ /* Page title */
65
+ .title {
66
+ position: absolute;
67
+ top: 230px;
68
+ left: 56px;
69
+ font-size: 96px;
70
+ font-weight: 800;
71
+ letter-spacing: 0.2px;
72
+ color: #EDEDEF;
73
+ }
74
+
75
+ /* Content list area */
76
+ .content {
77
+ position: absolute;
78
+ top: 380px;
79
+ left: 0;
80
+ right: 0;
81
+ bottom: 120px;
82
+ overflow: hidden; /* screenshot/static */
83
+ padding: 0 56px 0 56px;
84
+ box-sizing: border-box;
85
+ }
86
+
87
+ .section {
88
+ margin-top: 56px;
89
+ }
90
+ .section-title {
91
+ font-size: 46px;
92
+ font-weight: 700;
93
+ color: #CFCFD3;
94
+ margin: 30px 0 18px 0;
95
+ }
96
+
97
+ .item {
98
+ padding: 38px 0;
99
+ }
100
+ .item-title {
101
+ font-size: 46px;
102
+ font-weight: 600;
103
+ color: #E6E6E8;
104
+ margin-bottom: 12px;
105
+ }
106
+ .item-sub {
107
+ font-size: 34px;
108
+ color: #9DA0A6;
109
+ }
110
+
111
+ .link-item {
112
+ padding: 34px 0;
113
+ font-size: 44px;
114
+ color: #DFDFE2;
115
+ font-weight: 600;
116
+ }
117
+
118
+ /* Bottom gesture bar */
119
+ .home-indicator {
120
+ position: absolute;
121
+ bottom: 28px;
122
+ left: 50%;
123
+ transform: translateX(-50%);
124
+ width: 300px;
125
+ height: 14px;
126
+ background: #EAEAEA;
127
+ border-radius: 12px;
128
+ opacity: 0.8;
129
+ }
130
+ </style>
131
+ </head>
132
+ <body>
133
+ <div id="render-target">
134
+ <!-- Status Bar -->
135
+ <div class="status-bar">
136
+ <div>11:52</div>
137
+ <div class="status-icons">
138
+ <!-- simple wifi -->
139
+ <svg viewBox="0 0 24 24" fill="none" width="40" height="40">
140
+ <path d="M2 9c5-5 15-5 20 0" stroke="#ffffff" stroke-width="2.2" stroke-linecap="round"/>
141
+ <path d="M6 13c3.5-3.5 8.5-3.5 12 0" stroke="#ffffff" stroke-width="2.2" stroke-linecap="round"/>
142
+ <path d="M10.5 17.5a3 3 0 0 1 3 0" stroke="#ffffff" stroke-width="2.2" stroke-linecap="round"/>
143
+ </svg>
144
+ <!-- battery -->
145
+ <svg viewBox="0 0 28 18" width="44" height="32">
146
+ <rect x="1" y="3" width="22" height="12" rx="2" ry="2" stroke="#ffffff" stroke-width="2" fill="none"/>
147
+ <rect x="3.5" y="5.5" width="17.5" height="7" fill="#ffffff"/>
148
+ <rect x="24" y="6" width="3" height="6" rx="1" fill="#ffffff"/>
149
+ </svg>
150
+ </div>
151
+ </div>
152
+
153
+ <!-- Header Row with Back -->
154
+ <div class="header">
155
+ <div class="back-btn">
156
+ <svg viewBox="0 0 24 24">
157
+ <path d="M15.5 19L8.5 12l7-7" fill="none" stroke="#ff6b86" stroke-width="2.6" stroke-linecap="round" stroke-linejoin="round"/>
158
+ </svg>
159
+ </div>
160
+ </div>
161
+
162
+ <!-- Title -->
163
+ <div class="title">Settings</div>
164
+
165
+ <!-- Content -->
166
+ <div class="content">
167
+ <div class="section">
168
+ <div class="section-title">General</div>
169
+
170
+ <div class="item">
171
+ <div class="item-title">Autoplay Videos</div>
172
+ <div class="item-sub">Always</div>
173
+ </div>
174
+
175
+ <div class="item">
176
+ <div class="item-title">Dietary Restrictions</div>
177
+ <div class="item-sub">None</div>
178
+ </div>
179
+
180
+ <div class="item">
181
+ <div class="item-title">Measurement System</div>
182
+ <div class="item-sub">US Only</div>
183
+ </div>
184
+
185
+ <div class="item">
186
+ <div class="item-title">Notifications</div>
187
+ <div class="item-sub">Enabled. Tap to adjust in settings.</div>
188
+ </div>
189
+ </div>
190
+
191
+ <div class="section">
192
+ <div class="section-title">Feedback</div>
193
+ <div class="link-item">Email Tasty Support</div>
194
+ </div>
195
+
196
+ <div class="section">
197
+ <div class="section-title">Legal</div>
198
+ <div class="link-item">BuzzFeed User Agreement</div>
199
+ <div class="link-item">BuzzFeed Privacy Policy</div>
200
+ <div class="link-item">Ad Choices</div>
201
+ <div class="link-item">Download User Data</div>
202
+ <div class="link-item">About Nielsen Measurement and Your Choices</div>
203
+ <div class="link-item">Manage Advertisement Consent</div>
204
+ </div>
205
+
206
+ <div class="section">
207
+ <div class="section-title">Account</div>
208
+ </div>
209
+ </div>
210
+
211
+ <!-- Home indicator -->
212
+ <div class="home-indicator"></div>
213
+ </div>
214
+ </body>
215
+ </html>
code/14481/14481_1.html ADDED
@@ -0,0 +1,313 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Compose Email Dark</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: Roboto, Arial, sans-serif; }
9
+ #render-target {
10
+ position: relative;
11
+ width: 1080px;
12
+ height: 2400px;
13
+ overflow: hidden;
14
+ background: #121212;
15
+ color: #EDEDED;
16
+ }
17
+
18
+ /* Status bar */
19
+ .status-bar {
20
+ position: absolute;
21
+ top: 0;
22
+ left: 0;
23
+ width: 100%;
24
+ height: 88px;
25
+ background: #121212;
26
+ display: flex;
27
+ align-items: center;
28
+ justify-content: space-between;
29
+ padding: 0 28px;
30
+ box-sizing: border-box;
31
+ }
32
+ .status-time {
33
+ color: #ffffff;
34
+ font-size: 34px;
35
+ letter-spacing: 0.5px;
36
+ }
37
+ .status-icons {
38
+ display: flex;
39
+ align-items: center;
40
+ gap: 26px;
41
+ }
42
+ .status-dot {
43
+ width: 26px; height: 26px; background: #fff; border-radius: 4px; opacity: 0.9;
44
+ }
45
+ .icon-battery {
46
+ width: 54px; height: 24px; border: 2px solid #fff; border-radius: 4px; position: relative;
47
+ }
48
+ .icon-battery::after {
49
+ content: "";
50
+ position: absolute;
51
+ right: -8px; top: 6px; width: 6px; height: 12px; background: #fff; border-radius: 1px;
52
+ }
53
+ .icon-battery .level {
54
+ position: absolute; left: 3px; top: 3px; bottom: 3px; right: 12px; background: #fff; border-radius: 2px;
55
+ }
56
+
57
+ /* App bar */
58
+ .app-bar {
59
+ position: absolute;
60
+ top: 88px;
61
+ left: 0;
62
+ width: 100%;
63
+ height: 120px;
64
+ background: #1C1C1C;
65
+ display: flex;
66
+ align-items: center;
67
+ justify-content: space-between;
68
+ padding: 0 20px;
69
+ box-sizing: border-box;
70
+ border-bottom: 1px solid #2a2a2a;
71
+ }
72
+ .app-left, .app-right {
73
+ display: flex; align-items: center;
74
+ }
75
+ .app-left .back {
76
+ width: 96px; height: 96px; display: flex; align-items: center; justify-content: center;
77
+ }
78
+ .app-title {
79
+ font-size: 40px; color: #EDEDED; opacity: 0.0; /* Compose bar has no visible title; keep layout */
80
+ }
81
+ .icon-btn {
82
+ width: 88px; height: 88px; display: flex; align-items: center; justify-content: center;
83
+ }
84
+ .icon-btn svg { fill: #EDEDED; }
85
+
86
+ /* Fields area */
87
+ .fields {
88
+ position: absolute;
89
+ top: 208px;
90
+ left: 0;
91
+ width: 100%;
92
+ box-sizing: border-box;
93
+ }
94
+ .field-row {
95
+ padding: 28px 32px;
96
+ border-bottom: 1px solid #2a2a2a;
97
+ }
98
+ .field-label {
99
+ color: #A6A6A6;
100
+ font-size: 30px;
101
+ margin-bottom: 8px;
102
+ }
103
+ .field-value {
104
+ font-size: 36px;
105
+ color: #EDEDED;
106
+ }
107
+
108
+ .to-row {
109
+ display: flex; align-items: center; gap: 18px;
110
+ }
111
+ .avatar {
112
+ width: 64px; height: 64px; border-radius: 50%;
113
+ background: #2F3A40; display: flex; align-items: center; justify-content: center; color: #AEB7BA; font-size: 28px;
114
+ }
115
+ .chip {
116
+ display: inline-flex; align-items: center; gap: 18px;
117
+ padding: 10px 20px;
118
+ border: 1px solid #3b3b3b;
119
+ border-radius: 32px;
120
+ color: #EDEDED;
121
+ font-size: 34px;
122
+ background: transparent;
123
+ }
124
+ .chip .caret {
125
+ width: 0; height: 0; border-left: 10px solid transparent; border-right: 10px solid transparent;
126
+ border-top: 12px solid #a5a5a5;
127
+ }
128
+
129
+ .subject {
130
+ padding: 28px 32px;
131
+ border-bottom: 1px solid #2a2a2a;
132
+ font-size: 40px;
133
+ color: #EDEDED;
134
+ }
135
+
136
+ /* Body area */
137
+ .message-body {
138
+ padding: 36px 32px 16px 32px;
139
+ color: #EDEDED;
140
+ font-size: 36px;
141
+ line-height: 1.6;
142
+ }
143
+ .message-body .spacer {
144
+ height: 120px;
145
+ }
146
+
147
+ /* Keyboard */
148
+ .keyboard {
149
+ position: absolute;
150
+ left: 0; right: 0; bottom: 60px;
151
+ height: 860px;
152
+ background: #1A1C1F;
153
+ border-top-left-radius: 24px; border-top-right-radius: 24px;
154
+ box-shadow: 0 -8px 24px rgba(0,0,0,0.4);
155
+ overflow: hidden;
156
+ }
157
+ .k-top {
158
+ height: 96px; display: flex; align-items: center; gap: 28px; padding: 0 24px; box-sizing: border-box;
159
+ background: #1F2226; border-bottom: 1px solid #2b2f33;
160
+ }
161
+ .k-top .small-ic {
162
+ width: 60px; height: 60px; border-radius: 12px; background: #2A2E33;
163
+ }
164
+
165
+ .keys { padding: 18px 14px; box-sizing: border-box; display: grid; grid-template-rows: repeat(4, 1fr); row-gap: 18px; height: calc(100% - 96px); }
166
+ .row { display: grid; grid-auto-columns: 1fr; grid-auto-flow: column; column-gap: 14px; align-items: center; }
167
+ .key {
168
+ height: 120px; background: #2A2D31; border-radius: 18px; display: flex; align-items: center; justify-content: center; color: #EDEDED; font-size: 40px;
169
+ box-shadow: inset 0 -2px 0 rgba(0,0,0,0.2);
170
+ }
171
+ .key.small {
172
+ font-size: 34px;
173
+ }
174
+ .key.wide { grid-column: span 2; }
175
+ .key.space { grid-column: span 5; }
176
+ .key.special {
177
+ background: #CFE1FF; color: #0C2340; font-weight: 600;
178
+ }
179
+ .key.func {
180
+ background: #2D3338; color: #DADADA;
181
+ }
182
+
183
+ /* Home gesture bar */
184
+ .home-indicator {
185
+ position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
186
+ width: 360px; height: 10px; border-radius: 6px; background: #E6E6E6; opacity: 0.9;
187
+ }
188
+
189
+ /* Simple inline icon sizing helpers */
190
+ .svg-32 { width: 42px; height: 42px; }
191
+ .svg-40 { width: 50px; height: 50px; }
192
+ </style>
193
+ </head>
194
+ <body>
195
+ <div id="render-target">
196
+
197
+ <!-- Status Bar -->
198
+ <div class="status-bar">
199
+ <div class="status-time">11:53</div>
200
+ <div class="status-icons">
201
+ <div class="status-dot"></div>
202
+ <svg class="svg-32" viewBox="0 0 24 24" fill="#fff" aria-hidden="true">
203
+ <path d="M2 18h20v2H2v-2zm3-4h14v2H5v-2zm4-4h6v2H9V10zm3-4h0a1 1 0 110 2 1 1 0 010-2z"/>
204
+ </svg>
205
+ <svg class="svg-32" viewBox="0 0 24 24" fill="#fff" aria-hidden="true">
206
+ <path d="M12 3L2 12h3v8h6v-5h2v5h6v-8h3z"/>
207
+ </svg>
208
+ <div class="icon-battery"><div class="level"></div></div>
209
+ </div>
210
+ </div>
211
+
212
+ <!-- App Bar -->
213
+ <div class="app-bar">
214
+ <div class="app-left">
215
+ <div class="back">
216
+ <svg class="svg-40" viewBox="0 0 24 24">
217
+ <path d="M15.5 5l-7 7 7 7" stroke="#EDEDED" stroke-width="2.5" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
218
+ </svg>
219
+ </div>
220
+ <div class="app-title">Compose</div>
221
+ </div>
222
+ <div class="app-right">
223
+ <div class="icon-btn" title="Attach">
224
+ <svg class="svg-40" viewBox="0 0 24 24">
225
+ <path d="M7 12.5l5.5-5.5a3 3 0 114.2 4.2l-7.8 7.8a5 5 0 11-7.1-7.1l7.5-7.5" stroke="#EDEDED" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
226
+ </svg>
227
+ </div>
228
+ <div class="icon-btn" title="Send">
229
+ <svg class="svg-40" viewBox="0 0 24 24">
230
+ <path d="M2 21l20-9L2 3v7l14 2-14 2z" />
231
+ </svg>
232
+ </div>
233
+ <div class="icon-btn" title="More">
234
+ <svg class="svg-40" viewBox="0 0 24 24">
235
+ <circle cx="5" cy="12" r="2"/>
236
+ <circle cx="12" cy="12" r="2"/>
237
+ <circle cx="19" cy="12" r="2"/>
238
+ </svg>
239
+ </div>
240
+ </div>
241
+ </div>
242
+
243
+ <!-- Fields -->
244
+ <div class="fields">
245
+ <div class="field-row">
246
+ <div class="field-label">From</div>
247
+ <div class="field-value">dbwscratch.test.id11@gmail.com</div>
248
+ </div>
249
+
250
+ <div class="field-row">
251
+ <div class="field-label">To</div>
252
+ <div class="to-row">
253
+ <div class="avatar">•</div>
254
+ <div class="chip">
255
+ support@buzzfeed.com
256
+ <div class="caret"></div>
257
+ </div>
258
+ </div>
259
+ </div>
260
+
261
+ <div class="subject">Tasty Android 1.85.0 (1850001)</div>
262
+
263
+ <div class="message-body">
264
+ <div class="spacer"></div>
265
+ --- How can we make Tasty better? ---
266
+ <br><br>
267
+ Device: Google Pixel 7<br>
268
+ Board: panther<br>
269
+ Android version: Android 13 (33)<br>
270
+ App Version: Tasty 1.85.0 (1850001)<br>
271
+ Carrier:<br>
272
+ Network Status: Wifi
273
+ </div>
274
+ </div>
275
+
276
+ <!-- Keyboard -->
277
+ <div class="keyboard">
278
+ <div class="k-top">
279
+ <div class="small-ic"></div>
280
+ <div class="small-ic"></div>
281
+ <div class="small-ic"></div>
282
+ <div class="small-ic"></div>
283
+ <div class="small-ic"></div>
284
+ <div class="small-ic"></div>
285
+ <div class="small-ic"></div>
286
+ </div>
287
+ <div class="keys">
288
+ <div class="row">
289
+ <div class="key">Q</div><div class="key">W</div><div class="key">E</div><div class="key">R</div><div class="key">T</div><div class="key">Y</div><div class="key">U</div><div class="key">I</div><div class="key">O</div><div class="key">P</div>
290
+ </div>
291
+ <div class="row">
292
+ <div class="key"></div>
293
+ <div class="key">A</div><div class="key">S</div><div class="key">D</div><div class="key">F</div><div class="key">G</div><div class="key">H</div><div class="key">J</div><div class="key">K</div><div class="key">L</div>
294
+ </div>
295
+ <div class="row">
296
+ <div class="key func small">⇧</div>
297
+ <div class="key">Z</div><div class="key">X</div><div class="key">C</div><div class="key">V</div><div class="key">B</div><div class="key">N</div><div class="key">M</div>
298
+ <div class="key func small">⌫</div>
299
+ </div>
300
+ <div class="row">
301
+ <div class="key special small">?123</div>
302
+ <div class="key func small">,</div>
303
+ <div class="key space"></div>
304
+ <div class="key func small">.</div>
305
+ <div class="key special small">⏎</div>
306
+ </div>
307
+ </div>
308
+ </div>
309
+
310
+ <div class="home-indicator"></div>
311
+ </div>
312
+ </body>
313
+ </html>
code/14481/14481_2.html ADDED
@@ -0,0 +1,202 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Email Compose - Dark</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: Roboto, Arial, sans-serif; }
9
+ #render-target {
10
+ width: 1080px; height: 2400px; position: relative; overflow: hidden;
11
+ background: #111416; color: #EAEAEA;
12
+ }
13
+
14
+ /* Status bar */
15
+ .statusbar {
16
+ height: 88px; padding: 0 32px; display: flex; align-items: center; justify-content: space-between;
17
+ color: #EAEAEA; font-weight: 500;
18
+ }
19
+ .status-left { display: flex; align-items: center; gap: 16px; font-size: 34px; }
20
+ .status-right { display: flex; align-items: center; gap: 24px; }
21
+ .icon { width: 44px; height: 44px; fill: #EAEAEA; }
22
+ .small { width: 36px; height: 36px; }
23
+
24
+ /* App bar */
25
+ .appbar {
26
+ height: 110px; display: flex; align-items: center; gap: 26px;
27
+ padding: 0 20px 0 16px; border-bottom: 1px solid #24292d;
28
+ }
29
+ .appbar .title { font-size: 36px; color: #B8C0C7; flex: 1; }
30
+
31
+ /* Content */
32
+ .content { padding: 24px 32px 0 32px; }
33
+ .row { display: flex; align-items: center; gap: 24px; padding: 22px 0; }
34
+ .label { color: #9AA4AE; font-size: 28px; min-width: 120px; }
35
+ .value { font-size: 30px; color: #DDE3E8; }
36
+ .divider { height: 1px; background: #24292d; margin: 8px 0 0 0; }
37
+
38
+ /* To field pill */
39
+ .pill {
40
+ display: inline-flex; align-items: center; gap: 16px;
41
+ border: 2px solid #47525B; border-radius: 30px; padding: 10px 16px 10px 12px;
42
+ color: #DDE3E8; font-size: 28px;
43
+ }
44
+ .avatar {
45
+ width: 52px; height: 52px; background: #E0E0E0; border: 1px solid #BDBDBD;
46
+ border-radius: 50%; display: flex; align-items: center; justify-content: center;
47
+ color: #757575; font-size: 18px;
48
+ }
49
+
50
+ .subject { font-size: 34px; padding: 26px 0 22px 0; }
51
+ .body-text { font-size: 34px; line-height: 1.55; color: #E6ECEF; padding-top: 26px; min-height: 520px; }
52
+
53
+ /* Keyboard */
54
+ .keyboard {
55
+ position: absolute; left: 0; right: 0; bottom: 0;
56
+ height: 820px; background: #1B1F22; border-top: 1px solid #22272b;
57
+ padding: 22px 20px 30px 20px; box-sizing: border-box;
58
+ }
59
+ .kb-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
60
+ .kb-icon {
61
+ width: 72px; height: 72px; border-radius: 18px; background: #121619;
62
+ display: flex; align-items: center; justify-content: center; border: 1px solid #2a3136;
63
+ }
64
+ .keys { display: grid; grid-template-rows: repeat(4, 1fr); gap: 14px; height: 620px; }
65
+ .row-keys { display: grid; grid-auto-flow: column; gap: 10px; }
66
+ .key {
67
+ background: #2A2F34; color: #EAEAEA; border-radius: 18px; text-transform: lowercase;
68
+ display: flex; align-items: center; justify-content: center; font-size: 36px;
69
+ border: 1px solid #3a4248; height: 112px;
70
+ }
71
+ .key.wide { grid-column: span 2; }
72
+ .space { grid-column: span 6; }
73
+ .enter { background: #BFD5F9; color: #0F1A22; }
74
+ .light { background: #3A4147; }
75
+ .bottom-bar {
76
+ position: absolute; left: 0; right: 0; bottom: 8px; display: flex; justify-content: center;
77
+ }
78
+ .home-indicator {
79
+ width: 360px; height: 10px; background: #9AA4AE; border-radius: 6px; opacity: .6;
80
+ }
81
+
82
+ /* Utility */
83
+ .spacer { flex: 1; }
84
+ </style>
85
+ </head>
86
+ <body>
87
+ <div id="render-target">
88
+ <!-- Status Bar -->
89
+ <div class="statusbar">
90
+ <div class="status-left">
91
+ <span>12:01</span>
92
+ <svg class="small" viewBox="0 0 24 24"><rect x="3" y="6" width="14" height="10" rx="2" fill="#EAEAEA"/><polygon points="17,9 22,12 17,15" fill="#EAEAEA"/></svg>
93
+ </div>
94
+ <div class="status-right">
95
+ <!-- WiFi -->
96
+ <svg class="small" viewBox="0 0 24 24">
97
+ <path d="M2 8c5-4 15-4 20 0l-2 2c-4-3-12-3-16 0L2 8zm4 4c3-2 9-2 12 0l-2 2c-2-1-6-1-8 0l-2-2zm4 4c1-.6 3-.6 4 0l-2 2-2-2z" fill="#EAEAEA"/>
98
+ </svg>
99
+ <!-- Battery -->
100
+ <svg class="small" viewBox="0 0 28 24">
101
+ <rect x="2" y="6" width="20" height="12" rx="2" fill="none" stroke="#EAEAEA" stroke-width="2"/>
102
+ <rect x="4" y="8" width="16" height="8" rx="1" fill="#EAEAEA"/>
103
+ <rect x="22" y="9" width="3" height="6" rx="1" fill="#EAEAEA"/>
104
+ </svg>
105
+ </div>
106
+ </div>
107
+
108
+ <!-- App Bar -->
109
+ <div class="appbar">
110
+ <!-- Back -->
111
+ <svg class="icon" viewBox="0 0 24 24">
112
+ <path d="M15 18l-6-6 6-6" stroke="#EAEAEA" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
113
+ </svg>
114
+ <div class="spacer"></div>
115
+ <!-- Attach -->
116
+ <svg class="icon" viewBox="0 0 24 24">
117
+ <path d="M7 12l6-6a4 4 0 116 6l-7 7a5 5 0 11-7-7l8-8" fill="none" stroke="#EAEAEA" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
118
+ </svg>
119
+ <!-- Send -->
120
+ <svg class="icon" viewBox="0 0 24 24">
121
+ <path d="M3 11l17-8-8 17-2-6-7-3z" fill="#64B5F6"/>
122
+ </svg>
123
+ <!-- Menu -->
124
+ <svg class="icon" viewBox="0 0 24 24">
125
+ <circle cx="12" cy="5" r="2" fill="#EAEAEA"/><circle cx="12" cy="12" r="2" fill="#EAEAEA"/><circle cx="12" cy="19" r="2" fill="#EAEAEA"/>
126
+ </svg>
127
+ </div>
128
+
129
+ <!-- Content -->
130
+ <div class="content">
131
+ <div class="row">
132
+ <div class="label">From</div>
133
+ <div class="value">dbwscratch.test.id11@gmail.com</div>
134
+ </div>
135
+ <div class="divider"></div>
136
+
137
+ <div class="row">
138
+ <div class="label">To</div>
139
+ <div class="pill">
140
+ <div class="avatar">IMG</div>
141
+ <span>support@buzzfeed.com</span>
142
+ <svg class="small" viewBox="0 0 24 24">
143
+ <path d="M6 9l6 6 6-6" fill="none" stroke="#DDE3E8" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
144
+ </svg>
145
+ </div>
146
+ </div>
147
+
148
+ <div class="divider"></div>
149
+
150
+ <div class="subject">Tasty Android 1.85.0 (1850001)</div>
151
+
152
+ <div class="divider"></div>
153
+
154
+ <div class="body-text">
155
+ I want more ingredients in the recipe.
156
+ </div>
157
+ </div>
158
+
159
+ <!-- Keyboard -->
160
+ <div class="keyboard">
161
+ <div class="kb-toolbar">
162
+ <div class="kb-icon"><svg class="small" viewBox="0 0 24 24"><rect x="4" y="4" width="16" height="16" rx="2" fill="#9AA4AE"/></svg></div>
163
+ <div class="kb-icon"><svg class="small" viewBox="0 0 24 24"><circle cx="12" cy="12" r="8" fill="#9AA4AE"/></svg></div>
164
+ <div class="kb-icon"><span style="color:#EAEAEA;font-size:28px;">GIF</span></div>
165
+ <div class="kb-icon"><svg class="small" viewBox="0 0 24 24"><circle cx="12" cy="12" r="9" fill="none" stroke="#9AA4AE" stroke-width="2"/><circle cx="12" cy="12" r="3" fill="#9AA4AE"/></svg></div>
166
+ <div class="kb-icon"><svg class="small" viewBox="0 0 24 24"><path d="M3 12h9l3 3V6l-3 3H3z" fill="#9AA4AE"/></svg></div>
167
+ <div class="kb-icon"><svg class="small" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10" fill="#9AA4AE"/></svg></div>
168
+ <div class="kb-icon"><svg class="small" viewBox="0 0 24 24"><path d="M6 20V4l12 8-12 8z" fill="#9AA4AE"/></svg></div>
169
+ </div>
170
+
171
+ <div class="keys">
172
+ <div class="row-keys">
173
+ <div class="key">q</div><div class="key">w</div><div class="key">e</div><div class="key">r</div><div class="key">t</div>
174
+ <div class="key">y</div><div class="key">u</div><div class="key">i</div><div class="key">o</div><div class="key">p</div>
175
+ </div>
176
+ <div class="row-keys">
177
+ <div class="key">a</div><div class="key">s</div><div class="key">d</div><div class="key">f</div><div class="key">g</div>
178
+ <div class="key">h</div><div class="key">j</div><div class="key">k</div><div class="key">l</div>
179
+ <div class="key light wide"><svg class="small" viewBox="0 0 24 24"><path d="M4 6h16" stroke="#EAEAEA" stroke-width="2" stroke-linecap="round"/></svg></div>
180
+ </div>
181
+ <div class="row-keys">
182
+ <div class="key light wide"><svg class="small" viewBox="0 0 24 24"><path d="M6 18l4-4-4-4" stroke="#EAEAEA" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg></div>
183
+ <div class="key">z</div><div class="key">x</div><div class="key">c</div><div class="key">v</div>
184
+ <div class="key">b</div><div class="key">n</div><div class="key">m</div>
185
+ <div class="key light wide"><svg class="small" viewBox="0 0 24 24"><path d="M6 6l12 12M6 18L18 6" stroke="#EAEAEA" stroke-width="2" stroke-linecap="round"/></svg></div>
186
+ </div>
187
+ <div class="row-keys">
188
+ <div class="key light wide">?123</div>
189
+ <div class="key light"><span style="font-size:32px;">,</span></div>
190
+ <div class="key space"></div>
191
+ <div class="key light"><span style="font-size:38px;">.</span></div>
192
+ <div class="key enter wide">⤶</div>
193
+ </div>
194
+ </div>
195
+ </div>
196
+
197
+ <div class="bottom-bar">
198
+ <div class="home-indicator"></div>
199
+ </div>
200
+ </div>
201
+ </body>
202
+ </html>
code/14481/14481_3.html ADDED
@@ -0,0 +1,248 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Settings Screen</title>
7
+ <style>
8
+ body {
9
+ margin: 0;
10
+ padding: 0;
11
+ background: transparent;
12
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
13
+ color: #E6E6E6;
14
+ }
15
+
16
+ #render-target {
17
+ width: 1080px;
18
+ height: 2400px;
19
+ position: relative;
20
+ overflow: hidden;
21
+ background: #242529; /* dark background */
22
+ }
23
+
24
+ /* Status bar */
25
+ .status-bar {
26
+ position: absolute;
27
+ top: 0;
28
+ left: 0;
29
+ right: 0;
30
+ height: 110px;
31
+ padding: 0 36px;
32
+ display: flex;
33
+ align-items: center;
34
+ justify-content: space-between;
35
+ color: #F5F5F5;
36
+ font-size: 42px;
37
+ letter-spacing: 0.5px;
38
+ }
39
+ .status-icons {
40
+ display: flex;
41
+ align-items: center;
42
+ gap: 28px;
43
+ }
44
+ .icon {
45
+ display: inline-flex;
46
+ width: 42px;
47
+ height: 42px;
48
+ }
49
+
50
+ /* Back and header */
51
+ .top-row {
52
+ position: absolute;
53
+ top: 140px;
54
+ left: 36px;
55
+ right: 36px;
56
+ display: flex;
57
+ align-items: center;
58
+ gap: 20px;
59
+ }
60
+ .back-btn {
61
+ width: 56px;
62
+ height: 56px;
63
+ display: inline-flex;
64
+ align-items: center;
65
+ justify-content: center;
66
+ }
67
+ .screen-title {
68
+ margin: 56px 0 0 0;
69
+ padding: 0 36px;
70
+ font-size: 96px;
71
+ font-weight: 800;
72
+ color: #EAEAEA;
73
+ }
74
+
75
+ /* Content */
76
+ .content {
77
+ position: absolute;
78
+ left: 0;
79
+ right: 0;
80
+ top: 320px;
81
+ bottom: 120px;
82
+ padding: 0 36px 120px 36px;
83
+ overflow: hidden;
84
+ }
85
+
86
+ .section {
87
+ margin-top: 48px;
88
+ }
89
+ .section-title {
90
+ font-size: 46px;
91
+ font-weight: 800;
92
+ color: #D1D1D5;
93
+ margin: 40px 0 28px 0;
94
+ }
95
+ .setting-item {
96
+ padding: 34px 0;
97
+ border-bottom: 0px solid rgba(255,255,255,0.06);
98
+ }
99
+ .setting-title {
100
+ font-size: 48px;
101
+ font-weight: 600;
102
+ color: #E7E7EA;
103
+ margin-bottom: 10px;
104
+ }
105
+ .setting-sub {
106
+ font-size: 40px;
107
+ color: #8E9097;
108
+ }
109
+
110
+ .spacer-xl {
111
+ height: 28px;
112
+ }
113
+
114
+ /* iOS/Android gesture bar */
115
+ .gesture {
116
+ position: absolute;
117
+ bottom: 28px;
118
+ left: 50%;
119
+ transform: translateX(-50%);
120
+ width: 400px;
121
+ height: 12px;
122
+ background: #EDEDED;
123
+ border-radius: 12px;
124
+ opacity: 0.9;
125
+ }
126
+ </style>
127
+ </head>
128
+ <body>
129
+ <div id="render-target">
130
+ <!-- Status bar -->
131
+ <div class="status-bar">
132
+ <div class="time">12:02</div>
133
+ <div class="status-icons">
134
+ <!-- Simple video/cast indicator -->
135
+ <div class="icon" aria-hidden="true">
136
+ <svg viewBox="0 0 24 24" fill="#FFFFFF" width="42" height="42">
137
+ <rect x="3" y="5" width="18" height="12" rx="2" ry="2"></rect>
138
+ <polygon points="10,9 16,12 10,15" fill="#242529"></polygon>
139
+ </svg>
140
+ </div>
141
+ <!-- WiFi -->
142
+ <div class="icon">
143
+ <svg viewBox="0 0 24 24" width="42" height="42" fill="none" stroke="#FFFFFF" stroke-width="2">
144
+ <path d="M2 8c5-4 15-4 20 0"></path>
145
+ <path d="M5 12c3-3 11-3 14 0"></path>
146
+ <path d="M8 16c2-2 6-2 8 0"></path>
147
+ <circle cx="12" cy="19" r="1.6" fill="#FFFFFF" stroke="none"></circle>
148
+ </svg>
149
+ </div>
150
+ <!-- Battery -->
151
+ <div class="icon">
152
+ <svg viewBox="0 0 28 16" width="42" height="42" fill="none" stroke="#FFFFFF" stroke-width="2">
153
+ <rect x="1" y="3" width="22" height="10" rx="2"></rect>
154
+ <rect x="3" y="5" width="14" height="6" fill="#FFFFFF" stroke="none"></rect>
155
+ <rect x="23" y="6" width="3" height="4" fill="#FFFFFF" stroke="none"></rect>
156
+ </svg>
157
+ </div>
158
+ </div>
159
+ </div>
160
+
161
+ <!-- Back arrow -->
162
+ <div class="top-row">
163
+ <div class="back-btn">
164
+ <svg viewBox="0 0 24 24" width="56" height="56" fill="#FF5B7E">
165
+ <path d="M15.5 4l-8 8 8 8 1.5-1.5L10.5 12l6.5-6.5z"></path>
166
+ </svg>
167
+ </div>
168
+ </div>
169
+
170
+ <!-- Title -->
171
+ <div class="screen-title">Settings</div>
172
+
173
+ <!-- Content -->
174
+ <div class="content">
175
+ <div class="section">
176
+ <div class="section-title">General</div>
177
+
178
+ <div class="setting-item">
179
+ <div class="setting-title">Autoplay Videos</div>
180
+ <div class="setting-sub">Always</div>
181
+ </div>
182
+
183
+ <div class="spacer-xl"></div>
184
+
185
+ <div class="setting-item">
186
+ <div class="setting-title">Dietary Restrictions</div>
187
+ <div class="setting-sub">None</div>
188
+ </div>
189
+
190
+ <div class="spacer-xl"></div>
191
+
192
+ <div class="setting-item">
193
+ <div class="setting-title">Measurement System</div>
194
+ <div class="setting-sub">US Only</div>
195
+ </div>
196
+
197
+ <div class="spacer-xl"></div>
198
+
199
+ <div class="setting-item">
200
+ <div class="setting-title">Notifications</div>
201
+ <div class="setting-sub">Enabled. Tap to adjust in settings.</div>
202
+ </div>
203
+ </div>
204
+
205
+ <div class="section">
206
+ <div class="section-title">Feedback</div>
207
+ <div class="setting-item">
208
+ <div class="setting-title">Email Tasty Support</div>
209
+ </div>
210
+ </div>
211
+
212
+ <div class="section">
213
+ <div class="section-title">Legal</div>
214
+ <div class="setting-item">
215
+ <div class="setting-title">BuzzFeed User Agreement</div>
216
+ </div>
217
+ <div class="spacer-xl"></div>
218
+ <div class="setting-item">
219
+ <div class="setting-title">BuzzFeed Privacy Policy</div>
220
+ </div>
221
+ <div class="spacer-xl"></div>
222
+ <div class="setting-item">
223
+ <div class="setting-title">Ad Choices</div>
224
+ </div>
225
+ <div class="spacer-xl"></div>
226
+ <div class="setting-item">
227
+ <div class="setting-title">Download User Data</div>
228
+ </div>
229
+ <div class="spacer-xl"></div>
230
+ <div class="setting-item">
231
+ <div class="setting-title">About Nielsen Measurement and Your Choices</div>
232
+ </div>
233
+ <div class="spacer-xl"></div>
234
+ <div class="setting-item">
235
+ <div class="setting-title">Manage Advertisement Consent</div>
236
+ </div>
237
+ </div>
238
+
239
+ <div class="section">
240
+ <div class="section-title">Account</div>
241
+ </div>
242
+ </div>
243
+
244
+ <!-- Gesture bar -->
245
+ <div class="gesture"></div>
246
+ </div>
247
+ </body>
248
+ </html>
code/14482/14482_0.html ADDED
@@ -0,0 +1,319 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Product Detail - Goat Milk Powder</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; }
9
+ #render-target {
10
+ width: 1080px;
11
+ height: 2400px;
12
+ position: relative;
13
+ overflow: hidden;
14
+ background: #ffffff;
15
+ font-family: Arial, sans-serif;
16
+ color: #222;
17
+ }
18
+ /* Top App Bar */
19
+ .appbar {
20
+ height: 120px;
21
+ padding: 34px 36px 0 36px;
22
+ box-sizing: border-box;
23
+ }
24
+ .appbar .icons {
25
+ display: flex;
26
+ align-items: center;
27
+ justify-content: space-between;
28
+ }
29
+ .left-back {
30
+ width: 60px; height: 60px;
31
+ display: flex; align-items: center; justify-content: center;
32
+ }
33
+ .right-actions {
34
+ display: flex; gap: 22px; align-items: center;
35
+ }
36
+ .circle-btn {
37
+ width: 72px; height: 72px; border-radius: 36px;
38
+ border: 2px solid #E6E6E6;
39
+ display: flex; align-items: center; justify-content: center;
40
+ background: #fff;
41
+ }
42
+ .badge {
43
+ position: absolute;
44
+ top: -6px; right: -6px;
45
+ background: #E53935;
46
+ color: #fff;
47
+ font-size: 26px;
48
+ height: 40px; min-width: 40px; padding: 0 8px;
49
+ border-radius: 20px;
50
+ display: flex; align-items: center; justify-content: center;
51
+ }
52
+
53
+ /* Image carousel */
54
+ .carousel-wrap {
55
+ margin: 10px 36px 0 36px;
56
+ height: 780px;
57
+ border-radius: 12px;
58
+ overflow: hidden;
59
+ background: #F7F7F7;
60
+ display: flex; align-items: center; justify-content: center;
61
+ position: relative;
62
+ }
63
+ .img-placeholder {
64
+ width: 100%; height: 100%;
65
+ background: #E0E0E0;
66
+ border: 1px solid #BDBDBD;
67
+ display: flex; align-items: center; justify-content: center;
68
+ color: #757575; font-size: 40px;
69
+ }
70
+ .whatsapp-fab {
71
+ position: absolute;
72
+ right: 32px;
73
+ bottom: 32px;
74
+ width: 100px; height: 100px;
75
+ border-radius: 50%;
76
+ background: #ffffff;
77
+ border: 2px solid #E6E6E6;
78
+ box-shadow: 0 6px 12px rgba(0,0,0,0.08);
79
+ display: flex; align-items: center; justify-content: center;
80
+ }
81
+ .rating-pill {
82
+ position: absolute;
83
+ right: 36px;
84
+ bottom: -60px;
85
+ background: #fff;
86
+ border: 2px solid #DFF1D7;
87
+ border-radius: 30px;
88
+ padding: 12px 20px;
89
+ display: flex; align-items: center; gap: 12px;
90
+ color: #2E7D32;
91
+ font-size: 32px;
92
+ }
93
+ .dots {
94
+ display: flex; gap: 12px;
95
+ justify-content: center; align-items: center;
96
+ margin: 36px 0 18px 0;
97
+ }
98
+ .dot { width: 16px; height: 16px; border-radius: 50%; background: #D0D0D0; }
99
+ .dot.active { background: #9E9E9E; }
100
+
101
+ /* Stock banner */
102
+ .stock-banner {
103
+ margin: 0 0 10px 0;
104
+ background: #EAF9F1;
105
+ color: #62BE8A;
106
+ font-size: 34px;
107
+ padding: 22px 36px;
108
+ }
109
+
110
+ /* Product details */
111
+ .content { padding: 0 36px; }
112
+ .tag {
113
+ display: inline-flex; align-items: center;
114
+ background: #FDEBFF; color: #C76BC0;
115
+ padding: 10px 16px; border-radius: 16px;
116
+ font-size: 28px; font-weight: bold;
117
+ margin-top: 12px;
118
+ }
119
+ .title {
120
+ font-size: 44px; line-height: 56px; margin: 18px 0 8px 0; font-weight: 600;
121
+ }
122
+ .price-row {
123
+ display: flex; align-items: baseline; gap: 18px; margin: 8px 0 18px 0;
124
+ }
125
+ .price {
126
+ font-size: 64px; font-weight: 700; letter-spacing: -0.5px;
127
+ }
128
+ .mrp {
129
+ font-size: 36px; color: #9E9E9E; text-decoration: line-through;
130
+ }
131
+ .off {
132
+ font-size: 36px; color: #FF8F00; font-weight: 700;
133
+ }
134
+ .return-row {
135
+ display: flex; align-items: center; gap: 16px;
136
+ color: #5F5F5F; font-size: 34px; margin: 16px 0 28px 0;
137
+ }
138
+
139
+ /* Promo card */
140
+ .promo-card {
141
+ margin: 24px 36px;
142
+ background: #fff;
143
+ border: 2px solid #EEEEEE;
144
+ border-radius: 24px;
145
+ padding: 24px;
146
+ display: flex; align-items: center; gap: 24px;
147
+ box-shadow: 0 6px 14px rgba(0,0,0,0.06);
148
+ }
149
+ .promo-icon {
150
+ width: 96px; height: 96px; border-radius: 20px;
151
+ background: #E6F7F4; border: 1px solid #CFEAE5;
152
+ display: flex; align-items: center; justify-content: center;
153
+ }
154
+ .promo-text .headline {
155
+ font-size: 40px; color: #25BCA8; font-weight: 700;
156
+ }
157
+ .promo-text .sub {
158
+ font-size: 32px; color: #666; margin-top: 8px;
159
+ }
160
+ .promo-dots { display: flex; gap: 12px; justify-content: center; margin-top: 14px; }
161
+ .promo-dot { width: 16px; height: 16px; border-radius: 50%; background: #D0D0D0; }
162
+ .promo-dot.active { background: #616161; width: 22px; border-radius: 8px; }
163
+
164
+ /* Sticky buy bar */
165
+ .buy-bar {
166
+ position: absolute;
167
+ left: 0; right: 0; bottom: 120px;
168
+ background: #ffffff;
169
+ border-top: 1px solid #EEEEEE;
170
+ box-shadow: 0 -8px 18px rgba(0,0,0,0.07);
171
+ padding: 24px 36px;
172
+ display: flex; align-items: center; gap: 24px;
173
+ }
174
+ .buy-cart {
175
+ width: 120px; height: 120px;
176
+ border-radius: 24px; background: #F7F7F7;
177
+ display: flex; align-items: center; justify-content: center;
178
+ }
179
+ .buy-btn {
180
+ flex: 1;
181
+ height: 120px;
182
+ background: #E54A55;
183
+ color: #fff; font-size: 44px; font-weight: 700;
184
+ border-radius: 26px;
185
+ display: flex; align-items: center; justify-content: center;
186
+ }
187
+
188
+ /* Home indicator */
189
+ .home-indicator {
190
+ position: absolute; left: 50%; transform: translateX(-50%);
191
+ bottom: 36px; width: 320px; height: 14px;
192
+ background: #000; opacity: 0.15; border-radius: 7px;
193
+ }
194
+ </style>
195
+ </head>
196
+ <body>
197
+ <div id="render-target">
198
+
199
+ <!-- Top App Bar -->
200
+ <div class="appbar">
201
+ <div class="icons">
202
+ <div class="left-back">
203
+ <svg width="48" height="48" viewBox="0 0 24 24">
204
+ <path d="M14 6 L8 12 L14 18" fill="none" stroke="#606060" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
205
+ </svg>
206
+ </div>
207
+ <div class="right-actions">
208
+ <div class="circle-btn">
209
+ <svg width="36" height="36" viewBox="0 0 24 24">
210
+ <circle cx="11" cy="11" r="7" fill="none" stroke="#616161" stroke-width="2"/>
211
+ <path d="M20 20 L16 16" stroke="#616161" stroke-width="2" stroke-linecap="round"/>
212
+ </svg>
213
+ </div>
214
+ <div class="circle-btn">
215
+ <svg width="38" height="38" viewBox="0 0 24 24">
216
+ <path d="M12 3 L4 9 V20 H20 V9 Z" fill="none" stroke="#616161" stroke-width="2" stroke-linejoin="round"/>
217
+ <path d="M9 20 V12 H15 V20" stroke="#616161" stroke-width="2"/>
218
+ </svg>
219
+ </div>
220
+ <div class="circle-btn" style="position: relative;">
221
+ <svg width="40" height="40" viewBox="0 0 24 24">
222
+ <path d="M6 6 H20 L18 14 H8 L6 6 Z" fill="none" stroke="#616161" stroke-width="2" stroke-linejoin="round"/>
223
+ <circle cx="9" cy="18" r="1.5" fill="#616161"/>
224
+ <circle cx="17" cy="18" r="1.5" fill="#616161"/>
225
+ </svg>
226
+ <div class="badge">1</div>
227
+ </div>
228
+ </div>
229
+ </div>
230
+ </div>
231
+
232
+ <!-- Product image carousel -->
233
+ <div class="carousel-wrap">
234
+ <div class="img-placeholder">[IMG: Goat Milk Powder Box]</div>
235
+
236
+ <div class="whatsapp-fab">
237
+ <svg width="56" height="56" viewBox="0 0 24 24">
238
+ <path d="M12 3 A9 9 0 1 1 3 12 L3 21 L7 19 A9 9 0 0 0 12 3 Z" fill="none" stroke="#25D366" stroke-width="2"/>
239
+ <path d="M9 10 C9.5 12 11 13.5 13 14 M13 14 L15 13" stroke="#25D366" stroke-width="2" stroke-linecap="round"/>
240
+ </svg>
241
+ </div>
242
+
243
+ <!-- Rating pill overlaid near the image bottom -->
244
+ <div class="rating-pill">
245
+ <svg width="32" height="32" viewBox="0 0 24 24">
246
+ <path d="M12 3 L14.5 9 H21 L16 12.8 L18 19 L12 15.5 L6 19 L8 12.8 L3 9 H9.5 Z" fill="#66BB6A"/>
247
+ </svg>
248
+ <div>4.3 (35)</div>
249
+ </div>
250
+ </div>
251
+
252
+ <!-- Dot indicators below image -->
253
+ <div class="dots">
254
+ <div class="dot"></div>
255
+ <div class="dot active"></div>
256
+ <div class="dot"></div>
257
+ </div>
258
+
259
+ <!-- Stock banner -->
260
+ <div class="stock-banner">Only 6 items left</div>
261
+
262
+ <!-- Product info -->
263
+ <div class="content">
264
+ <div class="tag">TOP RATED</div>
265
+ <div class="title">Hye Goat Milk Powder Milk Shake 200 g</div>
266
+
267
+ <div class="price-row">
268
+ <div class="price">₹449</div>
269
+ <div class="mrp">MRP ₹649</div>
270
+ <div class="off">31% OFF</div>
271
+ </div>
272
+
273
+ <div class="return-row">
274
+ <svg width="30" height="30" viewBox="0 0 24 24">
275
+ <path d="M6 4 H18 V20 H6 Z" fill="none" stroke="#D64A57" stroke-width="2"/>
276
+ <path d="M8 8 H16" stroke="#D64A57" stroke-width="2"/>
277
+ <path d="M8 12 H16" stroke="#D64A57" stroke-width="2"/>
278
+ <path d="M8 16 H12" stroke="#D64A57" stroke-width="2"/>
279
+ </svg>
280
+ <span>Non Returnable</span>
281
+ </div>
282
+ </div>
283
+
284
+ <!-- Promo section -->
285
+ <div class="promo-card">
286
+ <div class="promo-icon">
287
+ <svg width="56" height="56" viewBox="0 0 24 24">
288
+ <circle cx="12" cy="12" r="8" fill="none" stroke="#25BCA8" stroke-width="2"/>
289
+ <path d="M12 6 C10 10 14 14 12 18" stroke="#25BCA8" stroke-width="2" stroke-linecap="round"/>
290
+ </svg>
291
+ </div>
292
+ <div class="promo-text">
293
+ <div class="headline">Flat 10% Cashback on Simpl</div>
294
+ <div class="sub">Pay using Simpl & get 10% cashback up to ₹200</div>
295
+ </div>
296
+ </div>
297
+ <div class="promo-dots">
298
+ <div class="promo-dot"></div>
299
+ <div class="promo-dot active"></div>
300
+ <div class="promo-dot"></div>
301
+ <div class="promo-dot"></div>
302
+ </div>
303
+
304
+ <!-- Sticky Buy Bar -->
305
+ <div class="buy-bar">
306
+ <div class="buy-cart">
307
+ <svg width="56" height="56" viewBox="0 0 24 24">
308
+ <path d="M6 6 H20 L18 14 H8 L6 6 Z" fill="none" stroke="#333" stroke-width="2" stroke-linejoin="round"/>
309
+ <circle cx="9" cy="18" r="1.5" fill="#333"/>
310
+ <circle cx="17" cy="18" r="1.5" fill="#333"/>
311
+ </svg>
312
+ </div>
313
+ <div class="buy-btn">Buy Now</div>
314
+ </div>
315
+
316
+ <div class="home-indicator"></div>
317
+ </div>
318
+ </body>
319
+ </html>
code/14482/14482_1.html ADDED
@@ -0,0 +1,331 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>My Cart - Mock UI</title>
6
+ <style>
7
+ body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; }
8
+ #render-target {
9
+ width: 1080px;
10
+ height: 2400px;
11
+ position: relative;
12
+ overflow: hidden;
13
+ background: #f6f7f9;
14
+ }
15
+ .status-space { height: 96px; }
16
+ .header {
17
+ height: 120px;
18
+ background: #ffffff;
19
+ border-bottom: 1px solid #e6e6e6;
20
+ display: flex;
21
+ align-items: center;
22
+ padding: 0 36px;
23
+ }
24
+ .header .title {
25
+ font-size: 44px;
26
+ font-weight: 700;
27
+ color: #111;
28
+ margin-left: 24px;
29
+ }
30
+ .icon-btn {
31
+ width: 72px; height: 72px; border-radius: 36px;
32
+ display: flex; align-items: center; justify-content: center;
33
+ }
34
+ .content {
35
+ padding: 24px 32px 180px 32px;
36
+ }
37
+
38
+ /* Select all row */
39
+ .select-all {
40
+ background: #ffffff;
41
+ border-radius: 24px;
42
+ box-shadow: 0 2px 8px rgba(0,0,0,0.06);
43
+ padding: 28px;
44
+ display: flex;
45
+ align-items: center;
46
+ margin-bottom: 24px;
47
+ }
48
+ .check-pill {
49
+ width: 60px; height: 60px; border-radius: 14px; background: #e74b58;
50
+ display: flex; align-items: center; justify-content: center; color: #fff; margin-right: 24px;
51
+ }
52
+ .select-all .texts .main {
53
+ font-size: 36px; font-weight: 700; color: #222;
54
+ }
55
+ .select-all .texts .sub {
56
+ font-size: 26px; color: #34a853; margin-top: 4px;
57
+ }
58
+ .action-pill {
59
+ margin-left: auto;
60
+ background: #f7f7f7;
61
+ border: 1px solid #e3e3e3;
62
+ border-radius: 40px;
63
+ padding: 12px 16px;
64
+ display: flex; align-items: center; gap: 18px;
65
+ }
66
+ .divider-vert { width: 1px; height: 40px; background: #e3e3e3; }
67
+
68
+ /* Free delivery banner */
69
+ .free-banner {
70
+ display: flex; align-items: center; gap: 16px;
71
+ background: #e6f9f0;
72
+ border: 1px solid #bde5cd;
73
+ color: #2e7d32;
74
+ border-radius: 20px;
75
+ padding: 22px 26px;
76
+ margin: 8px 0 24px 0;
77
+ font-size: 34px;
78
+ }
79
+ .free-banner b { font-weight: 800; }
80
+
81
+ /* Product card */
82
+ .card {
83
+ background: #ffffff;
84
+ border-radius: 24px;
85
+ box-shadow: 0 2px 8px rgba(0,0,0,0.06);
86
+ padding: 26px;
87
+ margin-bottom: 24px;
88
+ }
89
+ .product-row { display: flex; }
90
+ .product-image {
91
+ position: relative;
92
+ width: 240px;
93
+ }
94
+ .product-image .img {
95
+ width: 220px; height: 260px; background: #E0E0E0; border: 1px solid #BDBDBD;
96
+ border-radius: 16px;
97
+ display: flex; align-items: center; justify-content: center; color: #757575; font-size: 28px; text-align: center;
98
+ }
99
+ .product-image .check {
100
+ position: absolute; top: -10px; left: -10px;
101
+ width: 64px; height: 64px; border-radius: 14px; background: #e74b58;
102
+ display: flex; align-items: center; justify-content: center; color: #fff;
103
+ box-shadow: 0 2px 6px rgba(0,0,0,0.2);
104
+ }
105
+ .product-info {
106
+ flex: 1;
107
+ padding-left: 20px;
108
+ }
109
+ .product-title { font-size: 34px; color: #333; font-weight: 600; margin-bottom: 12px; }
110
+ .price-line { display: flex; align-items: baseline; gap: 18px; margin-bottom: 6px; }
111
+ .price-line .price { font-size: 44px; font-weight: 800; color: #111; }
112
+ .price-line .old { font-size: 30px; color: #9e9e9e; text-decoration: line-through; }
113
+ .price-line .off { font-size: 30px; color: #c68a0b; font-weight: 700; }
114
+ .tax-text { font-size: 26px; color: #9e9e9e; margin-top: 4px; }
115
+ .qty {
116
+ margin-top: 18px;
117
+ display: inline-flex; align-items: center; gap: 10px;
118
+ background: #f2f2f2; border-radius: 14px; border: 1px solid #e3e3e3;
119
+ padding: 14px 18px; font-size: 30px; color: #333;
120
+ }
121
+ .actions {
122
+ margin-top: 22px;
123
+ border-top: 1px solid #efefef;
124
+ padding-top: 18px;
125
+ display: flex; align-items: center;
126
+ }
127
+ .action-item {
128
+ flex: 1;
129
+ display: flex; align-items: center; gap: 16px;
130
+ color: #555; font-size: 32px; font-weight: 600;
131
+ }
132
+ .action-item + .action-item { border-left: 1px solid #efefef; padding-left: 24px; }
133
+
134
+ /* Price details */
135
+ .section-header {
136
+ display: flex; align-items: center; justify-content: space-between;
137
+ padding: 18px 8px;
138
+ margin-top: 18px;
139
+ }
140
+ .section-header .title { font-size: 44px; font-weight: 800; color: #222; }
141
+ .price-card {
142
+ background: #ffffff;
143
+ border-radius: 22px;
144
+ border: 1px solid #e9e9e9;
145
+ padding: 26px;
146
+ }
147
+ .row { display: flex; align-items: center; justify-content: space-between; margin: 16px 0; font-size: 34px; color: #444; }
148
+ .row .value { color: #111; font-weight: 700; }
149
+ .row .free { color: #34a853; font-weight: 800; }
150
+ .dashed {
151
+ height: 0; border-top: 2px dashed #d7d7d7; margin: 16px 0;
152
+ }
153
+
154
+ /* Spacer area mimicking long page content */
155
+ .spacer {
156
+ height: 720px;
157
+ background: #f1f2f4;
158
+ border-radius: 24px;
159
+ margin-top: 24px;
160
+ }
161
+
162
+ /* Bottom bar */
163
+ .bottom-bar {
164
+ position: absolute; left: 0; right: 0; bottom: 0;
165
+ background: #ffffff;
166
+ border-top: 1px solid #e6e6e6;
167
+ display: flex; align-items: center; gap: 28px;
168
+ padding: 26px 32px;
169
+ height: 160px;
170
+ }
171
+ .total-box {
172
+ flex: 1;
173
+ }
174
+ .total-box .label { font-size: 28px; color: #777; }
175
+ .total-box .price-line2 { display: flex; align-items: center; gap: 18px; margin-top: 8px; }
176
+ .total-box .main-price { font-size: 48px; font-weight: 800; color: #111; }
177
+ .total-box .old { font-size: 30px; color: #9e9e9e; text-decoration: line-through; }
178
+ .continue-btn {
179
+ width: 520px; height: 120px; border-radius: 28px; background: #d63c4c;
180
+ color: #fff; font-size: 40px; font-weight: 800;
181
+ display: flex; align-items: center; justify-content: center;
182
+ box-shadow: 0 6px 14px rgba(214,60,76,0.35);
183
+ }
184
+
185
+ /* Simple SVG styles */
186
+ svg { display: block; }
187
+ .icon-gray { stroke: #6f6f6f; fill: none; }
188
+ .fill-gray { fill: #6f6f6f; }
189
+ .green { color: #2e7d32; }
190
+ </style>
191
+ </head>
192
+ <body>
193
+ <div id="render-target">
194
+ <div class="status-space"></div>
195
+
196
+ <!-- Header -->
197
+ <div class="header">
198
+ <div class="icon-btn">
199
+ <svg width="56" height="56" viewBox="0 0 48 48">
200
+ <path d="M30 10 L16 24 L30 38" stroke="#111" stroke-width="4" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
201
+ </svg>
202
+ </div>
203
+ <div class="title">My Cart</div>
204
+ </div>
205
+
206
+ <div class="content">
207
+ <!-- Select all row -->
208
+ <div class="select-all">
209
+ <div class="check-pill">
210
+ <svg width="36" height="36" viewBox="0 0 24 24">
211
+ <path d="M20 6 L9.5 17 L4 12.5" stroke="#fff" stroke-width="3" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
212
+ </svg>
213
+ </div>
214
+ <div class="texts">
215
+ <div class="main">Select all Items</div>
216
+ <div class="sub">(1/1 items selected)</div>
217
+ </div>
218
+ <div class="action-pill">
219
+ <svg width="40" height="40" viewBox="0 0 24 24" class="fill-gray">
220
+ <path d="M12 3c-4.4 0-8 3.3-8 7.5 0 4.7 5.8 8.8 7.2 9.7.5.3 1.1.3 1.6 0 1.4-.9 7.2-5 7.2-9.7C20 6.3 16.4 3 12 3zm0 11a3.5 3.5 0 1 1 0-7 3.5 3.5 0 0 1 0 7z"/>
221
+ </svg>
222
+ <div class="divider-vert"></div>
223
+ <svg width="40" height="40" viewBox="0 0 24 24" class="icon-gray">
224
+ <path d="M4 19.5l1.8-3.3A7 7 0 1 1 9 18L4 19.5z" stroke="#6f6f6f" stroke-width="1.5" fill="none"/>
225
+ <circle cx="14.5" cy="9.5" r="2.2" fill="#6f6f6f"/>
226
+ </svg>
227
+ <div class="divider-vert"></div>
228
+ <svg width="40" height="40" viewBox="0 0 24 24" class="icon-gray">
229
+ <path d="M3 6h18M6 6l1 14h10l1-14M10 6V4h4v2" stroke="#6f6f6f" stroke-width="1.8" fill="none" stroke-linecap="round"/>
230
+ </svg>
231
+ </div>
232
+ </div>
233
+
234
+ <!-- Free delivery banner -->
235
+ <div class="free-banner">
236
+ <svg width="52" height="52" viewBox="0 0 24 24">
237
+ <rect x="2" y="6" width="11" height="8" rx="1.5" fill="#e74b58"/>
238
+ <rect x="13" y="8" width="6" height="6" rx="1.2" fill="#e74b58"/>
239
+ <circle cx="7" cy="16" r="2" fill="#d03241"/>
240
+ <circle cx="17" cy="16" r="2" fill="#d03241"/>
241
+ </svg>
242
+ <span><b>FREE Delivery</b> on all orders</span>
243
+ </div>
244
+
245
+ <!-- Product card -->
246
+ <div class="card">
247
+ <div class="product-row">
248
+ <div class="product-image">
249
+ <div class="check">
250
+ <svg width="36" height="36" viewBox="0 0 24 24">
251
+ <path d="M20 6 L9.5 17 L4 12.5" stroke="#fff" stroke-width="3" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
252
+ </svg>
253
+ </div>
254
+ <div class="img">[IMG: Goat Milk Powder Box]</div>
255
+ </div>
256
+ <div class="product-info">
257
+ <div class="product-title">Hye Goat Milk Powder Milk Shake 200 g</div>
258
+ <div class="price-line">
259
+ <div class="price">₹1,347</div>
260
+ <div class="old">₹1,947</div>
261
+ <div class="off">31% OFF</div>
262
+ </div>
263
+ <div class="tax-text">Inclusive of all taxes</div>
264
+
265
+ <div class="qty">
266
+ <span>Qty: 3</span>
267
+ <svg width="24" height="24" viewBox="0 0 24 24">
268
+ <path d="M6 10 L12 16 L18 10" stroke="#555" stroke-width="2.4" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
269
+ </svg>
270
+ </div>
271
+ </div>
272
+ </div>
273
+ <div class="actions">
274
+ <div class="action-item" style="padding-right:24px;">
275
+ <svg width="42" height="42" viewBox="0 0 24 24" class="icon-gray">
276
+ <path d="M3 6h18M6 6l1 14h10l1-14M10 6V4h4v2" stroke="#6f6f6f" stroke-width="1.8" fill="none" stroke-linecap="round"/>
277
+ </svg>
278
+ <span>Remove</span>
279
+ </div>
280
+ <div class="action-item" style="padding-left:24px;">
281
+ <svg width="42" height="42" viewBox="0 0 24 24">
282
+ <path d="M12 21s-7-4.4-7-10a5 5 0 0 1 9-3 5 5 0 0 1 9 3c0 5.6-7 10-11 10z" fill="none" stroke="#6f6f6f" stroke-width="1.6" stroke-linejoin="round"/>
283
+ </svg>
284
+ <span>Save for Later</span>
285
+ </div>
286
+ </div>
287
+ </div>
288
+
289
+ <!-- Price details -->
290
+ <div class="section-header">
291
+ <div class="title">Price Details</div>
292
+ <svg width="44" height="44" viewBox="0 0 24 24">
293
+ <path d="M6 14 L12 8 L18 14" stroke="#777" stroke-width="2.4" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
294
+ </svg>
295
+ </div>
296
+ <div class="price-card">
297
+ <div class="row">
298
+ <div>Price (1 item)</div>
299
+ <div class="value">₹1,347</div>
300
+ </div>
301
+ <div class="row">
302
+ <div>Delivery charge</div>
303
+ <div class="free">FREE</div>
304
+ </div>
305
+ <div class="dashed"></div>
306
+ <div class="row" style="font-weight:800;">
307
+ <div>Final Price</div>
308
+ <div class="value">₹1,347</div>
309
+ </div>
310
+ </div>
311
+
312
+ <div class="spacer"></div>
313
+ </div>
314
+
315
+ <!-- Bottom bar -->
316
+ <div class="bottom-bar">
317
+ <div class="total-box">
318
+ <div class="label">Total(1 item selected) :</div>
319
+ <div class="price-line2">
320
+ <div class="main-price">₹1,347</div>
321
+ <div class="old">₹1,947</div>
322
+ <svg width="36" height="36" viewBox="0 0 24 24">
323
+ <path d="M10 6 L16 12 L10 18" stroke="#777" stroke-width="2.4" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
324
+ </svg>
325
+ </div>
326
+ </div>
327
+ <div class="continue-btn">Continue</div>
328
+ </div>
329
+ </div>
330
+ </body>
331
+ </html>
code/14483/14483_0.html ADDED
@@ -0,0 +1,327 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Dark Search UI Mock</title>
7
+ <style>
8
+ body { margin:0; padding:0; background:transparent; font-family: Roboto, Arial, sans-serif; }
9
+ #render-target {
10
+ position: relative;
11
+ overflow: hidden;
12
+ width: 1080px;
13
+ height: 2400px;
14
+ background: #121212;
15
+ color: #EDEDED;
16
+ }
17
+
18
+ /* Status bar */
19
+ .status-bar {
20
+ height: 96px;
21
+ padding: 0 28px;
22
+ display: flex;
23
+ align-items: center;
24
+ justify-content: space-between;
25
+ color: #EDEDED;
26
+ font-size: 36px;
27
+ box-sizing: border-box;
28
+ }
29
+ .status-icons {
30
+ display: flex;
31
+ align-items: center;
32
+ gap: 18px;
33
+ font-size: 30px;
34
+ color: #CFCFCF;
35
+ }
36
+ .battery {
37
+ border: 2px solid #CFCFCF;
38
+ width: 46px; height: 22px; border-radius: 4px; position: relative;
39
+ }
40
+ .battery::after { content:""; position:absolute; right:-8px; top:6px; width:6px; height:10px; background:#CFCFCF; border-radius:2px; }
41
+ .battery .lvl { position:absolute; left:2px; top:2px; right:2px; bottom:2px; background:#CFCFCF; }
42
+
43
+ /* Search header */
44
+ .search-header {
45
+ padding: 12px 16px 10px 16px;
46
+ box-sizing: border-box;
47
+ }
48
+ .search-bar {
49
+ display: flex;
50
+ align-items: center;
51
+ gap: 16px;
52
+ }
53
+ .icon-btn {
54
+ width: 72px;
55
+ height: 72px;
56
+ display: flex;
57
+ align-items: center;
58
+ justify-content: center;
59
+ color:#EDEDED;
60
+ }
61
+ .input-shell {
62
+ flex: 1;
63
+ height: 72px;
64
+ border-radius: 36px;
65
+ background: #1E1E1E;
66
+ border: 1px solid #2B2B2B;
67
+ display: flex;
68
+ align-items: center;
69
+ padding: 0 22px;
70
+ gap: 16px;
71
+ box-sizing: border-box;
72
+ }
73
+ .query {
74
+ flex:1;
75
+ color: #EDEDED;
76
+ font-size: 34px;
77
+ white-space: nowrap;
78
+ overflow: hidden;
79
+ text-overflow: ellipsis;
80
+ }
81
+ .query .highlight {
82
+ background: #1A73E8;
83
+ color: #FFFFFF;
84
+ padding: 2px 4px;
85
+ border-radius: 4px;
86
+ }
87
+ .filters {
88
+ margin-top: 16px;
89
+ display: flex;
90
+ align-items: center;
91
+ gap: 16px;
92
+ padding-left: 88px;
93
+ }
94
+ .chip {
95
+ display: inline-flex;
96
+ align-items: center;
97
+ gap: 10px;
98
+ background: #1B1B1B;
99
+ border: 1px solid #2D2D2D;
100
+ color: #CFCFCF;
101
+ border-radius: 28px;
102
+ padding: truncate;
103
+ padding: 12px 18px;
104
+ font-size: 28px;
105
+ }
106
+ .grid-toggle {
107
+ margin-left: auto;
108
+ width: 64px; height: 64px;
109
+ border-radius: 12px;
110
+ background: #1B1B1B;
111
+ border: 1px solid #2D2D2D;
112
+ display:flex; align-items:center; justify-content:center;
113
+ }
114
+
115
+ /* Results header */
116
+ .sort-row {
117
+ padding: 18px 24px 10px 24px;
118
+ color:#BDBDBD;
119
+ font-size: 28px;
120
+ display:flex; align-items:center; gap:8px;
121
+ }
122
+
123
+ /* Result item */
124
+ .result-item {
125
+ display: flex;
126
+ align-items: flex-start;
127
+ padding: 18px 16px 22px 16px;
128
+ gap: 20px;
129
+ border-bottom: 1px solid #232323;
130
+ }
131
+ .thumb {
132
+ width: 180px;
133
+ height: 180px;
134
+ background: #E0E0E0;
135
+ border: 1px solid #BDBDBD;
136
+ color: #757575;
137
+ display:flex;
138
+ align-items:center;
139
+ justify-content:center;
140
+ font-size: 26px;
141
+ text-align: center;
142
+ }
143
+ .meta {
144
+ flex:1;
145
+ min-width: 0;
146
+ }
147
+ .title {
148
+ font-size: 34px;
149
+ color: #78A9FF;
150
+ line-height: 1.25;
151
+ margin: 6px 0 6px 0;
152
+ }
153
+ .sub {
154
+ font-size: 26px;
155
+ color: #A8A8A8;
156
+ margin-top: 4px;
157
+ }
158
+ .size {
159
+ font-size: 26px;
160
+ color: #A8A8A8;
161
+ white-space: nowrap;
162
+ }
163
+ .menu-btn {
164
+ width: 64px;
165
+ height: 64px;
166
+ display:flex;
167
+ align-items:center;
168
+ justify-content:center;
169
+ color:#CFCFCF;
170
+ }
171
+
172
+ /* Keyboard mock */
173
+ .keyboard {
174
+ position: absolute;
175
+ left: 0;
176
+ bottom: 64px;
177
+ width: 100%;
178
+ height: 820px;
179
+ background: #0F0F10;
180
+ border-top: 1px solid #1F1F1F;
181
+ box-sizing: border-box;
182
+ padding: 12px 18px 18px;
183
+ }
184
+ .kb-tools {
185
+ display:flex; align-items:center; gap:24px; padding:6px 4px 10px; color:#CFCFCF;
186
+ }
187
+ .tool {
188
+ width: 72px; height: 72px; border-radius: 18px; background:#1B1B1C; border:1px solid #262626; display:flex; align-items:center; justify-content:center;
189
+ }
190
+ .keys {
191
+ display:flex; flex-direction:column; gap:14px; margin-top: 6px;
192
+ }
193
+ .row { display:flex; justify-content:center; gap:14px; }
194
+ .key {
195
+ width: 88px; height: 106px; border-radius: 18px;
196
+ background:#1C1C1D; border:1px solid #2B2B2C; color:#EDEDED; display:flex; align-items:center; justify-content:center; font-size:38px;
197
+ }
198
+ .key.wide { width: 120px; }
199
+ .key.shift { width: 136px; }
200
+ .key.back { width: 136px; }
201
+ .key.space { width: 560px; }
202
+ .key.action {
203
+ background:#9BE3C9; border-color:#9BE3C9; color:#0A0A0A; width:120px; height:120px; border-radius:60px; font-weight:600;
204
+ }
205
+
206
+ /* Gesture bar */
207
+ .gesture {
208
+ position:absolute; bottom:20px; left:50%; transform:translateX(-50%);
209
+ width: 320px; height: 8px; background:#FFFFFF; opacity:0.8; border-radius:4px;
210
+ }
211
+
212
+ /* Utility */
213
+ .muted { color:#CFCFCF; font-size: 28px; }
214
+ .spacer { flex:1; }
215
+ </style>
216
+ </head>
217
+ <body>
218
+ <div id="render-target">
219
+
220
+ <!-- Status bar -->
221
+ <div class="status-bar">
222
+ <div>9:52</div>
223
+ <div class="status-icons">
224
+ <span>✓</span>
225
+ <span>G</span>
226
+ <span>M</span>
227
+ <span>⚠</span>
228
+ <span>•</span>
229
+ <span class="battery"><span class="lvl"></span></span>
230
+ <span>100%</span>
231
+ </div>
232
+ </div>
233
+
234
+ <!-- Search header -->
235
+ <div class="search-header">
236
+ <div class="search-bar">
237
+ <div class="icon-btn" aria-label="Back">
238
+ <svg width="36" height="36" viewBox="0 0 24 24" fill="#EDEDED"><path d="M15.5 19 9 12l6.5-7 1.5 1.3L12.8 12l4.2 4.7z"/></svg>
239
+ </div>
240
+ <div class="input-shell">
241
+ <div class="query">
242
+ <span class="highlight">A_short_history_of_Germany</span>
243
+ </div>
244
+ <svg width="28" height="28" viewBox="0 0 24 24" fill="#CFCFCF"><path d="M18.3 5.7 5.7 18.3l1.4 1.4L19.7 7.1zM5.7 7.1 18.3 19.7l1.4-1.4L7.1 5.7z"/></svg>
245
+ </div>
246
+ </div>
247
+
248
+ <div class="filters">
249
+ <div class="chip">
250
+ <span>Date</span>
251
+ <svg width="18" height="18" viewBox="0 0 24 24" fill="#CFCFCF"><path d="M7 10l5 5 5-5z"/></svg>
252
+ </div>
253
+ <div class="chip">
254
+ <span>Type</span>
255
+ <svg width="18" height="18" viewBox="0 0 24 24" fill="#CFCFCF"><path d="M7 10l5 5 5-5z"/></svg>
256
+ </div>
257
+ <div class="grid-toggle" aria-label="Grid">
258
+ <svg width="26" height="26" viewBox="0 0 24 24" fill="#CFCFCF">
259
+ <path d="M3 3h8v8H3zM13 3h8v8h-8zM3 13h8v8H3zM13 13h8v8h-8z"/>
260
+ </svg>
261
+ </div>
262
+ </div>
263
+ </div>
264
+
265
+ <!-- Sort label -->
266
+ <div class="sort-row">
267
+ <span>Most relevant</span>
268
+ <svg width="18" height="18" viewBox="0 0 24 24" fill="#BDBDBD"><path d="M7 10l5 5 5-5z"/></svg>
269
+ </div>
270
+
271
+ <!-- Result list -->
272
+ <div class="result-item">
273
+ <div class="thumb">[IMG: Book cover]</div>
274
+ <div class="meta">
275
+ <div class="title">
276
+ <span class="highlight">A_short_history_of_Germany</span>(IA_short historyofge00hawt).pdf
277
+ </div>
278
+ <div class="sub">Dropbox</div>
279
+ <div class="sub">Modified 11/9/23</div>
280
+ </div>
281
+ <div class="size">16 MB</div>
282
+ <div class="menu-btn" aria-label="More">
283
+ <svg width="26" height="26" viewBox="0 0 24 24" fill="#CFCFCF"><circle cx="12" cy="5" r="2"/><circle cx="12" cy="12" r="2"/><circle cx="12" cy="19" r="2"/></svg>
284
+ </div>
285
+ </div>
286
+
287
+ <!-- Keyboard mock -->
288
+ <div class="keyboard">
289
+ <div class="kb-tools">
290
+ <div class="tool">
291
+ <svg width="28" height="28" viewBox="0 0 24 24" fill="#CFCFCF"><path d="M3 3h8v8H3zM13 3h8v8h-8zM3 13h8v8H3zM13 13h8v8h-8z"/></svg>
292
+ </div>
293
+ <div class="tool"><span>😊</span></div>
294
+ <div class="tool"><span>GIF</span></div>
295
+ <div class="tool">
296
+ <svg width="26" height="26" viewBox="0 0 24 24" fill="#CFCFCF"><path d="M12 8a4 4 0 100 8 4 4 0 000-8zm8 4a8 8 0 11-16 0 8 8 0 0116 0z"/></svg>
297
+ </div>
298
+ <div class="tool"><span>G↔</span></div>
299
+ <div class="tool">
300
+ <svg width="26" height="26" viewBox="0 0 24 24" fill="#CFCFCF"><path d="M12 3l4 8H8l4-8zm0 18l-4-8h8l-4 8z"/></svg>
301
+ </div>
302
+ <div class="tool">
303
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="#CFCFCF"><path d="M12 3a4 4 0 00-4 4v4H6v8h12v-8h-2V7a4 4 0 00-4-4z"/></svg>
304
+ </div>
305
+ </div>
306
+
307
+ <div class="keys">
308
+ <div class="row">
309
+ <div class="key">q</div><div class="key">w</div><div class="key">e</div><div class="key">r</div><div class="key">t</div><div class="key">y</div><div class="key">u</div><div class="key">i</div><div class="key">o</div><div class="key">p</div>
310
+ </div>
311
+ <div class="row">
312
+ <div class="key">a</div><div class="key">s</div><div class="key">d</div><div class="key">f</div><div class="key">g</div><div class="key">h</div><div class="key">j</div><div class="key">k</div><div class="key">l</div>
313
+ </div>
314
+ <div class="row">
315
+ <div class="key shift">⇧</div>
316
+ <div class="key">z</div><div class="key">x</div><div class="key">c</div><div class="key">v</div><div class="key">b</div><div class="key">n</div><div class="key">m</div>
317
+ <div class="key back">
318
+ <svg width="34" height="34" viewBox="0 0 24 24" fill="#EDEDED"><path d="M6 12l5-5v3h7v4h-7v3z"/></svg>
319
+ </div>
320
+ </div>
321
+ <div class="row">
322
+ <div class="key wide" style="background:#9BE3C9; color:#0A0A0A;">?123</div>
323
+ <div class="key">,</div>
324
+ <div class="key">😊</div>
325
+ <div class="key space">space</div>
326
+ <div class="key">.</div>
327
+ <di
code/14483/14483_1.html ADDED
@@ -0,0 +1,152 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <style>
7
+ body { margin: 0; padding: 0; background: transparent; font-family: Roboto, Arial, sans-serif; }
8
+ #render-target {
9
+ width: 1080px; height: 2400px;
10
+ position: relative; overflow: hidden;
11
+ background: #111; color: #fff;
12
+ }
13
+
14
+ /* Status bar */
15
+ .status-bar {
16
+ position: absolute; top: 0; left: 0; width: 100%; height: 120px;
17
+ display: flex; align-items: center; justify-content: space-between;
18
+ padding: 0 32px; color: #eaeaea; font-size: 42px;
19
+ }
20
+ .status-icons { display: flex; align-items: center; gap: 28px; }
21
+ .small-icon { width: 48px; height: 48px; }
22
+
23
+ /* App bar */
24
+ .app-bar {
25
+ position: absolute; top: 120px; left: 0; width: 100%; height: 140px;
26
+ background: #2c2c2c; display: flex; align-items: center;
27
+ padding: 0 24px; box-sizing: border-box;
28
+ }
29
+ .icon-btn {
30
+ width: 96px; height: 96px; display: flex; align-items: center; justify-content: center;
31
+ border-radius: 8px;
32
+ }
33
+ .title {
34
+ flex: 1; margin: 0 24px; font-size: 44px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
35
+ }
36
+ svg { width: 64px; height: 64px; }
37
+
38
+ /* Main content area */
39
+ .main {
40
+ position: absolute; top: 260px; left: 0; width: 100%; height: 1770px;
41
+ display: flex; align-items: center; justify-content: center;
42
+ }
43
+ .spinner { position: relative; width: 150px; height: 150px; }
44
+ .spinner .square {
45
+ position: absolute; left: 0; top: 0; width: 150px; height: 150px;
46
+ background: #3b3b3b; border-radius: 4px; box-shadow: 0 0 80px rgba(0,0,0,0.6);
47
+ }
48
+ .spinner .inner {
49
+ position: absolute; left: 36px; top: 36px; width: 78px; height: 78px; background: #1f1f1f;
50
+ }
51
+ .spinner .bar { position: absolute; right: 0; top: 0; width: 24px; height: 150px; background: #fff; }
52
+
53
+ /* Bottom bar */
54
+ .bottom-bar {
55
+ position: absolute; left: 0; bottom: 120px; width: 100%; height: 200px;
56
+ background: #2f2f2f; display: flex; align-items: center; justify-content: space-between;
57
+ padding: 0 48px; box-sizing: border-box;
58
+ }
59
+ .action-box {
60
+ width: 140px; height: 140px; background: #3a3a3a; display: flex; align-items: center; justify-content: center;
61
+ }
62
+ .share-btn {
63
+ height: 120px; width: 300px; background: #2F80ED; border-radius: 8px;
64
+ display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 48px; color: #fff;
65
+ }
66
+
67
+ /* Gesture bar */
68
+ .gesture {
69
+ position: absolute; left: 50%; bottom: 40px; transform: translateX(-50%);
70
+ width: 260px; height: 14px; background: #fff; border-radius: 7px; opacity: 0.9;
71
+ }
72
+ </style>
73
+ </head>
74
+ <body>
75
+ <div id="render-target">
76
+ <!-- Status bar -->
77
+ <div class="status-bar">
78
+ <div>9:53</div>
79
+ <div class="status-icons">
80
+ <!-- Simplified status glyphs -->
81
+ <svg class="small-icon" viewBox="0 0 24 24">
82
+ <path d="M3 18h18" stroke="#ccc" stroke-width="2" stroke-linecap="round"/>
83
+ <path d="M6 14h12" stroke="#ccc" stroke-width="2" stroke-linecap="round"/>
84
+ <path d="M9 10h6" stroke="#ccc" stroke-width="2" stroke-linecap="round"/>
85
+ </svg>
86
+ <svg class="small-icon" viewBox="0 0 24 24">
87
+ <path d="M2 8l10 10 10-10" stroke="#ccc" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
88
+ </svg>
89
+ <svg class="small-icon" viewBox="0 0 24 24">
90
+ <rect x="3" y="6" width="16" height="12" rx="2" fill="none" stroke="#ccc" stroke-width="2"/>
91
+ <rect x="5" y="8" width="12" height="8" fill="#ccc"/>
92
+ </svg>
93
+ <span>100%</span>
94
+ </div>
95
+ </div>
96
+
97
+ <!-- App bar -->
98
+ <div class="app-bar">
99
+ <div class="icon-btn">
100
+ <svg viewBox="0 0 24 24">
101
+ <path d="M15 6l-6 6 6 6" stroke="#fff" stroke-width="2.5" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
102
+ </svg>
103
+ </div>
104
+ <div class="title">A_short_history_of_Germa...</div>
105
+ <div class="icon-btn">
106
+ <svg viewBox="0 0 24 24">
107
+ <path d="M12 17.3l-6.5 3.7 1.7-7.3L2 8.9l7.5-.6L12 1.5l2.5 6.8 7.5.6-5.2 4.8 1.7 7.3z" fill="none" stroke="#fff" stroke-width="1.8"/>
108
+ </svg>
109
+ </div>
110
+ <div class="icon-btn">
111
+ <svg viewBox="0 0 24 24">
112
+ <circle cx="12" cy="5" r="2" fill="#fff"/>
113
+ <circle cx="12" cy="12" r="2" fill="#fff"/>
114
+ <circle cx="12" cy="19" r="2" fill="#fff"/>
115
+ </svg>
116
+ </div>
117
+ </div>
118
+
119
+ <!-- Main content (loading indicator) -->
120
+ <div class="main">
121
+ <div class="spinner">
122
+ <div class="square"></div>
123
+ <div class="inner"></div>
124
+ <div class="bar"></div>
125
+ </div>
126
+ </div>
127
+
128
+ <!-- Bottom actions -->
129
+ <div class="bottom-bar">
130
+ <div class="action-box">
131
+ <!-- Comment icon -->
132
+ <svg viewBox="0 0 24 24">
133
+ <path d="M4 5h16v12H8l-4 4V5z" fill="none" stroke="#fff" stroke-width="2"/>
134
+ <rect x="7" y="8" width="10" height="2" fill="#fff"/>
135
+ <rect x="7" y="12" width="7" height="2" fill="#fff"/>
136
+ </svg>
137
+ </div>
138
+ <div class="action-box">
139
+ <!-- Link icon -->
140
+ <svg viewBox="0 0 24 24">
141
+ <path d="M8 12a4 4 0 0 1 4-4h2a4 4 0 1 1 0 8h-2" fill="none" stroke="#fff" stroke-width="2" stroke-linecap="round"/>
142
+ <path d="M16 12a4 4 0 0 0-4-4H10a4 4 0 1 0 0 8h2" fill="none" stroke="#fff" stroke-width="2" stroke-linecap="round"/>
143
+ </svg>
144
+ </div>
145
+ <div class="share-btn">Share</div>
146
+ </div>
147
+
148
+ <!-- Gesture pill -->
149
+ <div class="gesture"></div>
150
+ </div>
151
+ </body>
152
+ </html>
code/14483/14483_2.html ADDED
@@ -0,0 +1,203 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0" />
6
+ <title>Mobile Viewer Mock</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; }
9
+ #render-target {
10
+ position: relative; overflow: hidden;
11
+ width: 1080px; height: 2400px;
12
+ background: #111;
13
+ font-family: Arial, Helvetica, sans-serif;
14
+ color: #fff;
15
+ }
16
+
17
+ /* Status bar */
18
+ .status-bar {
19
+ height: 96px; padding: 0 32px;
20
+ display: flex; align-items: center; justify-content: space-between;
21
+ background: #111; color: #fff;
22
+ font-size: 36px; letter-spacing: 0.5px;
23
+ }
24
+ .status-left { display: flex; align-items: center; gap: 18px; }
25
+ .status-right { display: flex; align-items: center; gap: 18px; opacity: 0.9; }
26
+ .status-icon { width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; }
27
+
28
+ /* Top app bar */
29
+ .top-appbar {
30
+ height: 128px; padding: 0 16px 0 8px;
31
+ background: #2b2b2e; display: flex; align-items: center;
32
+ }
33
+ .icon-btn Hudson{ }
34
+ .top-appbar .nav-btn { width: 88px; height: 88px; display: flex; align-items: center; justify-content: center; }
35
+ .top-title {
36
+ font-size: 36px; color: #fff; margin-left: 6px;
37
+ white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
38
+ max-width: 560px;
39
+ }
40
+ .top-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }
41
+ .action-icon { width: 88px; height: 88px; display: flex; align-items: center; justify-content: center; }
42
+
43
+ /* Content area */
44
+ .content {
45
+ position: absolute; left: 0; right: 0; top: 224px; bottom: 280px;
46
+ background: #1a1a1a;
47
+ }
48
+ .image-stack { position: relative; width: 100%; height: 100%; }
49
+ .main-image {
50
+ position: absolute; left: 0; right: 0; top: 0;
51
+ height: calc(100% - 260px);
52
+ background: #E0E0E0; border: 1px solid #BDBDBD;
53
+ display: flex; align-items: center; justify-content: center;
54
+ color: #757575; font-size: 40px; text-align: center;
55
+ }
56
+ .divider { position: absolute; left: 0; right: 0; bottom: 260px; height: 12px; background: #e8e8e8; }
57
+ .beige-strip {
58
+ position: absolute; left: 0; right: 0; bottom: 0; height: 260px;
59
+ background: #e6d7a8; border-top: 1px solid #d1c49a;
60
+ display: flex; align-items: center; justify-content: center;
61
+ color: #7a6b45; font-size: 36px;
62
+ }
63
+ .edit-chip {
64
+ position: absolute; left: 40px; bottom: 300px;
65
+ background: rgba(0,0,0,0.78); color: #fff;
66
+ border-radius: 40px; padding: 18px 28px;
67
+ display: flex; align-items: center; gap: 14px;
68
+ font-size: 36px;
69
+ }
70
+ .edit-chip svg { width: 36px; height: 36px; }
71
+
72
+ /* Bottom action bar */
73
+ .bottom-bar {
74
+ position: absolute; left: 0; right: 0; bottom: 60px;
75
+ height: 220px; background: #2b2b2e;
76
+ display: flex; align-items: center; justify-content: space-between;
77
+ padding: 0 36px;
78
+ }
79
+ .left-actions, .right-actions { display: flex; align-items: center; gap: 24px; }
80
+ .square-btn {
81
+ width: 120px; height: 120px; border-radius: 12px;
82
+ background: #3a3a3c; display: flex; align-items: center; justify-content: center;
83
+ }
84
+ .share-btn {
85
+ height: 120px; padding: 0 44px; border-radius: 12px;
86
+ background: #1e7be6; display: flex; align-items: center; justify-content: center;
87
+ font-size: 44px; font-weight: 600; color: #fff;
88
+ }
89
+ .square-btn svg, .share-btn svg { width: 56px; height: 56px; }
90
+
91
+ /* Gesture bar */
92
+ .gesture {
93
+ position: absolute; left: 50%; bottom: 16px; transform: translateX(-50%);
94
+ width: 240px; height: 8px; background: #fff; border-radius: 8px; opacity: 0.9;
95
+ }
96
+
97
+ /* Simple resets for SVG lines */
98
+ .stroke { stroke: #fff; stroke-width: 2.2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
99
+ .fill { fill: #fff; }
100
+ </style>
101
+ </head>
102
+ <body>
103
+ <div id="render-target">
104
+
105
+ <!-- Status Bar -->
106
+ <div class="status-bar">
107
+ <div class="status-left">
108
+ <div>9:57</div>
109
+ <div class="status-icon">
110
+ <svg viewBox="0 0 24 24"><path class="stroke" d="M2 12h6l3-3 3 3h8"/></svg>
111
+ </div>
112
+ <div class="status-icon">
113
+ <svg viewBox="0 0 24 24"><path class="stroke" d="M2 18h4v3H2zM7 14h4v7H7zM12 10h4v11h-4zM17 6h4v15h-4z"/></svg>
114
+ </div>
115
+ <div class="status-icon">
116
+ <svg viewBox="0 0 24 24"><circle class="stroke" cx="12" cy="12" r="6"/></svg>
117
+ </div>
118
+ <div class="status-icon">
119
+ <svg viewBox="0 0 24 24"><path class="stroke" d="M3 12h10l-2 3m2-3-2-3"/></svg>
120
+ </div>
121
+ <div class="status-icon">•</div>
122
+ </div>
123
+ <div class="status-right">
124
+ <div class="status-icon">
125
+ <svg viewBox="0 0 24 24"><path class="stroke" d="M2 7h20v10H2z"/><path class="fill" d="M4 9h16v6H4z"/></svg>
126
+ </div>
127
+ <div>100%</div>
128
+ </div>
129
+ </div>
130
+
131
+ <!-- Top App Bar -->
132
+ <div class="top-appbar">
133
+ <div class="nav-btn">
134
+ <svg viewBox="0 0 24 24"><path class="stroke" d="M15 19l-7-7 7-7"/></svg>
135
+ </div>
136
+ <div class="top-title">A_short_history_of_...</div>
137
+ <div class="top-actions">
138
+ <div class="action-icon">
139
+ <svg viewBox="0 0 24 24"><path class="stroke" d="M12 17l-5.2 3 1.4-5.9L3 9.3l6-.6L12 3l3 5.7 6 .6-5.2 4.8 1.4 5.9z"/></svg>
140
+ </div>
141
+ <div class="action-icon">
142
+ <svg viewBox="0 0 24 24">
143
+ <circle class="stroke" cx="11" cy="11" r="7"></circle>
144
+ <path class="stroke" d="M21 21l-4.3-4.3"></path>
145
+ </svg>
146
+ </div>
147
+ <div class="action-icon">
148
+ <svg viewBox="0 0 24 24">
149
+ <circle class="fill" cx="12" cy="5" r="2"></circle>
150
+ <circle class="fill" cx="12" cy="12" r="2"></circle>
151
+ <circle class="fill" cx="12" cy="19" r="2"></circle>
152
+ </svg>
153
+ </div>
154
+ </div>
155
+ </div>
156
+
157
+ <!-- Content Viewer -->
158
+ <div class="content">
159
+ <div class="image-stack">
160
+ <div class="main-image">[IMG: Book page – green cloth cover]</div>
161
+ <div class="divider"></div>
162
+ <div class="beige-strip">[IMG: Library seal pattern footer]</div>
163
+
164
+ <div class="edit-chip">
165
+ <svg viewBox="0 0 24 24"><path class="stroke" d="M3 17.25V21h3.75L18.81 8.94l-3.75-3.75L3 17.25zM14.06 4.19l3.75 3.75"/></svg>
166
+ <span>Edit</span>
167
+ </div>
168
+ </div>
169
+ </div>
170
+
171
+ <!-- Bottom Action Bar -->
172
+ <div class="bottom-bar">
173
+ <div class="left-actions">
174
+ <div class="square-btn">
175
+ <svg viewBox="0 0 24 24">
176
+ <path class="stroke" d="M4 4h16v12H7l-3 3z"/>
177
+ </svg>
178
+ </div>
179
+ </div>
180
+
181
+ <div class="right-actions">
182
+ <div class="square-btn" title="Open in">
183
+ <svg viewBox="0 0 24 24">
184
+ <path class="stroke" d="M14 3h7v7M21 3l-9 9"/>
185
+ <path class="stroke" d="M12 5H5v14h14v-7"/>
186
+ </svg>
187
+ </div>
188
+ <div class="square-btn" title="Get link">
189
+ <svg viewBox="0 0 24 24">
190
+ <path class="stroke" d="M10 13a5 5 0 0 1-7 0 5 5 0 0 1 0-7 5 5 0 0 1 7 0"/>
191
+ <path class="stroke" d="M14 11a5 5 0 0 1 7 0 5 5 0 0 1 0 7 5 5 0 0 1-7 0"/>
192
+ <path class="stroke" d="M8 12h8"/>
193
+ </svg>
194
+ </div>
195
+ <div class="share-btn">Share</div>
196
+ </div>
197
+ </div>
198
+
199
+ <!-- Gesture Bar -->
200
+ <div class="gesture"></div>
201
+ </div>
202
+ </body>
203
+ </html>
code/14487/14487_0.html ADDED
@@ -0,0 +1,375 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Weather UI Mock</title>
5
+ <style>
6
+ body { margin: 0; padding: 0; background: transparent; font-family: "Segoe UI", Arial, sans-serif; }
7
+ #render-target {
8
+ width: 1080px;
9
+ height: 2400px;
10
+ position: relative;
11
+ overflow: hidden;
12
+ background: linear-gradient(180deg, #2d2a72 0%, #4a3a86 60%, #563f8e 100%);
13
+ color: #ffffff;
14
+ }
15
+
16
+ .status-bar {
17
+ position: relative;
18
+ height: 90px;
19
+ padding: 18px 36px 0 36px;
20
+ display: flex;
21
+ justify-content: space-between;
22
+ align-items: center;
23
+ font-weight: 600;
24
+ }
25
+ .status-left, .status-right { display: flex; align-items: center; gap: 22px; }
26
+ .status-time { font-size: 40px; letter-spacing: 0.5px; }
27
+
28
+ /* Simple icons */
29
+ .icon { width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; }
30
+ .icon svg { width: 100%; height: 100%; }
31
+
32
+ .header {
33
+ padding: 16px 30px 0 30px;
34
+ }
35
+ .header-row {
36
+ display: flex; align-items: center; justify-content: space-between;
37
+ margin-bottom: 10px;
38
+ }
39
+ .hamburger {
40
+ width: 64px; height: 48px; display: inline-flex; align-items: center; justify-content: center;
41
+ }
42
+ .plus-btn {
43
+ width: 54px; height: 54px; border-radius: 27px; border: 3px solid rgba(255,255,255,0.7);
44
+ display: inline-flex; align-items: center; justify-content: center;
45
+ }
46
+ .city {
47
+ text-align: center;
48
+ font-size: 60px;
49
+ font-weight: 700;
50
+ }
51
+ .subtime {
52
+ text-align: center;
53
+ font-size: 34px;
54
+ opacity: 0.85;
55
+ margin-top: 8px;
56
+ }
57
+
58
+ .hourly-card {
59
+ margin: 24px 32px 0 32px;
60
+ background: rgba(255,255,255,0.06);
61
+ border-radius: 22px;
62
+ padding: 28px;
63
+ }
64
+ .temp-row {
65
+ display: grid;
66
+ grid-template-columns: repeat(7, 1fr);
67
+ gap: 8px;
68
+ align-items: end;
69
+ margin-bottom: 14px;
70
+ }
71
+ .temp-item { text-align: center; font-size: 42px; }
72
+ .line {
73
+ position: relative;
74
+ height: 54px;
75
+ margin: 10px 6px 6px 6px;
76
+ }
77
+ .line::before {
78
+ content: "";
79
+ position: absolute;
80
+ left: 2%;
81
+ right: 2%;
82
+ top: 18px;
83
+ height: 3px;
84
+ background: rgba(255,255,255,0.85);
85
+ border-radius: 2px;
86
+ }
87
+ .dot {
88
+ position: absolute;
89
+ top: 6px;
90
+ width: 18px; height: 18px; background: #fff; border-radius: 50%;
91
+ }
92
+ .dash {
93
+ position: absolute;
94
+ top: 26px; width: 0; height: 26px; border-left: 3px dashed rgba(255,255,255,0.7);
95
+ }
96
+ .percent-row {
97
+ display: grid;
98
+ grid-template-columns: repeat(7, 1fr);
99
+ gap: 8px;
100
+ margin-top: 8px;
101
+ }
102
+ .percent-item {
103
+ display: flex; align-items: center; justify-content: center; gap: 10px;
104
+ font-size: 32px;
105
+ opacity: 0.9;
106
+ }
107
+ .droplet svg { width: 28px; height: 28px; opacity: 0.95; }
108
+
109
+ .ad-card {
110
+ margin: 24px 32px;
111
+ background: rgba(255,255,255,0.08);
112
+ border-radius: 22px;
113
+ padding: 20px;
114
+ }
115
+ .ad-label {
116
+ position: absolute;
117
+ left: 30px; top: 760px; /* approximate overlay AD tag */
118
+ background: #24445a; color: #d7f0ff;
119
+ padding: 8px 16px; border-radius: 12px; font-weight: 700;
120
+ }
121
+ .ad-img {
122
+ width: 100%; height: 360px;
123
+ background: #E0E0E0; border: 1px solid #BDBDBD;
124
+ display: flex; align-items: center; justify-content: center;
125
+ color: #555; font-size: 34px; border-radius: 16px;
126
+ }
127
+ .ad-title {
128
+ font-size: 42px; font-weight: 700; margin: 24px 8px 12px 8px;
129
+ }
130
+ .install-row { display: flex; justify-content: center; }
131
+ .install-btn {
132
+ width: 900px; height: 100px; border-radius: 60px; background: #fff; color: #2c1f63;
133
+ font-weight: 800; font-size: 40px; display: flex; align-items: center; justify-content: center;
134
+ box-shadow: 0 6px 12px rgba(0,0,0,0.25);
135
+ }
136
+
137
+ .section-header {
138
+ display: flex; justify-content: space-between; align-items: center;
139
+ padding: 0 36px; margin-top: 6px;
140
+ }
141
+ .section-title { font-size: 48px; font-weight: 800; }
142
+ .days-link { font-size: 42px; opacity: 0.95; display: flex; align-items: center; gap: 10px; }
143
+ .chev { width: 16px; height: 16px; border-right: 4px solid #fff; border-top: 4px solid #fff; transform: rotate(45deg); display: inline-block; margin-left: 8px; }
144
+
145
+ .daily-card {
146
+ margin: 18px 32px;
147
+ background: rgba(255,255,255,0.08);
148
+ border-radius: 22px;
149
+ padding: 12px 10px;
150
+ }
151
+ .day-item {
152
+ display: grid;
153
+ grid-template-columns: 200px 120px 1fr 240px 60px;
154
+ align-items: center;
155
+ padding: 32px 24px;
156
+ color: #fff; font-size: 40px;
157
+ border-bottom: 1px solid rgba(255,255,255,0.15);
158
+ }
159
+ .day-item:last-child { border-bottom: none; }
160
+ .date-text { font-size: 28px; opacity: 0.9; margin-top: 10px; }
161
+ .weather-desc { font-size: 42px; opacity: 0.95; }
162
+ .temp-range { text-align: right; font-weight: 800; font-size: 44px; letter-spacing: 1px; }
163
+ .arrow {
164
+ width: 24px; height: 24px; border-right: 5px solid #fff; border-top: 5px solid #fff; transform: rotate(45deg); justify-self: center;
165
+ }
166
+ .sun-icon {
167
+ width: 70px; height: 70px; position: relative; margin-left: 10px;
168
+ }
169
+ .sun-icon .sun { position: absolute; width: 70px; height: 70px; background: #ffca2b; border-radius: 50%; box-shadow: 0 0 0 6px rgba(255,202,43,0.3); }
170
+ .sun-icon .cloud {
171
+ position: absolute; bottom: -6px; left: -6px;
172
+ width: 46px; height: 28px; background: #fff; border-radius: 18px;
173
+ box-shadow: 0 0 0 4px rgba(255,255,255,0.35);
174
+ }
175
+
176
+ /* Bottom handle */
177
+ .handle {
178
+ position: absolute; left: 50%; transform: translateX(-50%);
179
+ bottom: 36px; width: 320px; height: 12px; background: rgba(255,255,255,0.6); border-radius: 12px;
180
+ }
181
+ </style>
182
+ </head>
183
+ <body>
184
+ <div id="render-target">
185
+
186
+ <!-- Status Bar -->
187
+ <div class="status-bar">
188
+ <div class="status-left">
189
+ <div class="status-time">11:42</div>
190
+ <div class="icon">
191
+ <svg viewBox="0 0 24 24">
192
+ <circle cx="12" cy="12" r="10" stroke="#fff" stroke-width="2" fill="none"></circle>
193
+ <path d="M4 12h16M12 2a15 15 0 0 0 0 20M7 5a14 14 0 0 1 10 0M7 19a14 14 0 0 0 10 0" stroke="#fff" stroke-width="1.5" fill="none" opacity="0.9"></path>
194
+ </svg>
195
+ </div>
196
+ <div class="icon">
197
+ <svg viewBox="0 0 24 24">
198
+ <path d="M12 3l9 16H3z" fill="none" stroke="#fff" stroke-width="2"></path>
199
+ <circle cx="12" cy="17" r="1.5" fill="#fff"></circle>
200
+ </svg>
201
+ </div>
202
+ <div style="font-size: 34px;">28°</div>
203
+ </div>
204
+ <div class="status-right">
205
+ <div class="icon">
206
+ <svg viewBox="0 0 24 24">
207
+ <path d="M2 12c4-5 16-5 20 0" stroke="#fff" stroke-width="2" fill="none"></path>
208
+ <path d="M6 12c3-3 9-3 12 0" stroke="#fff" stroke-width="2" fill="none" opacity="0.8"></path>
209
+ <circle cx="12" cy="12" r="1.6" fill="#fff"></circle>
210
+ </svg>
211
+ </div>
212
+ <div class="icon" style="width:42px;">
213
+ <svg viewBox="0 0 28 18">
214
+ <rect x="1" y="2" width="22" height="14" rx="2" ry="2" stroke="#fff" stroke-width="2" fill="none"></rect>
215
+ <rect x="3" y="4" width="18" height="10" fill="#fff"></rect>
216
+ <rect x="24" y="6" width="3" height="6" rx="1" fill="#fff"></rect>
217
+ </svg>
218
+ </div>
219
+ <div style="font-size: 34px;">100%</div>
220
+ </div>
221
+ </div>
222
+
223
+ <!-- Header -->
224
+ <div class="header">
225
+ <div class="header-row">
226
+ <div class="hamburger">
227
+ <svg viewBox="0 0 24 24">
228
+ <path d="M3 6h18M3 12h18M3 18h12" stroke="#fff" stroke-width="2" fill="none" stroke-linecap="round"></path>
229
+ </svg>
230
+ </div>
231
+ <div class="plus-btn">
232
+ <svg viewBox="0 0 24 24">
233
+ <path d="M12 5v14M5 12h14" stroke="#fff" stroke-width="2" stroke-linecap="round"></path>
234
+ </svg>
235
+ </div>
236
+ </div>
237
+ <div class="city">Gual Pahari</div>
238
+ <div class="subtime">Mon 23:42</div>
239
+ </div>
240
+
241
+ <!-- Hourly Forecast Card -->
242
+ <div class="hourly-card">
243
+ <div class="temp-row">
244
+ <div class="temp-item">28°</div>
245
+ <div class="temp-item">28°</div>
246
+ <div class="temp-item">27°</div>
247
+ <div class="temp-item">27°</div>
248
+ <div class="temp-item">26°</div>
249
+ <div class="temp-item">26°</div>
250
+ <div class="temp-item">26°</div>
251
+ </div>
252
+
253
+ <div class="line">
254
+ <div class="dot" style="left: 3%;"></div>
255
+ <div class="dot" style="left: 18%;"></div>
256
+ <div class="dot" style="left: 33%;"></div>
257
+ <div class="dot" style="left: 48%;"></div>
258
+ <div class="dot" style="left: 63%;"></div>
259
+ <div class="dot" style="left: 78%;"></div>
260
+ <div class="dot" style="left: 93%;"></div>
261
+
262
+ <div class="dash" style="left: 3%;"></div>
263
+ <div class="dash" style="left: 18%;"></div>
264
+ <div class="dash" style="left: 33%;"></div>
265
+ <div class="dash" style="left: 48%;"></div>
266
+ <div class="dash" style="left: 63%;"></div>
267
+ <div class="dash" style="left: 78%;"></div>
268
+ <div class="dash" style="left: 93%;"></div>
269
+ </div>
270
+
271
+ <div class="percent-row">
272
+ <div class="percent-item">
273
+ <span class="droplet">
274
+ <svg viewBox="0 0 24 24">
275
+ <path d="M12 3c-4 6-6 8-6 11a6 6 0 1 0 12 0c0-3-2-5-6-11z" fill="#fff"></path>
276
+ </svg>
277
+ </span> <span>2%</span>
278
+ </div>
279
+ <div class="percent-item">
280
+ <span class="droplet">
281
+ <svg viewBox="0 0 24 24"><path d="M12 3c-4 6-6 8-6 11a6 6 0 1 0 12 0c0-3-2-5-6-11z" fill="#fff"/></svg>
282
+ </span> <span>2%</span>
283
+ </div>
284
+ <div class="percent-item">
285
+ <span class="droplet">
286
+ <svg viewBox="0 0 24 24"><path d="M12 3c-4 6-6 8-6 11a6 6 0 1 0 12 0c0-3-2-5-6-11z" fill="#fff"/></svg>
287
+ </span> <span>2%</span>
288
+ </div>
289
+ <div class="percent-item">
290
+ <span class="droplet">
291
+ <svg viewBox="0 0 24 24"><path d="M12 3c-4 6-6 8-6 11a6 6 0 1 0 12 0c0-3-2-5-6-11z" fill="#fff"/></svg>
292
+ </span> <span>2%</span>
293
+ </div>
294
+ <div class="percent-item">
295
+ <span class="droplet">
296
+ <svg viewBox="0 0 24 24"><path d="M12 3c-4 6-6 8-6 11a6 6 0 1 0 12 0c0-3-2-5-6-11z" fill="#fff"/></svg>
297
+ </span> <span>1%</span>
298
+ </div>
299
+ <div class="percent-item">
300
+ <span class="droplet">
301
+ <svg viewBox="0 0 24 24"><path d="M12 3c-4 6-6 8-6 11a6 6 0 1 0 12 0c0-3-2-5-6-11z" fill="#fff"/></svg>
302
+ </span> <span>2%</span>
303
+ </div>
304
+ <div class="percent-item">
305
+ <span class="droplet">
306
+ <svg viewBox="0 0 24 24"><path d="M12 3c-4 6-6 8-6 11a6 6 0 1 0 12 0c0-3-2-5-6-11z" fill="#fff"/></svg>
307
+ </span> <span>2%</span>
308
+ </div>
309
+ </div>
310
+ </div>
311
+
312
+ <!-- AD Card -->
313
+ <div class="ad-card">
314
+ <div class="ad-img">[IMG: Grocery delivery ad]</div>
315
+ <div class="ad-title">Zepto: 10-Min Grocery Delivery</div>
316
+ <div class="install-row">
317
+ <div class="install-btn">INSTALL</div>
318
+ </div>
319
+ </div>
320
+ <div class="ad-label">AD</div>
321
+
322
+ <!-- Daily Forecast -->
323
+ <div class="section-header">
324
+ <div class="section-title">Daily Forecast</div>
325
+ <div class="days-link">10 Days <span class="chev"></span></div>
326
+ </div>
327
+
328
+ <div class="daily-card">
329
+ <div class="day-item">
330
+ <div>
331
+ <div>Today</div>
332
+ <div class="date-text">25/9</div>
333
+ </div>
334
+ <div class="sun-icon">
335
+ <div class="sun"></div>
336
+ <div class="cloud"></div>
337
+ </div>
338
+ <div class="weather-desc">Mostly sunny</div>
339
+ <div class="temp-range">33° 25°</div>
340
+ <div class="arrow"></div>
341
+ </div>
342
+
343
+ <div class="day-item">
344
+ <div>
345
+ <div>Tue</div>
346
+ <div class="date-text">26/9</div>
347
+ </div>
348
+ <div class="sun-icon">
349
+ <div class="sun"></div>
350
+ <div class="cloud"></div>
351
+ </div>
352
+ <div class="weather-desc">Mostly sunny</div>
353
+ <div class="temp-range">35° 25°</div>
354
+ <div class="arrow"></div>
355
+ </div>
356
+
357
+ <div class="day-item">
358
+ <div>
359
+ <div>Wed</div>
360
+ <div class="date-text">27/9</div>
361
+ </div>
362
+ <div class="sun-icon">
363
+ <div class="sun"></div>
364
+ <div class="cloud"></div>
365
+ </div>
366
+ <div class="weather-desc">Mostly sunny</div>
367
+ <div class="temp-range">34° 24°</div>
368
+ <div class="arrow"></div>
369
+ </div>
370
+ </div>
371
+
372
+ <div class="handle"></div>
373
+ </div>
374
+ </body>
375
+ </html>
code/14487/14487_1.html ADDED
@@ -0,0 +1,378 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="utf-8">
4
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
5
+ <title>Weather & Radar - Mock</title>
6
+ <style>
7
+ body { margin: 0; padding: 0; background: transparent; font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif; }
8
+ #render-target {
9
+ width: 1080px;
10
+ height: 2400px;
11
+ position: relative;
12
+ overflow: hidden;
13
+ background: linear-gradient(180deg, #233642 0%, #26343e 35%, #2a3640 100%);
14
+ color: #fff;
15
+ }
16
+
17
+ /* Status bar */
18
+ .status-bar {
19
+ height: 90px;
20
+ padding: 0 32px;
21
+ display: flex;
22
+ align-items: center;
23
+ gap: 22px;
24
+ color: #cfe6f0;
25
+ font-weight: 600;
26
+ font-size: 40px;
27
+ }
28
+ .status-right {
29
+ margin-left: auto;
30
+ display: flex;
31
+ align-items: center;
32
+ gap: 26px;
33
+ font-size: 32px;
34
+ }
35
+ .status-icon { width: 34px; height: 34px; }
36
+ .battery {
37
+ display: inline-flex;
38
+ align-items: center;
39
+ gap: 10px;
40
+ font-size: 32px;
41
+ }
42
+ .battery svg { width: 48px; height: 28px; }
43
+
44
+ /* App bar */
45
+ .app-bar {
46
+ background: #0b6d8e;
47
+ height: 120px;
48
+ display: flex;
49
+ align-items: center;
50
+ padding: 0 28px;
51
+ box-shadow: 0 4px 12px rgba(0,0,0,0.35);
52
+ }
53
+ .app-bar .brand {
54
+ font-size: 56px;
55
+ font-weight: 700;
56
+ letter-spacing: 0.5px;
57
+ margin: 0 18px;
58
+ flex: 1;
59
+ }
60
+ .brand .amp { color: #f6c431; font-weight: 900; }
61
+ .icon-btn { width: 72px; height: 72px; display: inline-flex; align-items: center; justify-content: center; }
62
+ .icon-btn svg { width: 54px; height: 54px; fill: #eaf6fb; }
63
+
64
+ /* Location & current */
65
+ .content {
66
+ padding: 36px 32px 0 32px;
67
+ }
68
+ .location-line { color: #cfe6f0; font-size: 34px; }
69
+ .city { font-size: 66px; font-weight: 700; margin-top: 6px; }
70
+ .current-row { display: flex; align-items: flex-start; margin-top: 24px; }
71
+ .temp {
72
+ font-size: 180px;
73
+ font-weight: 700;
74
+ line-height: 1;
75
+ margin-right: 24px;
76
+ }
77
+ .feels { font-size: 42px; color: #cfe6f0; margin-top: 16px; }
78
+ .right-now {
79
+ margin-left: auto;
80
+ text-align: right;
81
+ }
82
+ .right-now .label { font-size: 36px; color: #d0d7dd; margin-bottom: 10px; }
83
+ .pill {
84
+ display: inline-block;
85
+ background: #65b11a;
86
+ color: #fff;
87
+ border-radius: 18px;
88
+ padding: 12px 20px;
89
+ font-weight: 700;
90
+ font-size: 42px;
91
+ }
92
+ .right-now .sub { margin-top: 10px; font-size: 36px; color: #d0e3d2; }
93
+
94
+ /* 90 min card */
95
+ .card {
96
+ margin-top: 24px;
97
+ background: #ffffff;
98
+ color: #0b3b4f;
99
+ border-radius: 22px;
100
+ padding: 26px 30px;
101
+ display: flex;
102
+ align-items: center;
103
+ gap: 24px;
104
+ max-width: 700px;
105
+ box-shadow: 0 8px 24px rgba(0,0,0,0.35);
106
+ }
107
+ .card .title { font-size: 40px; font-weight: 700; }
108
+ .card .subtitle { font-size: 38px; color: #376076; margin-top: 8px; }
109
+ .play {
110
+ margin-left: auto;
111
+ width: 120px; height: 120px;
112
+ background: #0b6d8e;
113
+ border-radius: 60px;
114
+ display: flex; align-items: center; justify-content: center;
115
+ }
116
+ .play svg { width: 60px; height: 60px; fill: #ffffff; }
117
+
118
+ /* Tomorrow row */
119
+ .tomorrow-row {
120
+ margin-top: 40px;
121
+ display: flex; align-items: center;
122
+ color: #d7e6ed;
123
+ border-top: 2px solid rgba(255,255,255,0.1);
124
+ padding-top: 20px;
125
+ }
126
+ .tomorrow-row .left { font-size: 42px; font-weight: 700; }
127
+ .tomorrow-row .right {
128
+ margin-left: auto; display: flex; align-items: center; gap: 16px; font-size: 36px;
129
+ }
130
+ .tomorrow-row .right .times { color: #cfe6f0; }
131
+
132
+ /* Hourly strip */
133
+ .hourly {
134
+ margin-top: 28px;
135
+ display: grid;
136
+ grid-template-columns: repeat(4, 1fr);
137
+ gap: 24px;
138
+ }
139
+ .hour {
140
+ background: rgba(255,255,255,0.05);
141
+ border: 1px solid rgba(255,255,255,0.08);
142
+ border-radius: 18px;
143
+ padding: 18px;
144
+ }
145
+ .hour .time { color: #cfe6f0; font-size: 34px; margin-bottom: 8px; }
146
+ .hour .t { font-size: 70px; font-weight: 700; }
147
+ .hour .icon-row { margin: 6px 0 12px 0; display: flex; align-items: center; gap: 10px; }
148
+ .hour .prec {
149
+ display: flex; align-items: center; gap: 10px; color: #cfe6f0; font-size: 34px;
150
+ }
151
+ .aqi-pill {
152
+ background: #65b11a; color: #fff; font-weight: 800; padding: 10px 16px; border-radius: 14px; display: inline-block; font-size: 40px; margin-top: 12px;
153
+ }
154
+
155
+ /* Divider and detail info */
156
+ .detail-title {
157
+ margin: 28px 8px 10px 8px;
158
+ font-size: 40px; color: #e7eef2;
159
+ }
160
+ .divider { height: 2px; background: rgba(255,255,255,0.15); margin: 8px 0 18px; }
161
+
162
+ .metrics {
163
+ display: grid;
164
+ grid-template-columns: repeat(2, 1fr);
165
+ gap: 22px;
166
+ }
167
+ .metric {
168
+ display: flex; align-items: center; gap: 18px;
169
+ color: #eaf4f8; font-size: 40px;
170
+ background: rgba(255,255,255,0.05);
171
+ border: 1px solid rgba(255,255,255,0.08);
172
+ border-radius: 18px;
173
+ padding: 18px;
174
+ }
175
+ .metric svg { width: 50px; height: 50px; fill: #cfe6f0; }
176
+
177
+ /* Ad placeholder */
178
+ .ad {
179
+ margin: 46px auto 0;
180
+ width: 90%;
181
+ height: 220px;
182
+ background: #E0E0E0;
183
+ border: 1px solid #BDBDBD;
184
+ color: #757575;
185
+ display: flex; align-items: center; justify-content: center;
186
+ border-radius: 12px;
187
+ font-size: 42px;
188
+ font-weight: 600;
189
+ }
190
+
191
+ /* Footer vignette image placeholder */
192
+ .image-placeholder {
193
+ width: 160px; height: 120px;
194
+ position: absolute; bottom: 140px; left: 60px;
195
+ background: #E0E0E0; border: 1px solid #BDBDBD; color: #757575;
196
+ display: flex; align-items: center; justify-content: center; border-radius: 8px;
197
+ font-size: 28px;
198
+ }
199
+ </style>
200
+ </head>
201
+ <body>
202
+ <div id="render-target">
203
+
204
+ <!-- Status bar -->
205
+ <div class="status-bar">
206
+ <div>11:44</div>
207
+ <svg class="status-icon" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10" fill="#cfe6f0"/></svg>
208
+ <svg class="status-icon" viewBox="0 0 24 24"><polygon points="12,2 22,22 2,22" fill="#cfe6f0"/></svg>
209
+ <div class="status-right">
210
+ <div>28°</div>
211
+ <div class="battery">
212
+ <svg viewBox="0 0 40 20">
213
+ <rect x="1" y="3" width="34" height="14" rx="3" fill="none" stroke="#cfe6f0" stroke-width="2"/>
214
+ <rect x="3" y="5" width="26" height="10" rx="2" fill="#cfe6f0"/>
215
+ <rect x="36" y="7" width="3" height="6" fill="#cfe6f0"/>
216
+ </svg>
217
+ <span>100%</span>
218
+ </div>
219
+ </div>
220
+ </div>
221
+
222
+ <!-- App bar -->
223
+ <div class="app-bar">
224
+ <div class="icon-btn">
225
+ <svg viewBox="0 0 24 24">
226
+ <rect x="3" y="5" width="18" height="2"></rect>
227
+ <rect x="3" y="11" width="18" height="2"></rect>
228
+ <rect x="3" y="17" width="18" height="2"></rect>
229
+ </svg>
230
+ </div>
231
+ <div class="brand">weather<span class="amp">&</span>radar</div>
232
+ <div class="icon-btn">
233
+ <svg viewBox="0 0 24 24">
234
+ <circle cx="10" cy="10" r="7"></circle>
235
+ <rect x="16" y="16" width="7" height="2" transform="rotate(45 16 16)"></rect>
236
+ </svg>
237
+ </div>
238
+ </div>
239
+
240
+ <div class="content">
241
+ <div class="location-line">Maharashtra, India</div>
242
+ <div class="city">Girgaon</div>
243
+
244
+ <div class="current-row">
245
+ <div>
246
+ <div class="temp">75°</div>
247
+ <div class="feels">feels like 75°</div>
248
+ </div>
249
+
250
+ <div class="right-now">
251
+ <div class="label">right now</div>
252
+ <div class="pill">AQI 60</div>
253
+ <div class="sub">Satisfactory</div>
254
+ </div>
255
+ </div>
256
+
257
+ <div class="card">
258
+ <div>
259
+ <div class="title">90 Min. Weather:</div>
260
+ <div class="subtitle">mostly cloudy</div>
261
+ </div>
262
+ <div class="play">
263
+ <svg viewBox="0 0 24 24"><polygon points="8,5 20,12 8,19"></polygon></svg>
264
+ </div>
265
+ </div>
266
+
267
+ <div class="tomorrow-row">
268
+ <div class="left">tomorrow</div>
269
+ <div class="right">
270
+ <svg viewBox="0 0 24 24">
271
+ <circle cx="12" cy="9" r="5" fill="#ffd057"></circle>
272
+ <rect x="2" y="18" width="20" height="2" fill="#ffd057"></rect>
273
+ </svg>
274
+ <div class="times">↑ 6:10 AM ↓ 6:13 PM</div>
275
+ </div>
276
+ </div>
277
+
278
+ <!-- Hourly forecast -->
279
+ <div class="hourly">
280
+ <div class="hour">
281
+ <div class="time">12:00 AM</div>
282
+ <div class="t">74°</div>
283
+ <div class="icon-row">
284
+ <svg viewBox="0 0 24 24">
285
+ <path d="M5 15h14a4 4 0 0 0-4-4h-1a3 3 0 0 0-6 0H7a4 4 0 0 0-2 4z" fill="#eaf6fb"></path>
286
+ </svg>
287
+ <svg viewBox="0 0 24 24">
288
+ <path d="M15 3a7 7 0 1 0 6 12A8 8 0 0 1 15 3z" fill="#e6d55c"></path>
289
+ </svg>
290
+ </div>
291
+ <div class="prec">
292
+ <svg viewBox="0 0 24 24"><path d="M12 3c4 5 6 8 6 10a6 6 0 0 1-12 0c0-2 2-5 6-10z"/></svg>
293
+ <span>30%</span>
294
+ </div>
295
+ <div class="aqi-pill">60</div>
296
+ </div>
297
+
298
+ <div class="hour">
299
+ <div class="time">1:00 AM</div>
300
+ <div class="t">74°</div>
301
+ <div class="icon-row">
302
+ <svg viewBox="0 0 24 24"><path d="M5 15h14a4 4 0 0 0-4-4h-1a3 3 0 0 0-6 0H7a4 4 0 0 0-2 4z" fill="#eaf6fb"></path></svg>
303
+ <svg viewBox="0 0 24 24"><path d="M15 3a7 7 0 1 0 6 12A8 8 0 0 1 15 3z" fill="#e6d55c"></path></svg>
304
+ </div>
305
+ <div class="prec">
306
+ <svg viewBox="0 0 24 24"><path d="M12 3c4 5 6 8 6 10a6 6 0 0 1-12 0c0-2 2-5 6-10z"/></svg>
307
+ <span>30%</span>
308
+ </div>
309
+ <div class="aqi-pill">60</div>
310
+ </div>
311
+
312
+ <div class="hour">
313
+ <div class="time">2:00 AM</div>
314
+ <div class="t">73°</div>
315
+ <div class="icon-row">
316
+ <svg viewBox="0 0 24 24"><path d="M5 15h14a4 4 0 0 0-4-4h-1a3 3 0 0 0-6 0H7a4 4 0 0 0-2 4z" fill="#eaf6fb"></path></svg>
317
+ <svg viewBox="0 0 24 24"><path d="M15 3a7 7 0 1 0 6 12A8 8 0 0 1 15 3z" fill="#e6d55c"></path></svg>
318
+ </div>
319
+ <div class="prec">
320
+ <svg viewBox="0 0 24 24"><path d="M12 3c4 5 6 8 6 10a6 6 0 0 1-12 0c0-2 2-5 6-10z"/></svg>
321
+ <span>30%</span>
322
+ </div>
323
+ <div class="aqi-pill">60</div>
324
+ </div>
325
+
326
+ <div class="hour">
327
+ <div class="time">3:00 AM</div>
328
+ <div class="t">72°</div>
329
+ <div class="icon-row">
330
+ <svg viewBox="0 0 24 24"><path d="M5 15h14a4 4 0 0 0-4-4h-1a3 3 0 0 0-6 0H7a4 4 0 0 0-2 4z" fill="#eaf6fb"></path></svg>
331
+ <svg viewBox="0 0 24 24"><path d="M15 3a7 7 0 1 0 6 12A8 8 0 0 1 15 3z" fill="#e6d55c"></path></svg>
332
+ </div>
333
+ <div class="prec">
334
+ <svg viewBox="0 0 24 24"><path d="M12 3c4 5 6 8 6 10a6 6 0 0 1-12 0c0-2 2-5 6-10z"/></svg>
335
+ <span>30%</span>
336
+ </div>
337
+ <div class="aqi-pill">60</div>
338
+ </div>
339
+ </div>
340
+
341
+ <div class="detail-title">12:00 AM — mostly cloudy</div>
342
+ <div class="divider"></div>
343
+
344
+ <div class="metrics">
345
+ <div class="metric">
346
+ <svg viewBox="0 0 24 24"><circle cx="12" cy="12" r="10" fill="none" stroke="#cfe6f0" stroke-width="2"></circle><path d="M12 6v6l4 2" stroke="#cfe6f0" stroke-width="2" fill="none"/></svg>
347
+ <div>pressure: 29.77 inHg</div>
348
+ </div>
349
+ <div class="metric">
350
+ <svg viewBox="0 0 24 24"><path d="M12 3c4 5 6 8 6 10a6 6 0 0 1-12 0c0-2 2-5 6-10z"/></svg>
351
+ <div>feels like: 74°</div>
352
+ </div>
353
+ <div class="metric">
354
+ <svg viewBox="0 0 24 24"><path d="M7 5v12a5 5 0 1 0 10 0V5" stroke="#cfe6f0" stroke-width="2" fill="none"/></svg>
355
+ <div>humidity: 95 %</div>
356
+ </div>
357
+ <div class="metric">
358
+ <svg viewBox="0 0 24 24"><path d="M3 12l6 2 4-2 4 3 4-1" stroke="#cfe6f0" stroke-width="2" fill="none"/></svg>
359
+ <div>light wind from W (4 mph)</div>
360
+ </div>
361
+ <div class="metric">
362
+ <svg viewBox="0 0 24 24"><rect x="5" y="4" width="10" height="16" rx="5" fill="none" stroke="#cfe6f0" stroke-width="2"></rect><circle cx="10" cy="13" r="3" fill="#cfe6f0"/></svg>
363
+ <div>dew point: 74°</div>
364
+ </div>
365
+ <div class="metric">
366
+ <svg viewBox="0 0 24 24"><rect x="3" y="8" width="18" height="10" rx="5" fill="none" stroke="#cfe6f0" stroke-width="2"></rect><text x="12" y="16" text-anchor="middle" font-size="8" fill="#cfe6f0">AQI</text></svg>
367
+ <div>AQI 60 Satisfactory</div>
368
+ </div>
369
+ </div>
370
+
371
+ <div class="ad">[IMG: Ad Placeholder]</div>
372
+ </div>
373
+
374
+ <div class="image-placeholder">[IMG: Cloudy bg]</div>
375
+
376
+ </div>
377
+ </body>
378
+ </html>
code/14490/14490_0.html ADDED
@@ -0,0 +1,271 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Mobile UI - Groceries Note</title>
5
+ <style>
6
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
7
+ #render-target {
8
+ width: 1080px;
9
+ height: 2400px;
10
+ position: relative;
11
+ overflow: hidden;
12
+ background: #000;
13
+ color: #fff;
14
+ }
15
+
16
+ /* Status bar */
17
+ .status-bar {
18
+ position: absolute;
19
+ top: 0; left: 0;
20
+ width: 1080px; height: 100px;
21
+ background: #000;
22
+ color: #bdbdbd;
23
+ font-size: 30px;
24
+ display: flex; align-items: center;
25
+ padding: 0 30px;
26
+ box-sizing: border-box;
27
+ }
28
+ .status-right { margin-left: auto; display: flex; gap: 20px; align-items: center; }
29
+
30
+ /* App bar */
31
+ .app-bar {
32
+ position: absolute;
33
+ top: 100px; left: 0;
34
+ width: 1080px; height: 140px;
35
+ background: #2b2b2b;
36
+ display: flex; align-items: center;
37
+ padding: 0 32px;
38
+ box-sizing: border-box;
39
+ border-bottom: 1px solid #1f1f1f;
40
+ }
41
+ .title {
42
+ font-size: 52px;
43
+ font-weight: 600;
44
+ margin-left: 24px;
45
+ }
46
+ .app-actions {
47
+ margin-left: auto;
48
+ display: flex; align-items: center; gap: 40px;
49
+ }
50
+ .icon-btn { width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; }
51
+ .icon-btn svg { width: 44px; height: 44px; fill: none; stroke: #e0e0e0; stroke-width: 6; }
52
+
53
+ /* Note card */
54
+ .card {
55
+ position: absolute;
56
+ left: 24px; right: 24px;
57
+ top: 280px;
58
+ background: #111;
59
+ border: 1px solid #3a3a3a;
60
+ border-radius: 18px;
61
+ padding: 36px;
62
+ box-sizing: border-box;
63
+ min-height: 180px;
64
+ }
65
+ .card-text {
66
+ font-size: 46px;
67
+ line-height: 64px;
68
+ color: #eaeaea;
69
+ }
70
+ .highlight {
71
+ background: #2fa74f;
72
+ color: #fff;
73
+ padding: 6px 10px;
74
+ border-radius: 8px;
75
+ }
76
+ .last-edit {
77
+ position: absolute;
78
+ right: 36px; bottom: 22px;
79
+ color: #b1b1b1;
80
+ font-size: 28px;
81
+ }
82
+
83
+ /* Floating Action Button */
84
+ .fab {
85
+ position: absolute;
86
+ right: 44px;
87
+ bottom: 870px; /* sits above keyboard */
88
+ width: 140px; height: 140px;
89
+ background: #97a67f;
90
+ border-radius: 50%;
91
+ display: flex; align-items: center; justify-content: center;
92
+ box-shadow: 0 8px 18px rgba(0,0,0,0.5);
93
+ }
94
+ .fab svg { width: 64px; height: 64px; stroke: #fff; stroke-width: 16; }
95
+
96
+ /* Suggestion / input bar above keyboard */
97
+ .suggestion-bar {
98
+ position: absolute;
99
+ left: 0; width: 1080px;
100
+ top: 1450px; height: 110px;
101
+ background: #1a1a1a;
102
+ color: #e6e6e6;
103
+ display: flex; align-items: center; justify-content: center;
104
+ font-size: 40px;
105
+ border-top: 1px solid #242424;
106
+ border-bottom: 1px solid #242424;
107
+ }
108
+ .suggestion-mic {
109
+ position: absolute; right: 30px; top: 50%; transform: translateY(-50%);
110
+ width: 66px; height: 66px;
111
+ }
112
+ .suggestion-mic svg { width: 100%; height: 100%; stroke: #e6e6e6; stroke-width: 6; fill: none; }
113
+
114
+ /* Keyboard */
115
+ .keyboard {
116
+ position: absolute;
117
+ left: 0; bottom: 120px;
118
+ width: 1080px; height: 820px;
119
+ background: #1f1f1f;
120
+ border-top: 1px solid #2a2a2a;
121
+ box-sizing: border-box;
122
+ padding: 24px 24px 16px 24px;
123
+ }
124
+ .keys-row {
125
+ display: flex; justify-content: center;
126
+ gap: 12px; margin-bottom: 22px;
127
+ }
128
+ .key {
129
+ background: #2a2a2a;
130
+ color: #f2f2f2;
131
+ width: 88px; height: 110px;
132
+ border-radius: 18px;
133
+ font-size: 46px; line-height: 110px; text-align: center;
134
+ }
135
+ .key.wide { width: 160px; }
136
+ .key.xwide { width: 420px; } /* space bar */
137
+ .key.square { width: 120px; }
138
+ .circle-key {
139
+ width: 140px; height: 140px;
140
+ background: #cbb994;
141
+ color: #1b1b1b;
142
+ border-radius: 50%;
143
+ font-size: 42px; line-height: 140px; text-align: center;
144
+ }
145
+ .key.dark-circle {
146
+ width: 140px; height: 140px; border-radius: 50%; background: #f3d29b; color: #222; line-height: 140px;
147
+ }
148
+ .key-label-small { font-size: 28px; color: #d8d8d8; }
149
+
150
+ /* Home bar & chevron */
151
+ .home-bar {
152
+ position: absolute; bottom: 28px; left: 50%;
153
+ width: 420px; height: 10px; border-radius: 6px; background: #fff;
154
+ transform: translateX(-50%);
155
+ opacity: 0.85;
156
+ }
157
+ .chevron {
158
+ position: absolute; bottom: 130px; left: 50%;
159
+ transform: translateX(-50%);
160
+ color: #dcdcdc;
161
+ font-size: 42px;
162
+ }
163
+ </style>
164
+ </head>
165
+ <body>
166
+ <div id="render-target">
167
+
168
+ <!-- Status Bar -->
169
+ <div class="status-bar">
170
+ <div>1:18 72°</div>
171
+ <div class="status-right">
172
+ <div>en</div>
173
+ <div>✓</div>
174
+ <div>▲</div>
175
+ <div>•</div>
176
+ <div>◌</div>
177
+ </div>
178
+ </div>
179
+
180
+ <!-- App Bar -->
181
+ <div class="app-bar">
182
+ <div class="icon-btn">
183
+ <svg viewBox="0 0 24 24">
184
+ <path d="M20 12H6"></path>
185
+ <path d="M12 6L6 12L12 18"></path>
186
+ </svg>
187
+ </div>
188
+ <div class="title">Groceries</div>
189
+ <div class="app-actions">
190
+ <div class="icon-btn">
191
+ <svg viewBox="0 0 24 24">
192
+ <path d="M5 5L19 19"></path>
193
+ <path d="M19 5L5 19"></path>
194
+ </svg>
195
+ </div>
196
+ <div class="icon-btn">
197
+ <svg viewBox="0 0 24 24">
198
+ <circle cx="12" cy="5" r="2.2"></circle>
199
+ <circle cx="12" cy="12" r="2.2"></circle>
200
+ <circle cx="12" cy="19" r="2.2"></circle>
201
+ </svg>
202
+ </div>
203
+ </div>
204
+ </div>
205
+
206
+ <!-- Note Card -->
207
+ <div class="card">
208
+ <div class="card-text">
209
+ Reminder to buy <span class="highlight">groceries</span>
210
+ </div>
211
+ <div class="last-edit">Last edit: 12/13/23, 12:05 PM</div>
212
+ </div>
213
+
214
+ <!-- Floating Action Button -->
215
+ <div class="fab">
216
+ <svg viewBox="0 0 24 24">
217
+ <path d="M12 5v14"></path>
218
+ <path d="M5 12h14"></path>
219
+ </svg>
220
+ </div>
221
+
222
+ <!-- Suggestion bar -->
223
+ <div class="suggestion-bar">
224
+ Groceries
225
+ <div class="suggestion-mic">
226
+ <svg viewBox="0 0 24 24">
227
+ <rect x="8" y="4" width="8" height="10" rx="4"></rect>
228
+ <path d="M12 14v4"></path>
229
+ <path d="M7 11c0 3 2.5 5 5 5s5-2 5-5"></path>
230
+ </svg>
231
+ </div>
232
+ </div>
233
+
234
+ <!-- Keyboard -->
235
+ <div class="keyboard">
236
+ <div class="keys-row">
237
+ <div class="key">q</div><div class="key">w</div><div class="key">e</div><div class="key">r</div><div class="key">t</div>
238
+ <div class="key">y</div><div class="key">u</div><div class="key">i</div><div class="key">o</div><div class="key">p</div>
239
+ </div>
240
+ <div class="keys-row">
241
+ <div class="key">a</div><div class="key">s</div><div class="key">d</div><div class="key">f</div><div class="key">g</div>
242
+ <div class="key">h</div><div class="key">j</div><div class="key">k</div><div class="key">l</div>
243
+ </div>
244
+ <div class="keys-row">
245
+ <div class="key">z</div><div class="key">x</div><div class="key">c</div><div class="key">v</div><div class="key">b</div>
246
+ <div class="key">n</div><div class="key">m</div>
247
+ <div class="key square">⌫</div>
248
+ </div>
249
+ <div class="keys-row">
250
+ <div class="circle-key">?123</div>
251
+ <div class="key square">,</div>
252
+ <div class="key square">🙂</div>
253
+ <div class="key xwide"></div>
254
+ <div class="key square">.</div>
255
+ <div class="circle-key">
256
+ <!-- Search icon -->
257
+ <svg viewBox="0 0 24 24" style="width:60px;height:60px;stroke:#222;stroke-width:3;fill:none;margin-top:35px;">
258
+ <circle cx="10" cy="10" r="6"></circle>
259
+ <path d="M15 15L21 21"></path>
260
+ </svg>
261
+ </div>
262
+ </div>
263
+ </div>
264
+
265
+ <!-- Chevron and Home Bar -->
266
+ <div class="chevron">⌄</div>
267
+ <div class="home-bar"></div>
268
+
269
+ </div>
270
+ </body>
271
+ </html>
code/14490/14490_1.html ADDED
@@ -0,0 +1,240 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Notepad Free Mock</title>
5
+ <style>
6
+ body { margin:0; padding:0; background:transparent; font-family: 'Roboto', Arial, sans-serif; }
7
+ #render-target {
8
+ width:1080px; height:2400px;
9
+ position:relative; overflow:hidden;
10
+ background:#0b0b0b;
11
+ color:#eaeaea;
12
+ }
13
+
14
+ /* Status bar */
15
+ .status-bar {
16
+ position:absolute; top:0; left:0; right:0;
17
+ height:110px;
18
+ background:#000000;
19
+ display:flex; align-items:center; justify-content:space-between;
20
+ padding:0 32px;
21
+ font-size:34px; color:#dcdcdc;
22
+ letter-spacing:0.5px;
23
+ }
24
+ .status-left { display:flex; align-items:center; gap:22px; }
25
+ .status-right { display:flex; align-items:center; gap:22px; }
26
+ .icon-battery, .icon-signal, .icon-wifi {
27
+ width:44px; height:26px; border:2px solid #bdbdbd; border-radius:4px; position:relative;
28
+ }
29
+ .icon-battery::after { content:''; position:absolute; right:-10px; top:6px; width:8px; height:12px; background:#bdbdbd; border-radius:2px; }
30
+ .icon-wifi { border:none; width:40px; height:28px; }
31
+ .icon-wifi svg, .icon-back svg, .icon-menu svg { display:block; }
32
+ .icon-check {
33
+ width:32px; height:32px; border:2px solid #bdbdbd; border-radius:50%;
34
+ position:relative;
35
+ }
36
+ .icon-check::after {
37
+ content:''; position:absolute; left:7px; top:6px; width:14px; height:8px; border-left:3px solid #bdbdbd; border-bottom:3px solid #bdbdbd; transform:rotate(-45deg);
38
+ }
39
+
40
+ /* App bar */
41
+ .app-bar {
42
+ position:absolute; top:110px; left:0; right:0;
43
+ height:160px; background:#232323;
44
+ display:flex; align-items:center; justify-content:space-between;
45
+ padding:0 28px;
46
+ box-shadow:0 2px 0 #1a1a1a inset;
47
+ }
48
+ .app-left { display:flex; align-items:center; gap:20px; }
49
+ .icon-back { width:60px; height:60px; }
50
+ .app-title { font-size:52px; font-weight:600; color:#eaeaea; }
51
+ .app-right { display:flex; align-items:center; gap:40px; }
52
+ .app-action { font-size:40px; font-weight:600; color:#cfcfcf; letter-spacing:1px; }
53
+ .icon-menu { width:56px; height:56px; }
54
+
55
+ /* Note area */
56
+ .note-wrapper {
57
+ position:absolute; top:270px; left:0; right:0;
58
+ height:1230px; padding:22px;
59
+ }
60
+ .note-area {
61
+ background:#0e0e0e; border:1px solid #2b2b2b; border-radius:16px;
62
+ height:100%; position:relative; padding:22px 24px;
63
+ box-shadow: inset 0 0 0 1px #1f1f1f;
64
+ }
65
+ .note-line-top, .note-line-bottom {
66
+ position:absolute; left:12px; right:12px; height:6px; background:#7fb26b;
67
+ border-radius:3px;
68
+ }
69
+ .note-line-top { top:92px; }
70
+ .note-line-bottom { bottom:18px; }
71
+ .note-title {
72
+ font-size:56px; color:#f3f3f3; margin:6px 8px 24px;
73
+ }
74
+ .note-text {
75
+ font-size:46px; color:#dcdcdc; margin:20px 8px;
76
+ }
77
+
78
+ /* Keyboard */
79
+ .kb {
80
+ position:absolute; left:0; right:0; bottom:0;
81
+ height:900px; background:#1d1d1d;
82
+ border-top:1px solid #2b2b2b;
83
+ box-shadow:0 -2px 0 rgba(0,0,0,0.35);
84
+ }
85
+ .kb-tools {
86
+ height:120px; display:flex; align-items:center; gap:40px; padding:0 32px;
87
+ color:#dcdcdc;
88
+ }
89
+ .tool {
90
+ width:84px; height:84px; background:#272727; border-radius:18px;
91
+ display:flex; align-items:center; justify-content:center;
92
+ border:1px solid #3a3a3a; font-size:36px;
93
+ }
94
+ /* Keys grid */
95
+ .kb-rows { padding:10px 20px 0; }
96
+ .row { display:flex; justify-content:center; gap:16px; margin:22px 0; }
97
+ .key {
98
+ background:#2a2a2a; color:#f5f5f5; border-radius:18px;
99
+ width:88px; height:110px; display:flex; align-items:center; justify-content:center;
100
+ border:1px solid #3a3a3a; font-size:46px; font-weight:500;
101
+ }
102
+ .key.wide { width:120px; }
103
+ .key.xwide { width:220px; }
104
+ .key.space { flex:1; height:110px; }
105
+ .key.back { width:140px; }
106
+ .enter-circle {
107
+ position:absolute; right:28px; bottom:32px; width:160px; height:160px;
108
+ background:#ffd88a; border-radius:50%; display:flex; align-items:center; justify-content:center;
109
+ color:#2a2a2a; font-size:62px; font-weight:700; box-shadow:0 6px 0 rgba(0,0,0,0.35);
110
+ }
111
+ /* Small gesture handle */
112
+ .gesture { position:absolute; bottom:8px; left:50%; transform:translateX(-50%); width:420px; height:8px; background:#dcdcdc; border-radius:4px; opacity:0.35; }
113
+
114
+ /* Tiny labels for numbers on top row (visual cue) */
115
+ .key .num {
116
+ position:absolute; top:8px; left:8px; font-size:24px; color:#bfbfbf; font-weight:400;
117
+ }
118
+ .key { position:relative; }
119
+ </style>
120
+ </head>
121
+ <body>
122
+ <div id="render-target">
123
+
124
+ <!-- Status bar -->
125
+ <div class="status-bar">
126
+ <div class="status-left">
127
+ <div>1:18</div>
128
+ <div>72°</div>
129
+ <div class="icon-check"></div>
130
+ </div>
131
+ <div class="status-right">
132
+ <div class="icon-signal"></div>
133
+ <div class="icon-wifi">
134
+ <svg viewBox="0 0 24 24" width="40" height="28">
135
+ <path d="M12 18l3-3H9l3 3z" fill="#bdbdbd"/>
136
+ <path d="M2 8c5-4 15-4 20 0" stroke="#bdbdbd" stroke-width="2" fill="none"/>
137
+ <path d="M5 11c3-2 11-2 14 0" stroke="#bdbdbd" stroke-width="2" fill="none"/>
138
+ </svg>
139
+ </div>
140
+ <div class="icon-battery"></div>
141
+ </div>
142
+ </div>
143
+
144
+ <!-- App bar -->
145
+ <div class="app-bar">
146
+ <div class="app-left">
147
+ <div class="icon-back">
148
+ <svg viewBox="0 0 24 24" width="60" height="60">
149
+ <path d="M15 5L6 12l9 7" stroke="#e0e0e0" stroke-width="3" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
150
+ </svg>
151
+ </div>
152
+ <div class="app-title">Notepad Free</div>
153
+ </div>
154
+ <div class="app-right">
155
+ <div class="app-action">SAVE</div>
156
+ <div class="app-action">UNDO</div>
157
+ <div class="icon-menu">
158
+ <svg viewBox="0 0 24 24" width="56" height="56">
159
+ <circle cx="12" cy="5" r="2.3" fill="#bdbdbd"/>
160
+ <circle cx="12" cy="12" r="2.3" fill="#bdbdbd"/>
161
+ <circle cx="12" cy="19" r="2.3" fill="#bdbdbd"/>
162
+ </svg>
163
+ </div>
164
+ </div>
165
+ </div>
166
+
167
+ <!-- Note area -->
168
+ <div class="note-wrapper">
169
+ <div class="note-area">
170
+ <div class="note-title">Reminder to buy groceries</div>
171
+ <div class="note-line-top"></div>
172
+ <div class="note-text">Milk, eggs, chicken and broccoliu</div>
173
+ <div class="note-line-bottom"></div>
174
+ </div>
175
+ </div>
176
+
177
+ <!-- Keyboard -->
178
+ <div class="kb">
179
+ <div class="kb-tools">
180
+ <div class="tool">⌘</div>
181
+ <div class="tool">😊</div>
182
+ <div class="tool">GIF</div>
183
+ <div class="tool">⚙️</div>
184
+ <div class="tool">G↔</div>
185
+ <div class="tool">🎨</div>
186
+ <div class="tool">🎙️</div>
187
+ </div>
188
+ <div class="kb-rows">
189
+ <!-- Row 1 -->
190
+ <div class="row">
191
+ <div class="key"><span class="num">1</span>Q</div>
192
+ <div class="key"><span class="num">2</span>W</div>
193
+ <div class="key"><span class="num">3</span>E</div>
194
+ <div class="key"><span class="num">4</span>R</div>
195
+ <div class="key"><span class="num">5</span>T</div>
196
+ <div class="key"><span class="num">6</span>Y</div>
197
+ <div class="key"><span class="num">7</span>U</div>
198
+ <div class="key"><span class="num">8</span>I</div>
199
+ <div class="key"><span class="num">9</span>O</div>
200
+ <div class="key"><span class="num">0</span>P</div>
201
+ </div>
202
+ <!-- Row 2 -->
203
+ <div class="row">
204
+ <div class="key">A</div>
205
+ <div class="key">S</div>
206
+ <div class="key">D</div>
207
+ <div class="key">F</div>
208
+ <div class="key">G</div>
209
+ <div class="key">H</div>
210
+ <div class="key">J</div>
211
+ <div class="key">K</div>
212
+ <div class="key">L</div>
213
+ </div>
214
+ <!-- Row 3 -->
215
+ <div class="row">
216
+ <div class="key">Z</div>
217
+ <div class="key">X</div>
218
+ <div class="key">C</div>
219
+ <div class="key">V</div>
220
+ <div class="key">B</div>
221
+ <div class="key">N</div>
222
+ <div class="key">M</div>
223
+ <div class="key back">⌫</div>
224
+ </div>
225
+ <!-- Row 4 -->
226
+ <div class="row">
227
+ <div class="key xwide">?123</div>
228
+ <div class="key wide">,</div>
229
+ <div class="key wide">😊</div>
230
+ <div class="key space"></div>
231
+ <div class="key wide">.</div>
232
+ </div>
233
+ </div>
234
+ <div class="enter-circle">↵</div>
235
+ </div>
236
+
237
+ <div class="gesture"></div>
238
+ </div>
239
+ </body>
240
+ </html>
code/14490/14490_2.html ADDED
@@ -0,0 +1,165 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Notepad Free - Mock</title>
5
+ <style>
6
+ body { margin:0; padding:0; background:transparent; font-family: Arial, Helvetica, sans-serif; }
7
+ #render-target{
8
+ width:1080px; height:2400px;
9
+ position:relative; overflow:hidden;
10
+ background:#0b0b0b; color:#fff;
11
+ }
12
+
13
+ /* Status bar */
14
+ .status{
15
+ position:absolute; top:0; left:0; right:0;
16
+ height:100px; background:#111; color:#eaeaea;
17
+ font-size:38px; letter-spacing:1px;
18
+ }
19
+ .status .time{ position:absolute; left:26px; top:26px; font-weight:600; }
20
+ .status .icons{ position:absolute; right:26px; top:26px; font-size:30px; opacity:.8; }
21
+ .status .icons span{ margin-left:16px; }
22
+
23
+ /* App bar */
24
+ .appbar{
25
+ position:absolute; top:100px; left:0; right:0;
26
+ height:160px; background:#1f1f1f; display:flex; align-items:center;
27
+ }
28
+ .back{
29
+ width:110px; height:160px; display:flex; align-items:center; justify-content:center;
30
+ }
31
+ .back svg{ width:50px; height:50px; fill:#eaeaea; }
32
+ .title{
33
+ font-size:56px; font-weight:700; color:#eaeaea;
34
+ }
35
+
36
+ /* Editor area */
37
+ .editor{
38
+ position:absolute; top:260px; left:0; right:0;
39
+ bottom:820px; background:#0e0e0e;
40
+ }
41
+ .note-line{
42
+ margin:36px 24px 0 24px; padding:24px 12px 20px 12px;
43
+ border-bottom:3px solid #9CCC65; color:#eaeaea; font-size:54px;
44
+ }
45
+ .note-area{
46
+ position:absolute; left:24px; right:24px; bottom:22px;
47
+ height:6px; background:#9CCC65; opacity:.7;
48
+ }
49
+
50
+ /* Overflow menu on right */
51
+ .menu{
52
+ position:absolute; top:280px; right:0;
53
+ width:640px; height:1500px;
54
+ background:#2e2e2e; box-shadow:-10px 0 24px rgba(0,0,0,.5);
55
+ padding-top:28px;
56
+ }
57
+ .menu-item{
58
+ padding:34px 40px; font-size:48px; color:#fff; border-bottom:1px solid rgba(255,255,255,.06);
59
+ }
60
+ .menu-item.disabled{ color:#8b8b8b; }
61
+ .menu-item:last-child{ border-bottom:none; }
62
+
63
+ /* Keyboard */
64
+ .keyboard{
65
+ position:absolute; left:0; right:0; bottom:0;
66
+ height:800px; background:#141414; border-top:1px solid #2a2a2a;
67
+ }
68
+ .key-row{ display:flex; justify-content:space-between; padding:28px 22px; }
69
+ .key{
70
+ background:#232323; color:#f0f0f0; border-radius:18px;
71
+ width:90px; height:110px; display:flex; align-items:center; justify-content:center;
72
+ font-size:46px; box-shadow: inset 0 -2px 0 rgba(0,0,0,.35);
73
+ }
74
+ .key.wide{ width:120px; }
75
+ .key.lg{ width:130px; }
76
+ .key.xlg{ width:160px; }
77
+ .space{
78
+ flex:1; margin:0 18px; height:110px; background:#232323; border-radius:22px;
79
+ display:flex; align-items:center; justify-content:center; color:#cfcfcf; font-size:38px;
80
+ }
81
+ .special{ background:#c9b895; color:#1b1b1b; font-weight:700; }
82
+ .dot{ width:90px; }
83
+ .backspace{ width:120px; }
84
+ .enter{
85
+ width:150px; height:150px; border-radius:50%;
86
+ background:#ffe19a; color:#1a1a1a; display:flex; align-items:center; justify-content:center;
87
+ font-size:54px; margin-left:10px;
88
+ }
89
+ .gesture{
90
+ position:absolute; left:50%; transform:translateX(-50%);
91
+ bottom:18px; width:340px; height:8px; background:#e6e6e6; border-radius:8px; opacity:.85;
92
+ }
93
+ </style>
94
+ </head>
95
+ <body>
96
+ <div id="render-target">
97
+
98
+ <!-- STATUS BAR -->
99
+ <div class="status">
100
+ <div class="time">1:19</div>
101
+ <div class="icons">
102
+ <span>72°</span>
103
+ <span>✓</span>
104
+ <span>en</span>
105
+ <span>▲</span>
106
+ <span>•</span>
107
+ <span>◌</span>
108
+ <span>▮</span>
109
+ </div>
110
+ </div>
111
+
112
+ <!-- APP BAR -->
113
+ <div class="appbar">
114
+ <div class="back">
115
+ <svg viewBox="0 0 24 24"><path d="M15.5 5 8.5 12l7 7-1.4 1.4L5.7 12l8.4-8.4z"/></svg>
116
+ </div>
117
+ <div class="title">Notepad Free</div>
118
+ </div>
119
+
120
+ <!-- EDITOR AREA -->
121
+ <div class="editor">
122
+ <div class="note-line">Reminder to buy groceries</div>
123
+ <div class="note-line" style="margin-top:18px;">Milk, eggs, chicken and br</div>
124
+ <div class="note-area"></div>
125
+ </div>
126
+
127
+ <!-- RIGHT OVERFLOW MENU -->
128
+ <div class="menu">
129
+ <div class="menu-item disabled">Redo</div>
130
+ <div class="menu-item">Undo all</div>
131
+ <div class="menu-item">Share</div>
132
+ <div class="menu-item">Delete</div>
133
+ <div class="menu-item">Search</div>
134
+ <div class="menu-item">Export to a text file</div>
135
+ <div class="menu-item">Categorize</div>
136
+ <div class="menu-item">Colorize</div>
137
+ <div class="menu-item">Switch to read mode</div>
138
+ <div class="menu-item">Print</div>
139
+ </div>
140
+
141
+ <!-- KEYBOARD -->
142
+ <div class="keyboard">
143
+ <div class="key-row" style="margin-top:8px;">
144
+ <div class="key">Q</div><div class="key">W</div><div class="key">E</div><div class="key">R</div>
145
+ <div class="key">T</div><div class="key">Y</div><div class="key">U</div><div class="key">I</div>
146
+ <div class="key">O</div><div class="key">P</div>
147
+ </div>
148
+ <div class="key-row">
149
+ <div class="key lg">A</div><div class="key lg">S</div><div class="key lg">D</div><div class="key lg">F</div>
150
+ <div class="key lg">G</div><div class="key lg">H</div><div class="key lg">J</div><div class="key lg">K</div>
151
+ <div class="key lg">L</div><div class="key backspace">⌫</div>
152
+ </div>
153
+ <div class="key-row">
154
+ <div class="key special xlg">?123</div>
155
+ <div class="key">☺</div>
156
+ <div class="space">space</div>
157
+ <div class="key dot">.</div>
158
+ <div class="enter">↵</div>
159
+ </div>
160
+ <div class="gesture"></div>
161
+ </div>
162
+
163
+ </div>
164
+ </body>
165
+ </html>
code/14490/14490_3.html ADDED
@@ -0,0 +1,177 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Notepad Free Mock</title>
5
+ <style>
6
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
7
+ #render-target {
8
+ width: 1080px; height: 2400px; position: relative; overflow: hidden;
9
+ background: #121212; color: #EDEDED;
10
+ }
11
+
12
+ /* Status bar */
13
+ .status-bar {
14
+ position: absolute; top: 0; left: 0; width: 100%; height: 90px;
15
+ background: #0d0d0d; color: #d8d8d8; font-size: 30px;
16
+ display: flex; align-items: center; justify-content: space-between;
17
+ padding: 0 34px;
18
+ }
19
+ .status-left { display: flex; gap: 18px; align-items: center; }
20
+ .status-right { display: flex; gap: 22px; align-items: center; opacity: 0.9; }
21
+ .icon-dot { width: 10px; height: 10px; background: #cfcfcf; border-radius: 50%; display: inline-block; }
22
+ .battery {
23
+ width: 36px; height: 20px; border: 2px solid #cfcfcf; border-radius: 4px; position: relative;
24
+ }
25
+ .battery::after { content: ""; position: absolute; right: -6px; top: 6px; width: 6px; height: 8px; background: #cfcfcf; border-radius: 1px; }
26
+ .battery .lvl { position: absolute; left: 2px; top: 2px; height: 14px; width: 26px; background: #cfcfcf; }
27
+
28
+ /* App bar */
29
+ .app-bar {
30
+ position: absolute; top: 90px; left: 0; width: 100%; height: 140px;
31
+ background: #1c1c1c; display: flex; align-items: center;
32
+ padding: 0 24px; box-sizing: border-box;
33
+ }
34
+ .back {
35
+ width: 72px; height: 72px; display: flex; align-items: center; justify-content: center; margin-right: 10px;
36
+ }
37
+ .back svg { width: 38px; height: 38px; fill: none; stroke: #d8d8d8; stroke-width: 7; }
38
+ .title { font-size: 48px; font-weight: 700; flex: 1; }
39
+ .top-action { font-size: 36px; color: #cfd6b0; margin-left: 26px; }
40
+ .menu { font-size: 54px; margin-left: 16px; opacity: 0.9; }
41
+
42
+ /* Editor area */
43
+ .editor {
44
+ position: absolute; top: 230px; left: 0; width: 100%; bottom: 880px;
45
+ background: #111; padding: 24px; box-sizing: border-box;
46
+ }
47
+ .field-title {
48
+ font-size: 54px; color: #cfd0c8; border-bottom: 2px solid #2e2e2e; padding: 18px 12px; margin-bottom: 26px;
49
+ }
50
+ .field-body {
51
+ font-size: 46px; color: #bdbdbd; padding: 10px 12px;
52
+ }
53
+
54
+ /* Overlay and dialog */
55
+ .overlay {
56
+ position: absolute; left: 0; right: 0; top: 0; bottom: 0;
57
+ background: rgba(0,0,0,0.45);
58
+ }
59
+ .dialog {
60
+ position: absolute; left: 50%; top: 1580px; transform: translateX(-50%);
61
+ width: 880px; background: #3c3c3c; color: #eaeaea;
62
+ border-radius: 12px; padding: 30px; box-sizing: border-box;
63
+ box-shadow: 0 20px 40px rgba(0,0,0,0.6);
64
+ }
65
+ .dialog-text {
66
+ font-size: 40px; line-height: 1.35; margin-bottom: 40px;
67
+ }
68
+ .dialog-actions { display: flex; justify-content: flex-end; gap: 40px; }
69
+ .btn-flat {
70
+ font-size: 40px; color: #b8c892; letter-spacing: 1px;
71
+ }
72
+
73
+ /* Keyboard */
74
+ .keyboard {
75
+ position: absolute; left: 0; bottom: 70px; width: 100%; height: 820px;
76
+ background: #0f0f0f; border-top: 1px solid #202020; box-sizing: border-box;
77
+ padding: 24px 20px;
78
+ }
79
+ .key-row { display: flex; gap: 16px; margin-bottom: 18px; }
80
+ .key {
81
+ flex: 1; height: 120px; border-radius: 18px; background: #1b1b1b; color: #e0e0e0;
82
+ display: flex; align-items: center; justify-content: center; font-size: 44px;
83
+ box-shadow: inset 0 -2px 0 rgba(255,255,255,0.04);
84
+ }
85
+ .key.wide { flex: 1.3; }
86
+ .key.extra-wide { flex: 3.4; }
87
+ .emoji-strip { display: flex; gap: 30px; padding: 8px 4px 0; color: #b0b0b0; }
88
+ .gesture-bar {
89
+ position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%);
90
+ width: 260px; height: 10px; border-radius: 6px; background: #e7e7e7; opacity: 0.9;
91
+ }
92
+ </style>
93
+ </head>
94
+ <body>
95
+ <div id="render-target">
96
+
97
+ <!-- Status Bar -->
98
+ <div class="status-bar">
99
+ <div class="status-left">
100
+ <div>1:19</div>
101
+ <div>72°</div>
102
+ <div class="icon-dot"></div>
103
+ <div class="icon-dot" style="margin-left:6px;"></div>
104
+ <div class="icon-dot" style="margin-left:6px;"></div>
105
+ </div>
106
+ <div class="status-right">
107
+ <span>✈</span>
108
+ <span>▴</span>
109
+ <div class="battery"><div class="lvl"></div></div>
110
+ </div>
111
+ </div>
112
+
113
+ <!-- App Bar -->
114
+ <div class="app-bar">
115
+ <div class="back">
116
+ <svg viewBox="0 0 24 24"><path d="M15 5 L7 12 L15 19" /></svg>
117
+ </div>
118
+ <div class="title">Notepad Free</div>
119
+ <div class="top-action">SAVE</div>
120
+ <div class="top-action" style="color:#b9c88e;">UNDO</div>
121
+ <div class="menu">⋮</div>
122
+ </div>
123
+
124
+ <!-- Editor Content -->
125
+ <div class="editor">
126
+ <div class="field-title">Reminder to buy groceries</div>
127
+ <div class="field-body">Milk, eggs, chicken and broccoliu</div>
128
+ </div>
129
+
130
+ <!-- Confirmation Dialog -->
131
+ <div class="overlay"></div>
132
+ <div class="dialog">
133
+ <div class="dialog-text">
134
+ The 'Reminder to buy groceries' note will be deleted. Are you sure?
135
+ </div>
136
+ <div class="dialog-actions">
137
+ <div class="btn-flat">CANCEL</div>
138
+ <div class="btn-flat">DELETE</div>
139
+ </div>
140
+ </div>
141
+
142
+ <!-- Keyboard -->
143
+ <div class="keyboard">
144
+ <div class="emoji-strip">
145
+ <span>😊</span>
146
+ <span>GIF</span>
147
+ <span>⚙</span>
148
+ <span>🌐</span>
149
+ <span>🎨</span>
150
+ <span>🎤</span>
151
+ </div>
152
+ <div class="key-row">
153
+ <div class="key">Q</div><div class="key">W</div><div class="key">E</div><div class="key">R</div><div class="key">T</div>
154
+ <div class="key">Y</div><div class="key">U</div><div class="key">I</div><div class="key">O</div><div class="key">P</div>
155
+ </div>
156
+ <div class="key-row">
157
+ <div class="key">A</div><div class="key">S</div><div class="key">D</div><div class="key">F</div><div class="key">G</div>
158
+ <div class="key">H</div><div class="key">J</div><div class="key">K</div><div class="key">L</div>
159
+ </div>
160
+ <div class="key-row">
161
+ <div class="key wide">⇧</div><div class="key">Z</div><div class="key">X</div><div class="key">C</div><div class="key">V</div>
162
+ <div class="key">B</div><div class="key">N</div><div class="key">M</div><div class="key wide">⌫</div>
163
+ </div>
164
+ <div class="key-row">
165
+ <div class="key wide">?123</div>
166
+ <div class="key">,</div>
167
+ <div class="key">🙂</div>
168
+ <div class="key extra-wide"></div>
169
+ <div class="key">.</div>
170
+ <div class="key wide">⏎</div>
171
+ </div>
172
+ <div class="gesture-bar"></div>
173
+ </div>
174
+
175
+ </div>
176
+ </body>
177
+ </html>
code/14490/14490_4.html ADDED
@@ -0,0 +1,221 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
5
+ <title>Mobile UI - Groceries</title>
6
+ <style>
7
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
8
+ #render-target {
9
+ width: 1080px; height: 2400px;
10
+ position: relative; overflow: hidden;
11
+ background: #000000;
12
+ color: #EDEDED;
13
+ }
14
+
15
+ /* Status bar */
16
+ .status-bar {
17
+ position: absolute; top: 0; left: 0; width: 1080px; height: 96px;
18
+ background: #000;
19
+ display: flex; align-items: center; justify-content: space-between;
20
+ padding: 0 32px; box-sizing: border-box; font-size: 34px;
21
+ letter-spacing: 0.5px;
22
+ }
23
+ .status-left { display: flex; align-items: center; gap: 20px; color: #EDEDED; }
24
+ .status-right { display: flex; align-items: center; gap: 24px; }
25
+
26
+ .icon {
27
+ width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center;
28
+ }
29
+ .icon svg { width: 34px; height: 34px; fill: none; stroke: #EDEDED; stroke-width: 2.5; }
30
+
31
+ /* App bar with input */
32
+ .app-bar {
33
+ position: absolute; top: 96px; left: 0; width: 1080px; height: 152px;
34
+ background: #2A2A2A;
35
+ display: flex; align-items: center;
36
+ padding: 0 20px; box-sizing: border-box;
37
+ }
38
+ .app-bar .back {
39
+ width: 80px; height: 80px; display: flex; align-items: center; justify-content: center;
40
+ }
41
+ .title-input-wrap {
42
+ flex: 1; padding: 0 16px;
43
+ }
44
+ .title-input {
45
+ width: 100%; font-size: 56px; color: #EDEDED;
46
+ background: transparent; border: none; outline: none;
47
+ padding: 8px 0;
48
+ }
49
+ .underline {
50
+ height: 3px; width: 70%; background: #505050;
51
+ }
52
+ .app-actions {
53
+ display: flex; align-items: center; gap: 12px;
54
+ }
55
+ .action-btn { width: 80px; height: 80px; display: flex; align-items: center; justify-content: center; }
56
+
57
+ /* Main content area */
58
+ .content {
59
+ position: absolute; top: 248px; left: 0; width: 1080px; height: 1252px;
60
+ background: #000;
61
+ }
62
+
63
+ /* Floating Action Button */
64
+ .fab {
65
+ position: absolute; top: 1340px; right: 80px;
66
+ width: 160px; height: 160px; border-radius: 50%;
67
+ background: #98A883; display: flex; align-items: center; justify-content: center;
68
+ box-shadow: 0 8px 20px rgba(0,0,0,0.6);
69
+ }
70
+ .fab svg { width: 72px; height: 72px; stroke: #ffffff; stroke-width: 14; }
71
+
72
+ /* Keyboard */
73
+ .keyboard {
74
+ position: absolute; bottom: 0; left: 0; width: 1080px; height: 900px;
75
+ background: #1E1E1E;
76
+ box-sizing: border-box;
77
+ }
78
+ /* suggestion bar above keys */
79
+ .suggestion-bar {
80
+ height: 130px; background: #111111; color: #EDEDED;
81
+ display: flex; align-items: center; justify-content: center; gap: 24px;
82
+ position: relative;
83
+ }
84
+ .suggestion-text { font-size: 48px; }
85
+ .round-btn {
86
+ width: 88px; height: 88px; border-radius: 44px;
87
+ background: #2A2A2A; display: flex; align-items: center; justify-content: center;
88
+ }
89
+ .round-btn svg { width: 40px; height: 40px; stroke: #EDEDED; stroke-width: 2.5; fill: none; }
90
+ .grid-btn svg { fill: #EDEDED; stroke: none; }
91
+
92
+ .keys {
93
+ padding: 12px 24px;
94
+ }
95
+ .row { display: flex; justify-content: space-between; margin: 16px 0; }
96
+ .key {
97
+ background: #2A2A2A; color: #EDEDED;
98
+ height: 110px; flex: 1; margin: 0 6px; border-radius: 18px;
99
+ display: flex; align-items: center; justify-content: center;
100
+ font-size: 42px;
101
+ }
102
+ .key.wide { flex: 1.6; }
103
+ .space { flex: 4.5; }
104
+ .key.circle {
105
+ height: 110px; border-radius: 55px; flex: 0 0 110px; width: 110px;
106
+ }
107
+ .key svg { width: 42px; height: 42px; stroke: #EDEDED; stroke-width: 2.5; fill: none; }
108
+ .backspace svg { width: 44px; height: 44px; }
109
+ </style>
110
+ </head>
111
+ <body>
112
+ <div id="render-target">
113
+
114
+ <!-- Status Bar -->
115
+ <div class="status-bar">
116
+ <div class="status-left">
117
+ <div>1:19</div>
118
+ <div>72°</div>
119
+ <div>en</div>
120
+ </div>
121
+ <div class="status-right">
122
+ <div class="icon">
123
+ <!-- WiFi -->
124
+ <svg viewBox="0 0 24 24"><path d="M2 8c5-4 15-4 20 0"/><path d="M5 12c3-3 11-3 14 0"/><path d="M8 16c2-2 6-2 8 0"/><circle cx="12" cy="19" r="1.6" /></svg>
125
+ </div>
126
+ <div class="icon">
127
+ <!-- Battery -->
128
+ <svg viewBox="0 0 28 24"><rect x="2" y="5" width="20" height="14" rx="2" ry="2"></rect><rect x="23" y="9" width="3" height="6" rx="1"></rect></svg>
129
+ </div>
130
+ </div>
131
+ </div>
132
+
133
+ <!-- App Bar with inline text field -->
134
+ <div class="app-bar">
135
+ <div class="back">
136
+ <!-- Back Arrow -->
137
+ <svg viewBox="0 0 24 24"><path d="M15 6l-6 6 6 6"/><path d="M9 12h12"/></svg>
138
+ </div>
139
+
140
+ <div class="title-input-wrap">
141
+ <input class="title-input" type="text" value="Groceries">
142
+ <div class="underline"></div>
143
+ </div>
144
+
145
+ <div class="app-actions">
146
+ <div class="action-btn">
147
+ <!-- Clear X -->
148
+ <svg viewBox="0 0 24 24"><path d="M5 5l14 14"/><path d="M19 5L5 19"/></svg>
149
+ </div>
150
+ <div class="action-btn">
151
+ <!-- Vertical Kebab -->
152
+ <svg viewBox="0 0 24 24"><circle cx="12" cy="5" r="2.2"/><circle cx="12" cy="12" r="2.2"/><circle cx="12" cy="19" r="2.2"/></svg>
153
+ </div>
154
+ </div>
155
+ </div>
156
+
157
+ <!-- Empty Content Area -->
158
+ <div class="content"></div>
159
+
160
+ <!-- Floating Action Button -->
161
+ <div class="fab">
162
+ <svg viewBox="0 0 48 48">
163
+ <path d="M24 10v28M10 24h28"></path>
164
+ </svg>
165
+ </div>
166
+
167
+ <!-- Keyboard -->
168
+ <div class="keyboard">
169
+ <div class="suggestion-bar">
170
+ <div class="round-btn grid-btn">
171
+ <!-- 3x3 Grid (apps icon) -->
172
+ <svg viewBox="0 0 24 24">
173
+ <circle cx="5" cy="5" r="2"/><circle cx="12" cy="5" r="2"/><circle cx="19" cy="5" r="2"/>
174
+ <circle cx="5" cy="12" r="2"/><circle cx="12" cy="12" r="2"/><circle cx="19" cy="12" r="2"/>
175
+ <circle cx="5" cy="19" r="2"/><circle cx="12" cy="19" r="2"/><circle cx="19" cy="19" r="2"/>
176
+ </svg>
177
+ </div>
178
+ <div class="suggestion-text">Groceries</div>
179
+ <div class="round-btn">
180
+ <!-- Mic -->
181
+ <svg viewBox="0 0 24 24">
182
+ <rect x="9" y="4" width="6" height="10" rx="3"></rect>
183
+ <path d="M6 11c0 4 12 4 12 0"/><path d="M12 15v5"/><path d="M8 20h8"/>
184
+ </svg>
185
+ </div>
186
+ </div>
187
+
188
+ <div class="keys">
189
+ <div class="row">
190
+ <div class="key">q</div><div class="key">w</div><div class="key">e</div><div class="key">r</div><div class="key">t</div>
191
+ <div class="key">y</div><div class="key">u</div><div class="key">i</div><div class="key">o</div><div class="key">p</div>
192
+ </div>
193
+ <div class="row">
194
+ <div class="key">a</div><div class="key">s</div><div class="key">d</div><div class="key">f</div><div class="key">g</div>
195
+ <div class="key">h</div><div class="key">j</div><div class="key">k</div><div class="key">l</div>
196
+ </div>
197
+ <div class="row">
198
+ <div class="key">z</div><div class="key">x</div><div class="key">c</div><div class="key">v</div><div class="key">b</div>
199
+ <div class="key">n</div><div class="key">m</div>
200
+ <div class="key backspace">
201
+ <!-- Backspace icon -->
202
+ <svg viewBox="0 0 24 24"><path d="M4 12l5-5h10v10H9z"/><path d="M12 9l4 4M16 9l-4 4"/></svg>
203
+ </div>
204
+ </div>
205
+ <div class="row">
206
+ <div class="key wide">?123</div>
207
+ <div class="key">,</div>
208
+ <div class="key">🙂</div>
209
+ <div class="key space"> </div>
210
+ <div class="key">.</div>
211
+ <div class="key circle">
212
+ <!-- Search icon -->
213
+ <svg viewBox="0 0 24 24"><circle cx="10" cy="10" r="6"></circle><path d="M15 15l5 5"></path></svg>
214
+ </div>
215
+ </div>
216
+ </div>
217
+ </div>
218
+
219
+ </div>
220
+ </body>
221
+ </html>
code/14491/14491_0.html ADDED
@@ -0,0 +1,333 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Mobile UI Mock</title>
5
+ <style>
6
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
7
+ #render-target {
8
+ width: 1080px;
9
+ height: 2400px;
10
+ position: relative;
11
+ overflow: hidden;
12
+ background: #ffffff;
13
+ box-sizing: border-box;
14
+ }
15
+ /* Top status bar */
16
+ .statusbar {
17
+ height: 120px;
18
+ background: #000000;
19
+ color: #ffffff;
20
+ display: flex;
21
+ align-items: center;
22
+ padding: 0 36px;
23
+ font-size: 34px;
24
+ letter-spacing: 0.5px;
25
+ }
26
+ .status-left { display: flex; gap: 28px; align-items: center; }
27
+ .status-right { margin-left: auto; display: flex; gap: 28px; align-items: center; }
28
+ .icon {
29
+ width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center;
30
+ }
31
+
32
+ /* Video frame */
33
+ .video-frame {
34
+ width: 1080px;
35
+ height: 620px;
36
+ background: #E0E0E0;
37
+ border-bottom: 6px solid #000;
38
+ display: flex;
39
+ align-items: center;
40
+ justify-content: center;
41
+ color: #757575;
42
+ border-top: 0;
43
+ }
44
+
45
+ /* Content area */
46
+ .content {
47
+ padding: 36px;
48
+ }
49
+ .title {
50
+ font-size: 70px;
51
+ font-weight: 800;
52
+ color: #1c1c1c;
53
+ line-height: 1.15;
54
+ margin-bottom: 24px;
55
+ }
56
+ .action-row {
57
+ display: flex;
58
+ align-items: center;
59
+ gap: 30px;
60
+ margin-top: 10px;
61
+ }
62
+ .action-btn {
63
+ width: 120px; height: 120px;
64
+ border: 2px solid #e5e5e5;
65
+ border-radius: 24px;
66
+ display: flex; align-items: center; justify-content: center;
67
+ background: #fff;
68
+ }
69
+ .action-btn svg { width: 56px; height: 56px; }
70
+ .menu-3dot {
71
+ margin-left: auto;
72
+ width: 96px; height: 96px;
73
+ border-radius: 24px; border: 2px solid #e5e5e5;
74
+ display: flex; align-items: center; justify-content: center;
75
+ background: #fff;
76
+ }
77
+ .counts {
78
+ display: flex; gap: 180px; padding-left: 12px; margin-top: 14px;
79
+ color: #2b2b2b; font-weight: 700; font-size: 36px;
80
+ }
81
+
82
+ .desc {
83
+ margin-top: 22px;
84
+ font-size: 36px;
85
+ color: #555;
86
+ line-height: 1.45;
87
+ }
88
+ .more-link { color: #2a78ff; text-decoration: none; font-weight: 700; }
89
+
90
+ .uploader {
91
+ margin-top: 40px;
92
+ display: flex; align-items: center;
93
+ }
94
+ .avatar {
95
+ width: 96px; height: 96px; border-radius: 50%;
96
+ background: #E0E0E0; border: 1px solid #BDBDBD;
97
+ display: flex; align-items: center; justify-content: center; color: #757575; font-size: 24px;
98
+ margin-right: 28px;
99
+ }
100
+ .uploader-name {
101
+ font-size: 42px; font-weight: 800; color: #1c1c1c;
102
+ }
103
+ .badge {
104
+ display: inline-block; margin-left: 14px; background: #2a78ff; color: #fff; font-size: 28px;
105
+ padding: 8px 16px; border-radius: 12px; font-weight: 800;
106
+ }
107
+ .follow-btn {
108
+ margin-left: auto;
109
+ padding: 18px 32px;
110
+ border-radius: 18px;
111
+ border: 2px solid #e5e5e5; background: #fff; color: #1c1c1c;
112
+ display: flex; align-items: center; gap: 16px; font-size: 36px; font-weight: 700;
113
+ }
114
+ .follow-btn svg { width: 40px; height: 40px; }
115
+
116
+ .share-btn {
117
+ margin-top: 40px;
118
+ width: 100%;
119
+ height: 120px;
120
+ background: #4da7ff;
121
+ color: #fff;
122
+ border-radius: 24px;
123
+ display: flex; align-items: center; justify-content: center;
124
+ gap: 22px; font-size: 46px; font-weight: 800;
125
+ box-shadow: 0 8px 16px rgba(0,0,0,0.08);
126
+ }
127
+ .share-btn svg { width: 48px; height: 48px; }
128
+
129
+ .section-header {
130
+ margin-top: 50px;
131
+ display: flex; align-items: center;
132
+ }
133
+ .section-header .title-sm { font-size: 44px; font-weight: 800; color: #1c1c1c; }
134
+ .autoplay {
135
+ margin-left: auto; display: flex; align-items: center; gap: 20px; color: #666; font-size: 36px;
136
+ }
137
+ .toggle {
138
+ width: 150px; height: 72px; border-radius: 36px; background: #cfe6ff; position: relative;
139
+ }
140
+ .toggle .knob {
141
+ position: absolute; right: 8px; top: 8px; width: 56px; height: 56px; border-radius: 50%;
142
+ background: #2a78ff;
143
+ }
144
+
145
+ .video-item {
146
+ margin-top: 26px;
147
+ display: flex; align-items: flex-start;
148
+ padding: 18px 0;
149
+ }
150
+ .thumb {
151
+ width: 300px; height: 190px; background: #E0E0E0; border: 1px solid #BDBDBD;
152
+ display: flex; align-items: center; justify-content: center; color: #757575; font-size: 28px; position: relative;
153
+ border-radius: 16px;
154
+ }
155
+ .duration {
156
+ position: absolute; right: 14px; bottom: 12px; background: rgba(0,0,0,0.75); color: #fff;
157
+ font-size: 30px; padding: 6px 12px; border-radius: 10px;
158
+ }
159
+ .video-info {
160
+ padding-left: 26px; flex: 1;
161
+ }
162
+ .video-title {
163
+ font-size: 44px; font-weight: 800; color: #1c1c1c;
164
+ }
165
+ .video-meta {
166
+ margin-top: 8px; font-size: 34px; color: #666;
167
+ }
168
+ .item-menu {
169
+ margin-left: auto; width: 60px; height: 60px; display: flex; align-items: center; justify-content: center;
170
+ }
171
+
172
+ /* Floating mini controls */
173
+ .floating-bar {
174
+ position: absolute;
175
+ bottom: 170px; left: 50%;
176
+ transform: translateX(-50%);
177
+ width: 620px; height: 120px;
178
+ background: #ffffff; border-radius: 60px;
179
+ box-shadow: 0 14px 30px rgba(0,0,0,0.15);
180
+ display: flex; align-items: center; justify-content: space-between;
181
+ padding: 0 42px;
182
+ }
183
+ .circle-btn {
184
+ width: 120px; height: 120px; border-radius: 50%; background: #f4f6f8; border: 2px solid #e5e5e5;
185
+ display: flex; align-items: center; justify-content: center;
186
+ }
187
+ .circle-btn svg { width: 56px; height: 56px; }
188
+
189
+ /* Helper SVG styles */
190
+ svg { fill: currentColor; }
191
+ </style>
192
+ </head>
193
+ <body>
194
+ <div id="render-target">
195
+
196
+ <!-- Status bar -->
197
+ <div class="statusbar">
198
+ <div class="status-left">
199
+ <div>11:02</div>
200
+ <div class="icon">
201
+ <!-- message icon -->
202
+ <svg viewBox="0 0 24 24"><path d="M4 4h16v12H7l-3 3V4z"/></svg>
203
+ </div>
204
+ <div class="icon">
205
+ <!-- wifi -->
206
+ <svg viewBox="0 0 24 24"><path d="M2 8c5-4 15-4 20 0l-2 2c-4-3-12-3-16 0L2 8zm4 4c3-2 9-2 12 0l-2 2c-2-1-6-1-8 0l-2-2zm4 4a4 4 0 016 0l-3 3-3-3z"/></svg>
207
+ </div>
208
+ <div class="icon">
209
+ <!-- notifications -->
210
+ <svg viewBox="0 0 24 24"><path d="M12 2a4 4 0 00-4 4v3.1C6 11 4 12.7 4 15v1h16v-1c0-2.3-2-4-4-5.9V6a4 4 0 00-4-4zm0 20a3 3 0 003-3H9a3 3 0 003 3z"/></svg>
211
+ </div>
212
+ <div class="icon">
213
+ <!-- dot -->
214
+ <svg viewBox="0 0 24 24"><circle cx="12" cy="12" r="4"/></svg>
215
+ </div>
216
+ </div>
217
+ <div class="status-right">
218
+ <div class="icon">
219
+ <!-- network -->
220
+ <svg viewBox="0 0 24 24"><path d="M3 17h2v2H3v-2zm4-4h2v6H7v-6zm4-3h2v9h-2V10zm4-4h2v13h-2V6zm4-2h2v15h-2V4z"/></svg>
221
+ </div>
222
+ <div class="icon">
223
+ <!-- battery -->
224
+ <svg viewBox="0 0 24 24"><path d="M18 6h1a1 1 0 011 1v10a1 1 0 01-1 1h-1v1h-2v-1H6a2 2 0 01-2-2V8a2 2 0 012-2h10V5h2v1z"/></svg>
225
+ </div>
226
+ </div>
227
+ </div>
228
+
229
+ <!-- Video frame -->
230
+ <div class="video-frame">[IMG: Music Video Frame]</div>
231
+
232
+ <!-- Content -->
233
+ <div class="content">
234
+ <div class="title">Martin Garrix &amp; MOTI - Virus</div>
235
+
236
+ <div class="action-row">
237
+ <div class="action-btn" title="Play">
238
+ <svg viewBox="0 0 24 24"><path d="M8 5v14l11-7-11-7z"/></svg>
239
+ </div>
240
+ <div class="action-btn" title="Like">
241
+ <svg viewBox="0 0 24 24"><path d="M12 21s-7-4.4-9.2-8.3C1.5 10.2 3 7 6.5 7c2 0 3.1 1.2 3.5 2 0.4-0.8 1.5-2 3.5-2 3.5 0 5 3.2 3.7 5.7C19 16.6 12 21 12 21z"/></svg>
242
+ </div>
243
+ <div class="action-btn" title="Comment">
244
+ <svg viewBox="0 0 24 24"><path d="M4 4h16v12H7l-3 3V4z"/></svg>
245
+ </div>
246
+ <div class="menu-3dot" title="More">
247
+ <svg viewBox="0 0 24 24"><circle cx="5" cy="12" r="2"/><circle cx="12" cy="12" r="2"/><circle cx="19" cy="12" r="2"/></svg>
248
+ </div>
249
+ </div>
250
+
251
+ <div class="counts">
252
+ <div>12K</div>
253
+ <div>86</div>
254
+ <div>2</div>
255
+ </div>
256
+
257
+ <div class="desc">
258
+ Official Music Video for Martin Garrix &amp; MOTI - Virus
259
+ <a class="more-link" href="#">... more</a>
260
+ </div>
261
+
262
+ <div class="uploader">
263
+ <div class="avatar">[Avatar]</div>
264
+ <div style="display:flex; flex-direction:column; gap:8px;">
265
+ <div>
266
+ <span class="uploader-name">Nima Nabili Rad</span>
267
+ <span class="badge">PLUS</span>
268
+ </div>
269
+ <div style="font-size:30px; color:#666;">95 videos</div>
270
+ </div>
271
+ <button class="follow-btn">
272
+ <svg viewBox="0 0 24 24"><path d="M11 4h2v6h6v2h-6v6h-2v-6H5v-2h6V4z"/></svg>
273
+ Follow
274
+ </button>
275
+ </div>
276
+
277
+ <div class="share-btn">
278
+ <svg viewBox="0 0 24 24"><path d="M18 8a3 3 0 00-2.7 1.8L8.9 7.6A3 3 0 009 7a3 3 0 10-.1 6c.3 0 .7-.1 1-.2l6.4 2.2A3 3 0 1018 8z"/></svg>
279
+ Share
280
+ </div>
281
+
282
+ <div class="section-header">
283
+ <div class="title-sm">MORE VIDEOS</div>
284
+ <div class="autoplay">
285
+ <div>Autoplay</div>
286
+ <div class="toggle"><div class="knob"></div></div>
287
+ </div>
288
+ </div>
289
+
290
+ <!-- Video item 1 -->
291
+ <div class="video-item">
292
+ <div class="thumb">
293
+ [IMG: Video Thumbnail – person on table, smoky lab]
294
+ <div class="duration">03:18</div>
295
+ </div>
296
+ <div class="video-info">
297
+ <div class="video-title">Camelphat - The Act</div>
298
+ <div class="video-meta">Nima Nabili Rad</div>
299
+ <div class="video-meta">17K views • 8 years ago</div>
300
+ </div>
301
+ <div class="item-menu">
302
+ <svg viewBox="0 0 24 24"><circle cx="12" cy="5" r="2"/><circle cx="12" cy="12" r="2"/><circle cx="12" cy="19" r="2"/></svg>
303
+ </div>
304
+ </div>
305
+
306
+ <!-- Video item 2 -->
307
+ <div class="video-item">
308
+ <div class="thumb">[IMG: Concert Lights and Crowd]</div>
309
+ <div class="video-info">
310
+ <div class="video-title">Firebeatz &amp; KSHMR - No Heroes</div>
311
+ <div class="video-meta">Nima Nabili Rad</div>
312
+ <div class="video-meta">•</div>
313
+ </div>
314
+ <div class="item-menu">
315
+ <svg viewBox="0 0 24 24"><circle cx="12" cy="5" r="2"/><circle cx="12" cy="12" r="2"/><circle cx="12" cy="19" r="2"/></svg>
316
+ </div>
317
+ </div>
318
+
319
+ </div>
320
+
321
+ <!-- Floating mini controls -->
322
+ <div class="floating-bar">
323
+ <div class="circle-btn">
324
+ <svg viewBox="0 0 24 24"><path d="M8 5v14l11-7-11-7z"/></svg>
325
+ </div>
326
+ <div class="circle-btn">
327
+ <svg viewBox="0 0 24 24"><path d="M4 4h16v12H7l-3 3V4z"/></svg>
328
+ </div>
329
+ </div>
330
+
331
+ </div>
332
+ </body>
333
+ </html>
code/14491/14491_1.html ADDED
@@ -0,0 +1,248 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>YouTube Mobile Mock</title>
5
+ <style>
6
+ body { margin:0; padding:0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
7
+ #render-target {
8
+ width:1080px; height:2400px; position:relative; overflow:hidden;
9
+ background:#ffffff;
10
+ }
11
+ /* Video area */
12
+ .video-area {
13
+ position: relative;
14
+ width: 1080px;
15
+ height: 620px;
16
+ background: #111;
17
+ color:#fff;
18
+ }
19
+ .video-placeholder {
20
+ position:absolute; left:0; top:90px;
21
+ width:100%; height:530px;
22
+ background:#E0E0E0; border-top:1px solid #BDBDBD; border-bottom:1px solid #BDBDBD;
23
+ display:flex; align-items:center; justify-content:center; color:#757575; font-weight:bold;
24
+ }
25
+ /* Status bar */
26
+ .status-bar {
27
+ position:absolute; top:0; left:0; right:0; height:90px; display:flex; align-items:center;
28
+ padding:0 30px; font-size:34px; color:#fff;
29
+ }
30
+ .status-right { margin-left:auto; display:flex; gap:26px; align-items:center; }
31
+ .icon {
32
+ width:42px; height:42px; display:inline-block;
33
+ }
34
+ .top-controls {
35
+ position:absolute; top:110px; left:30px; right:30px;
36
+ display:flex; align-items:center; gap:26px; color:#fff;
37
+ }
38
+ .top-controls .spacer { flex:1; }
39
+ .overlay-icon { width:54px; height:54px; background:rgba(255,255,255,0.18); border-radius:14px; display:flex; align-items:center; justify-content:center; }
40
+ .play-btn {
41
+ position:absolute; left:50%; top:50%; transform:translate(-50%, -40%);
42
+ width:140px; height:140px; border-radius:70px; background:rgba(255,255,255,0.85);
43
+ display:flex; align-items:center; justify-content:center;
44
+ }
45
+ .time-indicator {
46
+ position:absolute; bottom:16px; left:30px; font-size:34px; color:#fff; opacity:0.9;
47
+ }
48
+ .red-dot { position:absolute; left:0; bottom:0; width:20px; height:20px; background:#e62117; border-radius:10px; }
49
+ /* Ad card */
50
+ .ad-card {
51
+ padding:30px;
52
+ border-bottom:1px solid #eee;
53
+ display:flex; align-items:center; gap:26px;
54
+ }
55
+ .ad-logo {
56
+ width:100px; height:100px; background:#E0E0E0; border:1px solid #BDBDBD; display:flex; align-items:center; justify-content:center; color:#757575; font-size:26px;
57
+ border-radius:16px;
58
+ }
59
+ .ad-info { flex:1; }
60
+ .ad-title { font-size:40px; font-weight:600; color:#111; }
61
+ .ad-sub { font-size:32px; color:#616161; margin-top:6px; }
62
+ .shop-btn {
63
+ background:#2e6cff; color:#fff; font-weight:600; padding:22px 36px; border-radius:55px; font-size:36px; margin-right:20px;
64
+ }
65
+ .chevron { width:56px; height:56px; border:1px solid #ddd; border-radius:28px; display:flex; align-items:center; justify-content:center; }
66
+ /* Title section */
67
+ .title-wrap { padding:30px; }
68
+ .video-title {
69
+ font-size:54px; font-weight:800; color:#111; line-height:1.2;
70
+ }
71
+ .meta { margin-top:16px; font-size:32px; color:#606060; display:flex; gap:16px; align-items:center; }
72
+ .more-link { color:#0b57d0; font-weight:600; }
73
+ /* Channel row */
74
+ .channel-row {
75
+ display:flex; align-items:center; gap:26px; padding:26px 30px; border-bottom:1px solid #eee;
76
+ }
77
+ .channel-logo {
78
+ width:110px; height:110px; border-radius:55px; background:#000; color:#fff; display:flex; align-items:center; justify-content:center; font-weight:800; font-size:48px;
79
+ }
80
+ .channel-info { flex:1; }
81
+ .channel-name { font-size:44px; font-weight:700; color:#111; }
82
+ .subs { font-size:32px; color:#606060; margin-top:6px; }
83
+ .subscribe-btn {
84
+ background:#000; color:#fff; padding:24px 36px; border-radius:60px; font-size:36px; font-weight:700;
85
+ }
86
+ /* Action pills */
87
+ .actions { padding:24px 24px; display:flex; gap:22px; flex-wrap:wrap; }
88
+ .pill {
89
+ display:flex; align-items:center; gap:18px; padding:22px 30px; border:1px solid #e2e2e2; border-radius:60px; color:#111; font-size:34px; background:#f7f7f7;
90
+ }
91
+ .pill .icon { width:40px; height:40px; }
92
+ /* Comments */
93
+ .comments { padding:24px 30px; }
94
+ .comments h3 { margin:0; font-size:44px; }
95
+ .comment-card {
96
+ margin-top:22px; border:1px solid #e5e5e5; border-radius:24px; padding:24px; background:#fafafa;
97
+ }
98
+ .comment-row { display:flex; align-items:center; gap:22px; }
99
+ .avatar {
100
+ width:78px; height:78px; border-radius:39px; background:#3bb273; color:#fff; display:flex; align-items:center; justify-content:center; font-size:42px; font-weight:700;
101
+ }
102
+ .comment-text { font-size:36px; color:#111; flex:1; }
103
+ /* Image banner */
104
+ .big-banner {
105
+ margin:20px 24px;
106
+ height:900px; background:#E0E0E0; border:1px solid #BDBDBD;
107
+ display:flex; align-items:center; justify-content:center; color:#757575; font-size:40px; font-weight:700; border-radius:22px;
108
+ }
109
+ /* SVG helpers */
110
+ svg { fill: currentColor; }
111
+ </style>
112
+ </head>
113
+ <body>
114
+ <div id="render-target">
115
+
116
+ <!-- Video area with overlays -->
117
+ <div class="video-area">
118
+ <!-- Status bar -->
119
+ <div class="status-bar">
120
+ <div>11:03</div>
121
+ <div class="status-right">
122
+ <!-- network -->
123
+ <svg class="icon" viewBox="0 0 24 24"><path d="M2 18h2v2H2v-2zm3-3h2v5H5v-5zm3-4h2v9H8V11zm3-3h2v12h-2V8zm3-4h2v16h-2V4zm3 6h2v10h-2V10z"/></svg>
124
+ <!-- wifi -->
125
+ <svg class="icon" viewBox="0 0 24 24"><path d="M12 18l-2 2 2 2 2-2-2-2zm-7-7l2 2c3-3 7-3 10 0l2-2c-5-5-11-5-14 0zm3 3l2 2c2-2 4-2 6 0l2-2c-3-3-7-3-10 0z"/></svg>
126
+ <!-- battery -->
127
+ <svg class="icon" viewBox="0 0 24 24"><path d="M16 6h2v2h2v8h-2v2h-2V6zm-12 2h10v8H4V8z"/></svg>
128
+ </div>
129
+ </div>
130
+
131
+ <!-- upper controls -->
132
+ <div class="top-controls">
133
+ <div class="overlay-icon">
134
+ <svg class="icon" viewBox="0 0 24 24"><path d="M15 6l-6 6 6 6V6z"/></svg>
135
+ </div>
136
+ <div class="spacer"></div>
137
+ <div class="overlay-icon">
138
+ <!-- cast -->
139
+ <svg class="icon" viewBox="0 0 24 24"><path d="M3 5h18v12h-6l-3 3-3-3H3V5zm0 10c2 0 4 2 4 4H3v-4zM3 11c4 0 8 4 8 8H9c0-3-3-6-6-6V11zm0-4c6 0 12 6 12 12h-2C13 13 9 9 3 9V7z"/></svg>
140
+ </div>
141
+ <div class="overlay-icon">
142
+ <!-- CC -->
143
+ <svg class="icon" viewBox="0 0 24 24"><path d="M3 7h18v10H3V7zm13 6h-3v2h3v-2zm-5 0H8v2h3v-2z"/></svg>
144
+ </div>
145
+ <div class="overlay-icon">
146
+ <!-- gear -->
147
+ <svg class="icon" viewBox="0 0 24 24"><path d="M12 8a4 4 0 100 8 4 4 0 000-8zm8 4l2-2-2-2-2 2-2-1-1-2h-4l-1 2-2 1-2-2-2 2 2 2-1 2 1 2 2 1 1 2h4l1-2 2-1 2 2 2-2-2-2 1-2z"/></svg>
148
+ </div>
149
+ <div class="overlay-icon">
150
+ <!-- close -->
151
+ <svg class="icon" viewBox="0 0 24 24"><path d="M18 6L6 18M6 6l12 12" stroke="currentColor" stroke-width="2" fill="none"/></svg>
152
+ </div>
153
+ </div>
154
+
155
+ <!-- Video frame -->
156
+ <div class="video-placeholder">[IMG: Music Video Frame]</div>
157
+
158
+ <!-- Play button -->
159
+ <div class="play-btn">
160
+ <svg class="icon" viewBox="0 0 24 24"><path d="M8 5v14l11-7-11-7z"/></svg>
161
+ </div>
162
+
163
+ <!-- Timing -->
164
+ <div class="time-indicator">0:05 / 3:20</div>
165
+ <div class="red-dot"></div>
166
+ </div>
167
+
168
+ <!-- Ad card -->
169
+ <div class="ad-card">
170
+ <div class="ad-logo">[IMG]</div>
171
+ <div class="ad-info">
172
+ <div class="ad-title">Myntra - Fashion Shopping App</div>
173
+ <div class="ad-sub">Ad · Installed</div>
174
+ </div>
175
+ <div class="shop-btn">Shop</div>
176
+ <div class="chevron">
177
+ <svg class="icon" viewBox="0 0 24 24"><path d="M8 9l4 4 4-4" stroke="currentColor" stroke-width="2" fill="none"/></svg>
178
+ </div>
179
+ </div>
180
+
181
+ <!-- Video title and meta -->
182
+ <div class="title-wrap">
183
+ <div class="video-title">Martin Garrix & MOTi - Virus (How About Now) [Official Music Video]</div>
184
+ <div class="meta">
185
+ <span>20M views</span>
186
+ <span>8y ago</span>
187
+ <span class="more-link">…more</span>
188
+ </div>
189
+ </div>
190
+
191
+ <!-- Channel row -->
192
+ <div class="channel-row">
193
+ <div class="channel-logo">S</div>
194
+ <div class="channel-info">
195
+ <div class="channel-name">Spinnin' Records</div>
196
+ <div class="subs">30.1M</div>
197
+ </div>
198
+ <div class="subscribe-btn">Subscribe</div>
199
+ </div>
200
+
201
+ <!-- Action pills -->
202
+ <div class="actions">
203
+ <div class="pill">
204
+ <svg class="icon" viewBox="0 0 24 24"><path d="M14 9V5a3 3 0 00-3-3l-4 8v10h10l2-9h-5z"/></svg>
205
+ <span>201K</span>
206
+ </div>
207
+ <div class="pill">
208
+ <svg class="icon" viewBox="0 0 24 24"><path d="M10 15v4a3 3 0 003 3l4-8V4H7L5 13h5z"/></svg>
209
+ <span>Dislike</span>
210
+ </div>
211
+ <div class="pill">
212
+ <svg class="icon" viewBox="0 0 24 24"><path d="M4 12l8-6v4h8v4h-8v4l-8-6z"/></svg>
213
+ <span>Share</span>
214
+ </div>
215
+ <div class="pill">
216
+ <svg class="icon" viewBox="0 0 24 24"><path d="M16 3l-4 4 4 4V8h5V6h-5V3zM8 21l4-4-4-4v3H3v2h5v3z"/></svg>
217
+ <span>Remix</span>
218
+ </div>
219
+ <div class="pill">
220
+ <svg class="icon" viewBox="0 0 24 24"><path d="M6 4h12v16l-6-4-6 4V4z"/></svg>
221
+ <span>Save</span>
222
+ </div>
223
+ <div class="pill">
224
+ <svg class="icon" viewBox="0 0 24 24"><circle cx="5" cy="12" r="2"/><circle cx="12" cy="12" r="2"/><circle cx="19" cy="12" r="2"/></svg>
225
+ <span>More</span>
226
+ </div>
227
+ </div>
228
+
229
+ <!-- Comments -->
230
+ <div class="comments">
231
+ <h3>Comments <span style="color:#606060; font-weight:600;">4.7K</span></h3>
232
+ <div class="comment-card">
233
+ <div class="comment-row">
234
+ <div class="avatar">b</div>
235
+ <div class="comment-text">Corona Virus Played this song</div>
236
+ <div class="chevron" style="border:none;">
237
+ <svg class="icon" viewBox="0 0 24 24"><path d="M8 10l4 4 4-4" stroke="currentColor" stroke-width="2" fill="none"/></svg>
238
+ </div>
239
+ </div>
240
+ </div>
241
+ </div>
242
+
243
+ <!-- Big banner ad -->
244
+ <div class="big-banner">[IMG: Ad Banner - Mentos Underwear]</div>
245
+
246
+ </div>
247
+ </body>
248
+ </html>
code/14491/14491_2.html ADDED
@@ -0,0 +1,415 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>YouTube Share Sheet Mock</title>
5
+ <style>
6
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
7
+ #render-target {
8
+ width: 1080px;
9
+ height: 2400px;
10
+ position: relative;
11
+ overflow: hidden;
12
+ background: #111;
13
+ color: #fff;
14
+ }
15
+
16
+ /* Status bar */
17
+ .status-bar {
18
+ position: absolute;
19
+ top: 0;
20
+ left: 0;
21
+ width: 1080px;
22
+ height: 96px;
23
+ padding: 0 28px;
24
+ display: flex;
25
+ align-items: center;
26
+ justify-content: space-between;
27
+ color: #fff;
28
+ font-size: 36px;
29
+ letter-spacing: 0.5px;
30
+ background: rgba(0,0,0,0.6);
31
+ z-index: 5;
32
+ }
33
+ .status-icons { display: flex; gap: 26px; align-items: center; }
34
+ .dot { width: 16px; height: 16px; background:#fff; border-radius:50%; opacity:.9; }
35
+
36
+ /* Video area */
37
+ .video-area {
38
+ position: absolute;
39
+ top: 96px;
40
+ left: 0;
41
+ width: 1080px;
42
+ height: 820px;
43
+ background: #000;
44
+ }
45
+ .video-thumb {
46
+ position: absolute;
47
+ inset: 0;
48
+ background: linear-gradient(180deg, rgba(0,0,0,0.65), rgba(0,0,0,0.4)),
49
+ #1a1a1a;
50
+ display: flex;
51
+ align-items: center;
52
+ justify-content: center;
53
+ }
54
+ .video-thumb .img {
55
+ width: 980px; height: 540px;
56
+ background: #E0E0E0;
57
+ border: 1px solid #BDBDBD;
58
+ color:#555;
59
+ display:flex; align-items:center; justify-content:center;
60
+ font-size: 34px;
61
+ border-radius: 8px;
62
+ }
63
+ .overlay-controls {
64
+ position: absolute;
65
+ top: 32px;
66
+ left: 32px;
67
+ right: 32px;
68
+ display: flex;
69
+ align-items: center;
70
+ justify-content: space-between;
71
+ opacity: 0.95;
72
+ }
73
+ .overlay-left, .overlay-right { display: flex; align-items: center; gap: 26px; }
74
+ .overlay-icon {
75
+ width: 64px; height: 64px; border-radius: 18px;
76
+ background: rgba(255,255,255,0.12);
77
+ display:flex; align-items:center; justify-content:center;
78
+ }
79
+ .play-center {
80
+ position: absolute; top: 50%; left: 50%;
81
+ transform: translate(-50%, -50%);
82
+ width: 160px; height: 160px; border-radius: 50%;
83
+ background: rgba(255,255,255,0.12);
84
+ display:flex; align-items:center; justify-content:center;
85
+ }
86
+ .seek-left, .seek-right {
87
+ position: absolute; top: 50%; transform: translateY(-50%);
88
+ width: 120px; height: 120px; border-radius: 50%;
89
+ background: rgba(255,255,255,0.06);
90
+ display:flex; align-items:center; justify-content:center;
91
+ }
92
+ .seek-left { left: 80px; }
93
+ .seek-right { right: 80px; }
94
+
95
+ .time-tag {
96
+ position: absolute;
97
+ bottom: 132px;
98
+ left: 28px;
99
+ font-size: 34px;
100
+ color: #ddd;
101
+ }
102
+ .scrubber {
103
+ position: absolute; bottom: 120px; left: 0; width: 1080px; height: 8px;
104
+ background: rgba(255,255,255,0.2);
105
+ }
106
+ .scrubber .progress { width: 120px; height: 8px; background: #ff3d00; }
107
+
108
+ /* Page content under video */
109
+ .page {
110
+ position: absolute;
111
+ top: 916px;
112
+ left: 0;
113
+ width: 1080px;
114
+ height: 1484px;
115
+ background: #fff;
116
+ color: #222;
117
+ border-top-left-radius: 26px;
118
+ border-top-right-radius: 26px;
119
+ }
120
+
121
+ .ad-card {
122
+ display: flex;
123
+ align-items: center;
124
+ gap: 22px;
125
+ padding: 24px 32px;
126
+ border-bottom: 1px solid #eee;
127
+ }
128
+ .app-icon {
129
+ width: 84px; height: 84px; border-radius: 12px;
130
+ background: #E0E0E0; border:1px solid #BDBDBD;
131
+ display:flex; align-items:center; justify-content:center; color:#666; font-size:24px;
132
+ }
133
+ .ad-text { flex: 1; }
134
+ .ad-title { font-size: 40px; font-weight: 700; color:#222; }
135
+ .ad-sub { font-size: 30px; color:#666; margin-top: 6px; }
136
+ .shop-btn {
137
+ background: #1a73e8; color:#fff; border-radius: 40px; padding: 18px 34px; font-size: 34px; font-weight: 700;
138
+ }
139
+ .chev {
140
+ width: 64px; height: 64px; border-radius: 50%;
141
+ display:flex; align-items:center; justify-content:center; border:1px solid #ddd; color:#777; margin-left: 16px;
142
+ }
143
+
144
+ .title-block { padding: 12px 32px 0; }
145
+ .video-title { font-size: 46px; font-weight: 800; line-height: 1.24; color:#111; }
146
+ .meta { font-size: 30px; color: #666; margin-top: 8px; }
147
+
148
+ .channel-row {
149
+ margin-top: 22px;
150
+ padding: 20px 32px;
151
+ display: flex; align-items:center; justify-content: space-between;
152
+ }
153
+ .channel-left { display:flex; align-items:center; gap: 22px; }
154
+ .avatar {
155
+ width: 92px; height: 92px; border-radius: 50%;
156
+ background: #E0E0E0; border:1px solid #BDBDBD; display:flex; align-items:center; justify-content:center; color:#666; font-size:22px;
157
+ }
158
+ .channel-info .name { font-size: 38px; font-weight: 700; color:#111; }
159
+ .channel-info .subs { font-size: 30px; color:#666; }
160
+ .subscribe-btn {
161
+ background: #000; color:#fff; border-radius: 60px; padding: 24px 40px; font-size: 36px; font-weight: 800;
162
+ }
163
+
164
+ .actions {
165
+ padding: 10px 24px;
166
+ display:flex; align-items:center; gap: 22px;
167
+ }
168
+ .chip {
169
+ display:flex; align-items:center; gap: 14px;
170
+ background:#f4f4f4; color:#222; border-radius: 60px; padding: 20px 30px; font-size: 32px;
171
+ }
172
+ .chip svg { width: 36px; height: 36px; }
173
+ .comments {
174
+ margin: 22px 24px;
175
+ border-radius: 20px;
176
+ border: 1px solid #eee;
177
+ padding: 22px;
178
+ color:#222;
179
+ }
180
+ .comments .header { font-size: 38px; font-weight: 800; color:#111; }
181
+ .comment-row { margin-top: 18px; display:flex; align-items:center; gap: 18px; }
182
+ .comment-avatar {
183
+ width: 64px; height: 64px; border-radius: 50%; background:#E0E0E0; border:1px solid #BDBDBD;
184
+ }
185
+ .comment-text { font-size: 32px; color:#333; }
186
+
187
+ /* Dim background when sheet is open */
188
+ .dim {
189
+ position: absolute; inset: 0; background: rgba(0,0,0,0.45);
190
+ z-index: 20;
191
+ }
192
+
193
+ /* Share sheet */
194
+ .sheet {
195
+ position: absolute; left: 0; bottom: 0; width: 1080px; height: 820px;
196
+ background: #fff;
197
+ color: #222;
198
+ border-top-left-radius: 30px;
199
+ border-top-right-radius: 30px;
200
+ box-shadow: 0 -8px 24px rgba(0,0,0,0.35);
201
+ z-index: 25;
202
+ }
203
+ .sheet .handle {
204
+ width: 144px; height: 10px; background:#ddd; border-radius: 6px; margin: 18px auto 16px;
205
+ }
206
+ .sheet-header { padding: 8px 32px 18px; font-size: 46px; font-weight: 800; color:#111; }
207
+ .share-row {
208
+ padding: 8px 24px;
209
+ display:flex; align-items:flex-start; gap: 42px;
210
+ }
211
+ .share-item {
212
+ width: 168px;
213
+ display:flex; flex-direction: column; align-items:center; gap: 16px;
214
+ }
215
+ .share-icon {
216
+ width: 132px; height: 132px; border-radius: 32px;
217
+ background:#f0f2ff; display:flex; align-items:center; justify-content:center;
218
+ border: 1px solid #e5e7ff;
219
+ }
220
+ .share-item span { font-size: 32px; color:#444; text-align:center; }
221
+ .copy-row {
222
+ margin-top: 26px;
223
+ padding: 24px 32px;
224
+ border-top: 1px solid #eee;
225
+ display:flex; align-items:center; gap: 24px;
226
+ }
227
+ .copy-icon {
228
+ width: 96px; height: 96px; border-radius: 24px; background:#f6f6f6; display:flex; align-items:center; justify-content:center; border:1px solid #e0e0e0;
229
+ }
230
+ .copy-text { font-size: 40px; color:#222; }
231
+ .nav-bar {
232
+ position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
233
+ width: 360px; height: 12px; background:#d4d4d4; border-radius: 12px; z-index: 30;
234
+ }
235
+ /* simple icon helpers */
236
+ .icon svg { width: 40px; height: 40px; fill: none; stroke: #fff; stroke-width: 3; }
237
+ .icon-dark svg { stroke: #333; }
238
+ </style>
239
+ </head>
240
+ <body>
241
+ <div id="render-target">
242
+
243
+ <!-- Status bar -->
244
+ <div class="status-bar">
245
+ <div>11:04</div>
246
+ <div class="status-icons">
247
+ <span class="dot"></span>
248
+ <span class="dot" style="opacity:.7"></span>
249
+ <span class="dot" style="opacity:.5"></span>
250
+ <span class="dot" style="opacity:.3"></span>
251
+ </div>
252
+ </div>
253
+
254
+ <!-- Video area with overlay controls -->
255
+ <div class="video-area">
256
+ <div class="video-thumb">
257
+ <div class="img">[IMG: Video thumbnail - Martin Garrix & MOTi]</div>
258
+ </div>
259
+
260
+ <div class="overlay-controls">
261
+ <div class="overlay-left">
262
+ <div class="overlay-icon icon">
263
+ <svg viewBox="0 0 24 24"><path d="M15 6l-6 6 6 6"/></svg>
264
+ </div>
265
+ </div>
266
+ <div class="overlay-right">
267
+ <div class="overlay-icon icon">
268
+ <!-- pause -->
269
+ <svg viewBox="0 0 24 24"><rect x="6" y="5" width="4" height="14" fill="#fff"/><rect x="14" y="5" width="4" height="14" fill="#fff"/></svg>
270
+ </div>
271
+ <div class="overlay-icon icon">
272
+ <!-- cast -->
273
+ <svg viewBox="0 0 24 24"><rect x="3" y="5" width="18" height="12" rx="2" stroke="#fff"/><path d="M3 17c2 0 3 1 4 2M3 13c4 0 6 2 8 4" stroke="#fff"/></svg>
274
+ </div>
275
+ <div class="overlay-icon icon">
276
+ <!-- CC -->
277
+ <svg viewBox="0 0 24 24"><rect x="3" y="5" width="18" height="14" rx="3" stroke="#fff"/><text x="8" y="15" font-size="9" fill="#fff" font-family="Arial" font-weight="700">CC</text></svg>
278
+ </div>
279
+ <div class="overlay-icon icon">
280
+ <!-- gear -->
281
+ <svg viewBox="0 0 24 24"><circle cx="12" cy="12" r="3" stroke="#fff"/><path d="M12 3v3M12 18v3M3 12h3M18 12h3M5 5l2 2M17 17l2 2M19 5l-2 2M7 17l-2 2" stroke="#fff"/></svg>
282
+ </div>
283
+ <div class="overlay-icon icon">
284
+ <!-- close -->
285
+ <svg viewBox="0 0 24 24"><path d="M5 5l14 14M19 5L5 19"/></svg>
286
+ </div>
287
+ </div>
288
+ </div>
289
+
290
+ <div class="seek-left icon">
291
+ <svg viewBox="0 0 24 24"><path d="M14 6l-6 6 6 6"/></svg>
292
+ </div>
293
+ <div class="seek-right icon">
294
+ <svg viewBox="0 0 24 24"><path d="M10 6l6 6-6 6"/></svg>
295
+ </div>
296
+
297
+ <div class="play-center icon">
298
+ <svg viewBox="0 0 24 24"><polygon points="8,5 20,12 8,19" fill="#fff"/></svg>
299
+ </div>
300
+
301
+ <div class="scrubber"><div class="progress"></div></div>
302
+ <div class="time-tag">0:05 / 3:20</div>
303
+ </div>
304
+
305
+ <!-- Page under video -->
306
+ <div class="page">
307
+ <div class="ad-card">
308
+ <div class="app-icon">[IMG: App]</div>
309
+ <div class="ad-text">
310
+ <div class="ad-title">Myntra - Fashion Shopping App</div>
311
+ <div class="ad-sub">Ad • Installed</div>
312
+ </div>
313
+ <div class="shop-btn">Shop</div>
314
+ <div class="chev">⌄</div>
315
+ </div>
316
+
317
+ <div class="title-block">
318
+ <div class="video-title">Martin Garrix & MOTi - Virus (How About Now) [Official Music Video]</div>
319
+ <div class="meta">20M views • 8y ago • …more</div>
320
+ </div>
321
+
322
+ <div class="channel-row">
323
+ <div class="channel-left">
324
+ <div class="avatar">S</div>
325
+ <div class="channel-info">
326
+ <div class="name">Spinnin' Records</div>
327
+ <div class="subs">30.1M</div>
328
+ </div>
329
+ </div>
330
+ <div class="subscribe-btn">Subscribe</div>
331
+ </div>
332
+
333
+ <div class="actions">
334
+ <div class="chip">
335
+ <svg viewBox="0 0 24 24"><path d="M2 14h5l2 6h9s2-9-3-9h-4l1-3c0-2-2-3-3-1l-2 7H2z" fill="#222"/></svg>
336
+ <span>201K</span>
337
+ </div>
338
+ <div class="chip">
339
+ <svg viewBox="0 0 24 24"><path d="M2 10h5l2-6h9s2 9-3 9h-4l1 3c0 2-2 3-3 1l-2-7H2z" fill="#222"/></svg>
340
+ <span></span>
341
+ </div>
342
+ <div class="chip">
343
+ <svg viewBox="0 0 24 24"><path d="M4 12l8-8M12 4l8 8M6 18l12-12" stroke="#222" fill="none"/></svg>
344
+ <span>Share</span>
345
+ </div>
346
+ <div class="chip">
347
+ <svg viewBox="0 0 24 24"><path d="M6 12c0-3 3-6 6-6s6 3 6 6-3 6-6 6-6-3-6-6zm2 0c0 2 2 4 4 4s4-2 4-4-2-4-4-4-4 2-4 4z" fill="#222"/></svg>
348
+ <span>Remix</span>
349
+ </div>
350
+ <div class="chip">
351
+ <svg viewBox="0 0 24 24"><path d="M6 4h12v18l-6-4-6 4V4z" fill="#222"/></svg>
352
+ <span>Save</span>
353
+ </div>
354
+ </div>
355
+
356
+ <div class="comments">
357
+ <div class="header">Comments 4.7K</div>
358
+ <div class="comment-row">
359
+ <div class="comment-avatar"></div>
360
+ <div class="comment-text">Corona Virus Played this song</div>
361
+ </div>
362
+ </div>
363
+ </div>
364
+
365
+ <!-- Dim overlay and share sheet -->
366
+ <div class="dim"></div>
367
+
368
+ <div class="sheet">
369
+ <div class="handle"></div>
370
+ <div class="sheet-header">Share</div>
371
+ <div class="share-row">
372
+ <div class="share-item">
373
+ <div class="share-icon">
374
+ <svg viewBox="0 0 24 24" class="icon-dark"><path d="M12 2l4 4h-3v5H11V6H8l4-4z" stroke="#3c4043" fill="none"/><rect x="4" y="10" width="16" height="10" rx="2" stroke="#3c4043" fill="none"/></svg>
375
+ </div>
376
+ <span>Gmail</span>
377
+ </div>
378
+ <div class="share-item">
379
+ <div class="share-icon">
380
+ <svg viewBox="0 0 24 24" class="icon-dark"><rect x="3" y="5" width="18" height="14" rx="3" stroke="#3c4043" fill="none"/><path d="M6 10h12M6 14h8" stroke="#3c4043"/></svg>
381
+ </div>
382
+ <span>Messages</span>
383
+ </div>
384
+ <div class="share-item">
385
+ <div class="share-icon">
386
+ <svg viewBox="0 0 24 24" class="icon-dark"><circle cx="12" cy="12" r="7" stroke="#3c4043" fill="none"/><path d="M12 5c3 4-3 7 0 12" stroke="#3c4043"/></svg>
387
+ </div>
388
+ <span>Pinterest</span>
389
+ </div>
390
+ <div class="share-item">
391
+ <div class="share-icon">
392
+ <svg viewBox="0 0 24 24" class="icon-dark"><path d="M5 9c3-3 11-3 14 0M5 15c3 3 11 3 14 0" stroke="#3c4043" fill="none"/><circle cx="12" cy="12" r="2" fill="#3c4043"/></svg>
393
+ </div>
394
+ <span>Nearby Share</span>
395
+ </div>
396
+ <div class="share-item">
397
+ <div class="share-icon">
398
+ <svg viewBox="0 0 24 24" class="icon-dark"><rect x="3" y="7" width="18" height="12" rx="2" stroke="#3c4043" fill="none"/><rect x="7" y="4" width="10" height="4" rx="1" stroke="#3c4043" fill="none"/></svg>
399
+ </div>
400
+ <span>Meet live<br>sharing</span>
401
+ </div>
402
+ </div>
403
+
404
+ <div class="copy-row">
405
+ <div class="copy-icon">
406
+ <svg viewBox="0 0 24 24" class="icon-dark"><rect x="7" y="7" width="12" height="14" rx="2" stroke="#3c4043" fill="none"/><rect x="3" y="3" width="12" height="14" rx="2" stroke="#3c4043" fill="none"/></svg>
407
+ </div>
408
+ <div class="copy-text">Copy link</div>
409
+ </div>
410
+ </div>
411
+
412
+ <div class="nav-bar"></div>
413
+ </div>
414
+ </body>
415
+ </html>
code/14491/14491_3.html ADDED
@@ -0,0 +1,233 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Compose - Mock UI</title>
5
+ <style>
6
+ body { margin:0; padding:0; background:transparent; font-family: Arial, Helvetica, sans-serif; }
7
+ #render-target {
8
+ width:1080px; height:2400px;
9
+ position:relative; overflow:hidden;
10
+ background:#ffffff;
11
+ }
12
+
13
+ /* Status bar */
14
+ .status-bar {
15
+ position:absolute; top:0; left:0; width:100%; height:90px;
16
+ display:flex; align-items:center; justify-content:space-between;
17
+ padding:0 32px; color:#212121; font-weight:600; font-size:38px;
18
+ }
19
+ .status-icons { display:flex; gap:24px; align-items:center; }
20
+ .stat-icon {
21
+ width:28px; height:28px; background:#424242; border-radius:4px;
22
+ }
23
+ .stat-dot { width:10px; height:10px; background:#424242; border-radius:50%; }
24
+
25
+ /* App bar */
26
+ .app-bar {
27
+ position:absolute; top:90px; left:0; width:100%; height:130px;
28
+ display:flex; align-items:center;
29
+ padding:0 28px; border-bottom:1px solid #e5e5e5;
30
+ }
31
+ .app-title { font-size:56px; font-weight:600; color:#111; margin-left:20px; }
32
+ .app-actions { margin-left:auto; display:flex; gap:40px; align-items:center; }
33
+ .icon-btn svg { width:48px; height:48px; }
34
+ .icon-btn { cursor:default; }
35
+
36
+ /* Form area */
37
+ .content {
38
+ position:absolute; top:220px; left:0; width:100%;
39
+ padding:0 36px;
40
+ }
41
+ .field {
42
+ padding:22px 0; border-bottom:1px solid #eee;
43
+ display:flex; align-items:center;
44
+ }
45
+ .label { color:#777; font-size:34px; width:140px; }
46
+ .value { font-size:38px; color:#222; }
47
+ .to-value { flex:1; font-size:38px; color:#999; }
48
+ .dropdown {
49
+ width:40px; height:40px; margin-left:8px;
50
+ }
51
+ .subject {
52
+ padding:30px 0; border-bottom:1px solid #eee;
53
+ font-size:44px; line-height:58px; color:#1a1a1a;
54
+ }
55
+ .body-text {
56
+ padding:30px 0 16px 0; font-size:40px; line-height:62px; color:#222;
57
+ }
58
+
59
+ /* Keyboard */
60
+ .keyboard {
61
+ position:absolute; bottom:0; left:0; width:100%; height:920px;
62
+ background:#EDF3E8; border-top:1px solid #d6dbcf;
63
+ padding:26px;
64
+ }
65
+ .kb-tools {
66
+ height:100px; display:flex; gap:36px; align-items:center;
67
+ }
68
+ .tool-btn {
69
+ width:92px; height:92px; border-radius:20px; background:#dfe6d9;
70
+ display:flex; align-items:center; justify-content:center; color:#333;
71
+ border:1px solid #cfd8c4; font-size:34px; font-weight:600;
72
+ }
73
+
74
+ .row { margin-top:22px; }
75
+ .grid10 { display:grid; grid-template-columns:repeat(10, 1fr); gap:16px; }
76
+ .grid9 { display:grid; grid-template-columns:repeat(9, 1fr); gap:16px; }
77
+ .grid-custom { display:grid; grid-template-columns:1.3fr repeat(7,1fr) 1.3fr; gap:16px; }
78
+ .grid-bottom { display:grid; grid-template-columns:1.3fr 1.3fr 1.3fr 5fr 1.3fr 1.3fr; gap:16px; }
79
+
80
+ .key {
81
+ height:120px; background:#ffffff; border-radius:28px;
82
+ border:1px solid #e7e7e7; color:#222;
83
+ display:flex; align-items:center; justify-content:center;
84
+ font-size:46px; position:relative;
85
+ }
86
+ .key .num {
87
+ position:absolute; top:6px; left:10px; font-size:22px; color:#808080;
88
+ font-weight:600;
89
+ }
90
+ .key.special { background:#dfe7d5; }
91
+ .space { font-size:28px; color:#777; }
92
+
93
+ /* subtle bottom nav bar gesture area */
94
+ .gesture {
95
+ position:absolute; bottom:18px; left:50%; transform:translateX(-50%);
96
+ width:240px; height:8px; background:#7d7d7d; border-radius:6px; opacity:0.5;
97
+ }
98
+ </style>
99
+ </head>
100
+ <body>
101
+ <div id="render-target">
102
+
103
+ <!-- Status bar -->
104
+ <div class="status-bar">
105
+ <div>11:04</div>
106
+ <div class="status-icons">
107
+ <div class="stat-icon"></div>
108
+ <div class="stat-icon"></div>
109
+ <div class="stat-icon" style="border-radius:50%;"></div>
110
+ <div class="stat-dot"></div>
111
+ <div class="stat-dot"></div>
112
+ </div>
113
+ </div>
114
+
115
+ <!-- App bar -->
116
+ <div class="app-bar">
117
+ <div class="icon-btn">
118
+ <svg viewBox="0 0 48 48">
119
+ <polyline points="28,10 12,24 28,38" stroke="#333" stroke-width="4.5" fill="none" stroke-linecap="round" stroke-linejoin="round"></polyline>
120
+ </svg>
121
+ </div>
122
+ <div class="app-title">Compose</div>
123
+ <div class="app-actions">
124
+ <div class="icon-btn">
125
+ <!-- paperclip -->
126
+ <svg viewBox="0 0 48 48">
127
+ <path d="M15 26c0 5 4 8 9 8s9-3 9-8V15c0-4-3-7-7-7s-7 3-7 7v13c0 3 2 5 5 5s5-2 5-5V17" fill="none" stroke="#333" stroke-width="3.8" stroke-linecap="round"/>
128
+ </svg>
129
+ </div>
130
+ <div class="icon-btn">
131
+ <!-- send -->
132
+ <svg viewBox="0 0 48 48">
133
+ <polygon points="8,10 40,24 8,38 16,24" fill="#333"></polygon>
134
+ </svg>
135
+ </div>
136
+ <div class="icon-btn">
137
+ <!-- kebab -->
138
+ <svg viewBox="0 0 48 48">
139
+ <circle cx="24" cy="10" r="3.5" fill="#333"></circle>
140
+ <circle cx="24" cy="24" r="3.5" fill="#333"></circle>
141
+ <circle cx="24" cy="38" r="3.5" fill="#333"></circle>
142
+ </svg>
143
+ </div>
144
+ </div>
145
+ </div>
146
+
147
+ <!-- Form area -->
148
+ <div class="content">
149
+ <div class="field">
150
+ <div class="label">From</div>
151
+ <div class="value">dbwscratch.test.id2@gmail.com</div>
152
+ </div>
153
+
154
+ <div class="field">
155
+ <div class="label">To</div>
156
+ <div class="to-value"> </div>
157
+ <svg class="dropdown" viewBox="0 0 24 24">
158
+ <polyline points="5,8 12,15 19,8" stroke="#666" stroke-width="2.6" fill="none" stroke-linecap="round" stroke-linejoin="round"></polyline>
159
+ </svg>
160
+ </div>
161
+
162
+ <div class="subject">
163
+ Watch "Martin Garrix & MOTi - Virus (How About Now) [Official Music Video]" on YouTube
164
+ </div>
165
+
166
+ <div class="body-text">
167
+ https://youtu.be/bH4YSVZOq-U?si=hYravcCJj7w_8GJ9
168
+ </div>
169
+ </div>
170
+
171
+ <!-- Keyboard -->
172
+ <div class="keyboard">
173
+ <div class="kb-tools">
174
+ <div class="tool-btn">▦</div>
175
+ <div class="tool-btn">☺</div>
176
+ <div class="tool-btn">GIF</div>
177
+ <div class="tool-btn">⚙</div>
178
+ <div class="tool-btn">Gᵗ</div>
179
+ <div class="tool-btn">🎨</div>
180
+ <div class="tool-btn">🔇</div>
181
+ </div>
182
+
183
+ <div class="row grid10">
184
+ <div class="key"><span class="num">1</span>q</div>
185
+ <div class="key"><span class="num">2</span>w</div>
186
+ <div class="key"><span class="num">3</span>e</div>
187
+ <div class="key"><span class="num">4</span>r</div>
188
+ <div class="key"><span class="num">5</span>t</div>
189
+ <div class="key"><span class="num">6</span>y</div>
190
+ <div class="key"><span class="num">7</span>u</div>
191
+ <div class="key"><span class="num">8</span>i</div>
192
+ <div class="key"><span class="num">9</span>o</div>
193
+ <div class="key"><span class="num">0</span>p</div>
194
+ </div>
195
+
196
+ <div class="row grid9">
197
+ <div class="key">a</div>
198
+ <div class="key">s</div>
199
+ <div class="key">d</div>
200
+ <div class="key">f</div>
201
+ <div class="key">g</div>
202
+ <div class="key">h</div>
203
+ <div class="key">j</div>
204
+ <div class="key">k</div>
205
+ <div class="key">l</div>
206
+ </div>
207
+
208
+ <div class="row grid-custom">
209
+ <div class="key special">⇧</div>
210
+ <div class="key">z</div>
211
+ <div class="key">x</div>
212
+ <div class="key">c</div>
213
+ <div class="key">v</div>
214
+ <div class="key">b</div>
215
+ <div class="key">n</div>
216
+ <div class="key">m</div>
217
+ <div class="key special">⌫</div>
218
+ </div>
219
+
220
+ <div class="row grid-bottom">
221
+ <div class="key special">?123</div>
222
+ <div class="key special">@</div>
223
+ <div class="key">☺</div>
224
+ <div class="key"><span class="space">space</span></div>
225
+ <div class="key">.</div>
226
+ <div class="key special">↵</div>
227
+ </div>
228
+ </div>
229
+
230
+ <div class="gesture"></div>
231
+ </div>
232
+ </body>
233
+ </html>
code/14491/14491_4.html ADDED
@@ -0,0 +1,301 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="utf-8">
4
+ <title>Gmail Compose Mock</title>
5
+ <style>
6
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
7
+ #render-target {
8
+ width: 1080px;
9
+ height: 2400px;
10
+ position: relative;
11
+ overflow: hidden;
12
+ background: #F7F7F2;
13
+ color: #222;
14
+ }
15
+
16
+ /* Top Android status bar */
17
+ .status-bar {
18
+ position: absolute;
19
+ top: 0;
20
+ left: 0;
21
+ width: 1080px;
22
+ height: 100px;
23
+ background: #F2F2EE;
24
+ display: flex;
25
+ align-items: center;
26
+ justify-content: space-between;
27
+ padding: 0 36px;
28
+ box-sizing: border-box;
29
+ }
30
+ .status-left { font-weight: 600; font-size: 34px; color: #1e1e1e; }
31
+ .status-right { display: flex; gap: 22px; align-items: center; }
32
+ .dot-icon { width: 22px; height: 22px; background: #5C5C5C; border-radius: 50%; }
33
+ .signal {
34
+ width: 34px; height: 22px; border: 2px solid #5C5C5C; border-radius: 4px;
35
+ }
36
+
37
+ /* Gmail app bar */
38
+ .app-bar {
39
+ position: absolute;
40
+ top: 100px;
41
+ left: 0;
42
+ width: 1080px;
43
+ height: 140px;
44
+ background: #FFFFFF;
45
+ display: flex;
46
+ align-items: center;
47
+ padding: 0 28px;
48
+ box-sizing: border-box;
49
+ border-bottom: 1px solid #E5E5E5;
50
+ }
51
+ .app-title {
52
+ font-size: 48px;
53
+ font-weight: 600;
54
+ margin-left: 18px;
55
+ }
56
+ .app-actions {
57
+ margin-left: auto;
58
+ display: flex;
59
+ align-items: center;
60
+ gap: 38px;
61
+ }
62
+ .icon-btn { width: 60px; height: 60px; display: inline-flex; align-items: center; justify-content: center; }
63
+ .icon-btn svg { width: 60px; height: 60px; fill: #4A4A4A; }
64
+
65
+ /* Form rows */
66
+ .row {
67
+ position: absolute;
68
+ left: 0;
69
+ width: 1080px;
70
+ background: #FFFFFF;
71
+ display: flex;
72
+ align-items: center;
73
+ box-sizing: border-box;
74
+ padding: 0 36px;
75
+ color: #222;
76
+ }
77
+ .row.from { top: 240px; height: 100px; border-bottom: 1px solid #EAEAEA; }
78
+ .row.to { top: 340px; height: 120px; border-bottom: 1px solid #EAEAEA; }
79
+ .label {
80
+ width: 110px;
81
+ color: #6F6F6F;
82
+ font-size: 34px;
83
+ }
84
+ .value, .to-input {
85
+ font-size: 36px;
86
+ }
87
+ .value { color: #2A2A2A; }
88
+ .to-input { display: flex; align-items: center; gap: 16px; }
89
+ .caret {
90
+ width: 2px; height: 42px; background: #2E7D32;
91
+ animation: blink 1.2s infinite;
92
+ }
93
+ @keyframes blink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }
94
+ .to-actions { margin-left: auto; display: flex; align-items: center; }
95
+ .to-actions svg { width: 42px; height: 42px; fill: #4A4A4A; }
96
+
97
+ /* Recipient suggestion */
98
+ .suggestion {
99
+ position: absolute;
100
+ top: 460px;
101
+ left: 0;
102
+ width: 1080px;
103
+ height: 160px;
104
+ background: #FFFFFF;
105
+ display: flex;
106
+ align-items: center;
107
+ padding: 0 36px;
108
+ box-sizing: border-box;
109
+ }
110
+ .avatar {
111
+ width: 92px; height: 92px; border-radius: 50%;
112
+ background: #DB5A4A;
113
+ display: flex; align-items: center; justify-content: center;
114
+ color: #FFFFFF; font-weight: 700;
115
+ margin-right: 30px;
116
+ }
117
+ .suggestion-text { display: flex; flex-direction: column; }
118
+ .suggestion-title { font-size: 38px; margin-bottom: 8px; }
119
+ .suggestion-sub { font-size: 30px; color: #666; }
120
+
121
+ /* Message body placeholder */
122
+ .compose-area {
123
+ position: absolute;
124
+ top: 620px;
125
+ left: 0;
126
+ width: 1080px;
127
+ height: 830px;
128
+ background: #FFFFFF;
129
+ }
130
+
131
+ /* Keyboard */
132
+ .keyboard {
133
+ position: absolute;
134
+ bottom: 0;
135
+ left: 0;
136
+ width: 1080px;
137
+ height: 950px;
138
+ background: #FFFFFF;
139
+ border-top: 1px solid #E5E5E5;
140
+ box-sizing: border-box;
141
+ padding: 28px 24px 24px 24px;
142
+ }
143
+ .kb-tools {
144
+ display: flex; align-items: center; gap: 42px; margin-bottom: 22px;
145
+ }
146
+ .tool {
147
+ width: 72px; height: 72px; background: #EFF2E9; border-radius: 18px;
148
+ display: flex; align-items: center; justify-content: center; color: #666; font-size: 28px; border: 1px solid #DADADA;
149
+ }
150
+
151
+ .row-keys { display: grid; grid-template-columns: repeat(10, 1fr); gap: 18px; margin-bottom: 22px; }
152
+ .row-keys .key {
153
+ height: 120px; background: #FFFFFF; border: 2px solid #E6E6E6; border-radius: 24px;
154
+ display: flex; align-items: center; justify-content: center; font-size: 44px; color: #1E1E1E;
155
+ box-shadow: 0 1px 0 #DDD inset;
156
+ }
157
+
158
+ .row-keys.mid { grid-template-columns: repeat(9, 1fr); }
159
+ .row-keys.low { grid-template-columns: repeat(7, 1fr); }
160
+
161
+ .special-row {
162
+ display: grid; grid-template-columns: 1.2fr 1fr 1fr 4fr 1fr 1.2fr; gap: 18px;
163
+ }
164
+ .special {
165
+ height: 120px; background: #EFF2E9; border: 2px solid #DCDCDC; border-radius: 24px;
166
+ display: flex; align-items: center; justify-content: center; font-size: 40px; color: #333;
167
+ }
168
+ .space { background: #FFFFFF; border-color: #E6E6E6; }
169
+ .enter { background: #CFE5CF; color: #1E5E2B; }
170
+
171
+ /* subtle nav bar pill */
172
+ .home-indicator {
173
+ position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
174
+ width: 420px; height: 10px; background: #C9C9C9; border-radius: 8px;
175
+ }
176
+ </style>
177
+ </head>
178
+ <body>
179
+ <div id="render-target">
180
+
181
+ <!-- Status bar -->
182
+ <div class="status-bar">
183
+ <div class="status-left">11:05</div>
184
+ <div class="status-right">
185
+ <div class="dot-icon"></div>
186
+ <div class="dot-icon" style="background:#7A7A7A;"></div>
187
+ <div class="dot-icon" style="background:#999;"></div>
188
+ <div class="signal"></div>
189
+ <div class="dot-icon" style="background:#454545; width:26px; height:26px;"></div>
190
+ </div>
191
+ </div>
192
+
193
+ <!-- App bar -->
194
+ <div class="app-bar">
195
+ <div class="icon-btn" title="Back">
196
+ <svg viewBox="0 0 24 24">
197
+ <path d="M15.5 4.5L6 12l9.5 7.5v-4.5L10 12l5.5-3.5z"/>
198
+ </svg>
199
+ </div>
200
+ <div class="app-title">Compose</div>
201
+ <div class="app-actions">
202
+ <!-- attach -->
203
+ <div class="icon-btn">
204
+ <svg viewBox="0 0 24 24">
205
+ <path d="M7 13.5l7.2-7.2a3.5 3.5 0 015 5L12 15.5a5 5 0 01-7-7l7.6-7.6" stroke="#4A4A4A" stroke-width="2" fill="none"/>
206
+ </svg>
207
+ </div>
208
+ <!-- send -->
209
+ <div class="icon-btn">
210
+ <svg viewBox="0 0 24 24">
211
+ <path d="M3 12l18-9-6 9 6 9z"/>
212
+ </svg>
213
+ </div>
214
+ <!-- overflow -->
215
+ <div class="icon-btn">
216
+ <svg viewBox="0 0 24 24">
217
+ <circle cx="5" cy="12" r="2"></circle>
218
+ <circle cx="12" cy="12" r="2"></circle>
219
+ <circle cx="19" cy="12" r="2"></circle>
220
+ </svg>
221
+ </div>
222
+ </div>
223
+ </div>
224
+
225
+ <!-- From row -->
226
+ <div class="row from">
227
+ <div class="label">From</div>
228
+ <div class="value">dbwscratch.test.id2@gmail.com</div>
229
+ </div>
230
+
231
+ <!-- To row -->
232
+ <div class="row to">
233
+ <div class="label">To</div>
234
+ <div class="to-input">
235
+ <span>mike.waggoner@hotwater.com</span>
236
+ <span class="caret"></span>
237
+ </div>
238
+ <div class="to-actions" style="margin-left:auto;">
239
+ <svg viewBox="0 0 24 24">
240
+ <path d="M7 10l5 5 5-5z"/>
241
+ </svg>
242
+ </div>
243
+ </div>
244
+
245
+ <!-- Recipient suggestion -->
246
+ <div class="suggestion">
247
+ <div class="avatar">•</div>
248
+ <div class="suggestion-text">
249
+ <div class="suggestion-title">Add recipient</div>
250
+ <div class="suggestion-sub">mike.waggoner@hotwater.com</div>
251
+ </div>
252
+ </div>
253
+
254
+ <!-- Message body area -->
255
+ <div class="compose-area"></div>
256
+
257
+ <!-- Keyboard -->
258
+ <div class="keyboard">
259
+ <div class="kb-tools">
260
+ <div class="tool">▦</div>
261
+ <div class="tool">☺</div>
262
+ <div class="tool">GIF</div>
263
+ <div class="tool">⚙</div>
264
+ <div class="tool">G↔</div>
265
+ <div class="tool">🎨</div>
266
+ <div class="tool">🎙</div>
267
+ </div>
268
+
269
+ <div class="row-keys">
270
+ <div class="key">q</div><div class="key">w</div><div class="key">e</div><div class="key">r</div><div class="key">t</div>
271
+ <div class="key">y</div><div class="key">u</div><div class="key">i</div><div class="key">o</div><div class="key">p</div>
272
+ </div>
273
+
274
+ <div class="row-keys mid">
275
+ <div class="key">a</div><div class="key">s</div><div class="key">d</div><div class="key">f</div><div class="key">g</div>
276
+ <div class="key">h</div><div class="key">j</div><div class="key">k</div><div class="key">l</div>
277
+ </div>
278
+
279
+ <div class="row-keys low">
280
+ <div class="key">z</div><div class="key">x</div><div class="key">c</div><div class="key">v</div><div class="key">b</div><div class="key">n</div><div class="key">m</div>
281
+ <div class="key" style="grid-column: span 3; background:#EFF2E9;">⌫</div>
282
+ </div>
283
+
284
+ <div class="special-row">
285
+ <div class="special">?123</div>
286
+ <div class="special">@</div>
287
+ <div class="special">☺</div>
288
+ <div class="special space"></div>
289
+ <div class="special">.</div>
290
+ <div class="special enter">
291
+ <svg viewBox="0 0 24 24" style="width:44px;height:44px;">
292
+ <path d="M20 12l-8 6V6z" fill="#1E5E2B"></path>
293
+ </svg>
294
+ </div>
295
+ </div>
296
+ </div>
297
+
298
+ <div class="home-indicator"></div>
299
+ </div>
300
+ </body>
301
+ </html>
code/14491/14491_5.html ADDED
@@ -0,0 +1,328 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Compose Mock</title>
5
+ <style>
6
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
7
+ #render-target {
8
+ width: 1080px;
9
+ height: 2400px;
10
+ position: relative;
11
+ overflow: hidden;
12
+ background: #FAFAFA;
13
+ color: #222;
14
+ }
15
+
16
+ /* Status bar */
17
+ .status-bar {
18
+ height: 96px;
19
+ background: #F7F7F7;
20
+ display: flex;
21
+ align-items: center;
22
+ padding: 0 32px;
23
+ font-weight: 600;
24
+ font-size: 36px;
25
+ color: #2E2E2E;
26
+ border-bottom: 1px solid #E5E5E5;
27
+ }
28
+ .status-spacer { flex: 1; }
29
+ .status-icons { display: flex; gap: 24px; align-items: center; }
30
+ .status-icons svg { width: 40px; height: 40px; }
31
+
32
+ /* Gmail header */
33
+ .appbar {
34
+ height: 136px;
35
+ background: #FFFFFF;
36
+ display: flex;
37
+ align-items: center;
38
+ padding: 0 24px;
39
+ border-bottom: 1px solid #E6E6E6;
40
+ }
41
+ .icon-btn {
42
+ width: 72px; height: 72px; display: flex; align-items: center; justify-content: center;
43
+ }
44
+ .icon-btn svg { width: 48px; height: 48px; }
45
+ .title { font-size: 44px; font-weight: 600; margin-left: 8px; color: #303030; }
46
+ .appbar-spacer { flex: 1; }
47
+
48
+ /* Compose area */
49
+ .compose {
50
+ position: absolute;
51
+ top: 232px; /* status (96) + appbar (136) */
52
+ left: 0;
53
+ right: 0;
54
+ bottom: 880px; /* leave space for keyboard */
55
+ background: #FFFFFF;
56
+ overflow: hidden;
57
+ }
58
+ .compose-inner {
59
+ padding: 24px 32px 0 32px;
60
+ }
61
+
62
+ .field {
63
+ display: flex;
64
+ align-items: center;
65
+ padding: 18px 0;
66
+ border-bottom: 1px solid #EFEFEF;
67
+ }
68
+ .label {
69
+ width: 140px;
70
+ color: #666;
71
+ font-size: 34px;
72
+ }
73
+ .value {
74
+ flex: 1;
75
+ font-size: 36px;
76
+ color: #111;
77
+ }
78
+
79
+ .pill {
80
+ display: inline-flex;
81
+ align-items: center;
82
+ border: 1px solid #CFCFCF;
83
+ border-radius: 40px;
84
+ padding: 10px 22px 10px 14px;
85
+ gap: 16px;
86
+ background: #FFF;
87
+ font-size: 34px;
88
+ color: #111;
89
+ }
90
+ .avatar-placeholder {
91
+ width: 56px; height: 56px;
92
+ background: #E0E0E0;
93
+ border: 1px solid #BDBDBD;
94
+ border-radius: 50%;
95
+ display: flex; align-items: center; justify-content: center;
96
+ font-size: 20px; color: #757575;
97
+ }
98
+ .caret-green {
99
+ width: 6px; height: 44px; background: #1DB954; border-radius: 3px; margin-left: 16px;
100
+ }
101
+
102
+ .subject {
103
+ font-size: 40px;
104
+ line-height: 1.35;
105
+ color: #1C1C1C;
106
+ margin-top: 24px;
107
+ }
108
+ .link {
109
+ font-size: 38px;
110
+ color: #1565C0;
111
+ margin-top: 28px;
112
+ word-break: break-all;
113
+ }
114
+
115
+ /* Keyboard */
116
+ .keyboard {
117
+ position: absolute;
118
+ left: 0; right: 0; bottom: 0;
119
+ height: 880px;
120
+ background: #EEF1E8;
121
+ border-top-left-radius: 26px;
122
+ border-top-right-radius: 26px;
123
+ box-shadow: 0 -2px 8px rgba(0,0,0,0.06);
124
+ }
125
+ .kb-toolbar {
126
+ height: 120px;
127
+ display: flex;
128
+ align-items: center;
129
+ gap: 36px;
130
+ padding: 0 24px;
131
+ }
132
+ .kb-circle {
133
+ width: 88px; height: 88px; border-radius: 24px;
134
+ background: #DDE3D6;
135
+ display: flex; align-items: center; justify-content: center;
136
+ color: #333; font-size: 30px; font-weight: 600;
137
+ border: 1px solid #C9CEBE;
138
+ }
139
+
140
+ .keys {
141
+ padding: 6px 18px 18px 18px;
142
+ }
143
+ .row {
144
+ display: flex;
145
+ justify-content: center;
146
+ gap: 16px;
147
+ margin: 18px 0;
148
+ }
149
+ .key {
150
+ width: 86px; height: 112px;
151
+ background: #FFFFFF;
152
+ border-radius: 22px;
153
+ box-shadow: inset 0 0 0 1px #D9D9D9;
154
+ display: flex; align-items: center; justify-content: center;
155
+ font-size: 44px; color: #262626; font-weight: 500;
156
+ }
157
+ .key.small { width: 120px; }
158
+ .key.big { width: 470px; }
159
+ .key.icon { font-size: 36px; }
160
+
161
+ .bottom-row {
162
+ display: flex; align-items: center; justify-content: space-between;
163
+ padding: 0 24px; margin-top: 10px;
164
+ }
165
+ .key-round {
166
+ width: 120px; height: 110px;
167
+ background: #FFFFFF; border-radius: 26px; box-shadow: inset 0 0 0 1px #D9D9D9;
168
+ display: flex; align-items: center; justify-content: center;
169
+ font-size: 38px; color: #333;
170
+ }
171
+
172
+ /* Simple inline icon coloring */
173
+ .icon-green svg path { fill: #218838; }
174
+ .icon-dark svg path { fill: #3A3A3A; }
175
+ </style>
176
+ </head>
177
+ <body>
178
+ <div id="render-target">
179
+
180
+ <!-- Android status bar -->
181
+ <div class="status-bar">
182
+ <div>11:07</div>
183
+ <div class="status-spacer"></div>
184
+ <div class="status-icons">
185
+ <!-- Signal -->
186
+ <svg viewBox="0 0 24 24">
187
+ <path d="M2 20h2v-4H2v4zm4 0h2v-7H6v7zm4 0h2v-10h-2v10zm4 0h2v-13h-2v13zm4 0h2v-16h-2v16z" fill="#444"/>
188
+ </svg>
189
+ <!-- WiFi -->
190
+ <svg viewBox="0 0 24 24">
191
+ <path d="M12 18.5l2.5 2.5L12 24l-2.5-3 2.5-2.5zm-9-9c4.9-4.9 13.1-4.9 18 0l-1.4 1.4c-3.9-3.9-11.3-3.9-14.2 0L3 9.5zm3.6 3.6c3.2-3.2 9.5-3.2 12.7 0l-1.4 1.4c-2.5-2.5-7.4-2.5-9.9 0L6.6 13.1zm3.6 3.6c1.5-1.5 4.6-1.5 6.1 0l-1.5 1.4c-.8-.8-2.3-.8-3.1 0l-1.5-1.4z" fill="#444"/>
192
+ </svg>
193
+ <!-- Battery -->
194
+ <svg viewBox="0 0 24 24">
195
+ <path d="M2 7h17v10H2V7zm19 3h1v4h-1v-4z" fill="#444"/>
196
+ </svg>
197
+ </div>
198
+ </div>
199
+
200
+ <!-- Gmail app bar -->
201
+ <div class="appbar">
202
+ <div class="icon-btn">
203
+ <svg viewBox="0 0 24 24" class="icon-dark">
204
+ <path d="M15.41 16.59L10.82 12l4.59-4.59L14 6l-6 6 6 6 1.41-1.41z"/>
205
+ </svg>
206
+ </div>
207
+ <div class="title">Compose</div>
208
+ <div class="appbar-spacer"></div>
209
+ <div class="icon-btn">
210
+ <!-- Attach/Paperclip -->
211
+ <svg viewBox="0 0 24 24" class="icon-dark">
212
+ <path d="M7 17a5 5 0 0 0 7.07.01l6.36-6.36a3.5 3.5 0 0 0-4.95-4.95L8.12 12.06a2 2 0 1 0 2.83 2.83l6.36-6.36 1.41 1.41-6.36 6.36A4 4 0 1 1 6.7 11.3l7.07-7.07a5 5 0 0 1 7.07 7.07l-6.36 6.36A6.5 6.5 0 0 1 7 18.5V17z"/>
213
+ </svg>
214
+ </div>
215
+ <div class="icon-btn icon-green">
216
+ <!-- Send (triangle) -->
217
+ <svg viewBox="0 0 24 24">
218
+ <path d="M2 21l21-9L2 3v7l15 2-15 2v7z"/>
219
+ </svg>
220
+ </div>
221
+ <div class="icon-btn">
222
+ <!-- Kebab -->
223
+ <svg viewBox="0 0 24 24" class="icon-dark">
224
+ <path d="M12 5a2 2 0 1 0 0-4 2 2 0 0 0 0 4zm0 9a2 2 0 1 0 0-4 2 2 0 0 0 0 4zm0 9a2 2 0 1 0 0-4 2 2 0 0 0 0 4z"/>
225
+ </svg>
226
+ </div>
227
+ </div>
228
+
229
+ <!-- Compose content -->
230
+ <div class="compose">
231
+ <div class="compose-inner">
232
+ <div class="field">
233
+ <div class="label">From</div>
234
+ <div class="value">dbwscratch.test.id2@gmail.com</div>
235
+ </div>
236
+
237
+ <div class="field">
238
+ <div class="label">To</div>
239
+ <div class="value" style="display:flex; align-items:center;">
240
+ <div class="pill">
241
+ <div class="avatar-placeholder">[IMG]</div>
242
+ <div>mike.waggoner@hotwater.com</div>
243
+ </div>
244
+ <div class="caret-green"></div>
245
+ <div style="margin-left:12px;">
246
+ <svg viewBox="0 0 24 24" width="36" height="36">
247
+ <path d="M7 10l5 5 5-5H7z" fill="#666"/>
248
+ </svg>
249
+ </div>
250
+ </div>
251
+ </div>
252
+
253
+ <div class="subject">
254
+ Watch "Martin Garrix & MOTi - Virus (How About Now) [Official Music Video]" on YouTube
255
+ </div>
256
+
257
+ <div class="link">
258
+ https://youtu.be/bH4YSVZOq-U?si=hYravcCJJ7w_8GJ9
259
+ </div>
260
+ </div>
261
+ </div>
262
+
263
+ <!-- Keyboard -->
264
+ <div class="keyboard">
265
+ <div class="kb-toolbar">
266
+ <div class="kb-circle">▦</div>
267
+ <div class="kb-circle">😊</div>
268
+ <div class="kb-circle">GIF</div>
269
+ <div class="kb-circle">⚙</div>
270
+ <div class="kb-circle">G↔</div>
271
+ <div class="kb-circle">🎨</div>
272
+ <div class="kb-circle">🎤✖</div>
273
+ </div>
274
+
275
+ <div class="keys">
276
+ <!-- Row 1 -->
277
+ <div class="row">
278
+ <div class="key">q</div>
279
+ <div class="key">w</div>
280
+ <div class="key">e</div>
281
+ <div class="key">r</div>
282
+ <div class="key">t</div>
283
+ <div class="key">y</div>
284
+ <div class="key">u</div>
285
+ <div class="key">i</div>
286
+ <div class="key">o</div>
287
+ <div class="key">p</div>
288
+ </div>
289
+ <!-- Row 2 -->
290
+ <div class="row">
291
+ <div class="key">a</div>
292
+ <div class="key">s</div>
293
+ <div class="key">d</div>
294
+ <div class="key">f</div>
295
+ <div class="key">g</div>
296
+ <div class="key">h</div>
297
+ <div class="key">j</div>
298
+ <div class="key">k</div>
299
+ <div class="key">l</div>
300
+ </div>
301
+ <!-- Row 3 -->
302
+ <div class="row">
303
+ <div class="key small">⇧</div>
304
+ <div class="key">z</div>
305
+ <div class="key">x</div>
306
+ <div class="key">c</div>
307
+ <div class="key">v</div>
308
+ <div class="key">b</div>
309
+ <div class="key">n</div>
310
+ <div class="key">m</div>
311
+ <div class="key small">⌫</div>
312
+ </div>
313
+
314
+ <!-- Bottom row -->
315
+ <div class="bottom-row">
316
+ <div class="key-round">?123</div>
317
+ <div class="key-round">@</div>
318
+ <div class="key-round">☺</div>
319
+ <div class="key big"></div>
320
+ <div class="key-round">.</div>
321
+ <div class="key-round">↵</div>
322
+ </div>
323
+ </div>
324
+ </div>
325
+
326
+ </div>
327
+ </body>
328
+ </html>
code/14491/14491_6.html ADDED
@@ -0,0 +1,300 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
5
+ <title>YouTube Mobile Mock</title>
6
+ <style>
7
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
8
+ #render-target {
9
+ width: 1080px; height: 2400px;
10
+ position: relative; overflow: hidden;
11
+ background: #ffffff;
12
+ color: #0f0f0f;
13
+ }
14
+
15
+ /* Status bar */
16
+ .status-bar {
17
+ height: 88px;
18
+ background: #000000;
19
+ color: #ffffff;
20
+ display: flex;
21
+ align-items: center;
22
+ padding: 0 28px;
23
+ font-size: 36px;
24
+ letter-spacing: 0.2px;
25
+ }
26
+ .status-spacer { flex: 1; }
27
+ .status-icons { display: flex; gap: 26px; align-items: center; }
28
+ .status-dot { width: 10px; height: 10px; background:#ffffff; border-radius: 50%; opacity:.8; }
29
+
30
+ /* Video player */
31
+ .video {
32
+ width: 1080px;
33
+ height: 620px;
34
+ position: relative;
35
+ background: linear-gradient(180deg,#1b1b1b 0%, #303030 50%, #1b1b1b 100%);
36
+ }
37
+ .video-placeholder {
38
+ position: absolute; inset: 0;
39
+ background: #E0E0E0;
40
+ border-top: 1px solid #BDBDBD;
41
+ border-bottom: 1px solid #BDBDBD;
42
+ display: flex; align-items: center; justify-content: center;
43
+ color: #757575; font-size: 32px; letter-spacing: .2px;
44
+ }
45
+ .video-top-icons {
46
+ position: absolute; top: 16px; left: 20px; right: 20px;
47
+ display: flex; align-items: center; justify-content: space-between;
48
+ }
49
+ .video-top-left { display: flex; gap: 24px; align-items: center; }
50
+ .video-top-right { display: flex; gap: 28px; align-items: center; }
51
+ .overlay-icon {
52
+ width: 56px; height: 56px; border-radius: 28px;
53
+ background: rgba(0,0,0,0.55); display: flex; align-items: center; justify-content: center;
54
+ }
55
+ .svg-icon { width: 28px; height: 28px; fill: #ffffff; }
56
+
57
+ .play-button {
58
+ position: absolute; top: 50%; left: 50%;
59
+ transform: translate(-50%, -50%);
60
+ width: 120px; height: 120px; border-radius: 60px;
61
+ background: rgba(255,255,255,0.85);
62
+ display: flex; align-items: center; justify-content: center;
63
+ }
64
+ .play-triangle { width: 0; height: 0; border-left: 36px solid #000; border-top: 22px solid transparent; border-bottom: 22px solid transparent; margin-left: 8px; }
65
+
66
+ .video-bottom {
67
+ position: absolute; left: 20px; right: 20px; bottom: 18px;
68
+ display: flex; align-items: center; justify-content: space-between; color: #ffffff;
69
+ font-size: 26px;
70
+ }
71
+ .progress-bar {
72
+ position: absolute; left: 0; right: 0; bottom: 0;
73
+ height: 8px; background: #2b2b2b;
74
+ }
75
+ .progress-dot {
76
+ position: absolute; left: 22px; bottom: -6px;
77
+ width: 18px; height: 18px; background: #ff0000; border-radius: 50%;
78
+ }
79
+
80
+ /* Ad card */
81
+ .ad-card {
82
+ padding: 24px 24px;
83
+ display: flex; align-items: center; gap: 22px;
84
+ border-bottom: 1px solid #e6e6e6;
85
+ }
86
+ .logo {
87
+ width: 78px; height: 78px; background: #E0E0E0; border: 1px solid #BDBDBD;
88
+ display: flex; align-items: center; justify-content: center; color: #757575; font-size: 20px; border-radius: 12px;
89
+ }
90
+ .ad-text { flex: 1; }
91
+ .ad-title { font-size: 34px; font-weight: 700; }
92
+ .ad-meta { font-size: 28px; color: #616161; margin-top: 6px; }
93
+ .pill-blue {
94
+ background: #1a73e8; color: #ffffff; border-radius: 44px; padding: 18px 32px; font-weight: 700; font-size: 30px;
95
+ }
96
+ .chevron-btn {
97
+ margin-left: 16px; width: 64px; height: 64px; border-radius: 32px; background: #f1f1f1;
98
+ display: flex; align-items: center; justify-content: center;
99
+ }
100
+ .chev-down { width: 20px; height: 20px; border: 3px solid #555; border-top: none; border-left: none; transform: rotate(45deg); }
101
+
102
+ /* Title & meta */
103
+ .title-block { padding: 18px 24px; }
104
+ .video-title { font-size: 44px; font-weight: 800; line-height: 1.2; }
105
+ .video-meta { margin-top: 12px; font-size: 30px; color: #616161; }
106
+
107
+ /* Channel row */
108
+ .channel-row {
109
+ display: flex; align-items: center; justify-content: space-between;
110
+ padding: 16px 24px;
111
+ }
112
+ .channel-left { display: flex; align-items: center; gap: 20px; }
113
+ .avatar {
114
+ width: 92px; height: 92px; border-radius: 46px; background: #E0E0E0; border: 1px solid #BDBDBD;
115
+ display: flex; align-items: center; justify-content: center; color: #757575; font-weight: 700;
116
+ }
117
+ .channel-info { line-height: 1.2; }
118
+ .channel-name { font-size: 36px; font-weight: 700; }
119
+ .channel-sub { font-size: 28px; color: #616161; margin-top: 4px; }
120
+ .subscribe-btn {
121
+ background: #0f0f0f; color: #ffffff; border-radius: 36px; padding: 18px 30px; font-size: 30px; font-weight: 700;
122
+ }
123
+
124
+ /* Action buttons */
125
+ .action-row {
126
+ padding: 10px 20px 20px;
127
+ display: flex; gap: 18px; flex-wrap: nowrap;
128
+ }
129
+ .action-btn {
130
+ display: flex; align-items: center; gap: 14px;
131
+ background: #f5f5f5; border: 1px solid #e0e0e0; border-radius: 36px;
132
+ padding: 16px 24px; font-size: 28px; color: #1f1f1f;
133
+ }
134
+ .action-icon { width: 28px; height: 28px; fill: #1f1f1f; }
135
+
136
+ /* Comments */
137
+ .comments-card {
138
+ margin: 16px 24px;
139
+ border: 1px solid #e6e6e6; border-radius: 20px;
140
+ padding: 20px;
141
+ }
142
+ .comments-header {
143
+ display: flex; align-items: center; justify-content: space-between;
144
+ font-size: 34px; font-weight: 700;
145
+ }
146
+ .comment-item { display: flex; align-items: center; gap: 18px; margin-top: 18px; }
147
+ .comment-avatar {
148
+ width: 64px; height: 64px; border-radius: 32px; background: #c8e6c9;
149
+ display: flex; align-items: center; justify-content: center; font-weight: 700; color: #2e7d32;
150
+ }
151
+ .comment-text { font-size: 30px; }
152
+ .arrow-down { width: 16px; height: 16px; border: 3px solid #555; border-top: none; border-left: none; transform: rotate(45deg); margin-left: auto; }
153
+
154
+ /* Large image/ad */
155
+ .large-img {
156
+ margin: 10px 24px 0;
157
+ width: calc(100% - 48px);
158
+ height: 980px;
159
+ background: #E0E0E0; border: 1px solid #BDBDBD;
160
+ display: flex; align-items: center; justify-content: center; color: #757575; font-size: 34px; border-radius: 20px;
161
+ }
162
+ </style>
163
+ </head>
164
+ <body>
165
+ <div id="render-target">
166
+
167
+ <!-- Top status bar -->
168
+ <div class="status-bar">
169
+ <div>11:07</div>
170
+ <div class="status-spacer"></div>
171
+ <div class="status-icons">
172
+ <span>🔔</span>
173
+ <span>📶</span>
174
+ <span>🔋</span>
175
+ <div class="status-dot"></div>
176
+ </div>
177
+ </div>
178
+
179
+ <!-- Video player -->
180
+ <div class="video">
181
+ <div class="video-placeholder">[IMG: Video Player]</div>
182
+
183
+ <div class="video-top-icons">
184
+ <div class="video-top-left">
185
+ <div class="overlay-icon">
186
+ <!-- Back arrow -->
187
+ <svg class="svg-icon" viewBox="0 0 24 24"><path d="M15 18l-6-6 6-6" stroke="#fff" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>
188
+ </div>
189
+ </div>
190
+ <div class="video-top-right">
191
+ <div class="overlay-icon">
192
+ <!-- Cast -->
193
+ <svg class="svg-icon" viewBox="0 0 24 24"><path d="M3 6h18v12H3zM3 18c2 0 4 2 4 4H3v-4zM3 14c4 0 8 4 8 8H9c0-3-3-6-6-6v-2z" fill="#fff"/></svg>
194
+ </div>
195
+ <div class="overlay-icon">
196
+ <!-- CC -->
197
+ <svg class="svg-icon" viewBox="0 0 24 24"><rect x="4" y="6" width="16" height="12" rx="2" fill="none" stroke="#fff" stroke-width="2"/><text x="7" y="15" font-size="8" fill="#fff">CC</text></svg>
198
+ </div>
199
+ <div class="overlay-icon">
200
+ <!-- Settings -->
201
+ <svg class="svg-icon" viewBox="0 0 24 24"><path d="M12 8a4 4 0 100 8 4 4 0 000-8zm9 4l-2 1 1 3-3 2-1-2-3 1-1 3-3-1 1-3-2-1-2 2-2-3 2-1-1-3 3-2 1 2 3-1 1-3 3 1-1 3 2 1 2-2 2 3z" fill="#fff"/></svg>
202
+ </div>
203
+ <div class="overlay-icon">
204
+ <!-- Close -->
205
+ <svg class="svg-icon" viewBox="0 0 24 24"><path d="M6 6l12 12M18 6L6 18" stroke="#fff" stroke-width="2" stroke-linecap="round"/></svg>
206
+ </div>
207
+ </div>
208
+ </div>
209
+
210
+ <div class="play-button">
211
+ <div class="play-triangle"></div>
212
+ </div>
213
+
214
+ <div class="video-bottom">
215
+ <div>0:05 / 3:20</div>
216
+ <div>
217
+ <!-- Fullscreen -->
218
+ <svg class="svg-icon" viewBox="0 0 24 24"><path d="M4 4h6v2H6v4H4V4zm10 0h6v6h-2V6h-4V4zm6 10v6h-6v-2h4v-4h2zM10 20H4v-6h2v4h4v2z" fill="#fff"/></svg>
219
+ </div>
220
+ </div>
221
+ <div class="progress-bar"></div>
222
+ <div class="progress-dot"></div>
223
+ </div>
224
+
225
+ <!-- Ad card -->
226
+ <div class="ad-card">
227
+ <div class="logo">[IMG: Myntra]</div>
228
+ <div class="ad-text">
229
+ <div class="ad-title">Myntra - Fashion Shopping App</div>
230
+ <div class="ad-meta">Ad · Installed</div>
231
+ </div>
232
+ <div class="pill-blue">Shop</div>
233
+ <div class="chevron-btn"><div class="chev-down"></div></div>
234
+ </div>
235
+
236
+ <!-- Title block -->
237
+ <div class="title-block">
238
+ <div class="video-title">Martin Garrix & MOTi - Virus (How About Now) [Official Music Video]</div>
239
+ <div class="video-meta">20M views · 8y ago · ...more</div>
240
+ </div>
241
+
242
+ <!-- Channel row -->
243
+ <div class="channel-row">
244
+ <div class="channel-left">
245
+ <div class="avatar">S</div>
246
+ <div class="channel-info">
247
+ <div class="channel-name">Spinnin' Records</div>
248
+ <div class="channel-sub">30.1M</div>
249
+ </div>
250
+ </div>
251
+ <div class="subscribe-btn">Subscribe</div>
252
+ </div>
253
+
254
+ <!-- Action buttons -->
255
+ <div class="action-row">
256
+ <div class="action-btn">
257
+ <svg class="action-icon" viewBox="0 0 24 24"><path d="M14 3l-1 6h7l-6 12-1-9H5l9-9z" fill="#1f1f1f"/></svg>
258
+ <span>201K</span>
259
+ </div>
260
+ <div class="action-btn">
261
+ <svg class="action-icon" viewBox="0 0 24 24"><path d="M10 21l1-6H4l6-12 1 9h8l-9 9z" fill="#1f1f1f"/></svg>
262
+ <span></span>
263
+ </div>
264
+ <div class="action-btn">
265
+ <svg class="action-icon" viewBox="0 0 24 24"><path d="M4 12l8-6v4h8v4h-8v4z" fill="#1f1f1f"/></svg>
266
+ <span>Share</span>
267
+ </div>
268
+ <div class="action-btn">
269
+ <svg class="action-icon" viewBox="0 0 24 24"><path d="M12 2l4 8-4 4-4-4 4-8zm0 12v8" stroke="#1f1f1f" stroke-width="2" fill="none" stroke-linecap="round"/></svg>
270
+ <span>Remix</span>
271
+ </div>
272
+ <div class="action-btn">
273
+ <svg class="action-icon" viewBox="0 0 24 24"><path d="M6 6h12v2H6zm0 6h12v2H6zm0 6h12v2H6z" fill="#1f1f1f"/></svg>
274
+ <span>Save</span>
275
+ </div>
276
+ <div class="action-btn">
277
+ <svg class="action-icon" viewBox="0 0 24 24"><circle cx="5" cy="12" r="2"/><circle cx="12" cy="12" r="2"/><circle cx="19" cy="12" r="2"/></svg>
278
+ <span></span>
279
+ </div>
280
+ </div>
281
+
282
+ <!-- Comments -->
283
+ <div class="comments-card">
284
+ <div class="comments-header">
285
+ <div>Comments <span style="color:#616161; font-weight:600;">4.7K</span></div>
286
+ <div class="arrow-down"></div>
287
+ </div>
288
+ <div class="comment-item">
289
+ <div class="comment-avatar">b</div>
290
+ <div class="comment-text">Corona Virus Played this song</div>
291
+ <div class="arrow-down"></div>
292
+ </div>
293
+ </div>
294
+
295
+ <!-- Large image/ad -->
296
+ <div class="large-img">[IMG: Mentos underwear ad]</div>
297
+
298
+ </div>
299
+ </body>
300
+ </html>
code/14492/14492_0.html ADDED
@@ -0,0 +1,282 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Product Detail - BMW M Motorsport Essentials Women's Fleece Pants</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; }
9
+ #render-target {
10
+ width: 1080px;
11
+ height: 2400px;
12
+ position: relative;
13
+ overflow: hidden;
14
+ background: #ffffff;
15
+ font-family: Arial, Helvetica, sans-serif;
16
+ color: #111;
17
+ }
18
+
19
+ /* Top system status bar */
20
+ .status-bar {
21
+ height: 100px;
22
+ padding: 0 40px;
23
+ display: flex;
24
+ align-items: center;
25
+ justify-content: space-between;
26
+ color: #323232;
27
+ font-size: 38px;
28
+ }
29
+ .status-left {
30
+ display: flex;
31
+ align-items: center;
32
+ gap: 26px;
33
+ }
34
+ .status-icons {
35
+ display: flex;
36
+ gap: 20px;
37
+ align-items: center;
38
+ }
39
+ .dot {
40
+ width: 16px; height: 16px; background: #555; border-radius: 50%;
41
+ }
42
+ .status-right {
43
+ display: flex; align-items: center; gap: 22px;
44
+ }
45
+ .wifi-icon, .battery-icon {
46
+ width: 42px; height: 42px;
47
+ }
48
+
49
+ /* Title overlay bar (share + close) */
50
+ .title-overlay {
51
+ height: 120px;
52
+ background: #f0f0f0;
53
+ display: flex;
54
+ align-items: center;
55
+ padding: 0 40px;
56
+ border-bottom: 1px solid #e1e1e1;
57
+ }
58
+ .title-overlay .title {
59
+ flex: 1;
60
+ text-align: center;
61
+ font-size: 38px;
62
+ color: #444;
63
+ white-space: nowrap;
64
+ overflow: hidden;
65
+ text-overflow: ellipsis;
66
+ }
67
+ .overlay-actions {
68
+ display: flex;
69
+ align-items: center;
70
+ gap: 28px;
71
+ }
72
+ .icon-btn {
73
+ width: 52px; height: 52px; display: inline-flex; align-items: center; justify-content: center;
74
+ }
75
+
76
+ /* Main content */
77
+ .content {
78
+ padding: 0 64px;
79
+ }
80
+
81
+ /* Color section */
82
+ .color-row {
83
+ margin-top: 60px;
84
+ }
85
+ .color-row .label {
86
+ font-size: 40px;
87
+ }
88
+ .color-row .label b {
89
+ font-weight: 800;
90
+ }
91
+ .thumb {
92
+ width: 220px; height: 260px; margin-top: 24px;
93
+ background: #E0E0E0;
94
+ border: 3px solid #c9b08c; /* warm tan border */
95
+ display: flex; align-items: center; justify-content: center;
96
+ color: #757575; font-size: 30px; text-align: center;
97
+ }
98
+
99
+ /* Product title + favorite */
100
+ .title-price {
101
+ position: relative;
102
+ margin-top: 80px;
103
+ padding-right: 120px; /* room for heart */
104
+ }
105
+ .product-title {
106
+ font-size: 64px; font-weight: 800; line-height: 78px; letter-spacing: 0.5px;
107
+ }
108
+ .fav {
109
+ position: absolute; right: 0; top: 10px; width: 64px; height: 64px;
110
+ }
111
+ .price {
112
+ margin-top: 36px; font-size: 56px; font-weight: 700;
113
+ }
114
+
115
+ /* Size selector & Add to cart */
116
+ .selector {
117
+ margin-top: 120px;
118
+ }
119
+ .size-select {
120
+ border: 4px solid #222;
121
+ height: 120px;
122
+ border-radius: 4px;
123
+ display: flex; align-items: center; justify-content: center;
124
+ font-size: 42px; font-weight: 700; letter-spacing: 2px;
125
+ }
126
+ .size-select .chev {
127
+ width: 38px; height: 38px; margin-left: 18px;
128
+ }
129
+ .cta {
130
+ margin-top: 34px;
131
+ height: 120px; background: #111; color: #fff; border-radius: 4px;
132
+ display: flex; align-items: center; justify-content: center;
133
+ font-size: 42px; font-weight: 800; letter-spacing: 3px;
134
+ }
135
+
136
+ /* Product story section */
137
+ .divider {
138
+ height: 2px; background: #eaeaea; margin: 80px -64px 0 -64px;
139
+ }
140
+ .section {
141
+ margin-top: 60px;
142
+ }
143
+ .section h3 {
144
+ margin: 0 0 24px 0; font-size: 46px; font-weight: 800; letter-spacing: 1px;
145
+ }
146
+ .section p {
147
+ margin: 0; font-size: 34px; line-height: 52px; color: #666;
148
+ }
149
+ .more-info {
150
+ margin-top: 36px; display: flex; align-items: center; gap: 16px; font-size: 36px; font-weight: 800;
151
+ }
152
+ .more-info .arrow {
153
+ width: 32px; height: 32px;
154
+ }
155
+
156
+ /* Reviews footer area */
157
+ .reviews {
158
+ margin-top: 90px; padding-bottom: 140px;
159
+ display: flex; align-items: center; justify-content: space-between;
160
+ }
161
+ .reviews h3 {
162
+ margin: 0; font-size: 46px; font-weight: 800;
163
+ }
164
+ .minus {
165
+ width: 60px; height: 8px; background: #222; border-radius: 4px;
166
+ }
167
+
168
+ /* Bottom gesture bar placeholder */
169
+ .gesture {
170
+ position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
171
+ width: 320px; height: 10px; background: #cfcfcf; border-radius: 6px;
172
+ }
173
+ </style>
174
+ </head>
175
+ <body>
176
+ <div id="render-target">
177
+ <!-- Status bar -->
178
+ <div class="status-bar">
179
+ <div class="status-left">
180
+ <div>10:24</div>
181
+ <div class="status-icons">
182
+ <div class="dot"></div>
183
+ <div class="dot"></div>
184
+ <div class="dot"></div>
185
+ <div class="dot" style="opacity:.6"></div>
186
+ </div>
187
+ </div>
188
+ <div class="status-right">
189
+ <!-- Simplified WiFi -->
190
+ <svg class="wifi-icon" viewBox="0 0 24 24">
191
+ <path d="M12 20a2 2 0 1 0 .001-4.001A2 2 0 0 0 12 20z" fill="#444"/>
192
+ <path d="M4 10c4.4-4.4 11.6-4.4 16 0" stroke="#444" stroke-width="2" fill="none" stroke-linecap="round"/>
193
+ <path d="M7 13c2.9-2.9 7.1-2.9 10 0" stroke="#444" stroke-width="2" fill="none" stroke-linecap="round"/>
194
+ </svg>
195
+ <!-- Simplified Battery -->
196
+ <svg class="battery-icon" viewBox="0 0 30 18">
197
+ <rect x="1" y="3" width="24" height="12" rx="2" ry="2" stroke="#444" fill="none" stroke-width="2"/>
198
+ <rect x="3" y="5" width="18" height="8" fill="#444"/>
199
+ <rect x="25" y="6" width="4" height="6" fill="#444"/>
200
+ </svg>
201
+ </div>
202
+ </div>
203
+
204
+ <!-- Title overlay bar -->
205
+ <div class="title-overlay">
206
+ <div class="title">BMW M Motorsport Esse...</div>
207
+ <div class="overlay-actions">
208
+ <!-- Share icon -->
209
+ <div class="icon-btn">
210
+ <svg width="40" height="40" viewBox="0 0 24 24">
211
+ <circle cx="5" cy="12" r="2.5" fill="#555"/>
212
+ <circle cx="19" cy="5" r="2.5" fill="#555"/>
213
+ <circle cx="19" cy="19" r="2.5" fill="#555"/>
214
+ <path d="M7 12l9-6M7 12l9 6" stroke="#555" stroke-width="2" fill="none" stroke-linecap="round"/>
215
+ </svg>
216
+ </div>
217
+ <!-- Close icon -->
218
+ <div class="icon-btn">
219
+ <svg width="44" height="44" viewBox="0 0 24 24">
220
+ <path d="M5 5l14 14M19 5L5 19" stroke="#555" stroke-width="2" stroke-linecap="round"/>
221
+ </svg>
222
+ </div>
223
+ </div>
224
+ </div>
225
+
226
+ <div class="content">
227
+
228
+ <!-- Color section with small thumbnail -->
229
+ <div class="color-row">
230
+ <div class="label">Color: <b>PUMA Black</b></div>
231
+ <div class="thumb">[IMG: Black Pants Thumbnail]</div>
232
+ </div>
233
+
234
+ <!-- Product title and favorite -->
235
+ <div class="title-price">
236
+ <div class="product-title">
237
+ BMW M Motorsport<br>
238
+ Essentials Women's Fleece<br>
239
+ Pants
240
+ </div>
241
+ <svg class="fav" viewBox="0 0 24 24">
242
+ <path d="M12 21s-7-4.7-9.5-8.3C.3 10 .8 7 3.2 5.7c2.2-1.2 4.6-.3 5.8 1.3 1.2-1.6 3.6-2.5 5.8-1.3 2.4 1.3 2.9 4.3.7 7-2.5 3.6-9.5 8.6-9.5 8.6z" fill="none" stroke="#111" stroke-width="2" stroke-linejoin="round"/>
243
+ </svg>
244
+ <div class="price">$55.00</div>
245
+ </div>
246
+
247
+ <!-- Size selector and Add to cart -->
248
+ <div class="selector">
249
+ <div class="size-select">
250
+ SIZE S
251
+ <svg class="chev" viewBox="0 0 24 24">
252
+ <path d="M5 9l7 7 7-7" fill="none" stroke="#222" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
253
+ </svg>
254
+ </div>
255
+ <div class="cta">ADD TO CART</div>
256
+ </div>
257
+
258
+ <!-- Product story -->
259
+ <div class="divider"></div>
260
+ <div class="section">
261
+ <h3>PRODUCT STORY</h3>
262
+ <p>BMW M Motorsport has been tearing up the track since 1978, and this collection is here to celebrate that powerful legacy with high-energy fashion that…</p>
263
+ <div class="more-info">
264
+ <span>MORE INFORMATION</span>
265
+ <svg class="arrow" viewBox="0 0 24 24">
266
+ <path d="M9 6l6 6-6 6" fill="none" stroke="#111" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
267
+ </svg>
268
+ </div>
269
+ </div>
270
+
271
+ <!-- Reviews header -->
272
+ <div class="reviews">
273
+ <h3>REVIEWS</h3>
274
+ <div class="minus"></div>
275
+ </div>
276
+ </div>
277
+
278
+ <!-- Bottom gesture bar placeholder -->
279
+ <div class="gesture"></div>
280
+ </div>
281
+ </body>
282
+ </html>
code/14492/14492_1.html ADDED
@@ -0,0 +1,270 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Pants Listing</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
9
+ #render-target {
10
+ width: 1080px; height: 2400px; position: relative; overflow: hidden;
11
+ background: #ffffff; color: #111;
12
+ }
13
+
14
+ /* Status bar */
15
+ .statusbar {
16
+ height: 90px;
17
+ display: flex; align-items: center; justify-content: space-between;
18
+ padding: 0 36px;
19
+ color: #6b6b6b; font-size: 34px;
20
+ }
21
+ .status-icons { display: flex; align-items: center; gap: 22px; }
22
+ .dot { width: 12px; height: 12px; background: #999; border-radius: 50%; display: inline-block; }
23
+ .icon-wifi, .icon-battery {
24
+ width: 36px; height: 24px; display: inline-block; position: relative;
25
+ }
26
+ .icon-wifi::before {
27
+ content: ""; position: absolute; left: 2px; right: 2px; top: 2px; bottom: 2px;
28
+ border-top: 3px solid #777; border-left: 3px solid transparent; border-right: 3px solid transparent;
29
+ border-radius: 50%;
30
+ }
31
+ .icon-battery { border: 2px solid #777; border-radius: 4px; }
32
+ .icon-battery::after {
33
+ content: ""; position: absolute; right: -6px; top: 6px; width: 6px; height: 12px; background: #777; border-radius: 2px;
34
+ }
35
+
36
+ /* Header */
37
+ .header {
38
+ height: 140px; display: flex; align-items: center; justify-content: space-between;
39
+ padding: 0 28px; border-bottom: 1px solid #eee; background: #fff;
40
+ }
41
+ .header-left, .header-right { display: flex; align-items: center; gap: 24px; }
42
+ .back-btn { width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; }
43
+ .header-title { font-weight: 700; font-size: 40px; letter-spacing: 0.5px; }
44
+ .icon-btn { width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; position: relative; }
45
+ .badge {
46
+ position: absolute; top: 0px; right: 2px; background: #111; color: #fff; font-size: 24px; line-height: 24px;
47
+ width: 36px; height: 36px; border-radius: 18px; display: flex; align-items: center; justify-content: center;
48
+ }
49
+
50
+ /* Category chips */
51
+ .chips {
52
+ display: flex; gap: 20px; padding: 18px 28px 26px 28px; background: #fff;
53
+ border-bottom: 1px solid #f0f0f0;
54
+ }
55
+ .chip { padding: 20px 28px; border: 2px solid #d9d9d9; border-radius: 40px; font-size: 28px; color: #333; white-space: nowrap; }
56
+ .chip.active { border-color: #111; font-weight: 700; }
57
+
58
+ /* Product grid */
59
+ .grid {
60
+ display: grid; grid-template-columns: 1fr 1fr; gap: 36px;
61
+ padding: 28px;
62
+ }
63
+ .product-card { }
64
+ .product-image {
65
+ position: relative; width: 100%; height: 520px;
66
+ background: #E0E0E0; border: 1px solid #BDBDBD;
67
+ display: flex; align-items: center; justify-content: center; color: #757575; font-size: 28px;
68
+ }
69
+ .heart {
70
+ position: absolute; right: 18px; top: 18px; width: 54px; height: 54px; display: flex; align-items: center; justify-content: center;
71
+ background: rgba(255,255,255,0.9); border-radius: 27px; border: 1px solid #ddd;
72
+ }
73
+ .new-badge {
74
+ position: absolute; left: 18px; top: 18px; background: #111; color: #fff; font-size: 26px; font-weight: 700;
75
+ padding: 10px 16px; border-radius: 6px;
76
+ }
77
+ .colors { margin-top: 22px; color: #666; font-size: 28px; display: flex; align-items: center; gap: 12px; }
78
+ .title {
79
+ margin-top: 16px; font-size: 34px; font-weight: 700; color: #111;
80
+ display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
81
+ }
82
+ .price { margin-top: 16px; font-size: 34px; font-weight: 700; color: #111; }
83
+ .price.sale { color: #d64a38; }
84
+ .old-price { margin-top: 6px; font-size: 30px; color: #9b9b9b; text-decoration: line-through; }
85
+
86
+ /* Bottom nav */
87
+ .bottom-nav {
88
+ position: absolute; left: 0; right: 0; bottom: 0;
89
+ height: 220px; background: #fff; border-top: 1px solid #eaeaea;
90
+ display: flex; align-items: center; justify-content: space-around;
91
+ padding-bottom: 40px;
92
+ }
93
+ .nav-item { display: flex; flex-direction: column; align-items: center; gap: 12px; position: relative; }
94
+ .nav-label { font-size: 26px; color: #757575; }
95
+ .nav-item.active .nav-label { color: #111; font-weight: 700; }
96
+ .nav-badge {
97
+ position: absolute; top: -6px; right: 30px; background: #c7b58a; color: #fff; font-size: 22px; line-height: 22px;
98
+ width: 40px; height: 40px; border-radius: 20px; display: flex; align-items: center; justify-content: center;
99
+ border: 2px solid #fff;
100
+ }
101
+ .home-indicator {
102
+ position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
103
+ width: 320px; height: 10px; background: #111; border-radius: 6px; opacity: 0.85;
104
+ }
105
+ </style>
106
+ </head>
107
+ <body>
108
+ <div id="render-target">
109
+
110
+ <!-- Status bar -->
111
+ <div class="statusbar">
112
+ <div>10:25</div>
113
+ <div class="status-icons">
114
+ <span class="dot"></span>
115
+ <span class="dot"></span>
116
+ <span class="dot"></span>
117
+ <span class="dot"></span>
118
+ <span class="dot"></span>
119
+ <div class="icon-wifi"></div>
120
+ <div class="icon-battery"></div>
121
+ </div>
122
+ </div>
123
+
124
+ <!-- Header -->
125
+ <div class="header">
126
+ <div class="header-left">
127
+ <div class="back-btn">
128
+ <svg width="42" height="42" viewBox="0 0 24 24">
129
+ <path d="M15 4 L7 12 L15 20" stroke="#111" stroke-width="2.5" fill="none" stroke-linecap="round" stroke-linejoin="round"></path>
130
+ </svg>
131
+ </div>
132
+ </div>
133
+ <div class="header-title">PANTS (4)</div>
134
+ <div class="header-right">
135
+ <div class="icon-btn">
136
+ <svg width="32" height="32" viewBox="0 0 24 24">
137
+ <path d="M4 6h16M4 12h10M4 18h7" stroke="#111" stroke-width="2" fill="none" stroke-linecap="round"></path>
138
+ </svg>
139
+ <div class="badge">1</div>
140
+ </div>
141
+ <div class="icon-btn">
142
+ <svg width="34" height="34" viewBox="0 0 24 24">
143
+ <circle cx="11" cy="11" r="7" stroke="#111" stroke-width="2" fill="none"></circle>
144
+ <path d="M20 20 L16.5 16.5" stroke="#111" stroke-width="2" fill="none" stroke-linecap="round"></path>
145
+ </svg>
146
+ </div>
147
+ </div>
148
+ </div>
149
+
150
+ <!-- Chips -->
151
+ <div class="chips">
152
+ <div class="chip active">MOTORSPORT</div>
153
+ <div class="chip">SOCCER</div>
154
+ <div class="chip">TRAINING</div>
155
+ </div>
156
+
157
+ <!-- Grid -->
158
+ <div class="grid">
159
+ <!-- Product 1 -->
160
+ <div class="product-card">
161
+ <div class="product-image">
162
+ <div class="new-badge">NEW</div>
163
+ <div class="heart">
164
+ <svg width="26" height="26" viewBox="0 0 24 24">
165
+ <path d="M12 21s-6-4.35-6-9a6 6 0 0112 0c0 4.65-6 9-6 9z" stroke="#111" stroke-width="2" fill="none"></path>
166
+ </svg>
167
+ </div>
168
+ [IMG: Blue Women's Motorsport Pants]
169
+ </div>
170
+ <div class="colors">2 Colors <span style="font-size:26px;">▼</span></div>
171
+ <div class="title">BMW M Motorsport MT7 Women's Motors...</div>
172
+ <div class="price">$90.00</div>
173
+ </div>
174
+
175
+ <!-- Product 2 -->
176
+ <div class="product-card">
177
+ <div class="product-image">
178
+ <div class="new-badge">NEW</div>
179
+ <div class="heart">
180
+ <svg width="26" height="26" viewBox="0 0 24 24">
181
+ <path d="M12 21s-6-4.35-6-9a6 6 0 0112 0c0 4.65-6 9-6 9z" stroke="#111" stroke-width="2" fill="none"></path>
182
+ </svg>
183
+ </div>
184
+ [IMG: Black Women's Motorsport Pants with stripe]
185
+ </div>
186
+ <div class="colors">2 Colors <span style="font-size:26px;">▼</span></div>
187
+ <div class="title">BMW M Motorsport MT7 Women's Motors...</div>
188
+ <div class="price">$90.00</div>
189
+ </div>
190
+
191
+ <!-- Product 3 -->
192
+ <div class="product-card">
193
+ <div class="product-image">
194
+ <div class="new-badge">NEW</div>
195
+ <div class="heart">
196
+ <svg width="26" height="26" viewBox="0 0 24 24">
197
+ <path d="M12 21s-6-4.35-6-9a6 6 0 0112 0c0 4.65-6 9-6 9z" stroke="#111" stroke-width="2" fill="none"></path>
198
+ </svg>
199
+ </div>
200
+ [IMG: Black Women's Essentials Joggers]
201
+ </div>
202
+ <div class="colors">1 Color</div>
203
+ <div class="title">BMW M Motorsport Essentials Women's Fl...</div>
204
+ <div class="price">$55.00</div>
205
+ </div>
206
+
207
+ <!-- Product 4 -->
208
+ <div class="product-card">
209
+ <div class="product-image">
210
+ <div class="heart">
211
+ <svg width="26" height="26" viewBox="0 0 24 24">
212
+ <path d="M12 21s-6-4.35-6-9a6 6 0 0112 0c0 4.65-6 9-6 9z" stroke="#111" stroke-width="2" fill="none"></path>
213
+ </svg>
214
+ </div>
215
+ [IMG: Black Women's Sweatpants Close-up]
216
+ </div>
217
+ <div class="colors">1 Color</div>
218
+ <div class="title">BMW M Motorsport Women's Sweatpants</div>
219
+ <div class="price sale">$51.99</div>
220
+ <div class="old-price">$80.00</div>
221
+ </div>
222
+ </div>
223
+
224
+ <!-- Bottom navigation -->
225
+ <div class="bottom-nav">
226
+ <div class="nav-item">
227
+ <svg width="44" height="44" viewBox="0 0 24 24">
228
+ <path d="M3 11 L12 3 L21 11" stroke="#777" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"></path>
229
+ <rect x="6" y="11" width="12" height="9" stroke="#777" stroke-width="2" fill="none" rx="1"></rect>
230
+ </svg>
231
+ <div class="nav-label">HOME</div>
232
+ </div>
233
+ <div class="nav-item">
234
+ <svg width="44" height="44" viewBox="0 0 24 24">
235
+ <rect x="3" y="5" width="18" height="16" stroke="#777" stroke-width="2" fill="none" rx="2"></rect>
236
+ <path d="M8 3v4M16 3v4" stroke="#777" stroke-width="2"></path>
237
+ <path d="M3 9h18" stroke="#777" stroke-width="2"></path>
238
+ </svg>
239
+ <div class="nav-label">DROPS</div>
240
+ </div>
241
+ <div class="nav-item active">
242
+ <svg width="44" height="44" viewBox="0 0 24 24">
243
+ <circle cx="11" cy="11" r="7" stroke="#111" stroke-width="2" fill="none"></circle>
244
+ <path d="M20 20 L16.5 16.5" stroke="#111" stroke-width="2" fill="none" stroke-linecap="round"></path>
245
+ </svg>
246
+ <div class="nav-label">SHOP</div>
247
+ </div>
248
+ <div class="nav-item">
249
+ <div class="nav-badge">13</div>
250
+ <svg width="44" height="44" viewBox="0 0 24 24">
251
+ <path d="M4 6h2l2 10h10l2-8H7" stroke="#777" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"></path>
252
+ <circle cx="10" cy="20" r="2" fill="#777"></circle>
253
+ <circle cx="18" cy="20" r="2" fill="#777"></circle>
254
+ </svg>
255
+ <div class="nav-label">CART</div>
256
+ </div>
257
+ <div class="nav-item">
258
+ <div class="nav-badge">1</div>
259
+ <svg width="44" height="44" viewBox="0 0 24 24">
260
+ <circle cx="12" cy="8" r="4" stroke="#777" stroke-width="2" fill="none"></circle>
261
+ <path d="M4 21c0-4 4-6 8-6s8 2 8 6" stroke="#777" stroke-width="2" fill="none"></path>
262
+ </svg>
263
+ <div class="nav-label">ACCOUNT</div>
264
+ </div>
265
+ <div class="home-indicator"></div>
266
+ </div>
267
+
268
+ </div>
269
+ </body>
270
+ </html>
code/14492/14492_10.html ADDED
@@ -0,0 +1,294 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Choose Size - Product Sheet</title>
7
+ <style>
8
+ body {
9
+ margin: 0;
10
+ padding: 0;
11
+ background: transparent;
12
+ font-family: Arial, Helvetica, sans-serif;
13
+ }
14
+ #render-target {
15
+ width: 1080px;
16
+ height: 2400px;
17
+ position: relative;
18
+ overflow: hidden;
19
+ background: #ffffff;
20
+ }
21
+
22
+ /* Top status bar */
23
+ .status-bar {
24
+ position: absolute;
25
+ top: 0;
26
+ left: 0;
27
+ width: 1080px;
28
+ height: 120px;
29
+ background: #121212;
30
+ color: #E7E7E7;
31
+ display: flex;
32
+ align-items: center;
33
+ padding: 0 40px;
34
+ font-size: 40px;
35
+ letter-spacing: 0.5px;
36
+ }
37
+ .status-icons {
38
+ margin-left: auto;
39
+ display: flex;
40
+ align-items: center;
41
+ gap: 28px;
42
+ color: #d0d0d0;
43
+ font-size: 38px;
44
+ }
45
+
46
+ /* Product image area */
47
+ .product-image {
48
+ position: absolute;
49
+ top: 120px;
50
+ left: 0;
51
+ width: 1080px;
52
+ height: 880px;
53
+ background: #E0E0E0;
54
+ border: 1px solid #BDBDBD;
55
+ display: flex;
56
+ justify-content: center;
57
+ align-items: center;
58
+ color: #757575;
59
+ font-size: 38px;
60
+ text-transform: none;
61
+ }
62
+ .badge-new {
63
+ position: absolute;
64
+ top: 180px;
65
+ left: 40px;
66
+ background: #121212;
67
+ color: #ffffff;
68
+ padding: 20px 26px;
69
+ font-size: 40px;
70
+ border-radius: 8px;
71
+ letter-spacing: 1px;
72
+ font-weight: bold;
73
+ }
74
+
75
+ /* Floating close on image */
76
+ .image-close {
77
+ position: absolute;
78
+ top: 340px;
79
+ right: 40px;
80
+ width: 150px;
81
+ height: 150px;
82
+ background: rgba(235,235,235,0.95);
83
+ border-radius: 50%;
84
+ box-shadow: 0 2px 10px rgba(0,0,0,0.15);
85
+ display: flex;
86
+ align-items: center;
87
+ justify-content: center;
88
+ }
89
+ .image-close svg {
90
+ width: 70px;
91
+ height: 70px;
92
+ stroke: #1d1d1d;
93
+ stroke-width: 10;
94
+ stroke-linecap: round;
95
+ }
96
+
97
+ /* Bottom sheet */
98
+ .sheet {
99
+ position: absolute;
100
+ left: 0;
101
+ top: 860px;
102
+ width: 1080px;
103
+ height: 1540px;
104
+ background: #ffffff;
105
+ border-top-left-radius: 26px;
106
+ border-top-right-radius: 26px;
107
+ box-shadow: 0 -10px 30px rgba(0,0,0,0.15);
108
+ }
109
+ .drag-handle {
110
+ width: 160px;
111
+ height: 10px;
112
+ background: #C9CDD1;
113
+ border-radius: 6px;
114
+ margin: 22px auto 10px auto;
115
+ }
116
+
117
+ .sheet-header {
118
+ position: relative;
119
+ padding: 40px 48px 12px 48px;
120
+ }
121
+ .sheet-title {
122
+ font-size: 70px;
123
+ font-weight: 800;
124
+ color: #222;
125
+ letter-spacing: 1px;
126
+ }
127
+ .sheet-close {
128
+ position: absolute;
129
+ top: 40px;
130
+ right: 40px;
131
+ width: 72px;
132
+ height: 72px;
133
+ display: flex;
134
+ align-items: center;
135
+ justify-content: center;
136
+ }
137
+ .sheet-close svg {
138
+ width: 64px;
139
+ height: 64px;
140
+ stroke: #222;
141
+ stroke-width: 10;
142
+ stroke-linecap: round;
143
+ }
144
+
145
+ /* Size list */
146
+ .sizes {
147
+ margin-top: 20px;
148
+ }
149
+ .size-item {
150
+ position: relative;
151
+ padding: 48px 48px;
152
+ font-size: 58px;
153
+ color: #222;
154
+ border-top: 1px solid #ECEFF1;
155
+ }
156
+ .size-item:first-child {
157
+ border-top: none;
158
+ }
159
+ .size-item .check {
160
+ position: absolute;
161
+ right: 48px;
162
+ top: 50%;
163
+ transform: translateY(-50%);
164
+ }
165
+ .size-item .check svg {
166
+ width: 56px;
167
+ height: 56px;
168
+ stroke: #222;
169
+ stroke-width: 10;
170
+ fill: none;
171
+ }
172
+ .size-item.disabled {
173
+ color: #A7AEB4;
174
+ }
175
+ .size-item .stock-note {
176
+ margin-left: 40px;
177
+ color: #A7AEB4;
178
+ font-size: 50px;
179
+ }
180
+
181
+ /* Footer actions inside sheet */
182
+ .sheet-footer {
183
+ padding: 40px 48px 48px 48px;
184
+ }
185
+ .size-guide {
186
+ display: flex;
187
+ align-items: center;
188
+ justify-content: flex-end;
189
+ gap: 16px;
190
+ padding: 20px 0 40px 0;
191
+ font-size: 46px;
192
+ font-weight: 700;
193
+ color: #222;
194
+ letter-spacing: 1px;
195
+ }
196
+ .size-guide svg {
197
+ width: 38px;
198
+ height: 38px;
199
+ stroke: #222;
200
+ stroke-width: 8;
201
+ fill: none;
202
+ }
203
+ .add-to-cart {
204
+ width: 100%;
205
+ background: #111111;
206
+ color: #ffffff;
207
+ height: 150px;
208
+ border: none;
209
+ border-radius: 6px;
210
+ font-size: 48px;
211
+ font-weight: 800;
212
+ letter-spacing: 2px;
213
+ }
214
+
215
+ /* Home indicator */
216
+ .home-indicator {
217
+ position: absolute;
218
+ bottom: 22px;
219
+ left: 50%;
220
+ transform: translateX(-50%);
221
+ width: 280px;
222
+ height: 12px;
223
+ background: #C7C8CA;
224
+ border-radius: 8px;
225
+ }
226
+ </style>
227
+ </head>
228
+ <body>
229
+ <div id="render-target">
230
+ <div class="status-bar">
231
+ <div>10:31</div>
232
+ <div class="status-icons">
233
+ <span>●</span>
234
+ <span>●</span>
235
+ <span>●</span>
236
+ <span>●</span>
237
+ <span>▴</span>
238
+ <span>🔋</span>
239
+ </div>
240
+ </div>
241
+
242
+ <div class="product-image">[IMG: Athletic leggings on model]</div>
243
+ <div class="badge-new">NEW</div>
244
+
245
+ <div class="image-close" aria-label="Close">
246
+ <svg viewBox="0 0 24 24">
247
+ <path d="M3 3 L21 21 M21 3 L3 21"></path>
248
+ </svg>
249
+ </div>
250
+
251
+ <div class="sheet">
252
+ <div class="drag-handle"></div>
253
+ <div class="sheet-header">
254
+ <div class="sheet-title">CHOOSE YOUR SIZE</div>
255
+ <div class="sheet-close" aria-label="Close">
256
+ <svg viewBox="0 0 24 24">
257
+ <path d="M3 3 L21 21 M21 3 L3 21"></path>
258
+ </svg>
259
+ </div>
260
+ </div>
261
+
262
+ <div class="sizes">
263
+ <div class="size-item">XS</div>
264
+ <div class="size-item">
265
+ S
266
+ <span class="check" aria-hidden="true">
267
+ <svg viewBox="0 0 24 24">
268
+ <path d="M5 12 L10 17 L19 7"></path>
269
+ </svg>
270
+ </span>
271
+ </div>
272
+ <div class="size-item">M</div>
273
+ <div class="size-item">L</div>
274
+ <div class="size-item">XL</div>
275
+ <div class="size-item disabled">
276
+ XXL <span class="stock-note">Out of Stock</span>
277
+ </div>
278
+ </div>
279
+
280
+ <div class="sheet-footer">
281
+ <div class="size-guide">
282
+ <span>SIZE GUIDE</span>
283
+ <svg viewBox="0 0 24 24">
284
+ <path d="M8 4 L16 12 L8 20"></path>
285
+ </svg>
286
+ </div>
287
+ <button class="add-to-cart">ADD TO CART</button>
288
+ </div>
289
+ </div>
290
+
291
+ <div class="home-indicator"></div>
292
+ </div>
293
+ </body>
294
+ </html>
code/14492/14492_11.html ADDED
@@ -0,0 +1,291 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Product Detail Mock</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
9
+ #render-target {
10
+ position: relative;
11
+ width: 1080px;
12
+ height: 2400px;
13
+ overflow: hidden;
14
+ background: #ffffff;
15
+ color: #222;
16
+ }
17
+
18
+ /* Status bar */
19
+ .status-bar {
20
+ height: 130px;
21
+ background: #fff;
22
+ padding: 0 40px;
23
+ display: flex;
24
+ align-items: center;
25
+ justify-content: space-between;
26
+ box-sizing: border-box;
27
+ }
28
+ .status-left {
29
+ font-size: 40px;
30
+ font-weight: 600;
31
+ color: #222;
32
+ }
33
+ .status-center {
34
+ display: flex;
35
+ gap: 28px;
36
+ align-items: center;
37
+ }
38
+ .dot {
39
+ width: 22px; height: 22px; background: #9E9E9E; border-radius: 50%;
40
+ display: inline-block;
41
+ }
42
+ .status-right {
43
+ display: flex;
44
+ align-items: center;
45
+ gap: 28px;
46
+ }
47
+ .icon {
48
+ width: 40px; height: 40px;
49
+ display: inline-flex; align-items: center; justify-content: center;
50
+ }
51
+
52
+ /* Hero image area */
53
+ .hero {
54
+ position: relative;
55
+ height: 950px;
56
+ background: #E0E0E0;
57
+ border-top: 1px solid #e6e6e6;
58
+ border-bottom: 1px solid #e6e6e6;
59
+ display: flex;
60
+ align-items: center;
61
+ justify-content: center;
62
+ box-sizing: border-box;
63
+ }
64
+ .hero .img-label {
65
+ color: #757575;
66
+ font-size: 36px;
67
+ }
68
+
69
+ /* Overlays on hero */
70
+ .badge-new {
71
+ position: absolute;
72
+ left: 40px;
73
+ top: 160px;
74
+ background: #111;
75
+ color: #fff;
76
+ font-weight: 700;
77
+ font-size: 36px;
78
+ padding: 18px 28px;
79
+ border-radius: 6px;
80
+ letter-spacing: 0.5px;
81
+ }
82
+ .close-wrap {
83
+ position: absolute;
84
+ right: 40px;
85
+ top: 145px;
86
+ width: 130px;
87
+ height: 130px;
88
+ background: #fff;
89
+ border-radius: 50%;
90
+ display: flex; align-items: center; justify-content: center;
91
+ box-shadow: 0 2px 6px rgba(0,0,0,0.08);
92
+ }
93
+ .image-count {
94
+ position: absolute;
95
+ left: 40px;
96
+ bottom: 30px;
97
+ background: #fff;
98
+ color: #111;
99
+ font-weight: 700;
100
+ font-size: 38px;
101
+ padding: 10px 26px;
102
+ border-radius: 40px;
103
+ box-shadow: 0 2px 6px rgba(0,0,0,0.08);
104
+ }
105
+
106
+ /* Model info strip */
107
+ .model-info {
108
+ height: 120px;
109
+ background: #F2F2F2;
110
+ border-top: 1px solid #dcdcdc;
111
+ border-bottom: 1px solid #dcdcdc;
112
+ display: flex; align-items: center;
113
+ padding: 0 40px;
114
+ gap: 22px;
115
+ color: #6f6f6f;
116
+ font-size: 36px;
117
+ }
118
+
119
+ /* Content */
120
+ .content {
121
+ padding: 36px 40px 0 40px;
122
+ }
123
+ .color-line {
124
+ font-size: 40px;
125
+ margin-top: 18px;
126
+ margin-bottom: 26px;
127
+ }
128
+ .color-line b {
129
+ font-weight: 800;
130
+ }
131
+
132
+ .thumbs {
133
+ display: flex;
134
+ gap: 30px;
135
+ margin-bottom: 40px;
136
+ }
137
+ .thumb {
138
+ width: 210px; height: 210px;
139
+ background: #E0E0E0;
140
+ border: 1px solid #BDBDBD;
141
+ display: flex; align-items: center; justify-content: center;
142
+ color: #757575; font-size: 26px; text-align: center;
143
+ }
144
+ .thumb.selected {
145
+ border: 6px solid #C7A468; /* gold-like border */
146
+ box-sizing: border-box;
147
+ }
148
+
149
+ .title-row {
150
+ position: relative;
151
+ padding-right: 120px;
152
+ }
153
+ .product-title {
154
+ font-size: 64px;
155
+ line-height: 1.1;
156
+ font-weight: 800;
157
+ margin: 18px 0 16px 0;
158
+ color: #1a1a1a;
159
+ }
160
+ .heart {
161
+ position: absolute;
162
+ right: 0;
163
+ top: 10px;
164
+ width: 64px;
165
+ height: 64px;
166
+ }
167
+ .price {
168
+ font-weight: 800;
169
+ font-size: 56px;
170
+ margin: 10px 0 30px 0;
171
+ }
172
+
173
+ .size-picker {
174
+ margin: 30px 0 0 0;
175
+ border: 4px solid #CFCFCF;
176
+ height: 160px;
177
+ display: flex; align-items: center; justify-content: center;
178
+ font-size: 42px; font-weight: 700;
179
+ color: #6b6b6b;
180
+ letter-spacing: 1px;
181
+ }
182
+ .caret {
183
+ margin-left: 18px;
184
+ }
185
+
186
+ /* Bottom gesture bar */
187
+ .bottom-safe {
188
+ position: absolute;
189
+ left: 0; right: 0; bottom: 0;
190
+ height: 120px;
191
+ background: #000;
192
+ display: flex; align-items: center; justify-content: center;
193
+ }
194
+ .home-pill {
195
+ width: 240px; height: 10px; background: #fff; border-radius: 10px;
196
+ opacity: 0.9;
197
+ }
198
+ </style>
199
+ </head>
200
+ <body>
201
+ <div id="render-target">
202
+ <!-- Top status bar -->
203
+ <div class="status-bar">
204
+ <div class="status-left">10:31</div>
205
+ <div class="status-center">
206
+ <span class="dot"></span>
207
+ <span class="dot"></span>
208
+ <span class="dot"></span>
209
+ <span class="dot"></span>
210
+ </div>
211
+ <div class="status-right">
212
+ <!-- WiFi icon -->
213
+ <span class="icon">
214
+ <svg width="44" height="44" viewBox="0 0 24 24" fill="none" stroke="#555" stroke-width="2">
215
+ <path d="M2 8c5.5-5.3 14.5-5.3 20 0"/>
216
+ <path d="M5 11c3.9-3.8 10.1-3.8 14 0"/>
217
+ <path d="M8 14c2.3-2.2 5.7-2.2 8 0"/>
218
+ <circle cx="12" cy="18" r="1.5" fill="#555" stroke="none"/>
219
+ </svg>
220
+ </span>
221
+ <!-- Battery icon -->
222
+ <span class="icon">
223
+ <svg width="44" height="44" viewBox="0 0 24 24" fill="none" stroke="#555" stroke-width="2">
224
+ <rect x="2" y="6" width="18" height="12" rx="2"></rect>
225
+ <rect x="4" y="8" width="14" height="8" fill="#555" stroke="none"></rect>
226
+ <rect x="20" y="10" width="2" height="4" rx="1" fill="#555" stroke="none"></rect>
227
+ </svg>
228
+ </span>
229
+ </div>
230
+ </div>
231
+
232
+ <!-- Main product image -->
233
+ <div class="hero">
234
+ <div class="img-label">[IMG: Soccer pants on model with cleats and ball]</div>
235
+
236
+ <div class="badge-new">NEW</div>
237
+
238
+ <div class="close-wrap">
239
+ <svg width="64" height="64" viewBox="0 0 24 24" stroke="#111" stroke-width="2" fill="none" stroke-linecap="round">
240
+ <path d="M4 4l16 16"></path>
241
+ <path d="M20 4L4 20"></path>
242
+ </svg>
243
+ </div>
244
+
245
+ <div class="image-count">1/7</div>
246
+ </div>
247
+
248
+ <!-- Model info strip -->
249
+ <div class="model-info">
250
+ <svg width="44" height="44" viewBox="0 0 24 24" fill="none" stroke="#8d8d8d" stroke-width="2">
251
+ <circle cx="12" cy="12" r="10"></circle>
252
+ <circle cx="12" cy="8" r="1.5" fill="#8d8d8d" stroke="none"></circle>
253
+ <path d="M12 11v6" stroke="#8d8d8d"></path>
254
+ </svg>
255
+ <div>Model is 5'9", size S</div>
256
+ </div>
257
+
258
+ <!-- Content -->
259
+ <div class="content">
260
+ <div class="color-line">Color: <b>Inky Blue–Fire Orchid</b></div>
261
+
262
+ <div class="thumbs">
263
+ <div class="thumb">[IMG: Black pants]</div>
264
+ <div class="thumb">[IMG: Teal outfit]</div>
265
+ <div class="thumb selected">[IMG: Inky Blue–Fire Orchid]</div>
266
+ </div>
267
+
268
+ <div class="title-row">
269
+ <div class="product-title">individualBLAZE Women's<br>Soccer Training Pants</div>
270
+ <svg class="heart" viewBox="0 0 24 24" fill="none" stroke="#222" stroke-width="2">
271
+ <path d="M12 21s-7-4.6-9.5-8.1C.4 10 .9 6.8 3.6 5.3c2-1.1 4.5-.5 5.9 1.1 1.4-1.6 3.9-2.2 5.9-1.1 2.7 1.5 3.2 4.7 1.1 7.6C19 16.4 12 21 12 21z"/>
272
+ </svg>
273
+ </div>
274
+
275
+ <div class="price">$55.00</div>
276
+
277
+ <div class="size-picker">
278
+ SIZE S
279
+ <svg class="caret" width="36" height="36" viewBox="0 0 24 24" fill="none" stroke="#6b6b6b" stroke-width="2">
280
+ <path d="M6 9l6 6 6-6"></path>
281
+ </svg>
282
+ </div>
283
+ </div>
284
+
285
+ <!-- Bottom gesture/home bar -->
286
+ <div class="bottom-safe">
287
+ <div class="home-pill"></div>
288
+ </div>
289
+ </div>
290
+ </body>
291
+ </html>
code/14492/14492_12.html ADDED
@@ -0,0 +1,200 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Product Detail Mock</title>
7
+ <style>
8
+ body { margin:0; padding:0; background:transparent; font-family: Arial, Helvetica, sans-serif; }
9
+ #render-target {
10
+ width:1080px; height:2400px; position:relative; overflow:hidden; background:#ffffff;
11
+ }
12
+
13
+ /* Status bar */
14
+ .statusbar {
15
+ height:120px;
16
+ padding:0 36px;
17
+ display:flex; align-items:center; justify-content:space-between;
18
+ color:#444; font-weight:700; font-size:42px; letter-spacing:1px;
19
+ box-sizing:border-box;
20
+ }
21
+ .status-left { display:flex; align-items:center; gap:22px; }
22
+ .status-right { display:flex; align-items:center; gap:26px; color:#666; }
23
+ .dot { width:18px; height:18px; background:#8a8a8a; border-radius:50%; display:inline-block; opacity:.6; }
24
+ .icon-wifi, .icon-battery { width:48px; height:32px; }
25
+ .icon-battery rect { rx:5; }
26
+ .icon-wifi path, .icon-battery rect, .icon-battery line { stroke:#555; }
27
+
28
+ /* Hero image area */
29
+ .hero { position:relative; height:1180px; }
30
+ .hero .img {
31
+ position:absolute; inset:0;
32
+ background:#E0E0E0;
33
+ border:1px solid #BDBDBD;
34
+ display:flex; align-items:center; justify-content:center;
35
+ color:#757575; font-size:40px;
36
+ }
37
+ .badge-new {
38
+ position:absolute; top:250px; left:40px;
39
+ background:#111; color:#fff; font-weight:800;
40
+ padding:14px 26px; font-size:36px; border-radius:6px;
41
+ }
42
+ .close-round {
43
+ position:absolute; right:28px; top:200px;
44
+ width:120px; height:120px; border-radius:60px;
45
+ background:#ffffff; box-shadow:0 2px 8px rgba(0,0,0,0.15);
46
+ display:flex; align-items:center; justify-content:center;
47
+ }
48
+ .close-round svg { width:56px; height:56px; }
49
+ .pager {
50
+ position:absolute; left:40px; bottom:26px;
51
+ background:#ffffff; color:#111; font-weight:800; font-size:36px;
52
+ padding:12px 22px; border-radius:30px; box-shadow:0 1px 2px rgba(0,0,0,.08);
53
+ }
54
+
55
+ /* Info row */
56
+ .info-row {
57
+ height:120px; background:#EDEDED; border-top:1px solid #DADADA; border-bottom:1px solid #DADADA;
58
+ display:flex; align-items:center; gap:22px; padding:0 36px; color:#5a5a5a; font-size:38px;
59
+ }
60
+ .info-icon {
61
+ width:56px; height:56px; border-radius:28px; background:#fff; border:2px solid #C9C9C9;
62
+ display:flex; align-items:center; justify-content:center; color:#8a8a8a; font-weight:700;
63
+ }
64
+
65
+ /* Content section */
66
+ .content { padding:36px 44px 260px 44px; box-sizing:border-box; }
67
+ .color-title { font-size:40px; color:#333; margin:16px 0 18px; }
68
+ .thumbs { display:flex; gap:28px; }
69
+ .thumb {
70
+ width:220px; height:220px; background:#E0E0E0; border:1px solid #BDBDBD;
71
+ display:flex; align-items:center; justify-content:center; color:#757575; font-size:26px;
72
+ }
73
+ .thumb.selected { border:6px solid #D7B46A; box-sizing:border-box; }
74
+ .title-row { display:flex; align-items:flex-start; justify-content:space-between; margin-top:40px; }
75
+ .product-title {
76
+ font-size:62px; line-height:1.14; color:#111; font-weight:800; max-width:870px;
77
+ }
78
+ .heart {
79
+ width:72px; height:72px; margin-top:10px;
80
+ }
81
+ .heart svg { width:100%; height:100%; }
82
+
83
+ /* Green bottom sheet */
84
+ .snackbar {
85
+ position:absolute; left:0; right:0; bottom:100px;
86
+ background:#1E644B; color:#fff; padding:40px 44px 46px;
87
+ box-sizing:border-box;
88
+ }
89
+ .snack-top {
90
+ display:flex; align-items:center; justify-content:space-between; margin-bottom:34px;
91
+ }
92
+ .snack-left { display:flex; align-items:center; gap:22px; font-size:42px; }
93
+ .check { width:56px; height:56px; background:#fff1; border-radius:28px; display:flex; align-items:center; justify-content:center; }
94
+ .check svg { width:48px; height:48px; }
95
+ .snack-close { width:60px; height:60px; display:flex; align-items:center; justify-content:center; }
96
+ .cta {
97
+ background:#ffffff; color:#1E644B; text-align:center; font-weight:800; font-size:42px;
98
+ padding:34px 20px; border-radius:6px; letter-spacing:2px;
99
+ }
100
+
101
+ /* Home indicator */
102
+ .home-indicator {
103
+ position:absolute; left:50%; transform:translateX(-50%);
104
+ bottom:24px; width:360px; height:12px; background:#000; border-radius:8px; opacity:.8;
105
+ }
106
+ </style>
107
+ </head>
108
+ <body>
109
+ <div id="render-target">
110
+
111
+ <!-- Status bar -->
112
+ <div class="statusbar">
113
+ <div class="status-left">
114
+ <div>10:31</div>
115
+ <span class="dot"></span>
116
+ <span class="dot"></span>
117
+ <span class="dot"></span>
118
+ <span class="dot" style="opacity:.3;"></span>
119
+ </div>
120
+ <div class="status-right">
121
+ <svg class="icon-wifi" viewBox="0 0 24 24" fill="none" stroke-width="2">
122
+ <path d="M2 8c6-6 14-6 20 0" />
123
+ <path d="M5 11c4-4 10-4 14 0" />
124
+ <path d="M8 14c2-2 6-2 8 0" />
125
+ <circle cx="12" cy="18" r="1.6" fill="#555"></circle>
126
+ </svg>
127
+ <svg class="icon-battery" viewBox="0 0 28 16" fill="none" stroke-width="2">
128
+ <rect x="1" y="1" width="22" height="14"></rect>
129
+ <line x1="24" y1="5" x2="27" y2="5"></line>
130
+ <line x1="24" y1="11" x2="27" y2="11"></line>
131
+ </svg>
132
+ </div>
133
+ </div>
134
+
135
+ <!-- Hero image -->
136
+ <div class="hero">
137
+ <div class="img">[IMG: Model wearing soccer training pants with ball]</div>
138
+ <div class="badge-new">NEW</div>
139
+ <div class="close-round" aria-label="Close">
140
+ <svg viewBox="0 0 24 24" stroke="#111" stroke-width="2" fill="none" stroke-linecap="round">
141
+ <path d="M5 5 L19 19"></path>
142
+ <path d="M19 5 L5 19"></path>
143
+ </svg>
144
+ </div>
145
+ <div class="pager">1/7</div>
146
+ </div>
147
+
148
+ <!-- Info row -->
149
+ <div class="info-row">
150
+ <div class="info-icon">i</div>
151
+ <div>Model is 5'9", size S</div>
152
+ </div>
153
+
154
+ <!-- Content -->
155
+ <div class="content">
156
+ <div class="color-title">Color: <b>Inky Blue–Fire Orchid</b></div>
157
+ <div class="thumbs">
158
+ <div class="thumb">[IMG: Color Variant]</div>
159
+ <div class="thumb">[IMG: Color Variant]</div>
160
+ <div class="thumb selected">[IMG: Selected Variant]</div>
161
+ </div>
162
+
163
+ <div class="title-row">
164
+ <div class="product-title">individualBLAZE Women's Soccer Training Pants</div>
165
+ <div class="heart">
166
+ <svg viewBox="0 0 24 24" fill="none" stroke="#111" stroke-width="2">
167
+ <path d="M12 21s-7-4.5-9.5-8c-2.3-3.1.2-7 3.9-7 2 0 3.4 1.2 4.6 2.8C12.2 7.2 13.6 6 15.6 6c3.7 0 6.2 3.9 3.9 7C19 16.5 12 21 12 21z"/>
168
+ </svg>
169
+ </div>
170
+ </div>
171
+ </div>
172
+
173
+ <!-- Green bottom sheet (item added) -->
174
+ <div class="snackbar">
175
+ <div class="snack-top">
176
+ <div class="snack-left">
177
+ <div class="check">
178
+ <svg viewBox="0 0 24 24" fill="none" stroke="#FFFFFF" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round">
179
+ <circle cx="12" cy="12" r="10" stroke="rgba(255,255,255,0.9)"></circle>
180
+ <path d="M7 12l3 3 7-7"></path>
181
+ </svg>
182
+ </div>
183
+ <div>Item added to your cart.</div>
184
+ </div>
185
+ <div class="snack-close">
186
+ <svg viewBox="0 0 24 24" stroke="#ffffff" stroke-width="2" fill="none" stroke-linecap="round">
187
+ <path d="M5 5 L19 19"></path>
188
+ <path d="M19 5 L5 19"></path>
189
+ </svg>
190
+ </div>
191
+ </div>
192
+
193
+ <div class="cta">GO TO CART</div>
194
+ </div>
195
+
196
+ <!-- Home indicator -->
197
+ <div class="home-indicator"></div>
198
+ </div>
199
+ </body>
200
+ </html>
code/14492/14492_2.html ADDED
@@ -0,0 +1,302 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Pants Listing</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
9
+ #render-target {
10
+ width: 1080px; height: 2400px;
11
+ position: relative; overflow: hidden;
12
+ background: #ffffff; color: #111;
13
+ }
14
+
15
+ /* Status bar */
16
+ .status-bar {
17
+ height: 90px;
18
+ padding: 10px 48px;
19
+ display: flex; align-items: center; justify-content: space-between;
20
+ color: #7a7a7a; font-size: 30px;
21
+ }
22
+ .status-center { display: flex; gap: 16px; align-items: center; }
23
+ .dot { width: 14px; height: 14px; background: #bbb; border-radius: 50%; display: inline-block; }
24
+ .icon-wifi, .icon-battery { width: 40px; height: 26px; display: inline-block; }
25
+ .icon-wifi { border: 2px solid #777; border-radius: 50% 50% 0 0; border-bottom: none; position: relative; }
26
+ .icon-wifi::after { content: ""; position: absolute; width: 8px; height: 8px; background: #777; border-radius: 50%; bottom: -2px; left: 50%; transform: translateX(-50%); }
27
+ .icon-battery { border: 2px solid #777; border-radius: 4px; position: relative; }
28
+ .icon-battery::after { content: ""; position: absolute; right: -8px; top: 6px; width: 6px; height: 12px; background: #777; border-radius: 2px; }
29
+
30
+ /* Top bar */
31
+ .top-actions { padding: 0 48px; display: flex; justify-content: space-between; align-items: center; height: 96px; }
32
+ .left-actions, .right-actions { display: flex; align-items: center; gap: 26px; }
33
+ .icon-btn { width: 54px; height: 54px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; }
34
+ .badge {
35
+ position: absolute; top: -8px; right: -8px;
36
+ background: #111; color: #fff; font-size: 24px; height: 36px; min-width: 36px; padding: 0 8px;
37
+ border-radius: 18px; display: flex; align-items: center; justify-content: center; border: 2px solid #fff;
38
+ }
39
+
40
+ /* Title and subheader */
41
+ .page-title { font-size: 88px; font-weight: 800; letter-spacing: 1px; margin: 16px 48px 0; }
42
+ .subheader { display: flex; justify-content: space-between; align-items: center; margin: 16px 48px 0; color: #4a4a4a; }
43
+ .subheader .left { font-size: 34px; font-weight: 700; letter-spacing: 1px; }
44
+ .subheader .right { display: flex; align-items: center; gap: 14px; font-size: 34px; font-weight: 700; }
45
+
46
+ /* Category pills */
47
+ .pill-row { margin: 26px 48px 24px; display: flex; gap: 24px; }
48
+ .pill {
49
+ padding: 22px 34px; border-radius: 40px; font-weight: 700; font-size: 34px;
50
+ background: #f1f3f5; color: #60666b; border: 1px solid #e0e3e6;
51
+ }
52
+ .pill.active { background: #fff; border: 3px solid #111; color: #111; }
53
+
54
+ /* Product grid */
55
+ .grid { padding: 0 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
56
+ .card { }
57
+ .img-wrap {
58
+ position: relative; width: 100%; height: 474px;
59
+ background: #E0E0E0; border: 1px solid #BDBDBD;
60
+ display: flex; align-items: center; justify-content: center; color: #757575; font-size: 32px; text-align: center;
61
+ }
62
+ .tag-new {
63
+ position: absolute; top: 16px; left: 16px;
64
+ background: #111; color: #fff; font-weight: 800; font-size: 28px;
65
+ padding: 10px 16px; border-radius: 6px; letter-spacing: 0.5px;
66
+ }
67
+ .fav {
68
+ position: absolute; top: 16px; right: 16px; width: 54px; height: 54px;
69
+ display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.9);
70
+ border-radius: 50%; border: 1px solid #ddd;
71
+ }
72
+
73
+ .meta { margin-top: 18px; color: #555; font-size: 30px; display: flex; align-items: center; gap: 12px; }
74
+ .name { margin-top: 16px; font-size: 40px; font-weight: 800; line-height: 1.2; color: #111; }
75
+ .price { margin-top: 16px; font-size: 40px; font-weight: 800; }
76
+
77
+ /* Bottom nav */
78
+ .bottom-nav {
79
+ position: absolute; left: 0; right: 0; bottom: 64px;
80
+ height: 180px; background: #fff; border-top: 1px solid #e5e5e5;
81
+ display: flex; justify-content: space-around; align-items: center;
82
+ }
83
+ .nav-item { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: #888; }
84
+ .nav-item .label { font-size: 28px; font-weight: 800; letter-spacing: 1px; }
85
+ .nav-item .icon { width: 60px; height: 60px; }
86
+ .nav-item.active { color: #111; }
87
+ .cart-badge, .acct-badge {
88
+ position: absolute; top: -10px; right: -10px; background: #c9b68a; color: #111; font-size: 24px;
89
+ height: 36px; min-width: 36px; padding: 0 8px; border-radius: 18px; display: flex; align-items: center; justify-content: center;
90
+ }
91
+
92
+ /* Home indicator bar */
93
+ .home-indicator {
94
+ position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
95
+ width: 360px; height: 12px; background: #000; border-radius: 6px;
96
+ }
97
+
98
+ /* Utility icons */
99
+ svg { display: block; }
100
+ </style>
101
+ </head>
102
+ <body>
103
+ <div id="render-target">
104
+
105
+ <!-- Status Bar -->
106
+ <div class="status-bar">
107
+ <div>10:25</div>
108
+ <div class="status-center">
109
+ <span class="dot"></span>
110
+ <span class="dot"></span>
111
+ <span class="dot"></span>
112
+ <span class="dot"></span>
113
+ <span class="dot" style="width:12px;height:12px;background:#999;"></span>
114
+ </div>
115
+ <div style="display:flex; align-items:center; gap:16px;">
116
+ <span class="icon-wifi"></span>
117
+ <span class="icon-battery"></span>
118
+ </div>
119
+ </div>
120
+
121
+ <!-- Top Actions -->
122
+ <div class="top-actions">
123
+ <div class="left-actions">
124
+ <div class="icon-btn">
125
+ <svg width="44" height="44" viewBox="0 0 24 24">
126
+ <path d="M15 4 L7 12 L15 20" stroke="#111" stroke-width="2.5" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
127
+ </svg>
128
+ </div>
129
+ </div>
130
+ <div class="right-actions">
131
+ <div class="icon-btn" style="position:relative;">
132
+ <svg width="36" height="36" viewBox="0 0 24 24">
133
+ <path d="M5 6 H19" stroke="#111" stroke-width="2" stroke-linecap="round"/>
134
+ <circle cx="8" cy="6" r="2" fill="#111"/>
135
+ <path d="M5 12 H19" stroke="#111" stroke-width="2" stroke-linecap="round"/>
136
+ <circle cx="15" cy="12" r="2" fill="#111"/>
137
+ <path d="M5 18 H19" stroke="#111" stroke-width="2" stroke-linecap="round"/>
138
+ <circle cx="11" cy="18" r="2" fill="#111"/>
139
+ </svg>
140
+ <span class="badge">1</span>
141
+ </div>
142
+ <div class="icon-btn">
143
+ <svg width="38" height="38" viewBox="0 0 24 24">
144
+ <circle cx="10.5" cy="10.5" r="6.5" stroke="#111" stroke-width="2" fill="none"/>
145
+ <path d="M16 16 L21 21" stroke="#111" stroke-width="2" stroke-linecap="round"/>
146
+ </svg>
147
+ </div>
148
+ </div>
149
+ </div>
150
+
151
+ <!-- Title -->
152
+ <div class="page-title">PANTS</div>
153
+
154
+ <!-- Subheader -->
155
+ <div class="subheader">
156
+ <div class="left">4 PRODUCTS</div>
157
+ <div class="right">
158
+ <span>SORT</span>
159
+ <svg width="34" height="34" viewBox="0 0 24 24">
160
+ <path d="M12 4 L8 8 H16 L12 4Z" fill="#111"/>
161
+ <path d="M12 20 L16 16 H8 L12 20Z" fill="#111"/>
162
+ </svg>
163
+ </div>
164
+ </div>
165
+
166
+ <!-- Category Pills -->
167
+ <div class="pill-row">
168
+ <div class="pill active">MOTORSPORT</div>
169
+ <div class="pill">SOCCER</div>
170
+ <div class="pill">TRAINING</div>
171
+ <div class="pill">RUNNING</div>
172
+ </div>
173
+
174
+ <!-- Product Grid -->
175
+ <div class="grid" style="margin-bottom: 240px;">
176
+
177
+ <!-- Card 1 -->
178
+ <div class="card">
179
+ <div class="img-wrap">
180
+ <div class="tag-new">NEW</div>
181
+ <div class="fav">
182
+ <svg width="26" height="26" viewBox="0 0 24 24">
183
+ <path d="M12 21 C12 21 4 14 4 9 A4 4 0 0 1 8 5 C10 5 12 7 12 7 C12 7 14 5 16 5 A4 4 0 0 1 20 9 C20 14 12 21 12 21Z" stroke="#111" stroke-width="2" fill="none"/>
184
+ </svg>
185
+ </div>
186
+ [IMG: Product photo - blue motorsport pants]
187
+ </div>
188
+ <div class="meta">2 Colors
189
+ <svg width="22" height="22" viewBox="0 0 24 24">
190
+ <path d="M6 9 L12 15 L18 9" stroke="#111" stroke-width="2" fill="none" stroke-linecap="round"/>
191
+ </svg>
192
+ </div>
193
+ <div class="name">BMW M Motorsport MT7 Women's Motors...</div>
194
+ <div class="price">$90.00</div>
195
+ </div>
196
+
197
+ <!-- Card 2 -->
198
+ <div class="card">
199
+ <div class="img-wrap">
200
+ <div class="tag-new">NEW</div>
201
+ <div class="fav">
202
+ <svg width="26" height="26" viewBox="0 0 24 24">
203
+ <path d="M12 21 C12 21 4 14 4 9 A4 4 0 0 1 8 5 C10 5 12 7 12 7 C12 7 14 5 16 5 A4 4 0 0 1 20 9 C20 14 12 21 12 21Z" stroke="#111" stroke-width="2" fill="none"/>
204
+ </svg>
205
+ </div>
206
+ [IMG: Product photo - black motorsport pants]
207
+ </div>
208
+ <div class="meta">2 Colors
209
+ <svg width="22" height="22" viewBox="0 0 24 24">
210
+ <path d="M6 9 L12 15 L18 9" stroke="#111" stroke-width="2" fill="none" stroke-linecap="round"/>
211
+ </svg>
212
+ </div>
213
+ <div class="name">BMW M Motorsport MT7 Women's Motors...</div>
214
+ <div class="price">$90.00</div>
215
+ </div>
216
+
217
+ <!-- Card 3 -->
218
+ <div class="card">
219
+ <div class="img-wrap">
220
+ <div class="tag-new">NEW</div>
221
+ <div class="fav">
222
+ <svg width="26" height="26" viewBox="0 0 24 24">
223
+ <path d="M12 21 C12 21 4 14 4 9 A4 4 0 0 1 8 5 C10 5 12 7 12 7 C12 7 14 5 16 5 A4 4 0 0 1 20 9 C20 14 12 21 12 21Z" stroke="#111" stroke-width="2" fill="none"/>
224
+ </svg>
225
+ </div>
226
+ [IMG: Product photo - tapered black pants]
227
+ </div>
228
+ <div class="meta">1 Color
229
+ <svg width="22" height="22" viewBox="0 0 24 24">
230
+ <path d="M6 9 L12 15 L18 9" stroke="#111" stroke-width="2" fill="none" stroke-linecap="round"/>
231
+ </svg>
232
+ </div>
233
+ <div class="name">BMW M Motorsport</div>
234
+ </div>
235
+
236
+ <!-- Card 4 -->
237
+ <div class="card">
238
+ <div class="img-wrap">
239
+ <div class="fav">
240
+ <svg width="26" height="26" viewBox="0 0 24 24">
241
+ <path d="M12 21 C12 21 4 14 4 9 A4 4 0 0 1 8 5 C10 5 12 7 12 7 C12 7 14 5 16 5 A4 4 0 0 1 20 9 C20 14 12 21 12 21Z" stroke="#111" stroke-width="2" fill="none"/>
242
+ </svg>
243
+ </div>
244
+ [IMG: Product photo - close-up black pants]
245
+ </div>
246
+ <div class="meta">1 Color
247
+ <svg width="22" height="22" viewBox="0 0 24 24">
248
+ <path d="M6 9 L12 15 L18 9" stroke="#111" stroke-width="2" fill="none" stroke-linecap="round"/>
249
+ </svg>
250
+ </div>
251
+ <div class="name">BMW M Motorsport</div>
252
+ </div>
253
+
254
+ </div>
255
+
256
+ <!-- Bottom Navigation -->
257
+ <div class="bottom-nav">
258
+ <div class="nav-item">
259
+ <svg class="icon" viewBox="0 0 24 24">
260
+ <path d="M3 11 L12 4 L21 11 V21 H14 V15 H10 V21 H3 V11Z" stroke="#888" stroke-width="2" fill="none" stroke-linejoin="round"/>
261
+ </svg>
262
+ <div class="label">HOME</div>
263
+ </div>
264
+ <div class="nav-item">
265
+ <svg class="icon" viewBox="0 0 24 24">
266
+ <rect x="3" y="4" width="18" height="16" rx="2" ry="2" stroke="#888" stroke-width="2" fill="none"/>
267
+ <path d="M3 9 H21" stroke="#888" stroke-width="2"/>
268
+ <path d="M8 3 V7 M16 3 V7" stroke="#888" stroke-width="2"/>
269
+ </svg>
270
+ <div class="label">DROPS</div>
271
+ </div>
272
+ <div class="nav-item active">
273
+ <svg class="icon" viewBox="0 0 24 24">
274
+ <circle cx="10.5" cy="10.5" r="6.5" stroke="#111" stroke-width="2" fill="none"/>
275
+ <path d="M16 16 L21 21" stroke="#111" stroke-width="2" stroke-linecap="round"/>
276
+ </svg>
277
+ <div class="label">SHOP</div>
278
+ </div>
279
+ <div class="nav-item" style="position:relative;">
280
+ <svg class="icon" viewBox="0 0 24 24">
281
+ <path d="M3 6 H6 L7.5 15 H18.5 L20 8 H7" stroke="#888" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
282
+ <circle cx="9" cy="20" r="2" fill="#888"/>
283
+ <circle cx="17" cy="20" r="2" fill="#888"/>
284
+ </svg>
285
+ <span class="cart-badge">13</span>
286
+ <div class="label">CART</div>
287
+ </div>
288
+ <div class="nav-item" style="position:relative;">
289
+ <svg class="icon" viewBox="0 0 24 24">
290
+ <circle cx="12" cy="8" r="4" stroke="#888" stroke-width="2" fill="none"/>
291
+ <path d="M4 21 C4 16 8 14 12 14 C16 14 20 16 20 21" stroke="#888" stroke-width="2" fill="none" stroke-linecap="round"/>
292
+ </svg>
293
+ <span class="acct-badge">1</span>
294
+ <div class="label">ACCOUNT</div>
295
+ </div>
296
+ </div>
297
+
298
+ <div class="home-indicator"></div>
299
+
300
+ </div>
301
+ </body>
302
+ </html>
code/14492/14492_3.html ADDED
@@ -0,0 +1,312 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Shop Skeleton UI</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; }
9
+ #render-target {
10
+ width: 1080px;
11
+ height: 2400px;
12
+ position: relative;
13
+ overflow: hidden;
14
+ background: #ffffff;
15
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
16
+ color: #333;
17
+ }
18
+
19
+ /* Status bar */
20
+ .status-bar {
21
+ position: absolute;
22
+ top: 24px;
23
+ left: 40px;
24
+ right: 40px;
25
+ height: 64px;
26
+ display: flex;
27
+ align-items: center;
28
+ justify-content: space-between;
29
+ color: #757575;
30
+ font-size: 36px;
31
+ }
32
+ .status-left { display: flex; align-items: center; gap: 18px; }
33
+ .ghost {
34
+ width: 26px; height: 26px; border-radius: 50%;
35
+ background: #8a8a8a; opacity: 0.55;
36
+ }
37
+ .status-right { display: flex; align-items: center; gap: 18px; }
38
+ .tiny-icon {
39
+ width: 26px; height: 18px; background: #8a8a8a; border-radius: 3px; opacity: 0.55;
40
+ }
41
+ .dot { width: 10px; height: 10px; background: #7a7a7a; border-radius: 50%; }
42
+
43
+ /* Top actions */
44
+ .top-actions {
45
+ position: absolute;
46
+ top: 140px;
47
+ left: 28px;
48
+ right: 28px;
49
+ height: 64px;
50
+ display: flex;
51
+ align-items: center;
52
+ justify-content: space-between;
53
+ }
54
+ .back-btn { width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; }
55
+ .right-actions { display: flex; align-items: center; gap: 28px; }
56
+ .icon-btn { position: relative; width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; }
57
+ .icon-btn svg { width: 56px; height: 56px; stroke: #000; fill: none; }
58
+ .badge {
59
+ position: absolute;
60
+ top: -8px;
61
+ left: 40px;
62
+ background: #111;
63
+ color: #fff;
64
+ font-size: 26px;
65
+ line-height: 36px;
66
+ padding: 0 12px;
67
+ border-radius: 18px;
68
+ font-weight: 700;
69
+ }
70
+
71
+ /* Content area */
72
+ .content {
73
+ position: absolute;
74
+ top: 240px;
75
+ left: 40px;
76
+ right: 40px;
77
+ bottom: 300px;
78
+ }
79
+ .row { display: flex; gap: 36px; margin-bottom: 36px; }
80
+ .skeleton {
81
+ background: linear-gradient(90deg,#e3e4e5 0%,#e6e7e8 55%,#f7f7f7 100%);
82
+ border-radius: 12px;
83
+ }
84
+ .bar { height: 60px; }
85
+ .card { flex: 1; height: 560px; }
86
+ .small-card { flex: 1; height: 420px; }
87
+ .mini { height: 52px; width: 280px; }
88
+ .wide { height: 52px; width: 760px; }
89
+
90
+ /* Center circular logo */
91
+ .circle-logo {
92
+ position: absolute;
93
+ width: 560px; height: 560px;
94
+ border-radius: 50%;
95
+ left: 50%; top: 980px;
96
+ transform: translateX(-50%);
97
+ background: #fff;
98
+ box-shadow: 0 14px 28px rgba(0,0,0,0.06);
99
+ display: flex; align-items: center; justify-content: center;
100
+ }
101
+ .circle-logo svg { width: 310px; height: 160px; fill: #000; }
102
+
103
+ /* Footer / tab bar */
104
+ .footer {
105
+ position: absolute;
106
+ left: 0; right: 0;
107
+ bottom: 100px;
108
+ height: 180px;
109
+ background: #fff;
110
+ border-top: 1px solid #e5e5e5;
111
+ display: flex;
112
+ }
113
+ .nav-item {
114
+ flex: 1;
115
+ display: flex;
116
+ flex-direction: column;
117
+ align-items: center;
118
+ justify-content: center;
119
+ gap: 16px;
120
+ position: relative;
121
+ color: #8a8a8a;
122
+ font-size: 34px;
123
+ letter-spacing: 0.5px;
124
+ }
125
+ .nav-item svg { width: 64px; height: 64px; fill: #8a8a8a; stroke: #8a8a8a; }
126
+ .nav-item.active { color: #000; font-weight: 800; }
127
+ .nav-item.active svg { fill: #000; stroke: #000; }
128
+ .nav-badge {
129
+ position: absolute;
130
+ top: 26px;
131
+ right: 90px;
132
+ min-width: 48px;
133
+ height: 48px;
134
+ padding: 0 10px;
135
+ border-radius: 24px;
136
+ background: #c4b089;
137
+ color: #ffffff;
138
+ font-size: 28px;
139
+ font-weight: 800;
140
+ display: flex; align-items: center; justify-content: center;
141
+ }
142
+
143
+ /* Phone bottom edge */
144
+ .phone-edge {
145
+ position: absolute; left: 0; right: 0; bottom: 0;
146
+ height: 100px; background: #000;
147
+ display: flex; align-items: center; justify-content: center;
148
+ }
149
+ .home-indicator { width: 300px; height: 12px; background: #fff; opacity: 0.9; border-radius: 12px; }
150
+ </style>
151
+ </head>
152
+ <body>
153
+ <div id="render-target">
154
+
155
+ <!-- Status bar -->
156
+ <div class="status-bar">
157
+ <div class="status-left">
158
+ <div style="font-weight:700;">10:26</div>
159
+ <div class="ghost"></div>
160
+ <div class="ghost"></div>
161
+ <div class="ghost"></div>
162
+ <div class="ghost"></div>
163
+ <div class="dot"></div>
164
+ </div>
165
+ <div class="status-right">
166
+ <div class="tiny-icon"></div>
167
+ <div class="tiny-icon" style="width: 22px; height: 22px; border-radius: 50%;"></div>
168
+ </div>
169
+ </div>
170
+
171
+ <!-- Top actions -->
172
+ <div class="top-actions">
173
+ <div class="back-btn">
174
+ <svg viewBox="0 0 24 24">
175
+ <path d="M15 4 L7 12 L15 20" stroke="#000" stroke-width="2.6" stroke-linecap="round" stroke-linejoin="round" fill="none"></path>
176
+ </svg>
177
+ </div>
178
+ <div class="right-actions">
179
+ <div class="icon-btn">
180
+ <span class="badge">2</span>
181
+ <svg viewBox="0 0 24 24">
182
+ <path d="M3 6 H21" stroke-width="2" stroke="#000" stroke-linecap="round"></path>
183
+ <path d="M6 12 H21" stroke-width="2" stroke="#000" stroke-linecap="round"></path>
184
+ <path d="M3 18 H17" stroke-width="2" stroke="#000" stroke-linecap="round"></path>
185
+ <path d="M4 10 V14 M2 12 H6" stroke-width="2" stroke="#000" stroke-linecap="round"></path>
186
+ </svg>
187
+ </div>
188
+ <div class="icon-btn">
189
+ <svg viewBox="0 0 24 24">
190
+ <circle cx="11" cy="11" r="7" stroke-width="2.4"></circle>
191
+ <path d="M20 20 L16 16" stroke-width="2.4" stroke-linecap="round"></path>
192
+ </svg>
193
+ </div>
194
+ </div>
195
+ </div>
196
+
197
+ <!-- Content skeleton -->
198
+ <div class="content">
199
+ <div class="row">
200
+ <div class="skeleton bar" style="width: 640px;"></div>
201
+ </div>
202
+ <div class="row">
203
+ <div class="skeleton bar" style="width: 760px;"></div>
204
+ <div class="skeleton bar" style="flex:1;"></div>
205
+ </div>
206
+
207
+ <div class="row">
208
+ <div class="skeleton card"></div>
209
+ <div class="skeleton card"></div>
210
+ </div>
211
+
212
+ <div class="row">
213
+ <div class="skeleton bar" style="width: 340px;"></div>
214
+ <div class="skeleton bar" style="width: 560px;"></div>
215
+ </div>
216
+
217
+ <div class="row">
218
+ <div class="skeleton bar" style="width: 600px;"></div>
219
+ <div class="skeleton bar" style="width: 380px;"></div>
220
+ </div>
221
+
222
+ <div class="row">
223
+ <div class="skeleton bar" style="width: 520px;"></div>
224
+ <div class="skeleton bar" style="width: 460px;"></div>
225
+ </div>
226
+
227
+ <div class="row" style="margin-top: 80px;">
228
+ <div class="skeleton small-card"></div>
229
+ <div class="skeleton small-card"></div>
230
+ </div>
231
+
232
+ <div class="row">
233
+ <div class="skeleton bar" style="width: 360px;"></div>
234
+ <div class="skeleton bar" style="width: 460px;"></div>
235
+ </div>
236
+
237
+ <div class="row">
238
+ <div class="skeleton bar" style="width: 680px;"></div>
239
+ <div class="skeleton bar" style="width: 320px;"></div>
240
+ </div>
241
+
242
+ <div class="row">
243
+ <div class="skeleton bar mini"></div>
244
+ <div class="skeleton bar mini"></div>
245
+ </div>
246
+ </div>
247
+
248
+ <!-- Center circle logo -->
249
+ <div class="circle-logo">
250
+ <!-- Simple leaping cat silhouette (approximate) -->
251
+ <svg viewBox="0 0 120 60">
252
+ <path d="M8 30 C16 26 24 26 32 28 C38 30 44 27 50 24 C56 21 64 24 72 26 C80 28 90 26 98 22 C104 19 110 20 114 22
253
+ C106 26 98 31 88 34 C80 36 70 36 62 35 C56 34 50 36 44 39 C40 41 36 41 34 39 C31 36 28 33 24 32
254
+ C20 31 18 33 16 36 C14 38 12 38 10 37 Z"></path>
255
+ </svg>
256
+ </div>
257
+
258
+ <!-- Footer / tab bar -->
259
+ <div class="footer">
260
+ <div class="nav-item">
261
+ <!-- Home (simplified puma icon) -->
262
+ <svg viewBox="0 0 120 60">
263
+ <path d="M10 32 C22 26 36 28 46 30 C60 32 74 28 92 22 C86 28 76 34 64 37 C50 40 40 40 32 38 C24 36 16 34 10 32 Z"></path>
264
+ </svg>
265
+ <div>HOME</div>
266
+ </div>
267
+ <div class="nav-item">
268
+ <!-- Drops (calendar) -->
269
+ <svg viewBox="0 0 24 24">
270
+ <rect x="3" y="5" width="18" height="16" rx="2" ry="2" fill="none"></rect>
271
+ <path d="M3 9 H21" stroke-width="2"></path>
272
+ <path d="M7 2 V6 M17 2 V6" stroke-width="2" stroke-linecap="round"></path>
273
+ </svg>
274
+ <div>DROPS</div>
275
+ </div>
276
+ <div class="nav-item active">
277
+ <!-- Shop (search) -->
278
+ <svg viewBox="0 0 24 24">
279
+ <circle cx="11" cy="11" r="7" stroke-width="2.4"></circle>
280
+ <path d="M20 20 L16 16" stroke-width="2.4" stroke-linecap="round"></path>
281
+ </svg>
282
+ <div>SHOP</div>
283
+ </div>
284
+ <div class="nav-item">
285
+ <!-- Cart -->
286
+ <svg viewBox="0 0 24 24">
287
+ <path d="M3 5 H6 L7.5 14 H18 L21 8 H8" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"></path>
288
+ <circle cx="9" cy="18" r="2"></circle>
289
+ <circle cx="17" cy="18" r="2"></circle>
290
+ </svg>
291
+ <div class="nav-badge">13</div>
292
+ <div>CART</div>
293
+ </div>
294
+ <div class="nav-item">
295
+ <!-- Account -->
296
+ <svg viewBox="0 0 24 24">
297
+ <circle cx="12" cy="8" r="4"></circle>
298
+ <path d="M4 20 C4 15 8 13 12 13 C16 13 20 15 20 20" fill="none" stroke-width="2"></path>
299
+ </svg>
300
+ <div class="nav-badge" style="right: 24px;">1</div>
301
+ <div>ACCOUNT</div>
302
+ </div>
303
+ </div>
304
+
305
+ <!-- phone bottom edge -->
306
+ <div class="phone-edge">
307
+ <div class="home-indicator"></div>
308
+ </div>
309
+
310
+ </div>
311
+ </body>
312
+ </html>
code/14492/14492_4.html ADDED
@@ -0,0 +1,189 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Pants - Shop</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; }
9
+ #render-target { width: 1080px; height: 2400px; position: relative; overflow: hidden; background: #ffffff; }
10
+
11
+ /* Status bar */
12
+ .status-bar { height: 90px; padding: 0 40px; display: flex; align-items: center; justify-content: space-between; color: #333; font-size: 34px; }
13
+ .status-icons { display: flex; gap: 24px; align-items: center; }
14
+
15
+ /* Top actions */
16
+ .top-actions { position: absolute; top: 110px; left: 40px; right: 40px; display: flex; align-items: center; justify-content: space-between; }
17
+ .back-btn svg { width: 36px; height: 36px; }
18
+ .action-icons { display: flex; gap: 32px; align-items: center; }
19
+ .icon-btn { width: 56px; height: 56px; border-radius: 28px; display: flex; align-items: center; justify-content: center; color: #000; position: relative; }
20
+ .icon-btn svg { width: 40px; height: 40px; }
21
+ .badge { position: absolute; top: -8px; right: -8px; background: #222; color: #fff; font-size: 24px; border-radius: 16px; padding: 2px 10px; line-height: 1; }
22
+
23
+ /* Title and subhead */
24
+ .title-area { position: absolute; top: 180px; left: 40px; right: 40px; }
25
+ .title-area h1 { margin: 0; font-size: 84px; letter-spacing: 1px; font-weight: 800; }
26
+ .sub-head { display: flex; align-items: center; justify-content: space-between; margin-top: 32px; }
27
+ .sub-head .left { font-size: 36px; font-weight: 700; color: #222; }
28
+ .sub-head .right { display: flex; align-items: center; gap: 12px; color: #222; font-weight: 700; font-size: 36px; }
29
+ .sort-icon { width: 34px; height: 34px; }
30
+
31
+ /* Category pills */
32
+ .pills { display: flex; gap: 28px; margin-top: 36px; }
33
+ .pill { padding: 22px 32px; border-radius: 36px; background: #f2f2f2; color: #111; font-weight: 700; font-size: 34px; }
34
+ .pill.active { background: #fff; border: 4px solid #000; }
35
+
36
+ /* Product grid */
37
+ .product-section { position: absolute; top: 520px; left: 40px; right: 40px; bottom: 200px; overflow: auto; padding-bottom: 200px; }
38
+ .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 40px; }
39
+ .card { background: #fff; }
40
+ .image { position: relative; width: 100%; height: 480px; background: #E0E0E0; border: 1px solid #BDBDBD; display: flex; justify-content: center; align-items: center; color: #757575; font-size: 32px; text-align: center; }
41
+ .tag { position: absolute; top: 20px; left: 20px; background: #111; color: #fff; font-size: 28px; font-weight: 800; padding: 6px 14px; border-radius: 6px; }
42
+ .heart { position: absolute; top: 20px; right: 20px; width: 56px; height: 56px; background: #fff; border-radius: 28px; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 0 2px rgba(0,0,0,0.08); }
43
+ .heart svg { width: 34px; height: 34px; stroke: #000; fill: none; stroke-width: 3; }
44
+ .meta { display: flex; align-items: center; gap: 12px; margin-top: 24px; color: #666; font-size: 30px; }
45
+ .chev { width: 26px; height: 26px; }
46
+ .card h3 { margin: 16px 0 12px 0; font-size: 40px; line-height: 1.2; font-weight: 800; color: #222; }
47
+ .price { font-size: 40px; font-weight: 800; color: #111; margin-top: 8px; }
48
+ .price.sale { color: #C34A2E; }
49
+ .old-price { font-size: 34px; color: #888; text-decoration: line-through; margin-top: 8px; }
50
+
51
+ /* Bottom navigation */
52
+ .bottom-nav { position: absolute; left: 0; right: 0; bottom: 0; height: 170px; border-top: 1px solid #e5e5e5; background: #fff; display: flex; justify-content: space-around; align-items: center; }
53
+ .nav-item { display: flex; flex-direction: column; align-items: center; gap: 10px; color: #777; font-size: 30px; position: relative; }
54
+ .nav-item.active { color: #000; }
55
+ .nav-icon { width: 48px; height: 48px; }
56
+ .nav-badge { position: absolute; top: -8px; right: -20px; background: #c0a878; color: #fff; border-radius: 14px; padding: 2px 10px; font-size: 26px; line-height: 1; }
57
+ </style>
58
+ </head>
59
+ <body>
60
+ <div id="render-target">
61
+
62
+ <!-- Status bar -->
63
+ <div class="status-bar">
64
+ <div class="time">10:27</div>
65
+ <div class="status-icons">
66
+ <span>• • • • •</span>
67
+ <span>📡</span>
68
+ <span>🔋</span>
69
+ </div>
70
+ </div>
71
+
72
+ <!-- Top action bar -->
73
+ <div class="top-actions">
74
+ <div class="back-btn">
75
+ <svg viewBox="0 0 24 24"><path d="M15 18l-6-6 6-6" stroke="#000" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>
76
+ </div>
77
+ <div class="action-icons">
78
+ <div class="icon-btn">
79
+ <!-- Filter icon -->
80
+ <svg viewBox="0 0 24 24"><path d="M3 6h18M6 12h12M10 18h4" stroke="#000" stroke-width="2" fill="none" stroke-linecap="round"/></svg>
81
+ <div class="badge">1</div>
82
+ </div>
83
+ <div class="icon-btn">
84
+ <!-- Search icon -->
85
+ <svg viewBox="0 0 24 24"><circle cx="11" cy="11" r="6" stroke="#000" stroke-width="2" fill="none"/><path d="M20 20l-4-4" stroke="#000" stroke-width="2" fill="none" stroke-linecap="round"/></svg>
86
+ </div>
87
+ </div>
88
+ </div>
89
+
90
+ <!-- Title and filters -->
91
+ <div class="title-area">
92
+ <h1>PANTS</h1>
93
+ <div class="sub-head">
94
+ <div class="left">3 PRODUCTS</div>
95
+ <div class="right">
96
+ <span>SORT</span>
97
+ <svg class="sort-icon" viewBox="0 0 24 24"><path d="M8 6l-4 4h8zM16 18l4-4h-8z" fill="#000"/></svg>
98
+ </div>
99
+ </div>
100
+ <div class="pills">
101
+ <div class="pill">MOTORSPORT</div>
102
+ <div class="pill active">SOCCER</div>
103
+ <div class="pill">TRAINING</div>
104
+ <div class="pill">STUDIO</div>
105
+ </div>
106
+ </div>
107
+
108
+ <!-- Product grid -->
109
+ <div class="product-section">
110
+ <div class="grid">
111
+ <!-- Product 1 -->
112
+ <div class="card">
113
+ <div class="image">
114
+ <div class="tag">NEW</div>
115
+ <div class="heart">
116
+ <svg viewBox="0 0 24 24"><path d="M12 21s-7-4.4-9-8.8C1.5 9 3.7 6.5 6.6 7.1c1.6.3 2.8 1.7 3.4 3.1.6-1.4 1.8-2.8 3.4-3.1 2.9-.6 5.1 1.9 3.6 5.1C19 16.6 12 21 12 21z"/></svg>
117
+ </div>
118
+ [IMG: Soccer pants on model kicking ball]
119
+ </div>
120
+ <div class="meta">
121
+ <span>3 Colors</span>
122
+ <svg class="chev" viewBox="0 0 24 24"><path d="M6 9l6 6 6-6" stroke="#000" stroke-width="2" fill="none" stroke-linecap="round"/></svg>
123
+ </div>
124
+ <h3>individualBLAZE Women's Soccer Train...</h3>
125
+ <div class="price">$55.00</div>
126
+ </div>
127
+
128
+ <!-- Product 2 -->
129
+ <div class="card">
130
+ <div class="image">
131
+ <div class="heart">
132
+ <svg viewBox="0 0 24 24"><path d="M12 21s-7-4.4-9-8.8C1.5 9 3.7 6.5 6.6 7.1c1.6.3 2.8 1.7 3.4 3.1.6-1.4 1.8-2.8 3.4-3.1 2.9-.6 5.1 1.9 3.6 5.1C19 16.6 12 21 12 21z"/></svg>
133
+ </div>
134
+ [IMG: Teal soccer pants on model with ball]
135
+ </div>
136
+ <div class="meta">
137
+ <span>3 Colors</span>
138
+ <svg class="chev" viewBox="0 0 24 24"><path d="M6 9l6 6 6-6" stroke="#000" stroke-width="2" fill="none" stroke-linecap="round"/></svg>
139
+ </div>
140
+ <h3>individualBLAZE Women's Soccer Train...</h3>
141
+ <div class="price sale">$35.99</div>
142
+ <div class="old-price">$50.00</div>
143
+ </div>
144
+
145
+ <!-- Product 3 -->
146
+ <div class="card" style="grid-column: 1 / span 1;">
147
+ <div class="image">
148
+ <div class="heart">
149
+ <svg viewBox="0 0 24 24"><path d="M12 21s-7-4.4-9-8.8C1.5 9 3.7 6.5 6.6 7.1c1.6.3 2.8 1.7 3.4 3.1.6-1.4 1.8-2.8 3.4-3.1 2.9-.6 5.1 1.9 3.6 5.1C19 16.6 12 21 12 21z"/></svg>
150
+ </div>
151
+ [IMG: Black soccer pants product photo]
152
+ </div>
153
+ <div class="meta">
154
+ <span>3 Colors</span>
155
+ <svg class="chev" viewBox="0 0 24 24"><path d="M6 9l6 6 6-6" stroke="#000" stroke-width="2" fill="none" stroke-linecap="round"/></svg>
156
+ </div>
157
+ </div>
158
+ </div>
159
+ </div>
160
+
161
+ <!-- Bottom navigation -->
162
+ <div class="bottom-nav">
163
+ <div class="nav-item">
164
+ <svg class="nav-icon" viewBox="0 0 24 24"><path d="M3 11l9-8 9 8v9H3z" fill="none" stroke="#777" stroke-width="2"/></svg>
165
+ <div>HOME</div>
166
+ </div>
167
+ <div class="nav-item">
168
+ <svg class="nav-icon" viewBox="0 0 24 24"><rect x="4" y="4" width="16" height="16" rx="2" fill="none" stroke="#777" stroke-width="2"/><path d="M8 2v6M16 2v6" stroke="#777" stroke-width="2"/></svg>
169
+ <div>DROPS</div>
170
+ </div>
171
+ <div class="nav-item active">
172
+ <svg class="nav-icon" viewBox="0 0 24 24"><circle cx="11" cy="11" r="6" stroke="#000" stroke-width="2" fill="none"/><path d="M20 20l-4-4" stroke="#000" stroke-width="2" fill="none" stroke-linecap="round"/></svg>
173
+ <div>SHOP</div>
174
+ </div>
175
+ <div class="nav-item" style="position:relative;">
176
+ <svg class="nav-icon" viewBox="0 0 24 24"><path d="M3 6h18l-2 12H5L3 6zM7 6V4h10v2" fill="none" stroke="#777" stroke-width="2"/></svg>
177
+ <div class="nav-badge">13</div>
178
+ <div>CART</div>
179
+ </div>
180
+ <div class="nav-item" style="position:relative;">
181
+ <svg class="nav-icon" viewBox="0 0 24 24"><circle cx="12" cy="8" r="4" stroke="#777" stroke-width="2" fill="none"/><path d="M4 22c0-4 4-7 8-7s8 3 8 7" stroke="#777" stroke-width="2" fill="none"/></svg>
182
+ <div class="nav-badge">1</div>
183
+ <div>ACCOUNT</div>
184
+ </div>
185
+ </div>
186
+
187
+ </div>
188
+ </body>
189
+ </html>
code/14492/14492_5.html ADDED
@@ -0,0 +1,350 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Product Detail UI</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; }
9
+ #render-target {
10
+ width: 1080px;
11
+ height: 2400px;
12
+ position: relative;
13
+ overflow: hidden;
14
+ background: #ffffff;
15
+ font-family: Arial, Helvetica, sans-serif;
16
+ color: #111;
17
+ }
18
+
19
+ /* Status bar */
20
+ .statusbar {
21
+ position: absolute;
22
+ top: 0;
23
+ left: 0;
24
+ width: 1080px;
25
+ height: 120px;
26
+ background: #fff;
27
+ display: flex;
28
+ align-items: center;
29
+ padding: 0 40px;
30
+ box-sizing: border-box;
31
+ }
32
+ .status-time {
33
+ font-size: 38px;
34
+ font-weight: 600;
35
+ color: #333;
36
+ margin-right: 20px;
37
+ }
38
+ .status-icons {
39
+ display: flex;
40
+ align-items: center;
41
+ gap: 24px;
42
+ margin-left: 8px;
43
+ }
44
+ .status-right {
45
+ margin-left: auto;
46
+ display: flex;
47
+ align-items: center;
48
+ gap: 32px;
49
+ }
50
+ .icon {
51
+ width: 40px;
52
+ height: 40px;
53
+ }
54
+
55
+ /* Hero image area */
56
+ .hero {
57
+ position: absolute;
58
+ top: 120px;
59
+ left: 0;
60
+ width: 1080px;
61
+ height: 1040px;
62
+ box-sizing: border-box;
63
+ }
64
+ .hero .img {
65
+ width: 100%;
66
+ height: 100%;
67
+ background: #E0E0E0;
68
+ border: 1px solid #BDBDBD;
69
+ display: flex;
70
+ align-items: center;
71
+ justify-content: center;
72
+ color: #757575;
73
+ font-size: 34px;
74
+ letter-spacing: 0.5px;
75
+ }
76
+ .tag-new {
77
+ position: absolute;
78
+ top: 180px;
79
+ left: 40px;
80
+ background: #000;
81
+ color: #fff;
82
+ padding: 18px 26px;
83
+ font-size: 32px;
84
+ font-weight: 700;
85
+ border-radius: 6px;
86
+ }
87
+ .close-circle {
88
+ position: absolute;
89
+ top: 330px;
90
+ right: 40px;
91
+ width: 120px;
92
+ height: 120px;
93
+ background: #fff;
94
+ border-radius: 60px;
95
+ box-shadow: 0 6px 20px rgba(0,0,0,0.15);
96
+ display: flex;
97
+ align-items: center;
98
+ justify-content: center;
99
+ }
100
+ .hero-count {
101
+ position: absolute;
102
+ bottom: 36px;
103
+ left: 40px;
104
+ background: #fff;
105
+ color: #111;
106
+ padding: 16px 24px;
107
+ border-radius: 26px;
108
+ font-size: 34px;
109
+ font-weight: 700;
110
+ box-shadow: 0 4px 10px rgba(0,0,0,0.08);
111
+ }
112
+
113
+ /* Progress hint line under hero */
114
+ .progress-line {
115
+ position: absolute;
116
+ top: 1170px;
117
+ left: 40px;
118
+ width: 220px;
119
+ height: 8px;
120
+ background: #111;
121
+ border-radius: 4px;
122
+ }
123
+
124
+ /* Model info strip */
125
+ .model-info {
126
+ position: absolute;
127
+ top: 1200px;
128
+ left: 0;
129
+ width: 1080px;
130
+ height: 120px;
131
+ background: #E6E7E8;
132
+ display: flex;
133
+ align-items: center;
134
+ box-sizing: border-box;
135
+ padding: 0 40px;
136
+ gap: 24px;
137
+ border-top: 1px solid #D0D0D0;
138
+ border-bottom: 1px solid #D0D0D0;
139
+ }
140
+ .model-text {
141
+ font-size: 36px;
142
+ color: #444;
143
+ }
144
+ .info-icon-wrap {
145
+ width: 64px;
146
+ height: 64px;
147
+ border-radius: 32px;
148
+ background: #F1F2F3;
149
+ display: flex;
150
+ align-items: center;
151
+ justify-content: center;
152
+ border: 1px solid #D0D0D0;
153
+ }
154
+
155
+ /* Color section */
156
+ .color-section {
157
+ position: absolute;
158
+ top: 1340px;
159
+ left: 40px;
160
+ width: 1000px;
161
+ }
162
+ .color-label {
163
+ font-size: 40px;
164
+ margin-bottom: 30px;
165
+ }
166
+ .color-label .value {
167
+ font-weight: 700;
168
+ }
169
+ .thumbs {
170
+ display: flex;
171
+ gap: 36px;
172
+ }
173
+ .thumb {
174
+ width: 260px;
175
+ height: 250px;
176
+ background: #E0E0E0;
177
+ border: 1px solid #BDBDBD;
178
+ display: flex;
179
+ align-items: center;
180
+ justify-content: center;
181
+ color: #757575;
182
+ font-size: 28px;
183
+ }
184
+ .thumb.selected {
185
+ border: 6px solid #cda86a;
186
+ box-sizing: border-box;
187
+ }
188
+
189
+ /* Title and price */
190
+ .title-row {
191
+ position: absolute;
192
+ top: 1700px;
193
+ left: 40px;
194
+ width: 1000px;
195
+ }
196
+ .heart-wrap {
197
+ position: absolute;
198
+ top: 0;
199
+ right: 40px;
200
+ width: 64px;
201
+ height: 64px;
202
+ }
203
+ .product-title {
204
+ font-size: 64px;
205
+ font-weight: 800;
206
+ line-height: 1.2;
207
+ margin-right: 120px;
208
+ margin-bottom: 30px;
209
+ }
210
+ .price {
211
+ font-size: 52px;
212
+ font-weight: 800;
213
+ margin-bottom: 30px;
214
+ }
215
+
216
+ /* Size button */
217
+ .size-btn {
218
+ position: absolute;
219
+ top: 1940px;
220
+ left: 40px;
221
+ width: 1000px;
222
+ height: 140px;
223
+ border: 4px solid #222;
224
+ border-radius: 8px;
225
+ display: flex;
226
+ align-items: center;
227
+ justify-content: center;
228
+ gap: 20px;
229
+ font-size: 44px;
230
+ font-weight: 700;
231
+ letter-spacing: 2px;
232
+ }
233
+
234
+ /* Bottom bar (gesture area) */
235
+ .bottom-bar {
236
+ position: absolute;
237
+ bottom: 0;
238
+ left: 0;
239
+ width: 1080px;
240
+ height: 120px;
241
+ background: #000;
242
+ display: flex;
243
+ align-items: center;
244
+ justify-content: center;
245
+ }
246
+ .home-pill {
247
+ width: 240px;
248
+ height: 16px;
249
+ background: #fff;
250
+ border-radius: 12px;
251
+ }
252
+ </style>
253
+ </head>
254
+ <body>
255
+ <div id="render-target">
256
+
257
+ <!-- Status bar -->
258
+ <div class="statusbar">
259
+ <div class="status-time">10:28</div>
260
+ <div class="status-icons">
261
+ <!-- simple notification dots -->
262
+ <svg class="icon" viewBox="0 0 24 24"><circle cx="12" cy="12" r="5" fill="#555"/></svg>
263
+ <svg class="icon" viewBox="0 0 24 24"><circle cx="12" cy="12" r="5" fill="#555"/></svg>
264
+ <svg class="icon" viewBox="0 0 24 24"><circle cx="12" cy="12" r="5" fill="#555"/></svg>
265
+ <svg class="icon" viewBox="0 0 24 24"><circle cx="12" cy="12" r="5" fill="#555"/></svg>
266
+ </div>
267
+ <div class="status-right">
268
+ <!-- WiFi -->
269
+ <svg class="icon" viewBox="0 0 24 24">
270
+ <path d="M2 8c5-4 15-4 20 0" stroke="#333" stroke-width="2" fill="none" stroke-linecap="round"/>
271
+ <path d="M5 12c4-3 10-3 14 0" stroke="#333" stroke-width="2" fill="none" stroke-linecap="round"/>
272
+ <path d="M9 16c2-2 4-2 6 0" stroke="#333" stroke-width="2" fill="none" stroke-linecap="round"/>
273
+ <circle cx="12" cy="19" r="1.6" fill="#333"/>
274
+ </svg>
275
+ <!-- Battery -->
276
+ <svg class="icon" viewBox="0 0 28 24">
277
+ <rect x="2" y="6" width="20" height="12" rx="2" ry="2" stroke="#333" stroke-width="2" fill="none"/>
278
+ <rect x="4" y="8" width="13" height="8" fill="#333"/>
279
+ <rect x="22" y="9" width="4" height="6" rx="1" fill="#333"/>
280
+ </svg>
281
+ </div>
282
+ </div>
283
+
284
+ <!-- Hero image -->
285
+ <div class="hero">
286
+ <div class="img">[IMG: Product hero - model wearing soccer training pants]</div>
287
+ </div>
288
+
289
+ <!-- Overlays on hero -->
290
+ <div class="tag-new">NEW</div>
291
+ <div class="close-circle">
292
+ <svg width="56" height="56" viewBox="0 0 24 24">
293
+ <path d="M5 5l14 14M19 5L5 19" stroke="#000" stroke-width="2.5" stroke-linecap="round"/>
294
+ </svg>
295
+ </div>
296
+ <div class="hero-count">1/7</div>
297
+
298
+ <!-- Progress hint -->
299
+ <div class="progress-line"></div>
300
+
301
+ <!-- Model info strip -->
302
+ <div class="model-info">
303
+ <div class="info-icon-wrap">
304
+ <svg width="30" height="30" viewBox="0 0 24 24">
305
+ <circle cx="12" cy="12" r="10" stroke="#888" stroke-width="2" fill="none"/>
306
+ <rect x="11" y="10" width="2" height="7" fill="#888"/>
307
+ <circle cx="12" cy="7" r="1.3" fill="#888"/>
308
+ </svg>
309
+ </div>
310
+ <div class="model-text">Our model is 5'9" tall and is wearing size S</div>
311
+ </div>
312
+
313
+ <!-- Color options -->
314
+ <div class="color-section">
315
+ <div class="color-label">Color: <span class="value">Inky Blue–Fire Orchid</span></div>
316
+ <div class="thumbs">
317
+ <div class="thumb">[IMG: Black pants]</div>
318
+ <div class="thumb">[IMG: Teal pants]</div>
319
+ <div class="thumb selected">[IMG: Blue with red stripe pants]</div>
320
+ </div>
321
+ </div>
322
+
323
+ <!-- Title and price -->
324
+ <div class="title-row">
325
+ <div class="heart-wrap">
326
+ <svg viewBox="0 0 24 24">
327
+ <path d="M12 21s-7-4.7-9.5-8.4C0.4 9.9 2.2 6 6 6c2 0 3.4 1 4 2 0.6-1 2-2 4-2 3.8 0 5.6 3.9 3.5 6.6C19 16.3 12 21 12 21z" fill="none" stroke="#111" stroke-width="2" stroke-linejoin="round"/>
328
+ </svg>
329
+ </div>
330
+ <div class="product-title">individualBLAZE Women's
331
+ Soccer Training Pants</div>
332
+ <div class="price">$55.00</div>
333
+ </div>
334
+
335
+ <!-- Size button -->
336
+ <div class="size-btn">
337
+ <span>SIZE</span>
338
+ <svg width="34" height="34" viewBox="0 0 24 24">
339
+ <path d="M6 9l6 6 6-6" stroke="#111" stroke-width="2.5" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
340
+ </svg>
341
+ </div>
342
+
343
+ <!-- Bottom navigation/gesture bar -->
344
+ <div class="bottom-bar">
345
+ <div class="home-pill"></div>
346
+ </div>
347
+
348
+ </div>
349
+ </body>
350
+ </html>
code/14492/14492_6.html ADDED
@@ -0,0 +1,256 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>Size Selector Bottom Sheet</title>
6
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
9
+ #render-target {
10
+ width: 1080px;
11
+ height: 2400px;
12
+ position: relative;
13
+ overflow: hidden;
14
+ background: #ffffff;
15
+ }
16
+
17
+ /* Status bar */
18
+ .status-bar {
19
+ position: absolute;
20
+ top: 0;
21
+ left: 0;
22
+ width: 1080px;
23
+ height: 120px;
24
+ background: #111;
25
+ color: #eaeaea;
26
+ display: flex;
27
+ align-items: center;
28
+ padding: 0 40px;
29
+ font-weight: 600;
30
+ letter-spacing: 0.5px;
31
+ }
32
+ .status-bar .left { flex: 1; font-size: 38px; }
33
+ .status-icons {
34
+ display: flex;
35
+ align-items: center;
36
+ gap: 22px;
37
+ }
38
+ .dot {
39
+ width: 14px; height: 14px; background: #ddd; border-radius: 50%;
40
+ opacity: 0.7;
41
+ }
42
+ .wifi, .battery {
43
+ width: 44px; height: 24px;
44
+ }
45
+
46
+ /* Product hero image area */
47
+ .hero {
48
+ position: absolute;
49
+ top: 120px;
50
+ left: 0;
51
+ width: 1080px;
52
+ height: 1220px;
53
+ background: #E0E0E0;
54
+ border-top: 1px solid #BDBDBD;
55
+ border-bottom: 1px solid #BDBDBD;
56
+ display: flex; align-items: center; justify-content: center;
57
+ color: #757575; font-size: 34px;
58
+ }
59
+ .hero::after {
60
+ /* dark overlay to match screenshot */
61
+ content: "";
62
+ position: absolute;
63
+ inset: 0;
64
+ background: rgba(0,0,0,0.35);
65
+ }
66
+ .badge-new {
67
+ position: absolute;
68
+ top: 200px;
69
+ left: 60px;
70
+ background: #121212;
71
+ color: #fff;
72
+ font-weight: 700;
73
+ padding: 18px 26px;
74
+ border-radius: 6px;
75
+ z-index: 2;
76
+ font-size: 36px;
77
+ letter-spacing: 1px;
78
+ }
79
+ .close-circle {
80
+ position: absolute;
81
+ right: 60px;
82
+ top: 380px;
83
+ width: 140px; height: 140px;
84
+ background: rgba(245,245,245,0.9);
85
+ border-radius: 50%;
86
+ display: flex; align-items: center; justify-content: center;
87
+ z-index: 2;
88
+ }
89
+ .close-circle svg { width: 56px; height: 56px; }
90
+
91
+ /* Bottom sheet */
92
+ .sheet {
93
+ position: absolute;
94
+ bottom: 0;
95
+ left: 0;
96
+ width: 1080px;
97
+ height: 1300px;
98
+ background: #fff;
99
+ border-top-left-radius: 28px;
100
+ border-top-right-radius: 28px;
101
+ box-shadow: 0 -10px 24px rgba(0,0,0,0.15);
102
+ }
103
+ .sheet .handle {
104
+ width: 160px;
105
+ height: 10px;
106
+ background: #c7c7c7;
107
+ border-radius: 6px;
108
+ margin: 26px auto 40px auto;
109
+ }
110
+ .sheet .header {
111
+ position: relative;
112
+ padding: 0 60px;
113
+ display: flex; align-items: center; justify-content: space-between;
114
+ }
115
+ .sheet .title {
116
+ font-size: 64px;
117
+ font-weight: 800;
118
+ color: #222;
119
+ letter-spacing: 1px;
120
+ }
121
+ .sheet .header .x-btn {
122
+ width: 60px; height: 60px;
123
+ }
124
+
125
+ .sizes {
126
+ padding: 40px 60px 0 60px;
127
+ display: grid;
128
+ grid-template-columns: 1fr;
129
+ gap: 36px;
130
+ }
131
+ .size-item {
132
+ height: 140px;
133
+ border-radius: 10px;
134
+ border: 1px solid #d0d0d0;
135
+ background: linear-gradient(to right, #d9d9d9, #ffffff 50%, #d9d9d9 100%);
136
+ }
137
+
138
+ .size-guide {
139
+ display: flex;
140
+ align-items: center;
141
+ justify-content: flex-end;
142
+ gap: 14px;
143
+ padding: 50px 60px 30px 60px;
144
+ color: #222;
145
+ font-size: 38px;
146
+ font-weight: 700;
147
+ letter-spacing: 0.5px;
148
+ }
149
+ .size-guide svg { width: 36px; height: 36px; }
150
+
151
+ .cta {
152
+ margin: 0 60px;
153
+ height: 140px;
154
+ border-radius: 8px;
155
+ background: #bfc3c8;
156
+ color: #2e3338;
157
+ display: flex; align-items: center; justify-content: center;
158
+ font-weight: 800;
159
+ font-size: 40px;
160
+ letter-spacing: 2px;
161
+ }
162
+
163
+ /* Bottom system bar */
164
+ .system-bar {
165
+ position: absolute;
166
+ bottom: 0;
167
+ left: 0;
168
+ width: 1080px;
169
+ height: 140px;
170
+ background: #000;
171
+ display: flex;
172
+ align-items: center; justify-content: center;
173
+ }
174
+ .home-indicator {
175
+ width: 200px;
176
+ height: 16px;
177
+ background: #cfcfcf;
178
+ border-radius: 10px;
179
+ opacity: 0.85;
180
+ }
181
+ </style>
182
+ </head>
183
+ <body>
184
+ <div id="render-target">
185
+
186
+ <!-- Status bar -->
187
+ <div class="status-bar">
188
+ <div class="left">10:30</div>
189
+ <div class="status-icons">
190
+ <div class="dot"></div>
191
+ <div class="dot"></div>
192
+ <div class="dot"></div>
193
+ <div class="dot"></div>
194
+ <svg class="wifi" viewBox="0 0 24 24" fill="none">
195
+ <path d="M3 8c5-4 13-4 18 0" stroke="#eaeaea" stroke-width="2" stroke-linecap="round"/>
196
+ <path d="M6 11c3-3 9-3 12 0" stroke="#eaeaea" stroke-width="2" stroke-linecap="round"/>
197
+ <path d="M9 14c2-2 4-2 6 0" stroke="#eaeaea" stroke-width="2" stroke-linecap="round"/>
198
+ <circle cx="12" cy="18" r="2" fill="#eaeaea"/>
199
+ </svg>
200
+ <svg class="battery" viewBox="0 0 32 18" fill="none">
201
+ <rect x="1" y="3" width="26" height="12" rx="2" stroke="#eaeaea" stroke-width="2"/>
202
+ <rect x="3" y="5" width="22" height="8" rx="1" fill="#eaeaea"/>
203
+ <rect x="28" y="6" width="3" height="6" rx="1" fill="#eaeaea"/>
204
+ </svg>
205
+ </div>
206
+ </div>
207
+
208
+ <!-- Product hero image area -->
209
+ <div class="hero">
210
+ [IMG: Model wearing blue soccer pants controlling a ball]
211
+ </div>
212
+
213
+ <div class="badge-new">NEW</div>
214
+
215
+ <!-- circular close on hero -->
216
+ <div class="close-circle">
217
+ <svg viewBox="0 0 24 24">
218
+ <path d="M5 5l14 14M19 5L5 19" stroke="#222" stroke-width="2" stroke-linecap="round"/>
219
+ </svg>
220
+ </div>
221
+
222
+ <!-- Bottom sheet -->
223
+ <div class="sheet">
224
+ <div class="handle"></div>
225
+
226
+ <div class="header">
227
+ <div class="title">CHOOSE YOUR SIZE</div>
228
+ <svg class="x-btn" viewBox="0 0 24 24">
229
+ <path d="M5 5l14 14M19 5L5 19" stroke="#222" stroke-width="2" stroke-linecap="round"/>
230
+ </svg>
231
+ </div>
232
+
233
+ <div class="sizes">
234
+ <div class="size-item"></div>
235
+ <div class="size-item"></div>
236
+ <div class="size-item"></div>
237
+ <div class="size-item"></div>
238
+ </div>
239
+
240
+ <div class="size-guide">
241
+ <div>SIZE GUIDE</div>
242
+ <svg viewBox="0 0 24 24">
243
+ <path d="M8 5l7 7-7 7" stroke="#222" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
244
+ </svg>
245
+ </div>
246
+
247
+ <div class="cta">ADD TO CART</div>
248
+ </div>
249
+
250
+ <!-- System bottom bar -->
251
+ <div class="system-bar">
252
+ <div class="home-indicator"></div>
253
+ </div>
254
+ </div>
255
+ </body>
256
+ </html>
code/14492/14492_7.html ADDED
@@ -0,0 +1,268 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Choose Size Modal</title>
7
+ <style>
8
+ body {
9
+ margin: 0;
10
+ padding: 0;
11
+ background: transparent;
12
+ font-family: Arial, Helvetica, sans-serif;
13
+ color: #222;
14
+ }
15
+ #render-target {
16
+ width: 1080px;
17
+ height: 2400px;
18
+ position: relative;
19
+ overflow: hidden;
20
+ background: #111;
21
+ }
22
+
23
+ /* Status bar */
24
+ .status-bar {
25
+ position: absolute;
26
+ top: 0;
27
+ left: 0;
28
+ width: 1080px;
29
+ height: 120px;
30
+ background: #111;
31
+ color: #DADADA;
32
+ display: flex;
33
+ align-items: center;
34
+ justify-content: space-between;
35
+ padding: 0 40px;
36
+ box-sizing: border-box;
37
+ font-size: 42px;
38
+ letter-spacing: 0.5px;
39
+ }
40
+ .status-right {
41
+ display: flex;
42
+ align-items: center;
43
+ gap: 28px;
44
+ }
45
+ .icon {
46
+ width: 40px;
47
+ height: 40px;
48
+ }
49
+
50
+ /* Product image area */
51
+ .product-area {
52
+ position: absolute;
53
+ top: 120px;
54
+ left: 0;
55
+ width: 1080px;
56
+ height: 930px;
57
+ background: #E0E0E0;
58
+ border: 1px solid #BDBDBD;
59
+ display: flex;
60
+ align-items: center;
61
+ justify-content: center;
62
+ color: #757575;
63
+ font-size: 40px;
64
+ }
65
+ .badge-new {
66
+ position: absolute;
67
+ top: 180px;
68
+ left: 48px;
69
+ background: #000;
70
+ color: #fff;
71
+ font-weight: 700;
72
+ font-size: 40px;
73
+ padding: 18px 26px;
74
+ border-radius: 6px;
75
+ letter-spacing: 1px;
76
+ }
77
+ .image-close {
78
+ position: absolute;
79
+ top: 160px;
80
+ right: 48px;
81
+ width: 120px;
82
+ height: 120px;
83
+ background: #E6E6E6;
84
+ border-radius: 60px;
85
+ display: flex;
86
+ align-items: center;
87
+ justify-content: center;
88
+ }
89
+
90
+ /* Bottom sheet */
91
+ .sheet {
92
+ position: absolute;
93
+ left: 0;
94
+ top: 900px;
95
+ width: 1080px;
96
+ height: 1320px;
97
+ background: #fff;
98
+ border-top-left-radius: 26px;
99
+ border-top-right-radius: 26px;
100
+ box-shadow: 0 -6px 24px rgba(0,0,0,0.35);
101
+ }
102
+ .sheet-handle {
103
+ position: absolute;
104
+ top: 16px;
105
+ left: 50%;
106
+ transform: translateX(-50%);
107
+ width: 200px;
108
+ height: 10px;
109
+ background: #B0B6BA;
110
+ border-radius: 8px;
111
+ }
112
+ .sheet-header {
113
+ display: flex;
114
+ align-items: center;
115
+ justify-content: space-between;
116
+ padding: 70px 48px 30px 48px;
117
+ }
118
+ .sheet-title {
119
+ font-size: 64px;
120
+ font-weight: 800;
121
+ letter-spacing: 1px;
122
+ }
123
+ .sheet-close {
124
+ width: 72px;
125
+ height: 72px;
126
+ }
127
+
128
+ .sizes {
129
+ padding: 0 48px;
130
+ }
131
+ .size-row {
132
+ display: flex;
133
+ align-items: center;
134
+ justify-content: space-between;
135
+ height: 150px;
136
+ border-bottom: 2px solid #ECEFF1;
137
+ font-size: 52px;
138
+ }
139
+ .size-row .size {
140
+ font-weight: 700;
141
+ color: #222;
142
+ }
143
+ .size-row .dim {
144
+ color: #9AA0A6;
145
+ font-weight: 600;
146
+ }
147
+ .size-row.disabled .size {
148
+ color: #9AA0A6;
149
+ font-weight: 700;
150
+ }
151
+
152
+ .guide-row {
153
+ display: flex;
154
+ align-items: center;
155
+ justify-content: flex-end;
156
+ padding: 36px 48px;
157
+ font-size: 46px;
158
+ font-weight: 700;
159
+ color: #222;
160
+ gap: 18px;
161
+ }
162
+
163
+ .cta {
164
+ position: absolute;
165
+ bottom: 140px;
166
+ left: 48px;
167
+ width: 984px;
168
+ height: 140px;
169
+ background: #C7CCD1;
170
+ color: #39434B;
171
+ display: flex;
172
+ align-items: center;
173
+ justify-content: center;
174
+ font-weight: 800;
175
+ font-size: 48px;
176
+ letter-spacing: 2px;
177
+ border-radius: 6px;
178
+ }
179
+
180
+ /* Bottom navigation / home indicator */
181
+ .nav-bar {
182
+ position: absolute;
183
+ bottom: 0;
184
+ left: 0;
185
+ width: 1080px;
186
+ height: 140px;
187
+ background: #000;
188
+ display: flex;
189
+ align-items: center;
190
+ justify-content: center;
191
+ }
192
+ .home-pill {
193
+ width: 280px;
194
+ height: 16px;
195
+ background: #E6E6E6;
196
+ border-radius: 10px;
197
+ }
198
+
199
+ </style>
200
+ </head>
201
+ <body>
202
+ <div id="render-target">
203
+
204
+ <div class="status-bar">
205
+ <div>10:30</div>
206
+ <div class="status-right">
207
+ <svg class="icon" viewBox="0 0 24 24">
208
+ <path d="M3 14h2l2-4 3 6 3-8 3 6h5" stroke="#DADADA" stroke-width="2" fill="none" />
209
+ </svg>
210
+ <svg class="icon" viewBox="0 0 24 24">
211
+ <path d="M12 4c-4.4 0-8 3.6-8 8h2c0-3.3 2.7-6 6-6s6 2.7 6 6h2c0-4.4-3.6-8-8-8zm0 6c-2.2 0-4 1.8-4 4h2c0-1.1.9-2 2-2s2 .9 2 2h2c0-2.2-1.8-4-4-4z" fill="#DADADA"/>
212
+ </svg>
213
+ <svg class="icon" viewBox="0 0 24 24">
214
+ <rect x="1" y="6" width="18" height="12" rx="2" ry="2" stroke="#DADADA" stroke-width="2" fill="none"/>
215
+ <rect x="3" y="8" width="14" height="8" fill="#DADADA"/>
216
+ </svg>
217
+ </div>
218
+ </div>
219
+
220
+ <div class="product-area">[IMG: Athletic Pants Close-up]</div>
221
+
222
+ <div class="badge-new">NEW</div>
223
+
224
+ <div class="image-close">
225
+ <svg viewBox="0 0 24 24" width="64" height="64">
226
+ <path d="M6 6l12 12M18 6L6 18" stroke="#222" stroke-width="2" stroke-linecap="round"/>
227
+ </svg>
228
+ </div>
229
+
230
+ <div class="sheet">
231
+ <div class="sheet-handle"></div>
232
+
233
+ <div class="sheet-header">
234
+ <div class="sheet-title">CHOOSE YOUR SIZE</div>
235
+ <svg class="sheet-close" viewBox="0 0 24 24">
236
+ <path d="M6 6l12 12M18 6L6 18" stroke="#000" stroke-width="2" stroke-linecap="round"/>
237
+ </svg>
238
+ </div>
239
+
240
+ <div class="sizes">
241
+ <div class="size-row"><div class="size">XS</div></div>
242
+ <div class="size-row"><div class="size">S</div></div>
243
+ <div class="size-row"><div class="size">M</div></div>
244
+ <div class="size-row"><div class="size">L</div></div>
245
+ <div class="size-row"><div class="size">XL</div></div>
246
+ <div class="size-row disabled">
247
+ <div class="size">XXL</div>
248
+ <div class="dim">Out of Stock</div>
249
+ </div>
250
+ </div>
251
+
252
+ <div class="guide-row">
253
+ <div>SIZE GUIDE</div>
254
+ <svg viewBox="0 0 24 24" width="40" height="40">
255
+ <path d="M8 5l8 7-8 7" fill="none" stroke="#000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
256
+ </svg>
257
+ </div>
258
+
259
+ <div class="cta">ADD TO CART</div>
260
+ </div>
261
+
262
+ <div class="nav-bar">
263
+ <div class="home-pill"></div>
264
+ </div>
265
+
266
+ </div>
267
+ </body>
268
+ </html>
code/14492/14492_8.html ADDED
@@ -0,0 +1,289 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Size Selector UI</title>
7
+ <style>
8
+ body {
9
+ margin: 0;
10
+ padding: 0;
11
+ background: transparent;
12
+ font-family: Arial, Helvetica, sans-serif;
13
+ }
14
+ #render-target {
15
+ width: 1080px;
16
+ height: 2400px;
17
+ position: relative;
18
+ overflow: hidden;
19
+ background: #ffffff;
20
+ }
21
+
22
+ /* Status bar */
23
+ .status-bar {
24
+ position: absolute;
25
+ top: 0;
26
+ left: 0;
27
+ width: 1080px;
28
+ height: 120px;
29
+ background: rgba(0,0,0,0.92);
30
+ color: #fff;
31
+ display: flex;
32
+ align-items: center;
33
+ padding: 0 40px;
34
+ box-sizing: border-box;
35
+ z-index: 5;
36
+ }
37
+ .status-left {
38
+ font-size: 40px;
39
+ font-weight: 600;
40
+ letter-spacing: 1px;
41
+ }
42
+ .status-right {
43
+ margin-left: auto;
44
+ display: flex;
45
+ gap: 26px;
46
+ align-items: center;
47
+ }
48
+ .status-icon {
49
+ width: 38px;
50
+ height: 38px;
51
+ opacity: 0.9;
52
+ }
53
+
54
+ /* Hero image placeholder */
55
+ .hero {
56
+ position: absolute;
57
+ top: 120px;
58
+ left: 0;
59
+ width: 1080px;
60
+ height: 1000px;
61
+ background: #E0E0E0;
62
+ border: 1px solid #BDBDBD;
63
+ display: flex;
64
+ justify-content: center;
65
+ align-items: center;
66
+ color: #757575;
67
+ font-size: 40px;
68
+ }
69
+ .new-badge {
70
+ position: absolute;
71
+ top: 260px;
72
+ left: 60px;
73
+ background: #111;
74
+ color: #fff;
75
+ font-size: 40px;
76
+ font-weight: 700;
77
+ padding: 16px 26px;
78
+ border-radius: 6px;
79
+ letter-spacing: 1px;
80
+ z-index: 6;
81
+ }
82
+ .circle-close {
83
+ position: absolute;
84
+ top: 260px;
85
+ right: 60px;
86
+ width: 120px;
87
+ height: 120px;
88
+ border-radius: 60px;
89
+ background: #e9e9e9;
90
+ display: flex;
91
+ justify-content: center;
92
+ align-items: center;
93
+ z-index: 6;
94
+ box-shadow: 0 2px 4px rgba(0,0,0,0.15);
95
+ }
96
+
97
+ /* Bottom sheet */
98
+ .sheet {
99
+ position: absolute;
100
+ left: 0;
101
+ bottom: 0;
102
+ width: 1080px;
103
+ height: 1500px;
104
+ background: #fff;
105
+ border-top-left-radius: 28px;
106
+ border-top-right-radius: 28px;
107
+ box-shadow: 0 -8px 20px rgba(0,0,0,0.15);
108
+ z-index: 10;
109
+ box-sizing: border-box;
110
+ padding-top: 28px;
111
+ }
112
+ .sheet .grabber {
113
+ width: 160px;
114
+ height: 12px;
115
+ background: #c7c7c7;
116
+ border-radius: 6px;
117
+ margin: 0 auto 40px auto;
118
+ }
119
+ .sheet-header {
120
+ display: flex;
121
+ align-items: center;
122
+ padding: 0 60px;
123
+ margin-bottom: 40px;
124
+ }
125
+ .sheet-title {
126
+ font-size: 62px;
127
+ font-weight: 800;
128
+ color: #111;
129
+ letter-spacing: 1px;
130
+ }
131
+ .sheet-header .header-close {
132
+ margin-left: auto;
133
+ width: 70px;
134
+ height: 70px;
135
+ display: inline-flex;
136
+ justify-content: center;
137
+ align-items: center;
138
+ }
139
+
140
+ .size-list {
141
+ margin-top: 10px;
142
+ }
143
+ .size-item {
144
+ position: relative;
145
+ display: flex;
146
+ align-items: center;
147
+ height: 150px;
148
+ padding: 0 60px;
149
+ box-sizing: border-box;
150
+ border-top: 1px solid #e7e7e7;
151
+ color: #222;
152
+ font-size: 54px;
153
+ font-weight: 700;
154
+ }
155
+ .size-item:last-child {
156
+ border-bottom: 1px solid #e7e7e7;
157
+ }
158
+ .size-item.disabled {
159
+ color: #9aa0a6;
160
+ font-weight: 700;
161
+ }
162
+ .size-item .status {
163
+ margin-left: 40px;
164
+ font-size: 46px;
165
+ color: #9aa0a6;
166
+ font-weight: 600;
167
+ }
168
+ .size-item .check {
169
+ position: absolute;
170
+ right: 60px;
171
+ width: 56px;
172
+ height: 56px;
173
+ }
174
+
175
+ .guide-row {
176
+ display: flex;
177
+ align-items: center;
178
+ justify-content: flex-end;
179
+ padding: 34px 60px 0 60px;
180
+ font-size: 44px;
181
+ font-weight: 700;
182
+ color: #222;
183
+ letter-spacing: 1px;
184
+ }
185
+ .guide-row svg {
186
+ margin-left: 18px;
187
+ width: 40px;
188
+ height: 40px;
189
+ }
190
+
191
+ .cta {
192
+ position: absolute;
193
+ left: 60px;
194
+ right: 60px;
195
+ bottom: 240px;
196
+ height: 140px;
197
+ background: #111;
198
+ color: #fff;
199
+ border-radius: 6px;
200
+ display: flex;
201
+ align-items: center;
202
+ justify-content: center;
203
+ font-size: 48px;
204
+ font-weight: 800;
205
+ letter-spacing: 2px;
206
+ }
207
+
208
+ /* Bottom gesture bar */
209
+ .gesture-bar {
210
+ position: absolute;
211
+ bottom: 70px;
212
+ left: 50%;
213
+ transform: translateX(-50%);
214
+ width: 220px;
215
+ height: 18px;
216
+ background: #d9d9d9;
217
+ border-radius: 9px;
218
+ }
219
+ </style>
220
+ </head>
221
+ <body>
222
+ <div id="render-target">
223
+ <!-- Status bar -->
224
+ <div class="status-bar">
225
+ <div class="status-left">10:30</div>
226
+ <div class="status-right">
227
+ <!-- Simple dots/icons to mimic status symbols -->
228
+ <svg class="status-icon" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10" fill="#fff" opacity="0.2"/></svg>
229
+ <svg class="status-icon" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10" fill="#fff" opacity="0.2"/></svg>
230
+ <svg class="status-icon" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10" fill="#fff" opacity="0.2"/></svg>
231
+ <svg class="status-icon" viewBox="0 0 24 24"><circle cx="3" cy="12" r="2" fill="#fff"/><circle cx="12" cy="12" r="2" fill="#fff"/><circle cx="21" cy="12" r="2" fill="#fff"/></svg>
232
+ <svg class="status-icon" viewBox="0 0 24 24"><path d="M2 6h20v12H2z" fill="none" stroke="#fff" stroke-width="2"/><path d="M18 10h4v4h-4z" fill="#fff"/></svg>
233
+ <svg class="status-icon" viewBox="0 0 24 24"><rect x="6" y="4" width="12" height="16" rx="2" ry="2" fill="none" stroke="#fff" stroke-width="2"/><rect x="9" y="7" width="6" height="10" fill="#fff"/></svg>
234
+ </div>
235
+ </div>
236
+
237
+ <!-- Product hero image placeholder -->
238
+ <div class="hero">[IMG: Athletic leggings product]</div>
239
+ <div class="new-badge">NEW</div>
240
+ <div class="circle-close">
241
+ <svg width="42" height="42" viewBox="0 0 24 24">
242
+ <path d="M6 6l12 12M18 6L6 18" stroke="#111" stroke-width="2" stroke-linecap="round"/>
243
+ </svg>
244
+ </div>
245
+
246
+ <!-- Bottom sheet for size selection -->
247
+ <div class="sheet">
248
+ <div class="grabber"></div>
249
+
250
+ <div class="sheet-header">
251
+ <div class="sheet-title">CHOOSE YOUR SIZE</div>
252
+ <div class="header-close">
253
+ <svg viewBox="0 0 24 24">
254
+ <path d="M6 6l12 12M18 6L6 18" stroke="#222" stroke-width="2" stroke-linecap="round"/>
255
+ </svg>
256
+ </div>
257
+ </div>
258
+
259
+ <div class="size-list">
260
+ <div class="size-item">XS</div>
261
+ <div class="size-item">
262
+ S
263
+ <svg class="check" viewBox="0 0 24 24">
264
+ <path d="M3 12l6 6 12-12" fill="none" stroke="#222" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
265
+ </svg>
266
+ </div>
267
+ <div class="size-item">M</div>
268
+ <div class="size-item">L</div>
269
+ <div class="size-item">XL</div>
270
+ <div class="size-item disabled">
271
+ XXL <span class="status">Out of Stock</span>
272
+ </div>
273
+ </div>
274
+
275
+ <div class="guide-row">
276
+ SIZE GUIDE
277
+ <svg viewBox="0 0 24 24">
278
+ <path d="M9 6l6 6-6 6" fill="none" stroke="#222" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
279
+ </svg>
280
+ </div>
281
+
282
+ <div class="cta">ADD TO CART</div>
283
+ </div>
284
+
285
+ <!-- System gesture bar -->
286
+ <div class="gesture-bar"></div>
287
+ </div>
288
+ </body>
289
+ </html>
code/14492/14492_9.html ADDED
@@ -0,0 +1,386 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>Size Guide UI</title>
6
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; }
9
+ #render-target {
10
+ width: 1080px;
11
+ height: 2400px;
12
+ position: relative;
13
+ overflow: hidden;
14
+ background: #ffffff;
15
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
16
+ color: #111;
17
+ }
18
+
19
+ /* Status bar */
20
+ .status-bar {
21
+ position: absolute;
22
+ top: 0;
23
+ left: 0;
24
+ width: 1080px;
25
+ height: 120px;
26
+ background: #111;
27
+ color: #fff;
28
+ }
29
+ .status-content {
30
+ height: 100%;
31
+ display: flex;
32
+ align-items: center;
33
+ padding: 0 36px;
34
+ justify-content: space-between;
35
+ font-weight: 600;
36
+ font-size: 40px;
37
+ letter-spacing: 0.5px;
38
+ }
39
+ .status-left { display: flex; align-items: center; gap: 24px; }
40
+ .status-center { display: flex; gap: 28px; align-items: center; }
41
+ .status-dot {
42
+ width: 28px; height: 28px; background: #fff; border-radius: 50%;
43
+ opacity: 0.9;
44
+ }
45
+ .status-right { display: flex; align-items: center; gap: 28px; }
46
+
47
+ /* Simple icons */
48
+ .icon { width: 48px; height: 48px; display: inline-block; }
49
+ .icon svg { width: 100%; height: 100%; fill: none; stroke: #fff; stroke-width: 5; }
50
+
51
+ /* Hero banner */
52
+ .hero {
53
+ position: absolute;
54
+ top: 120px;
55
+ left: 0;
56
+ width: 1080px;
57
+ height: 380px;
58
+ overflow: hidden;
59
+ }
60
+ .hero-img {
61
+ width: 100%;
62
+ height: 100%;
63
+ background: #E0E0E0;
64
+ border-bottom: 1px solid #BDBDBD;
65
+ display: flex;
66
+ justify-content: center;
67
+ align-items: center;
68
+ color: #757575;
69
+ font-size: 36px;
70
+ letter-spacing: 0.5px;
71
+ }
72
+ .badge-new {
73
+ position: absolute;
74
+ left: 36px;
75
+ top: 48px;
76
+ background: #111;
77
+ color: #fff;
78
+ padding: 16px 22px;
79
+ font-weight: 700;
80
+ font-size: 28px;
81
+ border-radius: 6px;
82
+ }
83
+ .close-round {
84
+ position: absolute;
85
+ right: 36px;
86
+ top: 110px;
87
+ width: 110px;
88
+ height: 110px;
89
+ background: rgba(255,255,255,0.92);
90
+ border-radius: 50%;
91
+ box-shadow: 0 2px 8px rgba(0,0,0,0.15);
92
+ display: flex;
93
+ align-items: center;
94
+ justify-content: center;
95
+ }
96
+ .close-round svg { width: 48px; height: 48px; stroke: #111; stroke-width: 8; }
97
+
98
+ /* Sheet */
99
+ .sheet {
100
+ position: absolute;
101
+ top: 430px;
102
+ left: 0;
103
+ width: 1080px;
104
+ height: 1720px;
105
+ background: #fff;
106
+ border-top-left-radius: 36px;
107
+ border-top-right-radius: 36px;
108
+ box-shadow: 0 -6px 20px rgba(0,0,0,0.12);
109
+ }
110
+ .handle {
111
+ position: absolute;
112
+ top: 18px;
113
+ left: 50%;
114
+ transform: translateX(-50%);
115
+ width: 140px;
116
+ height: 14px;
117
+ background: #C7C7C7;
118
+ border-radius: 7px;
119
+ }
120
+ .sheet-inner {
121
+ padding: 64px 48px 120px;
122
+ }
123
+
124
+ .title {
125
+ font-size: 72px;
126
+ font-weight: 800;
127
+ letter-spacing: 1px;
128
+ }
129
+ .subtitle {
130
+ margin-top: 18px;
131
+ font-size: 36px;
132
+ color: #6b6f75;
133
+ letter-spacing: 0.2px;
134
+ }
135
+
136
+ .section-header {
137
+ display: flex;
138
+ align-items: baseline;
139
+ justify-content: space-between;
140
+ margin-top: 60px;
141
+ }
142
+ .section-title {
143
+ font-size: 44px;
144
+ font-weight: 800;
145
+ letter-spacing: 0.5px;
146
+ }
147
+ .units {
148
+ font-size: 34px;
149
+ font-weight: 700;
150
+ color: #222;
151
+ }
152
+ .units .cm {
153
+ color: #9aa0a6;
154
+ margin-left: 18px;
155
+ font-weight: 700;
156
+ }
157
+
158
+ /* Tables */
159
+ .table {
160
+ margin-top: 28px;
161
+ width: 100%;
162
+ border-collapse: collapse;
163
+ font-size: 34px;
164
+ color: #222;
165
+ }
166
+ .table th, .table td {
167
+ border: 2px solid #DADCE0;
168
+ padding: 28px 24px;
169
+ text-align: left;
170
+ }
171
+ .table th {
172
+ background: #F5F6F7;
173
+ font-weight: 700;
174
+ }
175
+ .table td.bold {
176
+ font-weight: 800;
177
+ }
178
+
179
+ .conv-title {
180
+ margin-top: 90px;
181
+ font-size: 56px;
182
+ font-weight: 900;
183
+ letter-spacing: 0.8px;
184
+ }
185
+ .conv-subtitle {
186
+ margin-top: 18px;
187
+ font-size: 34px;
188
+ font-weight: 700;
189
+ color: #333;
190
+ }
191
+
192
+ /* Bottom gesture bar */
193
+ .gesture {
194
+ position: absolute;
195
+ bottom: 26px;
196
+ left: 50%;
197
+ transform: translateX(-50%);
198
+ width: 300px;
199
+ height: 16px;
200
+ border-radius: 10px;
201
+ background: #C7C7C7;
202
+ }
203
+ </style>
204
+ </head>
205
+ <body>
206
+ <div id="render-target">
207
+
208
+ <!-- Status bar -->
209
+ <div class="status-bar">
210
+ <div class="status-content">
211
+ <div class="status-left">
212
+ <div>10:31</div>
213
+ </div>
214
+ <div class="status-center">
215
+ <div class="status-dot"></div>
216
+ <div class="status-dot"></div>
217
+ <div class="status-dot"></div>
218
+ <div class="status-dot"></div>
219
+ <div class="status-dot" style="width:10px;height:10px;opacity:0.7;"></div>
220
+ </div>
221
+ <div class="status-right">
222
+ <span class="icon" aria-label="Wi-Fi">
223
+ <svg viewBox="0 0 24 24">
224
+ <path d="M2 8c10-8 20 0 20 0"></path>
225
+ <path d="M5 12c7-6 14 0 14 0"></path>
226
+ <path d="M8 16c4-4 8 0 8 0"></path>
227
+ <circle cx="12" cy="20" r="1.5" fill="#fff"></circle>
228
+ </svg>
229
+ </span>
230
+ <span class="icon" aria-label="Battery">
231
+ <svg viewBox="0 0 28 24">
232
+ <rect x="2" y="6" width="20" height="12" rx="2" ry="2" stroke="#fff"></rect>
233
+ <rect x="23" y="9" width="3" height="6" rx="1" stroke="#fff"></rect>
234
+ <rect x="4" y="8" width="14" height="8" fill="#fff" stroke="none"></rect>
235
+ </svg>
236
+ </span>
237
+ </div>
238
+ </div>
239
+ </div>
240
+
241
+ <!-- Hero banner -->
242
+ <div class="hero">
243
+ <div class="hero-img">[IMG: Athletic product banner]</div>
244
+ <div class="badge-new">NEW</div>
245
+ <div class="close-round" aria-label="Close">
246
+ <svg viewBox="0 0 24 24">
247
+ <path d="M5 5L19 19M19 5L5 19"></path>
248
+ </svg>
249
+ </div>
250
+ </div>
251
+
252
+ <!-- Bottom sheet content -->
253
+ <div class="sheet">
254
+ <div class="handle"></div>
255
+ <div class="sheet-inner">
256
+ <div class="title">SIZE GUIDE</div>
257
+ <div class="subtitle">Find the right size for you</div>
258
+
259
+ <div class="section-header">
260
+ <div class="section-title">Product Measurements</div>
261
+ <div class="units">INCHES <span class="cm">CM</span></div>
262
+ </div>
263
+
264
+ <table class="table">
265
+ <thead>
266
+ <tr>
267
+ <th style="width:28%;">Size</th>
268
+ <th style="width:36%;">Hem</th>
269
+ <th style="width:36%;">Hip</th>
270
+ </tr>
271
+ </thead>
272
+ <tbody>
273
+ <tr>
274
+ <td class="bold">XS</td>
275
+ <td>28.3</td>
276
+ <td>36.6</td>
277
+ </tr>
278
+ <tr>
279
+ <td class="bold">S</td>
280
+ <td>29.9</td>
281
+ <td>38.6</td>
282
+ </tr>
283
+ <tr>
284
+ <td class="bold">M</td>
285
+ <td>32.3</td>
286
+ <td>41.3</td>
287
+ </tr>
288
+ <tr>
289
+ <td class="bold">L</td>
290
+ <td>35.0</td>
291
+ <td>44.5</td>
292
+ </tr>
293
+ <tr>
294
+ <td class="bold">XL</td>
295
+ <td>38.2</td>
296
+ <td>47.6</td>
297
+ </tr>
298
+ <tr>
299
+ <td class="bold">XXL</td>
300
+ <td>41.3</td>
301
+ <td>50.8</td>
302
+ </tr>
303
+ </tbody>
304
+ </table>
305
+
306
+ <div class="conv-title">INTERNATIONAL SIZE CONVERSIONS</div>
307
+ <div class="conv-subtitle">Women's Clothing</div>
308
+
309
+ <table class="table" style="margin-top: 24px;">
310
+ <thead>
311
+ <tr>
312
+ <th style="width:16%;">US</th>
313
+ <th style="width:14%;">DE</th>
314
+ <th style="width:14%;">UK</th>
315
+ <th style="width:14%;">FR</th>
316
+ <th style="width:14%;">IT</th>
317
+ <th style="width:14%;">ES</th>
318
+ </tr>
319
+ </thead>
320
+ <tbody>
321
+ <tr>
322
+ <td class="bold">XXS</td>
323
+ <td>32</td>
324
+ <td>6</td>
325
+ <td>34</td>
326
+ <td>38</td>
327
+ <td>36</td>
328
+ </tr>
329
+ <tr>
330
+ <td class="bold">XS</td>
331
+ <td>34</td>
332
+ <td>8</td>
333
+ <td>36</td>
334
+ <td>40</td>
335
+ <td>38</td>
336
+ </tr>
337
+ <tr>
338
+ <td class="bold">S</td>
339
+ <td>36</td>
340
+ <td>10</td>
341
+ <td>38</td>
342
+ <td>42</td>
343
+ <td>40</td>
344
+ </tr>
345
+ <tr>
346
+ <td class="bold">M</td>
347
+ <td>38</td>
348
+ <td>12</td>
349
+ <td>40</td>
350
+ <td>44</td>
351
+ <td>42</td>
352
+ </tr>
353
+ <tr>
354
+ <td class="bold">L</td>
355
+ <td>40</td>
356
+ <td>14</td>
357
+ <td>42</td>
358
+ <td>46</td>
359
+ <td>44</td>
360
+ </tr>
361
+ <tr>
362
+ <td class="bold">XL</td>
363
+ <td>42</td>
364
+ <td>16</td>
365
+ <td>44</td>
366
+ <td>48</td>
367
+ <td>46</td>
368
+ </tr>
369
+ <tr>
370
+ <td class="bold">XXL</td>
371
+ <td>44</td>
372
+ <td>18</td>
373
+ <td>46</td>
374
+ <td>50</td>
375
+ <td>48</td>
376
+ </tr>
377
+ </tbody>
378
+ </table>
379
+ </div>
380
+ </div>
381
+
382
+ <!-- Bottom gesture bar -->
383
+ <div class="gesture"></div>
384
+ </div>
385
+ </body>
386
+ </html>
code/14498/14498_0.html ADDED
@@ -0,0 +1,308 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Payment Sheet - Dark</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
9
+ #render-target {
10
+ position: relative;
11
+ width: 1080px;
12
+ height: 2400px;
13
+ overflow: hidden;
14
+ background: #0f0f10;
15
+ color: #e6e6e6;
16
+ }
17
+
18
+ /* Status bar */
19
+ .statusbar {
20
+ position: absolute;
21
+ top: 0;
22
+ left: 0;
23
+ width: 1080px;
24
+ height: 120px;
25
+ background: #1b1b1c;
26
+ color: #fff;
27
+ display: flex;
28
+ align-items: center;
29
+ justify-content: space-between;
30
+ padding: 0 36px;
31
+ box-sizing: border-box;
32
+ font-weight: 600;
33
+ letter-spacing: 1px;
34
+ }
35
+ .status-icons {
36
+ display: flex;
37
+ align-items: center;
38
+ gap: 22px;
39
+ opacity: 0.9;
40
+ }
41
+ .status-icons svg { width: 36px; height: 36px; fill: #fff; }
42
+
43
+ /* App overlay content */
44
+ .overlay {
45
+ position: absolute;
46
+ top: 140px;
47
+ left: 56px;
48
+ right: 56px;
49
+ color: #dcdcdc;
50
+ }
51
+ .close-btn {
52
+ position: absolute;
53
+ right: 28px;
54
+ top: 0;
55
+ width: 72px;
56
+ height: 72px;
57
+ display: flex;
58
+ align-items: center;
59
+ justify-content: center;
60
+ opacity: 0.7;
61
+ }
62
+ .overlay h1 {
63
+ margin: 90px 0 18px 0;
64
+ font-size: 64px;
65
+ font-weight: 800;
66
+ letter-spacing: -0.5px;
67
+ color: #eaeaea;
68
+ }
69
+ .subtitle {
70
+ font-size: 32px;
71
+ color: #a9a9a9;
72
+ margin-top: 18px;
73
+ }
74
+ .title-row {
75
+ display: flex;
76
+ align-items: center;
77
+ gap: 18px;
78
+ }
79
+ .premium-pill {
80
+ display: inline-flex;
81
+ align-items: center;
82
+ gap: 10px;
83
+ border: 2px solid #c59a41;
84
+ color: #e6c07b;
85
+ padding: 6px 16px;
86
+ border-radius: 22px;
87
+ font-size: 28px;
88
+ }
89
+ .premium-pill svg { width: 28px; height: 28px; fill: #e6c07b; }
90
+
91
+ .benefits {
92
+ margin-top: 140px;
93
+ display: grid;
94
+ gap: 46px;
95
+ max-width: 850px;
96
+ }
97
+ .benefit {
98
+ display: flex;
99
+ align-items: center;
100
+ gap: 24px;
101
+ color: #9a9a9a;
102
+ font-size: 36px;
103
+ }
104
+ .benefit .check {
105
+ width: 38px; height: 38px; border-radius: 50%;
106
+ background: #5a3e12;
107
+ border: 2px solid #c68d2b;
108
+ display: inline-flex; align-items: center; justify-content: center;
109
+ }
110
+ .benefit .check svg { width: 24px; height: 24px; fill: #d6a046; }
111
+
112
+ /* Bottom sheet */
113
+ .sheet {
114
+ position: absolute;
115
+ left: 0;
116
+ bottom: 0;
117
+ width: 1080px;
118
+ height: 1320px;
119
+ background: #1e1f22;
120
+ border-top-left-radius: 28px;
121
+ border-top-right-radius: 28px;
122
+ box-shadow: 0 -6px 24px rgba(0,0,0,0.6);
123
+ overflow: hidden;
124
+ }
125
+ .sheet-header {
126
+ height: 110px;
127
+ background: #2b2d31;
128
+ display: flex;
129
+ align-items: center;
130
+ padding: 0 42px;
131
+ color: #cfd3d8;
132
+ font-size: 36px;
133
+ font-weight: 700;
134
+ }
135
+ .sheet-body {
136
+ padding: 48px 48px 36px 48px;
137
+ color: #e8e8e8;
138
+ }
139
+ .sheet-title {
140
+ font-size: 50px;
141
+ font-weight: 800;
142
+ line-height: 1.2;
143
+ margin-bottom: 16px;
144
+ }
145
+ .email {
146
+ font-size: 32px;
147
+ color: #bdbdbd;
148
+ margin-bottom: 36px;
149
+ }
150
+ .note {
151
+ font-size: 30px;
152
+ color: #a6a6a6;
153
+ line-height: 1.45;
154
+ max-width: 940px;
155
+ margin-bottom: 38px;
156
+ }
157
+
158
+ .option {
159
+ display: flex;
160
+ align-items: center;
161
+ gap: 28px;
162
+ background: #202226;
163
+ border: 1px solid #3a3c40;
164
+ border-radius: 22px;
165
+ padding: 34px 36px;
166
+ margin: 24px 0;
167
+ }
168
+ .icon {
169
+ width: 72px; height: 72px; border-radius: 12px;
170
+ display: flex; align-items: center; justify-content: center;
171
+ background: #243029;
172
+ }
173
+ .icon svg { width: 48px; height: 48px; }
174
+ .option .label {
175
+ font-size: 38px;
176
+ color: #e6e6e6;
177
+ }
178
+
179
+ /* Specific icon color accents */
180
+ .icon.card { background: rgba(46, 204, 113, 0.1); }
181
+ .icon.card svg { fill: #2ecc71; }
182
+
183
+ .icon.wallet { background: rgba(0, 132, 255, 0.12); }
184
+ .icon.wallet svg { fill: #3aa0ff; }
185
+
186
+ .icon.play { background: rgba(61, 220, 132, 0.12); }
187
+ .icon.play svg { fill: #3ddc84; }
188
+
189
+ .upi-badge {
190
+ width: 72px; height: 72px;
191
+ border-radius: 12px;
192
+ background: rgba(255, 255, 255, 0.08);
193
+ display: flex; align-items: center; justify-content: center;
194
+ color: #d9f99d;
195
+ font-weight: 800;
196
+ letter-spacing: 2px;
197
+ font-size: 28px;
198
+ }
199
+
200
+ /* Home indicator */
201
+ .home-indicator {
202
+ position: absolute;
203
+ bottom: 18px;
204
+ left: 50%;
205
+ transform: translateX(-50%);
206
+ width: 280px;
207
+ height: 10px;
208
+ background: #ffffff;
209
+ opacity: 0.85;
210
+ border-radius: 6px;
211
+ }
212
+ </style>
213
+ </head>
214
+ <body>
215
+ <div id="render-target">
216
+ <!-- Status bar -->
217
+ <div class="statusbar">
218
+ <div>1:35</div>
219
+ <div class="status-icons">
220
+ <!-- Simple status glyphs -->
221
+ <svg viewBox="0 0 24 24"><path d="M2 12h20v2H2z"/></svg>
222
+ <svg viewBox="0 0 24 24"><path d="M4 14h16v6H4zM7 10h10v4H7zM9 6h6v4H9z"/></svg>
223
+ <svg viewBox="0 0 24 24"><path d="M3 3h18v3H3zM6 8h12v13H6z"/></svg>
224
+ <svg viewBox="0 0 24 24"><path d="M18 7l-8 10-4-5"/></svg>
225
+ <svg viewBox="0 0 24 24"><path d="M20 4v16l-6-4-6 4V4z"/></svg>
226
+ <svg viewBox="0 0 24 24"><path d="M18 8a6 6 0 1 1-12 0 6 6 0 0 1 12 0z"/></svg>
227
+ </div>
228
+ </div>
229
+
230
+ <!-- App overlay content (background promo) -->
231
+ <div class="overlay">
232
+ <div class="close-btn">
233
+ <svg viewBox="0 0 24 24"><path fill="#bfbfbf" d="M18 6L6 18M6 6l12 12" stroke="#bfbfbf" stroke-width="2" stroke-linecap="round"/></svg>
234
+ </div>
235
+
236
+ <div class="title-row">
237
+ <h1 style="margin:0;">Oxford Dictionary</h1>
238
+ <div class="premium-pill">
239
+ <svg viewBox="0 0 24 24"><path d="M5 9l3-4 4 3 4-3 3 4-2 9H7L5 9zM7 18h10v2H7z"/></svg>
240
+ <span>Premium</span>
241
+ </div>
242
+ </div>
243
+ <div class="subtitle">3-day free trial. ₹1,950.00/year after trial ends.</div>
244
+
245
+ <div class="benefits">
246
+ <div class="benefit">
247
+ <span class="check">
248
+ <svg viewBox="0 0 24 24"><path d="M19 7l-9 9-5-5"/></svg>
249
+ </span>
250
+ <span>All 15 Oxford Dictionaries</span>
251
+ </div>
252
+ <div class="benefit">
253
+ <span class="check">
254
+ <svg viewBox="0 0 24 24"><path d="M19 7l-9 9-5-5"/></svg>
255
+ </span>
256
+ <span>Unlimited English synonyms</span>
257
+ </div>
258
+ </div>
259
+ </div>
260
+
261
+ <!-- Bottom payment sheet -->
262
+ <div class="sheet">
263
+ <div class="sheet-header">Google Play</div>
264
+ <div class="sheet-body">
265
+ <div class="sheet-title">Add payment method to your Google Account</div>
266
+ <div class="email">dbwscratch.test.id3@gmail.com</div>
267
+ <div class="note">
268
+ Add a payment method to your Google Account to start your free trial. You won't be charged if you cancel before Jul 8, 2023.
269
+ </div>
270
+
271
+ <div class="option">
272
+ <div class="icon card">
273
+ <svg viewBox="0 0 24 24">
274
+ <path d="M3 7h18a2 2 0 0 1 2 2v7a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2zm0 3h20v2H3z"/>
275
+ </svg>
276
+ </div>
277
+ <div class="label">Add credit or debit card</div>
278
+ </div>
279
+
280
+ <div class="option">
281
+ <div class="upi-badge">UPI</div>
282
+ <div class="label">Pay with UPI</div>
283
+ </div>
284
+
285
+ <div class="option">
286
+ <div class="icon wallet">
287
+ <svg viewBox="0 0 24 24">
288
+ <path d="M2 7h18a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2V7zm12 2H2V5h12a3 3 0 0 1 3 3v1zm5 5h-5v-4h5a2 2 0 0 1 0 4z"/>
289
+ </svg>
290
+ </div>
291
+ <div class="label">Add Paytm wallet</div>
292
+ </div>
293
+
294
+ <div class="option">
295
+ <div class="icon play">
296
+ <svg viewBox="0 0 24 24">
297
+ <path d="M4 3l16 9-16 9V3z"/>
298
+ </svg>
299
+ </div>
300
+ <div class="label">Redeem code</div>
301
+ </div>
302
+ </div>
303
+ </div>
304
+
305
+ <div class="home-indicator"></div>
306
+ </div>
307
+ </body>
308
+ </html>
code/14498/14498_1.html ADDED
@@ -0,0 +1,267 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Word Details Mock</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
9
+ #render-target {
10
+ width: 1080px;
11
+ height: 2400px;
12
+ position: relative;
13
+ overflow: hidden;
14
+ background: #ffffff;
15
+ }
16
+
17
+ /* Header */
18
+ .appbar {
19
+ position: relative;
20
+ width: 100%;
21
+ height: 260px;
22
+ background: #4a8cff;
23
+ color: #fff;
24
+ }
25
+ .status {
26
+ height: 56px;
27
+ padding: 0 24px;
28
+ display: flex;
29
+ align-items: center;
30
+ justify-content: space-between;
31
+ opacity: 0.95;
32
+ font-size: 28px;
33
+ }
34
+ .header-row {
35
+ position: absolute;
36
+ left: 0; right: 0; bottom: 24px;
37
+ display: flex;
38
+ align-items: center;
39
+ gap: 20px;
40
+ padding: 0 28px;
41
+ }
42
+ .header-title {
43
+ font-size: 48px;
44
+ font-weight: 600;
45
+ }
46
+ .icon-btn {
47
+ width: 72px; height: 72px;
48
+ display: inline-flex; align-items: center; justify-content: center;
49
+ border-radius: 36px;
50
+ }
51
+ .icon-white { fill: #ffffff; }
52
+
53
+ /* Search card */
54
+ .search-card {
55
+ position: absolute;
56
+ top: 200px;
57
+ left: 60px;
58
+ width: 960px;
59
+ height: 120px;
60
+ background: #ffffff;
61
+ border-radius: 28px;
62
+ box-shadow: 0 8px 24px rgba(0,0,0,0.12);
63
+ display: flex;
64
+ align-items: center;
65
+ padding: 0 32px;
66
+ gap: 24px;
67
+ }
68
+ .search-input {
69
+ flex: 1;
70
+ color: #9e9e9e;
71
+ font-size: 36px;
72
+ }
73
+ .mic {
74
+ width: 88px; height: 88px; border-radius: 44px;
75
+ background: #f1f5ff;
76
+ display: flex; align-items: center; justify-content: center;
77
+ }
78
+
79
+ /* Content */
80
+ .content {
81
+ position: absolute;
82
+ top: 360px;
83
+ left: 48px;
84
+ right: 48px;
85
+ bottom: 180px;
86
+ overflow: auto;
87
+ padding: 20px 12px 120px 12px;
88
+ }
89
+ .word-title {
90
+ font-size: 56px;
91
+ font-weight: 600;
92
+ color: #111;
93
+ margin: 12px 0 40px 0;
94
+ }
95
+ .def-item {
96
+ margin: 28px 0 40px 0;
97
+ }
98
+ .def-line {
99
+ font-size: 44px;
100
+ line-height: 1.26;
101
+ color: #5a8bff;
102
+ font-weight: 700;
103
+ display: flex;
104
+ gap: 18px;
105
+ }
106
+ .def-number {
107
+ color: #5a8bff;
108
+ font-weight: 700;
109
+ min-width: 56px;
110
+ }
111
+ .meta {
112
+ margin-top: 28px;
113
+ margin-left: 28px;
114
+ }
115
+ .meta b {
116
+ font-size: 36px;
117
+ color: #000;
118
+ }
119
+ .meta p {
120
+ margin: 6px 0 20px 0;
121
+ font-size: 36px;
122
+ color: #222;
123
+ }
124
+
125
+ /* Bottom actions */
126
+ .bottom-actions {
127
+ position: absolute;
128
+ left: 0; right: 0;
129
+ bottom: 70px;
130
+ height: 120px;
131
+ display: flex;
132
+ align-items: center;
133
+ padding: 0 36px;
134
+ gap: 24px;
135
+ }
136
+ .round-action {
137
+ width: 120px; height: 120px; border-radius: 60px;
138
+ background: #ffffff;
139
+ border: 2px solid #e0e0e0;
140
+ display: flex; align-items: center; justify-content: center;
141
+ }
142
+ .cta {
143
+ margin-left: auto;
144
+ background: #e67a2d;
145
+ color: #fff;
146
+ border-radius: 26px;
147
+ height: 110px;
148
+ padding: 0 38px;
149
+ display: flex; align-items: center; gap: 18px;
150
+ font-size: 38px; font-weight: 600;
151
+ box-shadow: 0 6px 16px rgba(0,0,0,0.18);
152
+ }
153
+ .cta .badge {
154
+ width: 62px; height: 62px; border-radius: 14px;
155
+ background: rgba(255,255,255,0.25);
156
+ display: flex; align-items: center; justify-content: center;
157
+ font-weight: 800; font-size: 34px;
158
+ }
159
+
160
+ /* Gesture pill */
161
+ .gesture {
162
+ position: absolute;
163
+ left: 50%;
164
+ transform: translateX(-50%);
165
+ bottom: 20px;
166
+ width: 360px;
167
+ height: 12px;
168
+ background: #111;
169
+ border-radius: 8px;
170
+ opacity: 0.8;
171
+ }
172
+
173
+ /* Simple helper for thin caption text in status bar */
174
+ .muted { opacity: 0.9; }
175
+ </style>
176
+ </head>
177
+ <body>
178
+ <div id="render-target">
179
+
180
+ <!-- App Bar -->
181
+ <div class="appbar">
182
+ <div class="status">
183
+ <div class="muted">1:36</div>
184
+ <div class="muted">﹖ ⌁ • ◦</div>
185
+ </div>
186
+ <div class="header-row">
187
+ <div class="icon-btn">
188
+ <svg width="44" height="44" viewBox="0 0 24 24" class="icon-white" aria-hidden="true">
189
+ <path d="M15.5 4.5L7 12l8.5 7.5-1.8 2L3.8 12l9.9-9.5 1.8 2z"></path>
190
+ </svg>
191
+ </div>
192
+ <div class="header-title">Word Details</div>
193
+ </div>
194
+ </div>
195
+
196
+ <!-- Search Bar Card -->
197
+ <div class="search-card">
198
+ <div class="search-input">Search Words Here...</div>
199
+ <div class="mic">
200
+ <svg width="42" height="42" viewBox="0 0 24 24" fill="#5a8bff" aria-hidden="true">
201
+ <path d="M12 14a3 3 0 0 0 3-3V6a3 3 0 1 0-6 0v5a3 3 0 0 0 3 3zm5-3a5 5 0 0 1-10 0H5a7 7 0 0 0 6 6.9V20H9v2h6v-2h-2v-2.1A7 7 0 0 0 19 11h-2z"/>
202
+ </svg>
203
+ </div>
204
+ </div>
205
+
206
+ <!-- Main Content -->
207
+ <div class="content">
208
+ <div class="word-title">Word: Chaos</div>
209
+
210
+ <div class="def-item">
211
+ <div class="def-line">
212
+ <span class="def-number">1-</span>
213
+ <span>(n) a state of extreme confusion and disorder</span>
214
+ </div>
215
+ <div class="meta">
216
+ <b>Hyponyms:</b>
217
+ <p>balagan</p>
218
+ <b>Hypernyms:</b>
219
+ <p>confusion</p>
220
+ </div>
221
+ </div>
222
+
223
+ <div class="def-item">
224
+ <div class="def-line">
225
+ <span class="def-number">2-</span>
226
+ <span>(n) the formless and disordered state of matter before the creation of the cosmos</span>
227
+ </div>
228
+ <div class="meta">
229
+ <b>Hypernyms:</b>
230
+ <p>physical phenomenon</p>
231
+ </div>
232
+ </div>
233
+
234
+ <div class="def-item">
235
+ <div class="def-line">
236
+ <span class="def-number">3-</span>
237
+ <span>(n) (Greek mythology) the most ancient of gods; the personification of the infinity of space preceding creation of the universe</span>
238
+ </div>
239
+ <div class="meta">
240
+ <b>Instance Hypernyms:</b>
241
+ <p>greek deity</p>
242
+ </div>
243
+ </div>
244
+ </div>
245
+
246
+ <!-- Bottom actions -->
247
+ <div class="bottom-actions">
248
+ <div class="round-action" title="Favorite">
249
+ <svg width="56" height="56" viewBox="0 0 24 24" fill="none" stroke="#333" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">
250
+ <path d="M12 17.5l-6.2 3.6 1.6-6.9L2 9.6l7-0.6L12 2l3 7 7 .6-5.4 4.6 1.6 6.9z"/>
251
+ </svg>
252
+ </div>
253
+ <div class="round-action" title="Speak">
254
+ <svg width="56" height="56" viewBox="0 0 24 24" fill="#333" aria-hidden="true">
255
+ <path d="M4 9v6h4l5 4V5L8 9H4zM18 8a4 4 0 0 1 0 8v-2a2 2 0 0 0 0-4V8z"/>
256
+ </svg>
257
+ </div>
258
+ <div class="cta">
259
+ <div class="badge">文A</div>
260
+ <div>More Translations</div>
261
+ </div>
262
+ </div>
263
+
264
+ <div class="gesture"></div>
265
+ </div>
266
+ </body>
267
+ </html>
code/14498/14498_2.html ADDED
@@ -0,0 +1,295 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Word Details</title>
7
+ <style>
8
+ body {
9
+ margin: 0;
10
+ padding: 0;
11
+ background: transparent;
12
+ font-family: Arial, Helvetica, sans-serif;
13
+ color: #111;
14
+ }
15
+ #render-target {
16
+ position: relative;
17
+ overflow: hidden;
18
+ width: 1080px;
19
+ height: 2400px;
20
+ background: #ffffff;
21
+ }
22
+
23
+ /* App bar */
24
+ .appbar {
25
+ position: absolute;
26
+ left: 0;
27
+ top: 0;
28
+ width: 1080px;
29
+ height: 220px;
30
+ background: #4A86FF;
31
+ color: #fff;
32
+ }
33
+ .appbar-inner {
34
+ position: absolute;
35
+ left: 24px;
36
+ right: 24px;
37
+ top: 110px;
38
+ height: 80px;
39
+ display: flex;
40
+ align-items: center;
41
+ }
42
+ .back-btn {
43
+ width: 72px;
44
+ height: 72px;
45
+ display: inline-flex;
46
+ align-items: center;
47
+ justify-content: center;
48
+ margin-right: 18px;
49
+ }
50
+ .appbar-title {
51
+ font-size: 56px;
52
+ font-weight: 600;
53
+ color: #fff;
54
+ }
55
+
56
+ /* Search box */
57
+ .search-wrap {
58
+ position: absolute;
59
+ left: 50%;
60
+ transform: translateX(-50%);
61
+ top: 240px;
62
+ width: 1000px;
63
+ height: 120px;
64
+ background: #fff;
65
+ border-radius: 24px;
66
+ box-shadow: 0 8px 20px rgba(0,0,0,0.12);
67
+ display: flex;
68
+ align-items: center;
69
+ padding: 0 24px 0 36px;
70
+ }
71
+ .search-placeholder {
72
+ font-size: 42px;
73
+ color: #9E9E9E;
74
+ flex: 1;
75
+ }
76
+ .mic-pill {
77
+ width: 88px;
78
+ height: 88px;
79
+ border-radius: 50%;
80
+ background: #EEF3FF;
81
+ display: flex;
82
+ align-items: center;
83
+ justify-content: center;
84
+ }
85
+
86
+ /* Content */
87
+ .content {
88
+ position: absolute;
89
+ left: 48px;
90
+ right: 48px;
91
+ top: 410px;
92
+ bottom: 260px;
93
+ overflow-y: auto;
94
+ }
95
+ .word-title {
96
+ font-size: 64px;
97
+ font-weight: 500;
98
+ margin: 30px 0 40px 0;
99
+ }
100
+ .def-item {
101
+ margin: 28px 0 56px 0;
102
+ }
103
+ .def-header {
104
+ display: flex;
105
+ align-items: flex-start;
106
+ gap: 20px;
107
+ line-height: 1.25;
108
+ }
109
+ .def-index {
110
+ color: #5C8CFF;
111
+ font-size: 44px;
112
+ font-weight: 700;
113
+ min-width: 70px;
114
+ text-align: right;
115
+ }
116
+ .def-text {
117
+ color: #5C8CFF;
118
+ font-size: 50px;
119
+ font-weight: 700;
120
+ flex: 1;
121
+ }
122
+ .meta {
123
+ margin-left: 90px;
124
+ margin-top: 26px;
125
+ }
126
+ .meta-label {
127
+ font-weight: 800;
128
+ font-size: 38px;
129
+ margin: 12px 0 6px 0;
130
+ }
131
+ .meta-value {
132
+ font-size: 38px;
133
+ color: #111;
134
+ margin-bottom: 16px;
135
+ }
136
+
137
+ /* Bottom actions */
138
+ .bottom-actions {
139
+ position: absolute;
140
+ left: 0;
141
+ right: 0;
142
+ bottom: 34px;
143
+ height: 160px;
144
+ display: flex;
145
+ align-items: center;
146
+ justify-content: space-between;
147
+ padding: 0 36px;
148
+ }
149
+ .star-btn, .speaker-btn {
150
+ width: 120px;
151
+ height: 120px;
152
+ border-radius: 20px;
153
+ display: flex;
154
+ align-items: center;
155
+ justify-content: center;
156
+ }
157
+ .star-btn { background: transparent; }
158
+ .speaker-btn { background: transparent; }
159
+
160
+ .cta {
161
+ display: flex;
162
+ align-items: center;
163
+ gap: 20px;
164
+ background: #F18A2E;
165
+ color: #fff;
166
+ font-size: 42px;
167
+ font-weight: 700;
168
+ padding: 26px 34px;
169
+ border-radius: 28px;
170
+ }
171
+
172
+ /* Snackbar */
173
+ .snackbar {
174
+ position: absolute;
175
+ left: 50%;
176
+ transform: translateX(-50%);
177
+ bottom: 240px;
178
+ background: #323232;
179
+ color: #fff;
180
+ padding: 26px 34px;
181
+ border-radius: 28px;
182
+ font-size: 36px;
183
+ display: flex;
184
+ align-items: center;
185
+ gap: 18px;
186
+ box-shadow: 0 6px 14px rgba(0,0,0,0.3);
187
+ }
188
+ .snackbar-badge {
189
+ width: 70px;
190
+ height: 70px;
191
+ background: #204088;
192
+ border-radius: 14px;
193
+ display: flex;
194
+ align-items: center;
195
+ justify-content: center;
196
+ color: #fff;
197
+ font-weight: 700;
198
+ font-size: 22px;
199
+ }
200
+ </style>
201
+ </head>
202
+ <body>
203
+ <div id="render-target">
204
+
205
+ <!-- Top App Bar -->
206
+ <div class="appbar">
207
+ <div class="appbar-inner">
208
+ <div class="back-btn" aria-label="Back">
209
+ <svg width="56" height="56" viewBox="0 0 24 24" fill="none">
210
+ <path d="M14 4 L6 12 L14 20" stroke="#fff" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
211
+ </svg>
212
+ </div>
213
+ <div class="appbar-title">Word Details</div>
214
+ </div>
215
+ </div>
216
+
217
+ <!-- Search -->
218
+ <div class="search-wrap">
219
+ <div class="search-placeholder">Search Words Here...</div>
220
+ <div class="mic-pill" aria-label="Voice Search">
221
+ <svg width="36" height="36" viewBox="0 0 24 24" fill="#4A86FF">
222
+ <path d="M12 3a3 3 0 0 0-3 3v5a3 3 0 0 0 6 0V6a3 3 0 0 0-3-3z"/>
223
+ <path d="M5 11a7 7 0 0 0 14 0" stroke="#4A86FF" stroke-width="2" fill="none" stroke-linecap="round"/>
224
+ <path d="M12 18v3" stroke="#4A86FF" stroke-width="2" stroke-linecap="round"/>
225
+ </svg>
226
+ </div>
227
+ </div>
228
+
229
+ <!-- Content -->
230
+ <div class="content">
231
+ <div class="word-title">Word: Chaos</div>
232
+
233
+ <div class="def-item">
234
+ <div class="def-header">
235
+ <div class="def-index">1-</div>
236
+ <div class="def-text">(n) a state of extreme confusion and disorder</div>
237
+ </div>
238
+ <div class="meta">
239
+ <div class="meta-label">Hyponyms:</div>
240
+ <div class="meta-value">balagan</div>
241
+ <div class="meta-label">Hypernyms:</div>
242
+ <div class="meta-value">confusion</div>
243
+ </div>
244
+ </div>
245
+
246
+ <div class="def-item">
247
+ <div class="def-header">
248
+ <div class="def-index">2-</div>
249
+ <div class="def-text">(n) the formless and disordered state of matter before the creation of the cosmos</div>
250
+ </div>
251
+ <div class="meta">
252
+ <div class="meta-label">Hypernyms:</div>
253
+ <div class="meta-value">physical phenomenon</div>
254
+ </div>
255
+ </div>
256
+
257
+ <div class="def-item">
258
+ <div class="def-header">
259
+ <div class="def-index">3-</div>
260
+ <div class="def-text">(n) (Greek mythology) the most ancient of gods; the personification of the infinity of space preceding creation of the universe</div>
261
+ </div>
262
+ </div>
263
+ </div>
264
+
265
+ <!-- Snackbar -->
266
+ <div class="snackbar">
267
+ <div class="snackbar-badge">ED</div>
268
+ <div>Added to favorites.</div>
269
+ </div>
270
+
271
+ <!-- Bottom actions -->
272
+ <div class="bottom-actions">
273
+ <div class="star-btn" aria-label="Favorite">
274
+ <svg width="110" height="110" viewBox="0 0 24 24" fill="#FFC107">
275
+ <path d="M12 2l3.1 6.3 7 1-5 4.9 1.2 6.8L12 18l-6.3 3.9L7 14.2 2 9.3l7-1z"/>
276
+ </svg>
277
+ </div>
278
+ <div class="speaker-btn" aria-label="Speak">
279
+ <svg width="110" height="110" viewBox="0 0 24 24" fill="#6E6E6E">
280
+ <path d="M3 10v4h4l5 4V6L7 10H3z"/>
281
+ <path d="M16 8a5 5 0 0 1 0 8" stroke="#6E6E6E" stroke-width="2" fill="none" stroke-linecap="round"/>
282
+ </svg>
283
+ </div>
284
+ <div class="cta">
285
+ <svg width="44" height="44" viewBox="0 0 24 24" fill="#fff">
286
+ <circle cx="12" cy="12" r="9" fill="none" stroke="#fff" stroke-width="2"/>
287
+ <path d="M3 12h18M12 3a15 15 0 0 1 0 18M12 3a15 15 0 0 0 0 18" stroke="#fff" stroke-width="2" fill="none" stroke-linecap="round"/>
288
+ </svg>
289
+ <span>More Translations</span>
290
+ </div>
291
+ </div>
292
+
293
+ </div>
294
+ </body>
295
+ </html>