yhzheng1031 commited on
Commit
ed32f83
·
verified ·
1 Parent(s): 023f37d

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
code/8888/8888_8.html ADDED
@@ -0,0 +1,336 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1">
6
+ <title>Mobile UI Mock</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: #131417;
15
+ color: #ECECEC;
16
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, Arial, sans-serif;
17
+ border-radius: 0;
18
+ }
19
+
20
+ /* Top status bar (mock) */
21
+ .status-bar {
22
+ height: 90px;
23
+ padding: 0 36px;
24
+ display: flex;
25
+ align-items: center;
26
+ justify-content: space-between;
27
+ color: #D7D7D7;
28
+ font-size: 30px;
29
+ letter-spacing: 1px;
30
+ opacity: 0.9;
31
+ }
32
+ .status-icons {
33
+ display: flex;
34
+ align-items: center;
35
+ gap: 22px;
36
+ }
37
+ .status-dot { width: 10px; height: 10px; background: #BDBDBD; border-radius: 50%; display: inline-block; }
38
+
39
+ /* Header */
40
+ .header {
41
+ padding: 36px 52px 14px 52px;
42
+ }
43
+ .greeting {
44
+ font-weight: 800;
45
+ font-size: 110px;
46
+ line-height: 1.05;
47
+ margin: 8px 0 26px 0;
48
+ }
49
+ .profile-btn {
50
+ position: absolute;
51
+ right: 48px;
52
+ top: 160px;
53
+ width: 64px;
54
+ height: 64px;
55
+ border-radius: 50%;
56
+ display: grid;
57
+ place-items: center;
58
+ color: #D0D0D0;
59
+ }
60
+ .profile-btn svg { width: 56px; height: 56px; }
61
+
62
+ /* Tabs */
63
+ .tabs {
64
+ display: flex;
65
+ gap: 60px;
66
+ padding: 0 52px;
67
+ font-weight: 800;
68
+ font-size: 52px;
69
+ }
70
+ .tab {
71
+ color: #8E8F9B;
72
+ padding-bottom: 20px;
73
+ }
74
+ .tab.active {
75
+ color: #FFFFFF;
76
+ border-bottom: 6px solid #FFFFFF11;
77
+ }
78
+
79
+ /* Divider */
80
+ .divider {
81
+ height: 2px;
82
+ background: #222329;
83
+ margin: 12px 0 28px 0;
84
+ }
85
+
86
+ /* Small goal card */
87
+ .goal-wrap {
88
+ padding: 0 34px;
89
+ }
90
+ .goal-card {
91
+ display: flex;
92
+ align-items: center;
93
+ gap: 26px;
94
+ background: #2A2B32;
95
+ border: 3px solid #555767;
96
+ box-shadow: inset 0 0 0 6px #3A3C48;
97
+ color: #EDEDED;
98
+ padding: 26px 28px;
99
+ border-radius: 28px;
100
+ }
101
+ .goal-icon {
102
+ width: 92px;
103
+ height: 92px;
104
+ border-radius: 50%;
105
+ background: #4A90E2;
106
+ display: grid;
107
+ place-items: center;
108
+ border: 6px solid #A8B1C6;
109
+ }
110
+ .goal-text {
111
+ font-size: 48px;
112
+ font-weight: 800;
113
+ }
114
+
115
+ /* Up next container */
116
+ .upnext {
117
+ margin: 36px 24px 0 24px;
118
+ padding: 36px;
119
+ background: #4B4E5E;
120
+ border: 10px solid #585B6C;
121
+ border-radius: 44px;
122
+ }
123
+ .upnext h2 {
124
+ margin: 0;
125
+ font-size: 64px;
126
+ font-weight: 900;
127
+ }
128
+ .upnext .subtitle {
129
+ margin-top: 8px;
130
+ color: #D5D6DF;
131
+ opacity: 0.9;
132
+ font-size: 40px;
133
+ }
134
+ .lesson-list { margin-top: 28px; display: grid; gap: 24px; }
135
+ .lesson-card {
136
+ background: #2A2C31;
137
+ border-radius: 34px;
138
+ padding: 36px;
139
+ display: grid;
140
+ grid-template-columns: 120px 1fr;
141
+ gap: 26px;
142
+ align-items: center;
143
+ color: #FFFFFF;
144
+ }
145
+ .icon-badge {
146
+ width: 120px; height: 120px; border-radius: 60px;
147
+ background: #27C5B8;
148
+ display: grid; place-items: center;
149
+ }
150
+ .icon-badge.lock { background: #8B8E9A; }
151
+ .lesson-title {
152
+ font-size: 64px;
153
+ font-weight: 900;
154
+ }
155
+ .lesson-small {
156
+ color: #C8C8D2;
157
+ font-size: 38px;
158
+ margin-bottom: 8px;
159
+ }
160
+
161
+ /* Swipe hint */
162
+ .hint {
163
+ text-align: center;
164
+ color: #9AA0AE;
165
+ font-size: 42px;
166
+ margin: 48px 0 0 0;
167
+ }
168
+
169
+ /* Promo banner above nav */
170
+ .promo {
171
+ position: absolute;
172
+ left: 0;
173
+ right: 0;
174
+ bottom: 220px;
175
+ height: 160px;
176
+ background: #0E5B3E;
177
+ color: #E9F2EC;
178
+ display: grid;
179
+ grid-template-columns: 150px 1fr;
180
+ align-items: center;
181
+ padding: 0 32px;
182
+ gap: 18px;
183
+ }
184
+ .promo .img {
185
+ width: 120px; height: 120px; background: #E0E0E0; border: 1px solid #BDBDBD;
186
+ display: flex; align-items: center; justify-content: center; color: #757575; border-radius: 16px;
187
+ font-size: 26px; text-align: center; padding: 10px;
188
+ }
189
+ .promo .text {
190
+ font-size: 42px; font-weight: 700;
191
+ }
192
+
193
+ /* Bottom navigation */
194
+ .navbar {
195
+ position: absolute;
196
+ left: 0; right: 0; bottom: 0;
197
+ height: 220px;
198
+ background: #1C1D22;
199
+ border-top: 1px solid #2A2B31;
200
+ display: grid;
201
+ grid-template-columns: repeat(3, 1fr);
202
+ align-items: center;
203
+ padding: 16px 40px 22px 40px;
204
+ }
205
+ .nav-item { text-align: center; color: #C7C9D0; }
206
+ .nav-item.active { color: #FF7A2F; }
207
+ .nav-item svg { width: 72px; height: 72px; display: block; margin: 0 auto 8px auto; }
208
+
209
+ /* Home indicator */
210
+ .home-indicator {
211
+ position: absolute;
212
+ bottom: 230px;
213
+ left: 50%;
214
+ transform: translateX(-50%);
215
+ width: 360px; height: 12px; background: #E6E6E6; border-radius: 8px; opacity: 0.85;
216
+ }
217
+ </style>
218
+ </head>
219
+ <body>
220
+ <div id="render-target">
221
+
222
+ <!-- Status bar mock -->
223
+ <div class="status-bar">
224
+ <div>7:30</div>
225
+ <div class="status-icons">
226
+ <span class="status-dot"></span>
227
+ <span class="status-dot"></span>
228
+ <span class="status-dot"></span>
229
+ <svg width="40" height="40" viewBox="0 0 24 24" fill="#FFFFFF"><path d="M3 12h18v8H3zM6 6h12v4H6z"/></svg>
230
+ <div style="display:flex;align-items:center;gap:6px;">
231
+ <svg width="36" height="36" viewBox="0 0 24 24" fill="#FFFFFF"><path d="M13 7h-2v10h2V7zm-4 4H7v6h2v-6zm10 0h-2v6h2v-6z"/></svg>
232
+ <span>100%</span>
233
+ </div>
234
+ </div>
235
+ </div>
236
+
237
+ <!-- Header -->
238
+ <div class="header">
239
+ <div class="greeting">Hi, fabio</div>
240
+ </div>
241
+ <button class="profile-btn" aria-label="Profile">
242
+ <svg viewBox="0 0 24 24" stroke="currentColor" fill="none" stroke-width="2">
243
+ <circle cx="12" cy="8" r="3"></circle>
244
+ <path d="M4 20c1.5-4 14.5-4 16 0"></path>
245
+ </svg>
246
+ </button>
247
+
248
+ <!-- Tabs -->
249
+ <div class="tabs">
250
+ <div class="tab active">Today</div>
251
+ <div class="tab">Learning plan</div>
252
+ </div>
253
+ <div class="divider"></div>
254
+
255
+ <!-- Goal card -->
256
+ <div class="goal-wrap">
257
+ <div class="goal-card">
258
+ <div class="goal-icon">
259
+ <svg viewBox="0 0 24 24" width="60" height="60" fill="#D9ECFF">
260
+ <path d="M6 3v18h2v-7h6l1 1 3-3-3-3-1 1H8V3H6z"></path>
261
+ </svg>
262
+ </div>
263
+ <div class="goal-text">Set your weekly goal!</div>
264
+ </div>
265
+ </div>
266
+
267
+ <!-- Up next section -->
268
+ <div class="upnext">
269
+ <h2>Up next</h2>
270
+ <div class="subtitle">Newcomer (A1) - Course 1</div>
271
+
272
+ <div class="lesson-list">
273
+ <div class="lesson-card">
274
+ <div class="icon-badge">
275
+ <svg viewBox="0 0 24 24" width="88" height="88" fill="#FFFFFF">
276
+ <path d="M9.5 16.2 5.8 12.5l1.4-1.4 2.3 2.3 6.3-6.3 1.4 1.4z"></path>
277
+ </svg>
278
+ </div>
279
+ <div>
280
+ <div class="lesson-title">Review complete!</div>
281
+ </div>
282
+ </div>
283
+
284
+ <div class="lesson-card">
285
+ <div class="icon-badge lock">
286
+ <svg viewBox="0 0 24 24" width="80" height="80" fill="#2A2C31" stroke="#FFFFFF" stroke-width="1.5">
287
+ <rect x="5" y="10" width="14" height="10" rx="2" fill="#FFFFFF"></rect>
288
+ <path d="M8 10V8a4 4 0 0 1 8 0v2" fill="none" stroke="#FFFFFF" stroke-width="2"></path>
289
+ </svg>
290
+ </div>
291
+ <div>
292
+ <div class="lesson-small">Lesson 2</div>
293
+ <div class="lesson-title">Personal pronouns in the singular</div>
294
+ </div>
295
+ </div>
296
+ </div>
297
+ </div>
298
+
299
+ <!-- Swipe hint -->
300
+ <div class="hint">Swipe to see your learning plan -></div>
301
+
302
+ <!-- Promo banner -->
303
+ <div class="promo">
304
+ <div class="img">[IMG: Key Illustration]</div>
305
+ <div class="text">Unlock all Portuguese courses</div>
306
+ </div>
307
+
308
+ <!-- Home indicator -->
309
+ <div class="home-indicator"></div>
310
+
311
+ <!-- Bottom navigation -->
312
+ <div class="navbar">
313
+ <div class="nav-item active">
314
+ <svg viewBox="0 0 24 24" fill="currentColor">
315
+ <path d="M12 3 3 10v11h6v-6h6v6h6V10z"></path>
316
+ </svg>
317
+ <div>Home</div>
318
+ </div>
319
+ <div class="nav-item">
320
+ <svg viewBox="0 0 24 24" fill="currentColor">
321
+ <circle cx="12" cy="12" r="9" fill="none" stroke="currentColor" stroke-width="2"></circle>
322
+ <circle cx="12" cy="12" r="2.5" fill="currentColor"></circle>
323
+ </svg>
324
+ <div>Review</div>
325
+ </div>
326
+ <div class="nav-item">
327
+ <svg viewBox="0 0 24 24" fill="currentColor">
328
+ <path d="M21 21 15.5 15.5M10 4a6 6 0 1 1 0 12 6 6 0 0 1 0-12z" fill="none" stroke="currentColor" stroke-width="2"></path>
329
+ </svg>
330
+ <div>Explore</div>
331
+ </div>
332
+ </div>
333
+
334
+ </div>
335
+ </body>
336
+ </html>
code/8889/8889_4.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>Report Screen</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; }
9
+ #render-target {
10
+ position: relative;
11
+ overflow: hidden;
12
+ width: 1080px;
13
+ height: 2400px;
14
+ background: #FFFFFF;
15
+ font-family: Arial, Helvetica, sans-serif;
16
+ color: #212121;
17
+ }
18
+
19
+ /* Status bar */
20
+ .status-bar {
21
+ height: 120px;
22
+ padding: 0 40px;
23
+ display: flex;
24
+ align-items: center;
25
+ justify-content: space-between;
26
+ color: #212121;
27
+ font-size: 40px;
28
+ }
29
+ .status-right {
30
+ display: flex;
31
+ align-items: center;
32
+ gap: 24px;
33
+ }
34
+ .ico {
35
+ width: 44px;
36
+ height: 44px;
37
+ }
38
+
39
+ /* Main content */
40
+ .content {
41
+ padding: 0 48px 48px 48px;
42
+ }
43
+ .title {
44
+ font-weight: 800;
45
+ font-size: 64px;
46
+ margin: 24px 0 32px 0;
47
+ }
48
+ .row {
49
+ display: flex;
50
+ justify-content: space-between;
51
+ align-items: center;
52
+ font-size: 44px;
53
+ padding: 24px 0;
54
+ color: #616161;
55
+ }
56
+ .row .value {
57
+ color: #9E9E9E;
58
+ }
59
+
60
+ /* Cards */
61
+ .card {
62
+ background: #FFFFFF;
63
+ border-radius: 36px;
64
+ box-shadow: 0 4px 16px rgba(0,0,0,0.08);
65
+ margin: 24px 0;
66
+ overflow: hidden;
67
+ }
68
+ .card-section {
69
+ padding: 40px 40px;
70
+ border-bottom: 1px solid #EEEEEE;
71
+ }
72
+ .card-section:last-child { border-bottom: none; }
73
+ .label-edit {
74
+ display: flex;
75
+ align-items: center;
76
+ justify-content: space-between;
77
+ font-size: 46px;
78
+ }
79
+ .edit {
80
+ color: #1E88E5;
81
+ font-weight: 600;
82
+ }
83
+ .sub-label {
84
+ color: #1E88E5;
85
+ font-size: 46px;
86
+ font-weight: 700;
87
+ margin-top: 24px;
88
+ }
89
+ .height-value {
90
+ display: flex;
91
+ justify-content: flex-end;
92
+ align-items: center;
93
+ color: #9E9E9E;
94
+ font-size: 60px;
95
+ letter-spacing: 1px;
96
+ margin-top: 32px;
97
+ }
98
+ .underline {
99
+ height: 5px;
100
+ background: #D6D6D6;
101
+ margin-top: 20px;
102
+ margin-right: 8px;
103
+ }
104
+
105
+ /* Ad video placeholder */
106
+ .video {
107
+ width: 100%;
108
+ height: 600px;
109
+ background: #E0E0E0;
110
+ border: 1px solid #BDBDBD;
111
+ border-radius: 16px;
112
+ display: flex;
113
+ justify-content: center;
114
+ align-items: center;
115
+ color: #757575;
116
+ position: relative;
117
+ margin-top: 32px;
118
+ }
119
+ .overlay-btn {
120
+ position: absolute;
121
+ bottom: 24px;
122
+ left: 24px;
123
+ display: flex;
124
+ gap: 16px;
125
+ }
126
+ .overlay-icon {
127
+ width: 96px;
128
+ height: 64px;
129
+ background: rgba(0,0,0,0.6);
130
+ border-radius: 8px;
131
+ display: flex;
132
+ align-items: center;
133
+ justify-content: center;
134
+ }
135
+ .overlay-icon svg { width: 48px; height: 48px; }
136
+
137
+ /* Ad info */
138
+ .ad-badge {
139
+ font-size: 28px;
140
+ color: #9E9E9E;
141
+ margin: 16px 0 8px 0;
142
+ }
143
+ .ad-row {
144
+ display: flex;
145
+ gap: 24px;
146
+ align-items: flex-start;
147
+ padding: 0 8px;
148
+ }
149
+ .app-icon {
150
+ width: 120px;
151
+ height: 120px;
152
+ background: #E0E0E0;
153
+ border: 1px solid #BDBDBD;
154
+ border-radius: 16px;
155
+ display: flex;
156
+ align-items: center;
157
+ justify-content: center;
158
+ color: #757575;
159
+ flex-shrink: 0;
160
+ }
161
+ .ad-texts {
162
+ flex: 1;
163
+ }
164
+ .ad-title {
165
+ font-size: 48px;
166
+ font-weight: 700;
167
+ margin-bottom: 10px;
168
+ }
169
+ .ad-sub {
170
+ font-size: 36px;
171
+ color: #7E7E7E;
172
+ line-height: 1.4;
173
+ }
174
+ .install-wrap {
175
+ padding: 24px 16px 32px 16px;
176
+ }
177
+ .install-btn {
178
+ width: 100%;
179
+ height: 120px;
180
+ border-radius: 60px;
181
+ background: linear-gradient(90deg, #FF9E57, #EB4D8A);
182
+ color: #FFFFFF;
183
+ font-size: 48px;
184
+ font-weight: 800;
185
+ display: flex;
186
+ align-items: center;
187
+ justify-content: center;
188
+ letter-spacing: 2px;
189
+ }
190
+
191
+ /* Bottom navigation */
192
+ .bottom-nav {
193
+ position: absolute;
194
+ left: 0;
195
+ right: 0;
196
+ bottom: 96px;
197
+ height: 180px;
198
+ background: #FFFFFF;
199
+ border-top: 1px solid #E0E0E0;
200
+ display: flex;
201
+ }
202
+ .nav-item {
203
+ width: 25%;
204
+ display: flex;
205
+ flex-direction: column;
206
+ align-items: center;
207
+ justify-content: center;
208
+ gap: 12px;
209
+ color: #8F8F8F;
210
+ font-size: 30px;
211
+ }
212
+ .nav-item svg { width: 56px; height: 56px; }
213
+ .nav-item.active {
214
+ color: #1E88E5;
215
+ font-weight: 700;
216
+ }
217
+
218
+ /* Gesture bar */
219
+ .gesture-bar {
220
+ position: absolute;
221
+ bottom: 24px;
222
+ left: 50%;
223
+ transform: translateX(-50%);
224
+ width: 240px;
225
+ height: 12px;
226
+ background: #000000;
227
+ border-radius: 6px;
228
+ opacity: 0.12;
229
+ }
230
+ </style>
231
+ </head>
232
+ <body>
233
+ <div id="render-target">
234
+ <!-- Status Bar -->
235
+ <div class="status-bar">
236
+ <div class="time">5:14</div>
237
+ <div class="status-right">
238
+ <!-- simple icons -->
239
+ <svg class="ico" viewBox="0 0 24 24"><circle cx="12" cy="12" r="9" fill="#616161"/></svg>
240
+ <svg class="ico" viewBox="0 0 24 24"><path d="M3 18h18L12 6 3 18z" fill="#616161"/></svg>
241
+ <svg class="ico" viewBox="0 0 24 24"><path d="M4 6h16v12H4z" fill="none" stroke="#616161" stroke-width="2"/><rect x="6" y="8" width="12" height="8" fill="#616161"/></svg>
242
+ <svg class="ico" viewBox="0 0 24 24"><circle cx="12" cy="12" r="3" fill="#616161"/></svg>
243
+ <svg class="ico" viewBox="0 0 24 24"><path d="M3 12h6l3 6 3-12 3 6h3" stroke="#616161" stroke-width="2" fill="none"/></svg>
244
+ <svg class="ico" viewBox="0 0 24 24"><rect x="5" y="4" width="14" height="16" rx="2" ry="2" fill="none" stroke="#616161" stroke-width="2"/><rect x="7" y="8" width="10" height="8" fill="#616161"/></svg>
245
+ </div>
246
+ </div>
247
+
248
+ <!-- Main Content -->
249
+ <div class="content">
250
+ <div class="title">REPORT</div>
251
+
252
+ <div class="row">
253
+ <div>Heaviest</div>
254
+ <div class="value">0.00 lbs</div>
255
+ </div>
256
+ <div class="row">
257
+ <div>Lightest</div>
258
+ <div class="value">0.00 lbs</div>
259
+ </div>
260
+
261
+ <div class="card">
262
+ <div class="card-section label-edit">
263
+ <div>BMI(kg/m²) :</div>
264
+ <div class="edit">EDIT</div>
265
+ </div>
266
+ </div>
267
+
268
+ <div class="card">
269
+ <div class="card-section label-edit">
270
+ <div>Height</div>
271
+ <div class="edit">EDIT</div>
272
+ </div>
273
+ <div class="card-section">
274
+ <div class="sub-label">Current</div>
275
+ <div class="height-value">0 FT 0.0 IN</div>
276
+ <div class="underline"></div>
277
+ </div>
278
+ </div>
279
+
280
+ <!-- Video ad -->
281
+ <div class="video">
282
+ [IMG: Video Ad - Game scene]
283
+ <div class="overlay-btn">
284
+ <div class="overlay-icon">
285
+ <svg viewBox="0 0 24 24">
286
+ <rect x="5" y="4" width="4" height="16" fill="#FFFFFF"/>
287
+ <rect x="13" y="4" width="4" height="16" fill="#FFFFFF"/>
288
+ </svg>
289
+ </div>
290
+ <div class="overlay-icon">
291
+ <svg viewBox="0 0 24 24">
292
+ <path d="M4 8v8l6-4V8L4 4v4z" fill="#FFFFFF"/>
293
+ <line x1="16" y1="8" x2="21" y2="16" stroke="#FFFFFF" stroke-width="2"/>
294
+ </svg>
295
+ </div>
296
+ </div>
297
+ </div>
298
+
299
+ <div class="ad-badge">AD</div>
300
+ <div class="ad-row">
301
+ <div class="app-icon">[IMG: Game App Icon]</div>
302
+ <div class="ad-texts">
303
+ <div class="ad-title">Hero Wars: Alliance</div>
304
+ <div class="ad-sub">This treasure is deserved It's almost impossible to pass</div>
305
+ </div>
306
+ </div>
307
+ <div class="install-wrap">
308
+ <div class="install-btn">INSTALL</div>
309
+ </div>
310
+ </div>
311
+
312
+ <!-- Bottom Navigation -->
313
+ <div class="bottom-nav">
314
+ <div class="nav-item">
315
+ <svg viewBox="0 0 24 24">
316
+ <circle cx="6" cy="12" r="3" fill="#9E9E9E"/>
317
+ <circle cx="18" cy="12" r="3" fill="#9E9E9E"/>
318
+ <rect x="8.5" y="11" width="7" height="2" fill="#9E9E9E"/>
319
+ </svg>
320
+ <div>Training</div>
321
+ </div>
322
+ <div class="nav-item">
323
+ <svg viewBox="0 0 24 24">
324
+ <circle cx="12" cy="12" r="9" fill="none" stroke="#9E9E9E" stroke-width="2"/>
325
+ <path d="M12 12l6-2" stroke="#9E9E9E" stroke-width="2" fill="none"/>
326
+ </svg>
327
+ <div>Discover</div>
328
+ </div>
329
+ <div class="nav-item active">
330
+ <svg viewBox="0 0 24 24">
331
+ <rect x="3" y="14" width="4" height="6" fill="#1E88E5"/>
332
+ <rect x="10" y="10" width="4" height="10" fill="#1E88E5"/>
333
+ <rect x="17" y="6" width="4" height="14" fill="#1E88E5"/>
334
+ </svg>
335
+ <div>Report</div>
336
+ </div>
337
+ <div class="nav-item">
338
+ <svg viewBox="0 0 24 24">
339
+ <circle cx="12" cy="12" r="8" fill="none" stroke="#9E9E9E" stroke-width="2"/>
340
+ <circle cx="12" cy="12" r="3" fill="#9E9E9E"/>
341
+ </svg>
342
+ <div>Settings</div>
343
+ </div>
344
+ </div>
345
+
346
+ <!-- Gesture bar -->
347
+ <div class="gesture-bar"></div>
348
+ </div>
349
+ </body>
350
+ </html>
code/889/889_0.html ADDED
@@ -0,0 +1,366 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Vehicle Overview</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: Roboto, Arial, sans-serif; color: #424242; }
9
+ #render-target {
10
+ position: relative;
11
+ overflow: hidden;
12
+ width: 1080px;
13
+ height: 2400px;
14
+ background: #FFFFFF;
15
+ border-radius: 0;
16
+ box-shadow: none;
17
+ }
18
+
19
+ /* Status bar */
20
+ .status-bar {
21
+ position: absolute;
22
+ top: 0;
23
+ left: 0;
24
+ width: 100%;
25
+ height: 120px;
26
+ background: #EFEFEF;
27
+ color: #757575;
28
+ font-size: 40px;
29
+ display: flex;
30
+ align-items: center;
31
+ padding: 0 36px;
32
+ box-sizing: border-box;
33
+ }
34
+ .status-bar .time { flex: 1; font-weight: 500; }
35
+ .status-icons { display: flex; gap: 28px; align-items: center; }
36
+ .status-icons svg { width: 42px; height: 42px; fill: #B0B0B0; }
37
+
38
+ /* Header */
39
+ .header {
40
+ position: absolute;
41
+ top: 120px;
42
+ left: 0;
43
+ width: 100%;
44
+ height: 160px;
45
+ background: #FFFFFF;
46
+ box-shadow: 0 1px 0 rgba(0,0,0,0.12);
47
+ display: flex;
48
+ align-items: center;
49
+ padding: 0 30px;
50
+ box-sizing: border-box;
51
+ }
52
+ .header .title {
53
+ font-size: 64px;
54
+ font-weight: 500;
55
+ color: #616161;
56
+ margin-left: 24px;
57
+ }
58
+ .icon-btn { width: 72px; height: 72px; display: flex; align-items: center; justify-content: center; }
59
+
60
+ /* Hero image */
61
+ .hero {
62
+ position: absolute;
63
+ top: 280px;
64
+ left: 0;
65
+ width: 100%;
66
+ height: 720px;
67
+ background: #E0E0E0;
68
+ border-top: 1px solid #D0D0D0;
69
+ border-bottom: 1px solid #D0D0D0;
70
+ display: flex;
71
+ align-items: center;
72
+ justify-content: center;
73
+ color: #757575;
74
+ font-size: 36px;
75
+ letter-spacing: 0.2px;
76
+ }
77
+ .heart-fav {
78
+ position: absolute;
79
+ right: 28px;
80
+ top: 320px;
81
+ width: 88px;
82
+ height: 88px;
83
+ background: rgba(255,255,255,0.85);
84
+ border-radius: 44px;
85
+ display: flex;
86
+ align-items: center;
87
+ justify-content: center;
88
+ border: 1px solid #DADADA;
89
+ }
90
+ .gallery-chip {
91
+ position: absolute;
92
+ right: 28px;
93
+ bottom: 320px;
94
+ background: rgba(0,0,0,0.4);
95
+ color: #FFF;
96
+ height: 90px;
97
+ padding: 0 26px;
98
+ border-radius: 18px;
99
+ display: flex;
100
+ align-items: center;
101
+ gap: 18px;
102
+ font-size: 40px;
103
+ }
104
+ .gallery-chip svg { width: 44px; height: 44px; fill: #FFF; }
105
+
106
+ /* Content card */
107
+ .content {
108
+ position: absolute;
109
+ top: 1000px;
110
+ left: 0;
111
+ width: 100%;
112
+ padding: 40px 40px 0 40px;
113
+ box-sizing: border-box;
114
+ }
115
+ .title-main {
116
+ font-size: 72px;
117
+ font-weight: 500;
118
+ color: #616161;
119
+ margin-bottom: 40px;
120
+ }
121
+ .sub-label {
122
+ font-size: 42px;
123
+ color: #8A8A8A;
124
+ margin-top: 20px;
125
+ }
126
+ .style-row {
127
+ display: flex;
128
+ align-items: center;
129
+ justify-content: space-between;
130
+ margin-bottom: 10px;
131
+ }
132
+ .style-row .left { font-size: 46px; color: #8A8A8A; }
133
+ .style-row .right svg { width: 44px; height: 44px; fill: #9E9E9E; }
134
+ .detail {
135
+ font-size: 48px;
136
+ color: #424242;
137
+ margin-top: 14px;
138
+ }
139
+ .detail.sub { font-size: 40px; color: #757575; }
140
+ .divider {
141
+ width: 100%;
142
+ height: 2px;
143
+ background: #E0E0E0;
144
+ margin: 40px 0;
145
+ }
146
+
147
+ /* Pricing */
148
+ .pricing {
149
+ display: flex;
150
+ justify-content: space-between;
151
+ padding: 0 10px;
152
+ }
153
+ .price-card {
154
+ width: 32%;
155
+ text-align: center;
156
+ }
157
+ .price-card .label {
158
+ font-size: 40px;
159
+ color: #8A8A8A;
160
+ margin-bottom: 16px;
161
+ }
162
+ .price-card .value {
163
+ font-size: 64px;
164
+ font-weight: 500;
165
+ color: #424242;
166
+ }
167
+
168
+ .cta {
169
+ margin: 40px 0;
170
+ width: 100%;
171
+ height: 120px;
172
+ background: #7AC943;
173
+ color: #FFFFFF;
174
+ border-radius: 14px;
175
+ display: flex;
176
+ align-items: center;
177
+ justify-content: center;
178
+ font-size: 46px;
179
+ font-weight: 700;
180
+ box-shadow: 0 3px 0 rgba(0,0,0,0.15);
181
+ }
182
+
183
+ /* What's new */
184
+ .section-title {
185
+ font-size: 56px;
186
+ font-weight: 600;
187
+ color: #616161;
188
+ margin-bottom: 20px;
189
+ }
190
+ .bullets {
191
+ color: #616161;
192
+ font-size: 40px;
193
+ line-height: 64px;
194
+ }
195
+ .bullets li { margin-bottom: 6px; }
196
+
197
+ /* Ad banner */
198
+ .ad-banner {
199
+ margin: 30px 0;
200
+ width: 100%;
201
+ height: 160px;
202
+ background: #E0E0E0;
203
+ border: 1px solid #BDBDBD;
204
+ display: flex;
205
+ align-items: center;
206
+ justify-content: center;
207
+ color: #757575;
208
+ font-size: 38px;
209
+ }
210
+
211
+ /* Bottom nav */
212
+ .bottom-nav {
213
+ position: absolute;
214
+ bottom: 0;
215
+ left: 0;
216
+ width: 100%;
217
+ height: 220px;
218
+ background: #FFFFFF;
219
+ border-top: 1px solid #E0E0E0;
220
+ display: flex;
221
+ justify-content: space-around;
222
+ align-items: center;
223
+ box-sizing: border-box;
224
+ padding-bottom: 28px;
225
+ }
226
+ .nav-item { width: 25%; text-align: center; }
227
+ .nav-icon { width: 80px; height: 80px; margin: 0 auto 14px; }
228
+ .nav-item span { display: block; font-size: 36px; color: #757575; }
229
+ .nav-item.active span { color: #1976D2; }
230
+ .nav-item.active svg { fill: #1976D2; }
231
+ .bottom-pill {
232
+ position: absolute;
233
+ bottom: 12px;
234
+ left: 50%;
235
+ transform: translateX(-50%);
236
+ width: 280px;
237
+ height: 12px;
238
+ background: #000000;
239
+ border-radius: 6px;
240
+ opacity: 0.2;
241
+ }
242
+ </style>
243
+ </head>
244
+ <body>
245
+ <div id="render-target">
246
+
247
+ <!-- Status bar -->
248
+ <div class="status-bar">
249
+ <div class="time">9:44</div>
250
+ <div class="status-icons">
251
+ <!-- Wi-Fi -->
252
+ <svg viewBox="0 0 24 24"><path d="M12 18l2-2c-1.1-1.1-2.9-1.1-4 0l2 2zm6-6c-3.3-3.3-8.7-3.3-12 0l1.5 1.5c2.4-2.4 6.6-2.4 9 0L18 12zm4-4C16.5 4.5 7.5 4.5 2 8l1.5 1.5c5-3.5 13-3.5 18 0L22 8z"/></svg>
253
+ <!-- Battery -->
254
+ <svg viewBox="0 0 24 24"><path d="M16 5h2v2h1c1.1 0 2 .9 2 2v6c0 1.1-.9 2-2 2h-1v2h-2V5zM3 9c0-1.1.9-2 2-2h8c1.1 0 2 .9 2 2v6c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2V9z"/></svg>
255
+ </div>
256
+ </div>
257
+
258
+ <!-- Header bar -->
259
+ <div class="header">
260
+ <div class="icon-btn">
261
+ <!-- Back arrow -->
262
+ <svg viewBox="0 0 24 24" width="60" height="60" fill="#616161"><path d="M15.5 5l-7.5 7 7.5 7-1.5 1.5L5.5 12 14 3.5z"/></svg>
263
+ </div>
264
+ <div class="title">Vehicle Overview</div>
265
+ </div>
266
+
267
+ <!-- Hero image -->
268
+ <div class="hero">[IMG: White Honda Civic Type R on city street]</div>
269
+
270
+ <!-- Favorite heart on image -->
271
+ <div class="heart-fav">
272
+ <svg viewBox="0 0 24 24" width="48" height="48" fill="#E53935"><path d="M12 21s-6.7-4.6-9.2-7.1C-0.1 11.2 1 6.8 5 6c2.1-.4 3.6.6 5 2 1.4-1.4 2.9-2.4 5-2 4 .8 5.1 5.2 2.2 7.9C18.7 16.4 12 21 12 21z" /></svg>
273
+ </div>
274
+
275
+ <!-- Gallery chip -->
276
+ <div class="gallery-chip">
277
+ <svg viewBox="0 0 24 24"><path d="M3 3h8v8H3V3zm10 0h8v8h-8V3zM3 13h8v8H3v-8zm10 0h8v8h-8v-8z"/></svg>
278
+ Gallery
279
+ </div>
280
+
281
+ <!-- Content section -->
282
+ <div class="content">
283
+ <div class="title-main">Used 2019 Civic Type R</div>
284
+
285
+ <div class="style-row">
286
+ <div class="left">Style</div>
287
+ <div class="right">
288
+ <!-- Chevron down -->
289
+ <svg viewBox="0 0 24 24"><path d="M7 9l5 5 5-5H7z"/></svg>
290
+ </div>
291
+ </div>
292
+
293
+ <div class="detail">Type R 4dr Car</div>
294
+ <div class="detail sub">2.0L 4-cyl. Turbo 6-speed Manual</div>
295
+
296
+ <div class="divider"></div>
297
+
298
+ <div class="pricing">
299
+ <div class="price-card">
300
+ <div class="label">Trade-In</div>
301
+ <div class="value">$25,681</div>
302
+ </div>
303
+ <div class="price-card">
304
+ <div class="label">Private Party</div>
305
+ <div class="value">$29,110</div>
306
+ </div>
307
+ <div class="price-card">
308
+ <div class="label">Dealer Retail</div>
309
+ <div class="value">$32,537</div>
310
+ </div>
311
+ </div>
312
+
313
+ <div class="cta">SEE ALL FOR SALE</div>
314
+
315
+ <div class="divider"></div>
316
+
317
+ <div class="section-title">What's new for 2019</div>
318
+ <ul class="bullets">
319
+ <li>Part of the 10th Civic generation introduced for 2016</li>
320
+ <li>Optional infotainment interface now has a volume knob and hard buttons for high-level functions</li>
321
+ <li>Restyled front bumper</li>
322
+ </ul>
323
+
324
+ <div class="ad-banner">[IMG: Ad Banner]</div>
325
+ </div>
326
+
327
+ <!-- Bottom navigation -->
328
+ <div class="bottom-nav">
329
+ <div class="nav-item">
330
+ <div class="nav-icon">
331
+ <!-- Car icon -->
332
+ <svg viewBox="0 0 24 24" fill="#757575">
333
+ <path d="M5 11l2-4h10l2 4H5zm-1 2h16v5h-2v-2H6v2H4v-5zm3.5 1.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3zm9 0a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3z"/>
334
+ </svg>
335
+ </div>
336
+ <span>Buy a Car</span>
337
+ </div>
338
+ <div class="nav-item active">
339
+ <div class="nav-icon">
340
+ <!-- Search icon -->
341
+ <svg viewBox="0 0 24 24" fill="#1976D2">
342
+ <path d="M15.5 14h-.8l-.3-.3a6.5 6.5 0 1 0-.9.9l.3.3v.8l5 5 1.5-1.5-5-5zm-6 1.5a5 5 0 1 1 0-10 5 5 0 0 1 0 10z"/>
343
+ </svg>
344
+ </div>
345
+ <span>Research</span>
346
+ </div>
347
+ <div class="nav-item">
348
+ <div class="nav-icon">
349
+ <!-- Heart icon -->
350
+ <svg viewBox="0 0 24 24" fill="#757575"><path d="M12 21s-6.7-4.6-9.2-7.1C-0.1 11.2 1 6.8 5 6c2.1-.4 3.6.6 5 2 1.4-1.4 2.9-2.4 5-2 4 .8 5.1 5.2 2.2 7.9C18.7 16.4 12 21 12 21z"/></svg>
351
+ </div>
352
+ <span>Dashboard</span>
353
+ </div>
354
+ <div class="nav-item">
355
+ <div class="nav-icon">
356
+ <!-- More icon -->
357
+ <svg viewBox="0 0 24 24" fill="#757575"><circle cx="5" cy="12" r="2"/><circle cx="12" cy="12" r="2"/><circle cx="19" cy="12" r="2"/></svg>
358
+ </div>
359
+ <span>More</span>
360
+ </div>
361
+ <div class="bottom-pill"></div>
362
+ </div>
363
+
364
+ </div>
365
+ </body>
366
+ </html>
code/889/889_1.html ADDED
@@ -0,0 +1,237 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Dashboard UI</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; color: #424242; }
9
+ #render-target {
10
+ width: 1080px; height: 2400px;
11
+ position: relative; overflow: hidden;
12
+ background: #F5F6F7;
13
+ }
14
+
15
+ /* Status bar */
16
+ .status-bar {
17
+ height: 120px;
18
+ background: #EDEDED;
19
+ padding: 0 40px;
20
+ display: flex;
21
+ align-items: center;
22
+ justify-content: space-between;
23
+ box-sizing: border-box;
24
+ color: #9E9E9E;
25
+ }
26
+ .status-time { font-size: 42px; font-weight: 600; opacity: 0.9; }
27
+ .status-icons { display: flex; align-items: center; gap: 26px; }
28
+ .icon { width: 48px; height: 48px; display: inline-block; }
29
+
30
+ /* App bar */
31
+ .appbar {
32
+ height: 156px;
33
+ background: #FFFFFF;
34
+ box-shadow: 0 2px 6px rgba(0,0,0,0.08);
35
+ display: flex;
36
+ align-items: center;
37
+ justify-content: space-between;
38
+ padding: 0 40px;
39
+ box-sizing: border-box;
40
+ }
41
+ .appbar .title {
42
+ font-size: 64px;
43
+ font-weight: 700;
44
+ color: #555555;
45
+ }
46
+ .appbar .right { display: flex; gap: 40px; align-items: center; }
47
+
48
+ /* Content */
49
+ .content {
50
+ padding: 40px 32px 260px 32px; /* leave space for bottom nav */
51
+ box-sizing: border-box;
52
+ }
53
+ .empty-state {
54
+ text-align: center;
55
+ margin-top: 40px;
56
+ margin-bottom: 30px;
57
+ color: #757575;
58
+ }
59
+ .empty-state .heart {
60
+ margin: 40px auto 14px auto;
61
+ width: 84px; height: 84px;
62
+ display: block;
63
+ }
64
+ .empty-state p {
65
+ font-size: 36px;
66
+ margin: 10px 80px 0 80px;
67
+ line-height: 1.3;
68
+ }
69
+
70
+ .card {
71
+ background: #FFFFFF;
72
+ border-radius: 22px;
73
+ box-shadow: 0 10px 26px rgba(0,0,0,0.12);
74
+ padding: 54px 60px 60px 60px;
75
+ margin: 48px 8px;
76
+ }
77
+ .card h2 {
78
+ margin: 0;
79
+ font-size: 56px;
80
+ color: #1565C0;
81
+ font-weight: 700;
82
+ text-align: center;
83
+ }
84
+ .card p {
85
+ margin: 18px 0 40px 0;
86
+ font-size: 34px;
87
+ color: #757575;
88
+ text-align: center;
89
+ }
90
+
91
+ .plus-circle {
92
+ width: 130px; height: 130px;
93
+ margin: 0 auto;
94
+ background: #1565C0;
95
+ border-radius: 50%;
96
+ position: relative;
97
+ }
98
+ .plus-circle::before,
99
+ .plus-circle::after {
100
+ content: "";
101
+ position: absolute;
102
+ left: 50%; top: 50%;
103
+ width: 76px; height: 14px;
104
+ background: #FFFFFF;
105
+ transform: translate(-50%, -50%);
106
+ border-radius: 7px;
107
+ }
108
+ .plus-circle::after {
109
+ width: 14px; height: 76px;
110
+ }
111
+
112
+ /* Bottom navigation */
113
+ .bottom-nav {
114
+ position: absolute; left: 0; right: 0; bottom: 92px;
115
+ height: 160px; background: #FFFFFF;
116
+ box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
117
+ display: flex; align-items: center; justify-content: space-around;
118
+ }
119
+ .tab { width: 25%; text-align: center; color: #5F6368; font-size: 30px; }
120
+ .tab .icon { margin: 0 auto 10px auto; display: block; }
121
+ .tab.active { color: #1565C0; font-weight: 600; }
122
+
123
+ /* Gesture bar */
124
+ .gesture-bar {
125
+ position: absolute; left: 0; right: 0; bottom: 28px;
126
+ height: 16px;
127
+ background: transparent;
128
+ }
129
+ .gesture-bar::after {
130
+ content: "";
131
+ position: absolute; left: 50%; bottom: 0;
132
+ width: 280px; height: 10px;
133
+ transform: translateX(-50%);
134
+ background: #C8C8C8;
135
+ border-radius: 8px;
136
+ }
137
+ </style>
138
+ </head>
139
+ <body>
140
+ <div id="render-target">
141
+
142
+ <!-- Status Bar -->
143
+ <div class="status-bar">
144
+ <div class="status-time">9:45</div>
145
+ <div class="status-icons">
146
+ <!-- WiFi -->
147
+ <svg class="icon" viewBox="0 0 24 24" fill="#B0B0B0">
148
+ <path d="M12 20.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3z"></path>
149
+ <path d="M4.5 12.5a10 10 0 0 1 15 0l-1.6 1.2a8 8 0 0 0-11.8 0L4.5 12.5z"></path>
150
+ <path d="M7 15.5a6 6 0 0 1 10 0l-1.6 1.2a4 4 0 0 0-6.8 0L7 15.5z"></path>
151
+ </svg>
152
+ <!-- Battery -->
153
+ <svg class="icon" viewBox="0 0 32 24" fill="none" stroke="#B0B0B0" stroke-width="2">
154
+ <rect x="2" y="5" width="24" height="14" rx="2"></rect>
155
+ <rect x="4" y="7" width="16" height="10" fill="#B0B0B0" stroke="none"></rect>
156
+ <rect x="26" y="9" width="4" height="6" rx="1" fill="#B0B0B0" stroke="none"></rect>
157
+ </svg>
158
+ </div>
159
+ </div>
160
+
161
+ <!-- App Bar -->
162
+ <div class="appbar">
163
+ <div class="title">Dashboard</div>
164
+ <div class="right">
165
+ <!-- Bell -->
166
+ <svg class="icon" viewBox="0 0 24 24" fill="#9E9E9E">
167
+ <path d="M12 22a2 2 0 0 0 2-2h-4a2 2 0 0 0 2 2z"></path>
168
+ <path d="M18 16V11a6 6 0 0 0-12 0v5l-2 2v1h16v-1l-2-2z"></path>
169
+ </svg>
170
+ <!-- Person -->
171
+ <svg class="icon" viewBox="0 0 24 24" fill="#9E9E9E">
172
+ <circle cx="12" cy="8" r="4"></circle>
173
+ <path d="M4 20c0-4 4-6 8-6s8 2 8 6H4z"></path>
174
+ </svg>
175
+ </div>
176
+ </div>
177
+
178
+ <!-- Content -->
179
+ <div class="content">
180
+ <div class="empty-state">
181
+ <!-- Heart icon -->
182
+ <svg class="heart" viewBox="0 0 24 24" fill="#9E9E9E">
183
+ <path d="M12 21s-6.7-4.6-9.2-7.2A6 6 0 0 1 12 5.3 6 6 0 0 1 21.2 14c-2.5 2.6-9.2 7-9.2 7z"></path>
184
+ </svg>
185
+ <p>All of your saved inventory and searches will appear here</p>
186
+ </div>
187
+
188
+ <div class="card">
189
+ <h2>Start a Search</h2>
190
+ <p>Save your searches to get inventory alerts</p>
191
+ <div class="plus-circle"></div>
192
+ </div>
193
+
194
+ <div class="card">
195
+ <h2>Research Vehicle Models</h2>
196
+ <p>Save models for quick comparison</p>
197
+ <div class="plus-circle"></div>
198
+ </div>
199
+ </div>
200
+
201
+ <!-- Bottom Navigation -->
202
+ <div class="bottom-nav">
203
+ <div class="tab">
204
+ <svg class="icon" viewBox="0 0 24 24" fill="#757575">
205
+ <path d="M3 12l9-7 9 7v7a2 2 0 0 1-2 2h-4v-6H9v6H5a2 2 0 0 1-2-2v-7z"></path>
206
+ <circle cx="7.5" cy="19.5" r="0" fill="none"></circle>
207
+ </svg>
208
+ <div>Buy a Car</div>
209
+ </div>
210
+ <div class="tab">
211
+ <svg class="icon" viewBox="0 0 24 24" fill="#757575">
212
+ <circle cx="10" cy="10" r="6"></circle>
213
+ <rect x="15" y="15" width="8" height="3" transform="rotate(45 15 15)"></rect>
214
+ </svg>
215
+ <div>Research</div>
216
+ </div>
217
+ <div class="tab active">
218
+ <svg class="icon" viewBox="0 0 24 24" fill="#1565C0">
219
+ <path d="M12 21s-6.7-4.6-9.2-7.2A6 6 0 0 1 12 5.3 6 6 0 0 1 21.2 14c-2.5 2.6-9.2 7-9.2 7z"></path>
220
+ </svg>
221
+ <div>Dashboard</div>
222
+ </div>
223
+ <div class="tab">
224
+ <svg class="icon" viewBox="0 0 24 24" fill="#757575">
225
+ <circle cx="6" cy="12" r="2"></circle>
226
+ <circle cx="12" cy="12" r="2"></circle>
227
+ <circle cx="18" cy="12" r="2"></circle>
228
+ </svg>
229
+ <div>More</div>
230
+ </div>
231
+ </div>
232
+
233
+ <!-- Gesture Bar -->
234
+ <div class="gesture-bar"></div>
235
+ </div>
236
+ </body>
237
+ </html>
code/889/889_2.html ADDED
@@ -0,0 +1,256 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>Research Screen</title>
6
+ <style>
7
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, sans-serif; }
8
+ #render-target {
9
+ width: 1080px; height: 2400px;
10
+ position: relative; overflow: hidden;
11
+ background: #ffffff; border-radius: 0; box-shadow: none;
12
+ }
13
+
14
+ /* Top status area */
15
+ .status-bar {
16
+ height: 160px;
17
+ background: #eeeeee;
18
+ position: relative;
19
+ padding: 40px 48px 0 48px;
20
+ box-sizing: border-box;
21
+ color: #7a7a7a;
22
+ font-size: 44px;
23
+ }
24
+ .status-bar .time { position: absolute; left: 48px; top: 40px; }
25
+ .status-bar .icons { position: absolute; right: 48px; top: 40px; display: flex; gap: 28px; align-items: center; }
26
+ .status-bar svg { display: block; }
27
+
28
+ /* Page title */
29
+ .page-title {
30
+ font-size: 72px;
31
+ font-weight: 600;
32
+ color: #5a5a5a;
33
+ padding: 36px 48px 24px 48px;
34
+ }
35
+
36
+ /* Recently viewed */
37
+ .section-header {
38
+ display: flex; justify-content: space-between; align-items: center;
39
+ padding: 0 48px;
40
+ }
41
+ .section-title {
42
+ font-size: 56px; font-weight: 700; color: #4f4f4f;
43
+ }
44
+ .clear-btn { font-size: 40px; color: #9e9e9e; }
45
+
46
+ .recent-scroll {
47
+ margin-top: 24px;
48
+ padding-left: 48px;
49
+ display: flex; gap: 28px;
50
+ }
51
+ .card {
52
+ width: 880px; height: 320px;
53
+ background: #ffffff;
54
+ border-radius: 22px;
55
+ box-shadow: 0 4px 14px rgba(0,0,0,0.15);
56
+ display: flex; overflow: hidden;
57
+ }
58
+ .card .img {
59
+ width: 360px; height: 100%;
60
+ background: #E0E0E0;
61
+ border-right: 1px solid #BDBDBD;
62
+ display: flex; align-items: center; justify-content: center;
63
+ color: #757575; font-size: 34px;
64
+ }
65
+ .card .content {
66
+ flex: 1; padding: 28px;
67
+ display: flex; flex-direction: column; justify-content: center;
68
+ }
69
+ .card .title { font-size: 48px; color: #333333; margin-bottom: 24px; }
70
+ .rating { display: flex; align-items: center; gap: 14px; }
71
+ .rating .label { color: #8a8a8a; font-size: 36px; margin-left: 16px; }
72
+
73
+ .mini-card {
74
+ width: 340px; height: 320px;
75
+ background: #ffffff;
76
+ border-radius: 22px;
77
+ box-shadow: 0 4px 14px rgba(0,0,0,0.15);
78
+ overflow: hidden;
79
+ }
80
+ .mini-card .img {
81
+ width: 100%; height: 100%;
82
+ background: #E0E0E0;
83
+ border: 1px solid #BDBDBD;
84
+ display: flex; align-items: center; justify-content: center;
85
+ color: #757575; font-size: 32px;
86
+ }
87
+
88
+ /* Brand list */
89
+ .brand-list { margin-top: 30px; }
90
+ .brand-item {
91
+ height: 150px;
92
+ display: flex; align-items: center;
93
+ padding: 0 48px;
94
+ border-bottom: 1px solid #eeeeee;
95
+ }
96
+ .brand-logo {
97
+ width: 110px; height: 110px; margin-right: 40px;
98
+ background: #E0E0E0; border: 1px solid #BDBDBD;
99
+ display: flex; align-items: center; justify-content: center;
100
+ color: #757575; font-size: 28px; border-radius: 4px;
101
+ }
102
+ .brand-name {
103
+ font-size: 50px; color: #555555;
104
+ }
105
+
106
+ /* Bottom navigation */
107
+ .bottom-nav {
108
+ position: absolute; left: 0; right: 0; bottom: 88px;
109
+ height: 160px; border-top: 1px solid #e0e0e0; background: #ffffff;
110
+ display: flex; justify-content: space-around; align-items: center;
111
+ }
112
+ .nav-item { display: flex; flex-direction: column; align-items: center; gap: 14px; }
113
+ .nav-item svg { width: 64px; height: 64px; }
114
+ .nav-label { font-size: 34px; color: #777777; }
115
+ .active .nav-label { color: #1976D2; font-weight: 600; }
116
+ .active svg path { fill: #1976D2; }
117
+
118
+ /* Home indicator */
119
+ .home-indicator {
120
+ position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
121
+ width: 360px; height: 12px; background: #d0d0d0; border-radius: 6px;
122
+ }
123
+ </style>
124
+ </head>
125
+ <body>
126
+ <div id="render-target">
127
+
128
+ <!-- Status Bar -->
129
+ <div class="status-bar">
130
+ <div class="time">9:46</div>
131
+ <div class="icons">
132
+ <!-- WiFi -->
133
+ <svg width="44" height="44" viewBox="0 0 24 24">
134
+ <path d="M12 18.5c.9 0 1.5.6 1.5 1.5s-.6 1.5-1.5 1.5-1.5-.6-1.5-1.5.6-1.5 1.5-1.5zm-4.5-4c2.9-2.9 8.1-2.9 11 0l-1.4 1.4c-2.1-2.1-6.1-2.1-8.2 0L7.5 14.5zm-3.8-3.8c4.9-4.9 12.9-4.9 17.8 0l-1.4 1.4c-4.1-4.1-10.9-4.1-15 0L3.7 10.7z" fill="#7a7a7a"/>
135
+ </svg>
136
+ <!-- Battery -->
137
+ <svg width="48" height="44" viewBox="0 0 24 24">
138
+ <path d="M2 8h17v8H2V8zm19 2h2v4h-2v-4z" fill="#7a7a7a"/>
139
+ </svg>
140
+ </div>
141
+ </div>
142
+
143
+ <!-- Title -->
144
+ <div class="page-title">Research</div>
145
+
146
+ <!-- Recently Viewed -->
147
+ <div class="section-header">
148
+ <div class="section-title">Recently Viewed</div>
149
+ <div class="clear-btn">Clear</div>
150
+ </div>
151
+ <div class="recent-scroll">
152
+ <div class="card">
153
+ <div class="img">[IMG: White Honda Civic]</div>
154
+ <div class="content">
155
+ <div class="title">2019 Honda Civic</div>
156
+ <div class="rating">
157
+ <!-- Stars -->
158
+ <svg width="32" height="32" viewBox="0 0 24 24">
159
+ <path d="M12 2l3.1 6.3 6.9 1-5 4.9 1.2 7-6.2-3.4-6.2 3.4 1.2-7-5-4.9 6.9-1z" fill="#4CAF50"/>
160
+ </svg>
161
+ <svg width="32" height="32" viewBox="0 0 24 24">
162
+ <path d="M12 2l3.1 6.3 6.9 1-5 4.9 1.2 7-6.2-3.4-6.2 3.4 1.2-7-5-4.9 6.9-1z" fill="#4CAF50"/>
163
+ </svg>
164
+ <svg width="32" height="32" viewBox="0 0 24 24">
165
+ <path d="M12 2l3.1 6.3 6.9 1-5 4.9 1.2 7-6.2-3.4-6.2 3.4 1.2-7-5-4.9 6.9-1z" fill="#4CAF50"/>
166
+ </svg>
167
+ <svg width="32" height="32" viewBox="0 0 24 24">
168
+ <path d="M12 2l3.1 6.3 6.9 1-5 4.9 1.2 7-6.2-3.4-6.2 3.4 1.2-7-5-4.9 6.9-1z" fill="#4CAF50"/>
169
+ </svg>
170
+ <svg width="32" height="32" viewBox="0 0 24 24">
171
+ <path d="M12 2l3.1 6.3 6.9 1-5 4.9 1.2 7-6.2-3.4-6.2 3.4 1.2-7-5-4.9 6.9-1z" fill="#4CAF50"/>
172
+ </svg>
173
+ <div class="label">Avg Rating</div>
174
+ </div>
175
+ </div>
176
+ </div>
177
+
178
+ <div class="mini-card">
179
+ <div class="img">[IMG: Blue Sedan]</div>
180
+ </div>
181
+ </div>
182
+
183
+ <!-- Brand List -->
184
+ <div class="brand-list">
185
+ <div class="brand-item">
186
+ <div class="brand-logo">[IMG: Acura Logo]</div>
187
+ <div class="brand-name">Acura</div>
188
+ </div>
189
+ <div class="brand-item">
190
+ <div class="brand-logo">[IMG: Alfa Romeo Logo]</div>
191
+ <div class="brand-name">Alfa Romeo</div>
192
+ </div>
193
+ <div class="brand-item">
194
+ <div class="brand-logo">[IMG: AM General Logo]</div>
195
+ <div class="brand-name">AM General</div>
196
+ </div>
197
+ <div class="brand-item">
198
+ <div class="brand-logo">[IMG: Aston Martin Logo]</div>
199
+ <div class="brand-name">Aston Martin</div>
200
+ </div>
201
+ <div class="brand-item">
202
+ <div class="brand-logo">[IMG: Audi Logo]</div>
203
+ <div class="brand-name">Audi</div>
204
+ </div>
205
+ <div class="brand-item">
206
+ <div class="brand-logo">[IMG: Bentley Logo]</div>
207
+ <div class="brand-name">Bentley</div>
208
+ </div>
209
+ <div class="brand-item">
210
+ <div class="brand-logo">[IMG: BMW Logo]</div>
211
+ <div class="brand-name">BMW</div>
212
+ </div>
213
+ <div class="brand-item">
214
+ <div class="brand-logo">[IMG: Bugatti Logo]</div>
215
+ <div class="brand-name">Bugatti</div>
216
+ </div>
217
+ <div class="brand-item">
218
+ <div class="brand-logo">[IMG: Buick Logo]</div>
219
+ <div class="brand-name">Buick</div>
220
+ </div>
221
+ </div>
222
+
223
+ <!-- Bottom Navigation -->
224
+ <div class="bottom-nav">
225
+ <div class="nav-item">
226
+ <svg viewBox="0 0 24 24">
227
+ <path d="M3 12l9-7 9 7v8a1 1 0 0 1-1 1h-5v-5H9v5H4a1 1 0 0 1-1-1v-8z" fill="#777777"/>
228
+ </svg>
229
+ <div class="nav-label">Buy a Car</div>
230
+ </div>
231
+ <div class="nav-item active">
232
+ <svg viewBox="0 0 24 24">
233
+ <path d="M15.5 14h-.8l-.3-.3a6.5 6.5 0 1 0-.9.9l.3.3v.8l5 5 1.5-1.5-5-5zm-6 0a4.5 4.5 0 1 1 0-9 4.5 4.5 0 0 1 0 9z" fill="#1976D2"/>
234
+ </svg>
235
+ <div class="nav-label">Research</div>
236
+ </div>
237
+ <div class="nav-item">
238
+ <svg viewBox="0 0 24 24">
239
+ <path d="M12 21s-7-4.6-7-10a4.5 4.5 0 0 1 8-2.8A4.5 4.5 0 0 1 19 11c0 5.4-7 10-7 10z" fill="#777777"/>
240
+ </svg>
241
+ <div class="nav-label">Dashboard</div>
242
+ </div>
243
+ <div class="nav-item">
244
+ <svg viewBox="0 0 24 24">
245
+ <circle cx="5" cy="12" r="2" fill="#777777"/>
246
+ <circle cx="12" cy="12" r="2" fill="#777777"/>
247
+ <circle cx="19" cy="12" r="2" fill="#777777"/>
248
+ </svg>
249
+ <div class="nav-label">More</div>
250
+ </div>
251
+ </div>
252
+
253
+ <div class="home-indicator"></div>
254
+ </div>
255
+ </body>
256
+ </html>
code/889/889_3.html ADDED
@@ -0,0 +1,352 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>Vehicle Overview UI</title>
6
+ <style>
7
+ body { margin: 0; padding: 0; background: transparent; }
8
+ #render-target {
9
+ position: relative;
10
+ overflow: hidden;
11
+ width: 1080px;
12
+ height: 2400px;
13
+ background: #F5F5F5;
14
+ border-radius: 0;
15
+ box-shadow: none;
16
+ font-family: Arial, Helvetica, sans-serif;
17
+ color: #333;
18
+ }
19
+ /* Top status bar */
20
+ .status-bar {
21
+ height: 120px;
22
+ background: #EEEEEE;
23
+ display: flex;
24
+ align-items: center;
25
+ padding: 0 36px;
26
+ font-size: 40px;
27
+ color: #9E9E9E;
28
+ }
29
+ .status-spacer { flex: 1; }
30
+ .status-icons svg { margin-left: 24px; }
31
+ /* Header */
32
+ .app-header {
33
+ height: 120px;
34
+ background: #FFFFFF;
35
+ display: flex;
36
+ align-items: center;
37
+ padding: 0 36px;
38
+ border-bottom: 1px solid #E0E0E0;
39
+ }
40
+ .back-btn {
41
+ width: 80px;
42
+ height: 80px;
43
+ display: flex;
44
+ align-items: center;
45
+ justify-content: center;
46
+ margin-right: 24px;
47
+ }
48
+ .header-title {
49
+ font-size: 56px;
50
+ font-weight: 600;
51
+ color: #555;
52
+ }
53
+ /* Hero image placeholder */
54
+ .hero {
55
+ position: relative;
56
+ width: 100%;
57
+ height: 560px;
58
+ background: #E0E0E0;
59
+ border-bottom: 1px solid #BDBDBD;
60
+ display: flex;
61
+ align-items: center;
62
+ justify-content: center;
63
+ color: #757575;
64
+ font-size: 40px;
65
+ }
66
+ .hero .favorite {
67
+ position: absolute;
68
+ top: 24px;
69
+ right: 24px;
70
+ width: 88px;
71
+ height: 88px;
72
+ background: rgba(255,255,255,0.85);
73
+ border-radius: 44px;
74
+ display: flex;
75
+ align-items: center;
76
+ justify-content: center;
77
+ }
78
+ .hero .gallery {
79
+ position: absolute;
80
+ bottom: 24px;
81
+ right: 24px;
82
+ background: rgba(60,60,60,0.5);
83
+ color: #FFFFFF;
84
+ border-radius: 16px;
85
+ padding: 18px 24px;
86
+ display: flex;
87
+ align-items: center;
88
+ font-size: 36px;
89
+ }
90
+ .hero .gallery svg { margin-right: 14px; }
91
+ /* Content card */
92
+ .content {
93
+ background: #FFFFFF;
94
+ padding: 36px;
95
+ }
96
+ .title {
97
+ font-size: 72px;
98
+ font-weight: 700;
99
+ color: #616161;
100
+ margin: 24px 0 10px 0;
101
+ }
102
+ .section-label {
103
+ font-size: 40px;
104
+ color: #757575;
105
+ margin-top: 26px;
106
+ }
107
+ .style-row {
108
+ display: flex;
109
+ align-items: center;
110
+ margin-top: 14px;
111
+ }
112
+ .style-text {
113
+ flex: 1;
114
+ }
115
+ .style-text .main {
116
+ font-size: 50px;
117
+ color: #424242;
118
+ margin-bottom: 6px;
119
+ }
120
+ .style-text .sub {
121
+ font-size: 36px;
122
+ color: #9E9E9E;
123
+ }
124
+ .divider {
125
+ height: 1px;
126
+ background: #E0E0E0;
127
+ margin: 30px 0;
128
+ }
129
+ .pricing {
130
+ display: flex;
131
+ justify-content: space-between;
132
+ text-align: center;
133
+ padding: 12px 0 20px 0;
134
+ }
135
+ .price-block {
136
+ flex: 1;
137
+ }
138
+ .price-block .label {
139
+ font-size: 36px;
140
+ color: #757575;
141
+ margin-bottom: 10px;
142
+ }
143
+ .price-block .value {
144
+ font-size: 60px;
145
+ font-weight: 700;
146
+ color: #424242;
147
+ }
148
+ .cta {
149
+ margin: 28px 0 10px 0;
150
+ display: flex;
151
+ justify-content: center;
152
+ }
153
+ .cta button {
154
+ width: 100%;
155
+ max-width: 980px;
156
+ height: 110px;
157
+ background: #7ED321;
158
+ color: #FFFFFF;
159
+ border: none;
160
+ border-radius: 18px;
161
+ box-shadow: 0 6px 0 rgba(0,0,0,0.15);
162
+ font-size: 44px;
163
+ font-weight: 800;
164
+ letter-spacing: 1px;
165
+ }
166
+ .section-title {
167
+ font-size: 56px;
168
+ font-weight: 700;
169
+ color: #616161;
170
+ margin: 40px 0 20px 0;
171
+ }
172
+ .bullet-list {
173
+ color: #616161;
174
+ font-size: 38px;
175
+ line-height: 1.5;
176
+ margin: 0;
177
+ padding-left: 24px;
178
+ }
179
+ .bullet-list li {
180
+ margin: 16px 0;
181
+ }
182
+ /* Bottom navigation */
183
+ .bottom-nav {
184
+ position: absolute;
185
+ bottom: 80px;
186
+ left: 0;
187
+ right: 0;
188
+ height: 160px;
189
+ background: #FFFFFF;
190
+ border-top: 1px solid #E0E0E0;
191
+ display: flex;
192
+ align-items: center;
193
+ justify-content: space-around;
194
+ padding: 0 24px;
195
+ }
196
+ .nav-item {
197
+ width: 25%;
198
+ display: flex;
199
+ flex-direction: column;
200
+ align-items: center;
201
+ color: #757575;
202
+ font-size: 34px;
203
+ }
204
+ .nav-item .icon {
205
+ width: 64px;
206
+ height: 64px;
207
+ margin-bottom: 12px;
208
+ }
209
+ .nav-item.active {
210
+ color: #1976D2;
211
+ }
212
+ /* Gesture bar */
213
+ .gesture {
214
+ position: absolute;
215
+ bottom: 20px;
216
+ left: 50%;
217
+ transform: translateX(-50%);
218
+ width: 280px;
219
+ height: 16px;
220
+ background: #000000;
221
+ border-radius: 8px;
222
+ opacity: 0.8;
223
+ }
224
+ </style>
225
+ </head>
226
+ <body>
227
+ <div id="render-target">
228
+
229
+ <!-- Status bar -->
230
+ <div class="status-bar">
231
+ <div>9:46</div>
232
+ <div class="status-spacer"></div>
233
+ <div class="status-icons">
234
+ <!-- WiFi icon -->
235
+ <svg width="44" height="44" viewBox="0 0 24 24" fill="#BDBDBD" xmlns="http://www.w3.org/2000/svg">
236
+ <path d="M12 18l2-2-2-2-2 2 2 2zm-6-6l2-2 4 4 4-4 2 2-6 6-6-6zm-4-4l2-2 8 8 8-8 2 2-10 10L2 8z"/>
237
+ </svg>
238
+ <!-- Battery icon -->
239
+ <svg width="48" height="48" viewBox="0 0 24 24" fill="#BDBDBD" xmlns="http://www.w3.org/2000/svg">
240
+ <path d="M16 6h2v2h2v8h-2v2h-2V6zM2 7h12v10H2V7z"/>
241
+ </svg>
242
+ </div>
243
+ </div>
244
+
245
+ <!-- Header -->
246
+ <div class="app-header">
247
+ <div class="back-btn">
248
+ <svg width="48" height="48" viewBox="0 0 24 24" fill="#616161" xmlns="http://www.w3.org/2000/svg">
249
+ <path d="M15 6l-6 6 6 6-1.4 1.4L6.2 12l7.4-7.4L15 6z"/>
250
+ </svg>
251
+ </div>
252
+ <div class="header-title">Vehicle Overview</div>
253
+ </div>
254
+
255
+ <!-- Hero Image Placeholder -->
256
+ <div class="hero">
257
+ [IMG: White Honda Civic on city street]
258
+ <div class="favorite">
259
+ <svg width="48" height="48" viewBox="0 0 24 24" fill="none" stroke="#616161" stroke-width="2" xmlns="http://www.w3.org/2000/svg">
260
+ <path d="M12 21s-6.7-4.3-9.3-7C1 11.3 1 8 3.1 6 5.2 4 8.4 4.4 10 6.5 11.6 4.4 14.8 4 16.9 6c2.1 2 2.1 5.3.3 8-2.6 2.7-9.2 7-9.2 7z"/>
261
+ </svg>
262
+ </div>
263
+ <div class="gallery">
264
+ <svg width="44" height="44" viewBox="0 0 24 24" fill="#FFFFFF" xmlns="http://www.w3.org/2000/svg">
265
+ <path d="M3 3h8v8H3V3zm10 0h8v8h-8V3zM3 13h8v8H3v-8zm10 0h8v8h-8v-8z"/>
266
+ </svg>
267
+ <span>Gallery</span>
268
+ </div>
269
+ </div>
270
+
271
+ <!-- Content -->
272
+ <div class="content">
273
+ <div class="title">Used 2019 Civic Type R</div>
274
+
275
+ <div class="section-label">Style</div>
276
+ <div class="style-row">
277
+ <div class="style-text">
278
+ <div class="main">Type R 4dr Car</div>
279
+ <div class="sub">2.0L 4-cyl. Turbo 6-speed Manual</div>
280
+ </div>
281
+ <svg width="48" height="48" viewBox="0 0 24 24" fill="#757575" xmlns="http://www.w3.org/2000/svg">
282
+ <path d="M7 10l5 5 5-5H7z"/>
283
+ </svg>
284
+ </div>
285
+
286
+ <div class="divider"></div>
287
+
288
+ <div class="pricing">
289
+ <div class="price-block">
290
+ <div class="label">Trade-In</div>
291
+ <div class="value">$25,681</div>
292
+ </div>
293
+ <div class="price-block">
294
+ <div class="label">Private Party</div>
295
+ <div class="value">$29,110</div>
296
+ </div>
297
+ <div class="price-block">
298
+ <div class="label">Dealer Retail</div>
299
+ <div class="value">$32,537</div>
300
+ </div>
301
+ </div>
302
+
303
+ <div class="cta">
304
+ <button>SEE ALL FOR SALE</button>
305
+ </div>
306
+
307
+ <div class="divider"></div>
308
+
309
+ <div class="section-title">What's new for 2019</div>
310
+ <ul class="bullet-list">
311
+ <li>Part of the 10th Civic generation introduced for 2016</li>
312
+ <li>Optional infotainment interface now has a volume knob and hard buttons for high-level functions</li>
313
+ <li>Restyled front bumper</li>
314
+ <li>Sport now gets base 2.0-liter engine instead of turbo 1.5L</li>
315
+ <li>Sport trim now available as sedan and coupe</li>
316
+ </ul>
317
+ </div>
318
+
319
+ <!-- Bottom navigation -->
320
+ <div class="bottom-nav">
321
+ <div class="nav-item">
322
+ <svg class="icon" viewBox="0 0 24 24" fill="#757575" xmlns="http://www.w3.org/2000/svg">
323
+ <path d="M12 3l9 7v11h-6v-6H9v6H3V10l9-7z"/>
324
+ </svg>
325
+ <div>Buy a Car</div>
326
+ </div>
327
+ <div class="nav-item active">
328
+ <svg class="icon" viewBox="0 0 24 24" fill="#1976D2" xmlns="http://www.w3.org/2000/svg">
329
+ <path d="M15.5 14h-.8l-.3-.3A6.5 6.5 0 0016 9.5 6.5 6.5 0 109.5 16c1.6 0 3.1-.6 4.2-1.6l.3.3v.8l5 5 1.5-1.5-5-5zm-6 0A4.5 4.5 0 119.5 5a4.5 4.5 0 010 9z"/>
330
+ </svg>
331
+ <div>Research</div>
332
+ </div>
333
+ <div class="nav-item">
334
+ <svg class="icon" viewBox="0 0 24 24" fill="#757575" xmlns="http://www.w3.org/2000/svg">
335
+ <path d="M12 21s-6.7-4.3-9.3-7C1 11.3 1 8 3.1 6 5.2 4 8.4 4.4 10 6.5 11.6 4.4 14.8 4 16.9 6c2.1 2 2.1 5.3.3 8-2.6 2.7-9.2 7-9.2 7z"/>
336
+ </svg>
337
+ <div>Dashboard</div>
338
+ </div>
339
+ <div class="nav-item">
340
+ <svg class="icon" viewBox="0 0 24 24" fill="#757575" xmlns="http://www.w3.org/2000/svg">
341
+ <circle cx="5" cy="12" r="2.5"/>
342
+ <circle cx="12" cy="12" r="2.5"/>
343
+ <circle cx="19" cy="12" r="2.5"/>
344
+ </svg>
345
+ <div>More</div>
346
+ </div>
347
+ </div>
348
+
349
+ <div class="gesture"></div>
350
+ </div>
351
+ </body>
352
+ </html>
code/889/889_4.html ADDED
@@ -0,0 +1,414 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Vehicle Overview 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: #FAFAFA;
15
+ font-family: Roboto, Arial, sans-serif;
16
+ color: #212121;
17
+ }
18
+
19
+ /* Status bar */
20
+ .status-bar {
21
+ height: 120px;
22
+ background: #EEEEEE;
23
+ position: relative;
24
+ padding: 0 40px;
25
+ box-sizing: border-box;
26
+ }
27
+ .status-time {
28
+ position: absolute;
29
+ left: 40px;
30
+ top: 34px;
31
+ font-size: 44px;
32
+ color: #9E9E9E;
33
+ letter-spacing: 1px;
34
+ }
35
+ .status-icons {
36
+ position: absolute;
37
+ right: 40px;
38
+ top: 36px;
39
+ display: flex;
40
+ gap: 26px;
41
+ align-items: center;
42
+ }
43
+ .status-icons svg { fill: #BDBDBD; }
44
+
45
+ /* App bar */
46
+ .app-bar {
47
+ height: 150px;
48
+ background: #FFFFFF;
49
+ border-bottom: 1px solid #E0E0E0;
50
+ position: relative;
51
+ }
52
+ .back-btn {
53
+ position: absolute;
54
+ left: 30px;
55
+ top: 50%;
56
+ transform: translateY(-50%);
57
+ width: 80px;
58
+ height: 80px;
59
+ display: flex;
60
+ align-items: center;
61
+ justify-content: center;
62
+ }
63
+ .app-title {
64
+ position: absolute;
65
+ left: 0; right: 0;
66
+ top: 50%;
67
+ transform: translateY(-50%);
68
+ text-align: center;
69
+ font-size: 56px;
70
+ font-weight: 500;
71
+ color: #616161;
72
+ }
73
+
74
+ /* Hero image */
75
+ .hero {
76
+ width: 1080px;
77
+ height: 560px;
78
+ position: relative;
79
+ background: #E0E0E0;
80
+ border-bottom: 1px solid #E0E0E0;
81
+ }
82
+ .hero .img-ph {
83
+ position: absolute;
84
+ left: 0; top: 0;
85
+ width: 100%; height: 100%;
86
+ background: #E0E0E0;
87
+ border: 1px solid #BDBDBD;
88
+ display: flex;
89
+ align-items: center;
90
+ justify-content: center;
91
+ color: #757575;
92
+ font-size: 36px;
93
+ }
94
+ .favorite {
95
+ position: absolute;
96
+ right: 34px;
97
+ top: 28px;
98
+ width: 80px; height: 80px;
99
+ border-radius: 50%;
100
+ background: rgba(255,255,255,0.9);
101
+ box-shadow: 0 2px 6px rgba(0,0,0,0.15);
102
+ display: flex; align-items: center; justify-content: center;
103
+ }
104
+ .gallery-pill {
105
+ position: absolute;
106
+ right: 34px;
107
+ bottom: 26px;
108
+ background: rgba(0,0,0,0.35);
109
+ color: #FFFFFF;
110
+ border-radius: 12px;
111
+ padding: 16px 22px;
112
+ display: flex; align-items: center; gap: 14px;
113
+ font-size: 34px;
114
+ }
115
+ .gallery-pill svg { fill: #FFFFFF; }
116
+
117
+ /* Content section */
118
+ .content {
119
+ background: #FFFFFF;
120
+ }
121
+ .vehicle-title {
122
+ padding: 36px 40px 16px;
123
+ font-size: 60px;
124
+ font-weight: 500;
125
+ color: #616161;
126
+ }
127
+ .style-row {
128
+ display: flex;
129
+ align-items: flex-start;
130
+ justify-content: space-between;
131
+ padding: 8px 40px 0;
132
+ }
133
+ .style-col .label {
134
+ font-size: 36px;
135
+ color: #9E9E9E;
136
+ margin-bottom: 16px;
137
+ }
138
+ .style-col .main {
139
+ font-size: 44px;
140
+ color: #424242;
141
+ margin-bottom: 10px;
142
+ }
143
+ .style-col .sub {
144
+ font-size: 34px;
145
+ color: #757575;
146
+ margin-bottom: 30px;
147
+ }
148
+ .divider {
149
+ height: 1px;
150
+ background: #E0E0E0;
151
+ margin: 0 40px;
152
+ }
153
+
154
+ /* Pricing */
155
+ .pricing {
156
+ display: flex;
157
+ justify-content: space-between;
158
+ padding: 28px 40px 24px;
159
+ }
160
+ .price-card {
161
+ width: 30%;
162
+ }
163
+ .price-card .caption {
164
+ font-size: 32px;
165
+ color: #9E9E9E;
166
+ margin-bottom: 14px;
167
+ }
168
+ .price-card .amount {
169
+ font-size: 54px;
170
+ font-weight: 600;
171
+ color: #424242;
172
+ }
173
+
174
+ /* CTA button */
175
+ .cta {
176
+ padding: 16px 40px 36px;
177
+ }
178
+ .cta button {
179
+ width: 100%;
180
+ height: 120px;
181
+ background: #8BC34A;
182
+ border: none;
183
+ border-radius: 16px;
184
+ color: #FFFFFF;
185
+ font-size: 42px;
186
+ font-weight: 700;
187
+ letter-spacing: 1px;
188
+ box-shadow: 0 2px 6px rgba(0,0,0,0.15);
189
+ }
190
+
191
+ /* What's new */
192
+ .section {
193
+ background: #FFFFFF;
194
+ margin-top: 16px;
195
+ padding: 24px 40px 30px;
196
+ }
197
+ .section h2 {
198
+ font-size: 52px;
199
+ color: #616161;
200
+ margin: 12px 0 24px;
201
+ font-weight: 600;
202
+ }
203
+ .bullets {
204
+ padding-left: 12px;
205
+ }
206
+ .bullets li {
207
+ font-size: 36px;
208
+ color: #616161;
209
+ margin: 16px 0;
210
+ }
211
+
212
+ /* Ad banner */
213
+ .ad-banner {
214
+ margin: 12px 40px;
215
+ height: 160px;
216
+ background: #E0E0E0;
217
+ border: 1px solid #BDBDBD;
218
+ display: flex; align-items: center; justify-content: center;
219
+ color: #757575;
220
+ font-size: 34px;
221
+ position: relative;
222
+ }
223
+ .ad-close {
224
+ position: absolute;
225
+ right: 14px;
226
+ top: 10px;
227
+ width: 44px; height: 44px;
228
+ background: rgba(255,255,255,0.85);
229
+ border-radius: 22px;
230
+ border: 1px solid #BDBDBD;
231
+ display: flex; align-items: center; justify-content: center;
232
+ font-size: 26px; color: #757575;
233
+ }
234
+
235
+ /* Bottom nav */
236
+ .bottom-nav {
237
+ position: absolute;
238
+ left: 0; right: 0; bottom: 80px;
239
+ height: 200px;
240
+ background: #FFFFFF;
241
+ border-top: 1px solid #E0E0E0;
242
+ display: flex;
243
+ justify-content: space-around;
244
+ align-items: center;
245
+ }
246
+ .nav-item {
247
+ width: 20%;
248
+ text-align: center;
249
+ }
250
+ .nav-item svg {
251
+ width: 68px; height: 68px;
252
+ fill: #9E9E9E;
253
+ }
254
+ .nav-item .label {
255
+ margin-top: 10px;
256
+ font-size: 30px;
257
+ color: #757575;
258
+ }
259
+ .active svg { fill: #1E88E5; }
260
+ .active .label { color: #1E88E5; }
261
+ .home-indicator {
262
+ position: absolute;
263
+ bottom: 18px;
264
+ left: 50%;
265
+ transform: translateX(-50%);
266
+ width: 360px;
267
+ height: 14px;
268
+ background: #000000;
269
+ opacity: 0.85;
270
+ border-radius: 8px;
271
+ }
272
+ </style>
273
+ </head>
274
+ <body>
275
+ <div id="render-target">
276
+
277
+ <!-- Status Bar -->
278
+ <div class="status-bar">
279
+ <div class="status-time">9:47</div>
280
+ <div class="status-icons">
281
+ <!-- Simple wifi icon -->
282
+ <svg width="44" height="44" viewBox="0 0 24 24">
283
+ <path d="M12 18a2 2 0 1 0 0.001 0z"></path>
284
+ <path d="M2 9c5-4 15-4 20 0" stroke="#BDBDBD" stroke-width="2" fill="none" stroke-linecap="round"></path>
285
+ <path d="M5 12c3.5-3 10.5-3 14 0" stroke="#BDBDBD" stroke-width="2" fill="none" stroke-linecap="round"></path>
286
+ <path d="M8 15c2-2 6-2 8 0" stroke="#BDBDBD" stroke-width="2" fill="none" stroke-linecap="round"></path>
287
+ </svg>
288
+ <!-- Battery icon -->
289
+ <svg width="44" height="44" viewBox="0 0 24 24">
290
+ <rect x="2" y="7" width="18" height="10" rx="2" ry="2" fill="#BDBDBD"></rect>
291
+ <rect x="20" y="9" width="2" height="6" fill="#BDBDBD"></rect>
292
+ </svg>
293
+ </div>
294
+ </div>
295
+
296
+ <!-- App Bar -->
297
+ <div class="app-bar">
298
+ <div class="back-btn">
299
+ <svg width="60" height="60" viewBox="0 0 24 24">
300
+ <path d="M15 6 L9 12 L15 18" stroke="#616161" stroke-width="2.5" fill="none" stroke-linecap="round" stroke-linejoin="round"></path>
301
+ </svg>
302
+ </div>
303
+ <div class="app-title">Vehicle Overview</div>
304
+ </div>
305
+
306
+ <!-- Hero Image -->
307
+ <div class="hero">
308
+ <div class="img-ph">[IMG: White Honda Civic Type R on city street]</div>
309
+ <div class="favorite">
310
+ <svg width="42" height="42" viewBox="0 0 24 24">
311
+ <path d="M12 21s-6-4.5-8-7.5c-1.5-2 0-6 3.5-6 2 0 3.5 1.2 4.5 2.5C12 8.7 13.5 7.5 15.5 7.5c3.5 0 5 4 3.5 6C18 16.5 12 21 12 21z" fill="#FFFFFF" stroke="#757575" stroke-width="1"></path>
312
+ </svg>
313
+ </div>
314
+ <div class="gallery-pill">
315
+ <svg width="36" height="36" viewBox="0 0 24 24">
316
+ <rect x="3" y="3" width="7" height="7" rx="1"></rect>
317
+ <rect x="14" y="3" width="7" height="7" rx="1"></rect>
318
+ <rect x="3" y="14" width="7" height="7" rx="1"></rect>
319
+ <rect x="14" y="14" width="7" height="7" rx="1"></rect>
320
+ </svg>
321
+ <span>Gallery</span>
322
+ </div>
323
+ </div>
324
+
325
+ <!-- Content -->
326
+ <div class="content">
327
+ <div class="vehicle-title">Used 2019 Civic Type R</div>
328
+
329
+ <div class="style-row">
330
+ <div class="style-col">
331
+ <div class="label">Style</div>
332
+ <div class="main">Type R 4dr Car</div>
333
+ <div class="sub">2.0L 4-cyl. Turbo 6-speed Manual</div>
334
+ </div>
335
+ <div style="padding-top: 16px;">
336
+ <svg width="60" height="60" viewBox="0 0 24 24">
337
+ <path d="M6 9l6 6 6-6" fill="none" stroke="#757575" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"></path>
338
+ </svg>
339
+ </div>
340
+ </div>
341
+
342
+ <div class="divider"></div>
343
+
344
+ <div class="pricing">
345
+ <div class="price-card">
346
+ <div class="caption">Trade-In</div>
347
+ <div class="amount">$25,681</div>
348
+ </div>
349
+ <div class="price-card">
350
+ <div class="caption">Private Party</div>
351
+ <div class="amount">$29,110</div>
352
+ </div>
353
+ <div class="price-card">
354
+ <div class="caption">Dealer Retail</div>
355
+ <div class="amount">$32,537</div>
356
+ </div>
357
+ </div>
358
+
359
+ <div class="cta">
360
+ <button>SEE ALL FOR SALE</button>
361
+ </div>
362
+ </div>
363
+
364
+ <!-- What's new section -->
365
+ <div class="section">
366
+ <h2>What's new for 2019</h2>
367
+ <ul class="bullets">
368
+ <li>Part of the 10th Civic generation introduced for 2016</li>
369
+ <li>Optional infotainment interface now has a volume knob and hard buttons for high-level functions</li>
370
+ <li>Restyled front bumper</li>
371
+ </ul>
372
+ </div>
373
+
374
+ <!-- Ad banner -->
375
+ <div class="ad-banner">
376
+ [IMG: Ad banner - Netflix]
377
+ <div class="ad-close">✕</div>
378
+ </div>
379
+
380
+ <!-- Bottom Navigation -->
381
+ <div class="bottom-nav">
382
+ <div class="nav-item">
383
+ <svg viewBox="0 0 24 24">
384
+ <path d="M3 16h18v3H3zM5 15l2-6h10l2 6H5zM8 9l2-3h4l2 3H8z"></path>
385
+ </svg>
386
+ <div class="label">Buy a Car</div>
387
+ </div>
388
+ <div class="nav-item active">
389
+ <svg viewBox="0 0 24 24">
390
+ <circle cx="11" cy="11" r="6"></circle>
391
+ <path d="M20 20l-4-4" stroke="#1E88E5" stroke-width="2" fill="none" stroke-linecap="round"></path>
392
+ </svg>
393
+ <div class="label">Research</div>
394
+ </div>
395
+ <div class="nav-item">
396
+ <svg viewBox="0 0 24 24">
397
+ <path d="M12 21s-6-4.5-8-7.5c-1.5-2 0-6 3.5-6 2 0 3.5 1.2 4.5 2.5C12 8.7 13.5 7.5 15.5 7.5c3.5 0 5 4 3.5 6C18 16.5 12 21 12 21z"></path>
398
+ </svg>
399
+ <div class="label">Dashboard</div>
400
+ </div>
401
+ <div class="nav-item">
402
+ <svg viewBox="0 0 24 24">
403
+ <circle cx="6" cy="12" r="2.2"></circle>
404
+ <circle cx="12" cy="12" r="2.2"></circle>
405
+ <circle cx="18" cy="12" r="2.2"></circle>
406
+ </svg>
407
+ <div class="label">More</div>
408
+ </div>
409
+ </div>
410
+
411
+ <div class="home-indicator"></div>
412
+ </div>
413
+ </body>
414
+ </html>
code/889/889_5.html ADDED
@@ -0,0 +1,216 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Research Screen</title>
7
+ <style>
8
+ body{margin:0;padding:0;background:transparent;font-family:Arial, Helvetica, sans-serif;color:#333;}
9
+ #render-target{
10
+ width:1080px;height:2400px;position:relative;overflow:hidden;
11
+ background:#FFFFFF;
12
+ }
13
+
14
+ /* Status bar */
15
+ .status-bar{
16
+ position:absolute;top:0;left:0;width:100%;height:120px;background:#F2F2F2;
17
+ padding:0 40px;box-sizing:border-box;display:flex;align-items:flex-end;
18
+ }
19
+ .status-time{font-size:36px;color:#9E9E9E;margin-bottom:22px;}
20
+ .status-icons{margin-left:auto;display:flex;align-items:center;margin-bottom:18px;}
21
+ .status-icons svg{width:40px;height:40px;margin-left:24px;fill:#BDBDBD;}
22
+
23
+ /* Page content */
24
+ .content{
25
+ position:absolute;top:120px;left:0;right:0;bottom:0;overflow:hidden;
26
+ }
27
+ .inner{
28
+ height:100%;overflow-y:auto;padding:40px 48px 220px 48px;box-sizing:border-box;
29
+ background:#FFFFFF;
30
+ }
31
+
32
+ .page-title{
33
+ font-size:64px;font-weight:600;color:#555;margin:24px 0 40px 0;
34
+ }
35
+
36
+ /* Recently Viewed */
37
+ .section-title-row{
38
+ display:flex;align-items:center;margin:8px 0 24px 0;
39
+ }
40
+ .section-title{
41
+ font-size:48px;font-weight:700;color:#555;
42
+ }
43
+ .section-action{
44
+ margin-left:auto;font-size:38px;color:#9E9E9E;
45
+ }
46
+ .card-scroller{display:flex;overflow-x:auto;padding-bottom:12px;}
47
+ .rv-card{
48
+ min-width:900px;height:300px;background:#fff;border-radius:22px;box-shadow:0 4px 10px rgba(0,0,0,0.12);
49
+ display:flex;margin-right:28px;border:1px solid #EDEDED;
50
+ }
51
+ .rv-image{
52
+ width:360px;height:300px;background:#E0E0E0;border-right:1px solid #BDBDBD;
53
+ display:flex;justify-content:center;align-items:center;color:#757575;font-size:30px;
54
+ border-top-left-radius:22px;border-bottom-left-radius:22px;
55
+ }
56
+ .rv-body{flex:1;padding:24px 28px;box-sizing:border-box;}
57
+ .rv-title{font-size:42px;font-weight:600;color:#333;margin-bottom:20px;}
58
+ .rating-row{display:flex;align-items:center;}
59
+ .star{width:40px;height:40px;margin-right:8px;}
60
+ .rating-label{margin-left:18px;font-size:34px;color:#9E9E9E;}
61
+
62
+ /* Brand list */
63
+ .brand-list{margin-top:36px;background:#fff;border-radius:10px;}
64
+ .brand-row{
65
+ display:flex;align-items:center;height:150px;border-bottom:1px solid #EEE;padding:0 8px;
66
+ }
67
+ .brand-logo{
68
+ width:120px;height:120px;background:#E0E0E0;border:1px solid #BDBDBD;border-radius:8px;
69
+ display:flex;justify-content:center;align-items:center;color:#757575;font-size:26px;margin:0 26px 0 8px;
70
+ }
71
+ .brand-name{font-size:44px;color:#444;}
72
+
73
+ /* Bottom nav */
74
+ .bottom-nav{
75
+ position:absolute;left:0;right:0;bottom:0;height:180px;background:#FFFFFF;border-top:1px solid #E0E0E0;
76
+ display:flex;justify-content:space-around;align-items:center;padding:0 20px;box-sizing:border-box;
77
+ }
78
+ .tab-item{display:flex;flex-direction:column;align-items:center;justify-content:center;color:#757575;}
79
+ .tab-item svg{width:64px;height:64px;margin-bottom:10px;fill:#757575;}
80
+ .tab-item .label{font-size:34px;}
81
+ .tab-active svg{fill:#0B73E0;}
82
+ .tab-active .label{color:#0B73E0;font-weight:600;}
83
+
84
+ .home-indicator{
85
+ position:absolute;left:50%;transform:translateX(-50%);
86
+ bottom:20px;width:300px;height:14px;border-radius:10px;background:#DDD;
87
+ }
88
+
89
+ /* Utility */
90
+ ::-webkit-scrollbar{height:0;width:0}
91
+ </style>
92
+ </head>
93
+ <body>
94
+ <div id="render-target">
95
+
96
+ <!-- Status Bar -->
97
+ <div class="status-bar">
98
+ <div class="status-time">9:47</div>
99
+ <div class="status-icons">
100
+ <!-- Wifi -->
101
+ <svg viewBox="0 0 24 24"><path d="M12 20c.8 0 1.5-.7 1.5-1.5S12.8 17 12 17s-1.5.7-1.5 1.5S11.2 20 12 20zm-6.5-6.4l1.4 1.4C8.3 13.6 10.1 13 12 13s3.7.6 5.1 1.9l1.4-1.4C16.7 11.7 14.4 11 12 11s-4.7.7-6.5 2.6zm-3.3-3.3l1.4 1.4C6.3 9.7 9.1 8.8 12 8.8s5.7.9 8.4 2.5l1.4-1.4C19.8 7 16 6 12 6S4.2 7 2.2 10.3z"/></svg>
102
+ <!-- Battery -->
103
+ <svg viewBox="0 0 24 24"><path d="M18 6h2v3h1c.6 0 1 .4 1 1v4c0 .6-.4 1-1 1h-1v3h-2V6zM3 8c-.6 0-1 .4-1 1v6c0 .6.4 1 1 1h13c.6 0 1-.4 1-1V9c0-.6-.4-1-1-1H3zm1 2h11v4H4v-4z"/></svg>
104
+ </div>
105
+ </div>
106
+
107
+ <div class="content">
108
+ <div class="inner">
109
+
110
+ <div class="page-title">Research</div>
111
+
112
+ <div class="section-title-row">
113
+ <div class="section-title">Recently Viewed</div>
114
+ <div class="section-action">Clear</div>
115
+ </div>
116
+
117
+ <div class="card-scroller">
118
+ <!-- Card 1 -->
119
+ <div class="rv-card">
120
+ <div class="rv-image">[IMG: Honda Civic Photo]</div>
121
+ <div class="rv-body">
122
+ <div class="rv-title">2019 Honda Civic</div>
123
+ <div class="rating-row">
124
+ <!-- Five green stars -->
125
+ <svg class="star" viewBox="0 0 24 24"><path fill="#4CAF50" d="M12 2l3 6 6 .9-4.4 4.3 1 6.1L12 16.7 6.4 19.3l1-6.1L3 8.9 9 8l3-6z"/></svg>
126
+ <svg class="star" viewBox="0 0 24 24"><path fill="#4CAF50" d="M12 2l3 6 6 .9-4.4 4.3 1 6.1L12 16.7 6.4 19.3l1-6.1L3 8.9 9 8l3-6z"/></svg>
127
+ <svg class="star" viewBox="0 0 24 24"><path fill="#4CAF50" d="M12 2l3 6 6 .9-4.4 4.3 1 6.1L12 16.7 6.4 19.3l1-6.1L3 8.9 9 8l3-6z"/></svg>
128
+ <svg class="star" viewBox="0 0 24 24"><path fill="#4CAF50" d="M12 2l3 6 6 .9-4.4 4.3 1 6.1L12 16.7 6.4 19.3l1-6.1L3 8.9 9 8l3-6z"/></svg>
129
+ <svg class="star" viewBox="0 0 24 24"><path fill="#4CAF50" d="M12 2l3 6 6 .9-4.4 4.3 1 6.1L12 16.7 6.4 19.3l1-6.1L3 8.9 9 8l3-6z"/></svg>
130
+ <div class="rating-label">Avg Rating</div>
131
+ </div>
132
+ </div>
133
+ </div>
134
+
135
+ <!-- Card 2 -->
136
+ <div class="rv-card">
137
+ <div class="rv-image">[IMG: Blue Sedan Photo]</div>
138
+ <div class="rv-body">
139
+ <div class="rv-title">2020 Compact Sedan</div>
140
+ <div class="rating-row">
141
+ <svg class="star" viewBox="0 0 24 24"><path fill="#4CAF50" d="M12 2l3 6 6 .9-4.4 4.3 1 6.1L12 16.7 6.4 19.3l1-6.1L3 8.9 9 8l3-6z"/></svg>
142
+ <svg class="star" viewBox="0 0 24 24"><path fill="#4CAF50" d="M12 2l3 6 6 .9-4.4 4.3 1 6.1L12 16.7 6.4 19.3l1-6.1L3 8.9 9 8l3-6z"/></svg>
143
+ <svg class="star" viewBox="0 0 24 24"><path fill="#4CAF50" d="M12 2l3 6 6 .9-4.4 4.3 1 6.1L12 16.7 6.4 19.3l1-6.1L3 8.9 9 8l3-6z"/></svg>
144
+ <div class="rating-label">Avg Rating</div>
145
+ </div>
146
+ </div>
147
+ </div>
148
+ </div>
149
+
150
+ <!-- Brand List -->
151
+ <div class="brand-list">
152
+ <div class="brand-row">
153
+ <div class="brand-logo">[IMG: Acura Logo]</div>
154
+ <div class="brand-name">Acura</div>
155
+ </div>
156
+ <div class="brand-row">
157
+ <div class="brand-logo">[IMG: Alfa Romeo Logo]</div>
158
+ <div class="brand-name">Alfa Romeo</div>
159
+ </div>
160
+ <div class="brand-row">
161
+ <div class="brand-logo">[IMG: AM General Logo]</div>
162
+ <div class="brand-name">AM General</div>
163
+ </div>
164
+ <div class="brand-row">
165
+ <div class="brand-logo">[IMG: Aston Martin Logo]</div>
166
+ <div class="brand-name">Aston Martin</div>
167
+ </div>
168
+ <div class="brand-row">
169
+ <div class="brand-logo">[IMG: Audi Logo]</div>
170
+ <div class="brand-name">Audi</div>
171
+ </div>
172
+ <div class="brand-row">
173
+ <div class="brand-logo">[IMG: Bentley Logo]</div>
174
+ <div class="brand-name">Bentley</div>
175
+ </div>
176
+ <div class="brand-row">
177
+ <div class="brand-logo">[IMG: BMW Logo]</div>
178
+ <div class="brand-name">BMW</div>
179
+ </div>
180
+ <div class="brand-row">
181
+ <div class="brand-logo">[IMG: Bugatti Logo]</div>
182
+ <div class="brand-name">Bugatti</div>
183
+ </div>
184
+ <div class="brand-row">
185
+ <div class="brand-logo">[IMG: Buick Logo]</div>
186
+ <div class="brand-name">Buick</div>
187
+ </div>
188
+ </div>
189
+
190
+ </div>
191
+ </div>
192
+
193
+ <!-- Bottom Navigation -->
194
+ <div class="bottom-nav">
195
+ <div class="tab-item">
196
+ <svg viewBox="0 0 24 24"><path d="M12 3l9 8h-2v9h-5v-5H10v5H5v-9H3l9-8z"/></svg>
197
+ <div class="label">Buy a Car</div>
198
+ </div>
199
+ <div class="tab-item tab-active">
200
+ <svg viewBox="0 0 24 24"><path d="M15.6 14.6h-.8l-.3-.3A6.4 6.4 0 0 0 16 9.9 6.1 6.1 0 1 0 9.9 16c1.7 0 3.3-.7 4.4-1.9l.3.3v.8l4.7 4.7 1.4-1.4-4.5-4.9zM9.9 14.1a4.2 4.2 0 1 1 0-8.3 4.2 4.2 0 0 1 0 8.3z"/></svg>
201
+ <div class="label">Research</div>
202
+ </div>
203
+ <div class="tab-item">
204
+ <svg viewBox="0 0 24 24"><path d="M12 21s-7-4.6-7-10a5 5 0 0 1 9-2.9A5 5 0 0 1 19 11c0 5.4-7 10-7 10z"/></svg>
205
+ <div class="label">Dashboard</div>
206
+ </div>
207
+ <div class="tab-item">
208
+ <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>
209
+ <div class="label">More</div>
210
+ </div>
211
+ <div class="home-indicator"></div>
212
+ </div>
213
+
214
+ </div>
215
+ </body>
216
+ </html>
code/889/889_6.html ADDED
@@ -0,0 +1,337 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>Research Screen</title>
6
+ <style>
7
+ body { margin: 0; padding: 0; background: transparent; }
8
+ #render-target {
9
+ position: relative;
10
+ width: 1080px;
11
+ height: 2400px;
12
+ overflow: hidden;
13
+ background: #ffffff;
14
+ font-family: Arial, Helvetica, sans-serif;
15
+ color: #212121;
16
+ }
17
+
18
+ /* Top status bar */
19
+ .statusbar {
20
+ height: 140px;
21
+ background: #EEEEEE;
22
+ display: flex;
23
+ align-items: center;
24
+ justify-content: space-between;
25
+ padding: 0 40px;
26
+ color: #9E9E9E;
27
+ font-size: 36px;
28
+ letter-spacing: 1px;
29
+ }
30
+ .status-icons {
31
+ display: flex;
32
+ align-items: center;
33
+ gap: 24px;
34
+ }
35
+ .header {
36
+ padding: 30px 48px 12px 48px;
37
+ }
38
+ .page-title {
39
+ font-size: 64px;
40
+ font-weight: 600;
41
+ color: #616161;
42
+ margin-top: 12px;
43
+ }
44
+
45
+ /* Recently Viewed */
46
+ .section {
47
+ margin-top: 16px;
48
+ background: #fff;
49
+ }
50
+ .section-header {
51
+ display: flex;
52
+ align-items: center;
53
+ justify-content: space-between;
54
+ padding: 24px 48px;
55
+ box-shadow: 0 4px 8px rgba(0,0,0,0.06);
56
+ position: relative;
57
+ z-index: 2;
58
+ }
59
+ .section-title {
60
+ font-size: 52px;
61
+ font-weight: 700;
62
+ color: #616161;
63
+ }
64
+ .section-action {
65
+ font-size: 40px;
66
+ color: #9E9E9E;
67
+ }
68
+ .cards-scroll {
69
+ display: flex;
70
+ gap: 32px;
71
+ padding: 32px 48px;
72
+ }
73
+ .card {
74
+ width: 900px;
75
+ background: #fff;
76
+ border-radius: 28px;
77
+ box-shadow: 0 8px 18px rgba(0,0,0,0.12);
78
+ display: flex;
79
+ overflow: hidden;
80
+ }
81
+ .card-image {
82
+ width: 360px;
83
+ height: 220px;
84
+ background: #E0E0E0;
85
+ border-right: 1px solid #BDBDBD;
86
+ display: flex;
87
+ align-items: center;
88
+ justify-content: center;
89
+ color: #757575;
90
+ font-size: 30px;
91
+ }
92
+ .card-body {
93
+ padding: 28px 34px;
94
+ flex: 1;
95
+ }
96
+ .card-title {
97
+ font-size: 48px;
98
+ font-weight: 700;
99
+ color: #424242;
100
+ margin-bottom: 18px;
101
+ }
102
+ .rating-row {
103
+ display: flex;
104
+ align-items: center;
105
+ gap: 14px;
106
+ }
107
+ .rating-row span {
108
+ font-size: 34px;
109
+ color: #9E9E9E;
110
+ }
111
+
112
+ /* Brand list */
113
+ .brand-list {
114
+ margin-top: 12px;
115
+ padding: 0 24px;
116
+ }
117
+ .brand-item {
118
+ display: flex;
119
+ align-items: center;
120
+ padding: 34px 24px;
121
+ border-bottom: 1px solid #EEEEEE;
122
+ }
123
+ .brand-logo {
124
+ width: 110px;
125
+ height: 110px;
126
+ background: #E0E0E0;
127
+ border: 1px solid #BDBDBD;
128
+ display: flex;
129
+ align-items: center;
130
+ justify-content: center;
131
+ color: #757575;
132
+ font-size: 26px;
133
+ border-radius: 8px;
134
+ margin-left: 16px;
135
+ margin-right: 36px;
136
+ }
137
+ .brand-name {
138
+ font-size: 50px;
139
+ color: #424242;
140
+ }
141
+
142
+ /* Bottom nav bar */
143
+ .tabbar {
144
+ position: absolute;
145
+ left: 0;
146
+ right: 0;
147
+ bottom: 120px;
148
+ height: 168px;
149
+ border-top: 1px solid #E0E0E0;
150
+ background: #ffffff;
151
+ display: flex;
152
+ align-items: center;
153
+ justify-content: space-around;
154
+ padding-bottom: 10px;
155
+ }
156
+ .tab-item {
157
+ display: flex;
158
+ flex-direction: column;
159
+ align-items: center;
160
+ gap: 12px;
161
+ color: #9E9E9E;
162
+ font-size: 34px;
163
+ }
164
+ .tab-item.active {
165
+ color: #1673FF;
166
+ font-weight: 700;
167
+ }
168
+ .home-indicator {
169
+ position: absolute;
170
+ left: 50%;
171
+ transform: translateX(-50%);
172
+ bottom: 40px;
173
+ width: 360px;
174
+ height: 14px;
175
+ background: #000000;
176
+ opacity: 0.18;
177
+ border-radius: 7px;
178
+ }
179
+
180
+ /* Simple SVG sizing */
181
+ .icon {
182
+ width: 64px;
183
+ height: 64px;
184
+ }
185
+ .icon.small {
186
+ width: 44px;
187
+ height: 44px;
188
+ }
189
+ .stars svg {
190
+ width: 42px;
191
+ height: 42px;
192
+ }
193
+ </style>
194
+ </head>
195
+ <body>
196
+ <div id="render-target">
197
+
198
+ <!-- Status bar -->
199
+ <div class="statusbar">
200
+ <div>9:47</div>
201
+ <div class="status-icons">
202
+ <!-- Simple WiFi icon -->
203
+ <svg class="icon small" viewBox="0 0 24 24">
204
+ <path d="M2 8c6-6 14-6 20 0" stroke="#B0B0B0" stroke-width="2" fill="none" stroke-linecap="round"/>
205
+ <path d="M5 12c4-4 10-4 14 0" stroke="#B0B0B0" stroke-width="2" fill="none" stroke-linecap="round"/>
206
+ <path d="M9 16c2-2 4-2 6 0" stroke="#B0B0B0" stroke-width="2" fill="none" stroke-linecap="round"/>
207
+ <circle cx="12" cy="19" r="2" fill="#B0B0B0"/>
208
+ </svg>
209
+ <!-- Battery icon -->
210
+ <svg class="icon small" viewBox="0 0 28 24">
211
+ <rect x="2" y="6" width="20" height="12" rx="2" ry="2" stroke="#B0B0B0" fill="none" stroke-width="2"/>
212
+ <rect x="4" y="8" width="14" height="8" fill="#B0B0B0"/>
213
+ <rect x="22" y="9" width="3" height="6" rx="1" fill="#B0B0B0"/>
214
+ </svg>
215
+ </div>
216
+ </div>
217
+
218
+ <!-- Header -->
219
+ <div class="header">
220
+ <div class="page-title">Research</div>
221
+ </div>
222
+
223
+ <!-- Recently Viewed -->
224
+ <div class="section">
225
+ <div class="section-header">
226
+ <div class="section-title">Recently Viewed</div>
227
+ <div class="section-action">Clear</div>
228
+ </div>
229
+ <div class="cards-scroll">
230
+ <div class="card">
231
+ <div class="card-image">[IMG: Blue Sedan]</div>
232
+ <div class="card-body">
233
+ <div class="card-title">2019 Toyota Camry</div>
234
+ <div class="rating-row">
235
+ <div class="stars">
236
+ <!-- 4 filled stars + 1 outlined -->
237
+ <svg viewBox="0 0 24 24"><path d="M12 2l3 6 6 .8-4.5 4 1.2 6.2L12 16l-5.7 3.9L7.5 13 3 8.8 9 8l3-6z" fill="#3CC14B"/></svg>
238
+ <svg viewBox="0 0 24 24"><path d="M12 2l3 6 6 .8-4.5 4 1.2 6.2L12 16l-5.7 3.9L7.5 13 3 8.8 9 8l3-6z" fill="#3CC14B"/></svg>
239
+ <svg viewBox="0 0 24 24"><path d="M12 2l3 6 6 .8-4.5 4 1.2 6.2L12 16l-5.7 3.9L7.5 13 3 8.8 9 8l3-6z" fill="#3CC14B"/></svg>
240
+ <svg viewBox="0 0 24 24"><path d="M12 2l3 6 6 .8-4.5 4 1.2 6.2L12 16l-5.7 3.9L7.5 13 3 8.8 9 8l3-6z" fill="#3CC14B"/></svg>
241
+ <svg viewBox="0 0 24 24"><path d="M12 2l3 6 6 .8-4.5 4 1.2 6.2L12 16l-5.7 3.9L7.5 13 3 8.8 9 8l3-6z" fill="none" stroke="#3CC14B" stroke-width="2"/></svg>
242
+ </div>
243
+ <span>Avg Rating</span>
244
+ </div>
245
+ </div>
246
+ </div>
247
+ <!-- hint of another card to the right (partial) -->
248
+ <div class="card" style="width: 500px; opacity: 0.65;">
249
+ <div class="card-image">[IMG: Red Sedan]</div>
250
+ <div class="card-body">
251
+ <div class="card-title" style="font-size:40px;">2012 Sedan</div>
252
+ </div>
253
+ </div>
254
+ </div>
255
+ </div>
256
+
257
+ <!-- Brand list -->
258
+ <div class="brand-list">
259
+ <div class="brand-item">
260
+ <div class="brand-logo">[IMG: Acura]</div>
261
+ <div class="brand-name">Acura</div>
262
+ </div>
263
+ <div class="brand-item">
264
+ <div class="brand-logo">[IMG: Alfa Romeo]</div>
265
+ <div class="brand-name">Alfa Romeo</div>
266
+ </div>
267
+ <div class="brand-item">
268
+ <div class="brand-logo">[IMG: AM General]</div>
269
+ <div class="brand-name">AM General</div>
270
+ </div>
271
+ <div class="brand-item">
272
+ <div class="brand-logo">[IMG: Aston Martin]</div>
273
+ <div class="brand-name">Aston Martin</div>
274
+ </div>
275
+ <div class="brand-item">
276
+ <div class="brand-logo">[IMG: Audi]</div>
277
+ <div class="brand-name">Audi</div>
278
+ </div>
279
+ <div class="brand-item">
280
+ <div class="brand-logo">[IMG: Bentley]</div>
281
+ <div class="brand-name">Bentley</div>
282
+ </div>
283
+ <div class="brand-item">
284
+ <div class="brand-logo">[IMG: BMW]</div>
285
+ <div class="brand-name">BMW</div>
286
+ </div>
287
+ <div class="brand-item">
288
+ <div class="brand-logo">[IMG: Bugatti]</div>
289
+ <div class="brand-name">Bugatti</div>
290
+ </div>
291
+ <div class="brand-item">
292
+ <div class="brand-logo">[IMG: Buick]</div>
293
+ <div class="brand-name">Buick</div>
294
+ </div>
295
+ </div>
296
+
297
+ <!-- Bottom tab bar -->
298
+ <div class="tabbar">
299
+ <div class="tab-item">
300
+ <!-- Car icon -->
301
+ <svg class="icon" viewBox="0 0 24 24">
302
+ <path d="M4 14l2-6h12l2 6v5h-2v-2H6v2H4v-5z" fill="#9E9E9E"/>
303
+ <circle cx="7.5" cy="16.5" r="2" fill="#9E9E9E"/>
304
+ <circle cx="16.5" cy="16.5" r="2" fill="#9E9E9E"/>
305
+ </svg>
306
+ <div>Buy a Car</div>
307
+ </div>
308
+ <div class="tab-item active">
309
+ <!-- Search icon -->
310
+ <svg class="icon" viewBox="0 0 24 24">
311
+ <circle cx="10" cy="10" r="6" stroke="#1673FF" stroke-width="2" fill="none"/>
312
+ <path d="M14.5 14.5L20 20" stroke="#1673FF" stroke-width="2" stroke-linecap="round"/>
313
+ </svg>
314
+ <div>Research</div>
315
+ </div>
316
+ <div class="tab-item">
317
+ <!-- Heart icon -->
318
+ <svg class="icon" viewBox="0 0 24 24">
319
+ <path d="M12 21s-7-4.6-9-8.5C1 9 3.5 6 7 6c2 0 3 .9 5 3 2-2.1 3-3 5-3 3.5 0 6 3 4 6.5-2 3.9-9 8.5-9 8.5z" fill="#9E9E9E"/>
320
+ </svg>
321
+ <div>Dashboard</div>
322
+ </div>
323
+ <div class="tab-item">
324
+ <!-- More / dots icon -->
325
+ <svg class="icon" viewBox="0 0 24 24">
326
+ <circle cx="5" cy="12" r="2" fill="#9E9E9E"/>
327
+ <circle cx="12" cy="12" r="2" fill="#9E9E9E"/>
328
+ <circle cx="19" cy="12" r="2" fill="#9E9E9E"/>
329
+ </svg>
330
+ <div>More</div>
331
+ </div>
332
+ </div>
333
+
334
+ <div class="home-indicator"></div>
335
+ </div>
336
+ </body>
337
+ </html>
code/889/889_7.html ADDED
@@ -0,0 +1,213 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Vehicle Overview Mock</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: #FFFFFF;
12
+ }
13
+ .status-bar {
14
+ height: 120px; background: #efefef; color: #9E9E9E;
15
+ display: flex; align-items: center; justify-content: space-between;
16
+ padding: 0 40px; font-size: 40px;
17
+ }
18
+ .status-icons { display: flex; align-items: center; gap: 26px; }
19
+ .app-bar {
20
+ height: 150px; background: #fff; display: flex; align-items: center;
21
+ padding: 0 40px; box-shadow: 0 1px 0 #e0e0e0; color: #616161;
22
+ }
23
+ .app-title { font-size: 60px; font-weight: 500; margin-left: 30px; }
24
+ .hero {
25
+ position: relative; width: 1080px; height: 520px; overflow: hidden;
26
+ }
27
+ .hero-img {
28
+ width: 100%; height: 100%;
29
+ background: #E0E0E0; border: 1px solid #BDBDBD; color: #757575;
30
+ display: flex; align-items: center; justify-content: center; font-size: 42px;
31
+ }
32
+ .heart-btn {
33
+ position: absolute; right: 36px; top: 30px; width: 72px; height: 72px;
34
+ display: flex; align-items: center; justify-content: center;
35
+ background: rgba(255,255,255,0.0);
36
+ }
37
+ .gallery-pill {
38
+ position: absolute; right: 36px; bottom: 36px;
39
+ background: rgba(64,64,64,0.8); color: #fff;
40
+ padding: 22px 28px; border-radius: 16px; display: flex; align-items: center; gap: 18px;
41
+ font-size: 40px;
42
+ }
43
+ .content {
44
+ padding: 40px; color: #424242;
45
+ }
46
+ .vehicle-title {
47
+ font-size: 68px; font-weight: 500; margin: 34px 0 20px;
48
+ }
49
+ .label { font-size: 42px; color: #757575; }
50
+ .style-row { display: flex; align-items: center; justify-content: space-between; margin-top: 30px; }
51
+ .style-details { margin-top: 26px; }
52
+ .line-1 { font-size: 46px; color: #616161; }
53
+ .line-2 { font-size: 40px; color: #9E9E9E; margin-top: 8px; }
54
+ .divider { height: 1px; background: #e0e0e0; margin: 38px 0; }
55
+ .prices { display: flex; justify-content: space-between; margin-top: 10px; }
56
+ .price-block { width: 32%; text-align: center; }
57
+ .price-block .caption { font-size: 38px; color: #757575; }
58
+ .price-block .value { font-size: 58px; font-weight: 500; margin-top: 16px; }
59
+ .cta {
60
+ margin: 42px 0 26px; height: 120px; background: #66BB00; color: white;
61
+ border-radius: 16px; display: flex; align-items: center; justify-content: center;
62
+ font-size: 44px; font-weight: 600; letter-spacing: 1px;
63
+ box-shadow: 0 4px 0 rgba(0,0,0,0.1);
64
+ }
65
+ .section-title { font-size: 58px; font-weight: 600; color: #424242; margin: 24px 0 18px; }
66
+ .bullet-list { margin: 0; padding-left: 40px; color: #616161; }
67
+ .bullet-list li { font-size: 40px; margin: 16px 0; }
68
+ .pros-title { font-size: 54px; font-weight: 600; color: #424242; margin-top: 30px; }
69
+ .placeholder-long {
70
+ height: 300px; background: #F5F5F5; border-top: 1px solid #e0e0e0; border-bottom: 1px solid #e0e0e0;
71
+ }
72
+ .bottom-nav {
73
+ position: absolute; bottom: 60px; left: 0; width: 100%; height: 200px;
74
+ background: #fff; border-top: 1px solid #e0e0e0; display: flex; align-items: center; justify-content: space-around;
75
+ }
76
+ .nav-item { width: 25%; text-align: center; color: #757575; }
77
+ .nav-item .label { font-size: 34px; margin-top: 16px; display: block; }
78
+ .nav-item.selected { color: #1E88E5; }
79
+ .gesture-bar {
80
+ position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
81
+ width: 300px; height: 16px; background: #000; border-radius: 10px; opacity: 0.6;
82
+ }
83
+ </style>
84
+ </head>
85
+ <body>
86
+ <div id="render-target">
87
+
88
+ <!-- Status Bar -->
89
+ <div class="status-bar">
90
+ <div>9:48</div>
91
+ <div class="status-icons">
92
+ <!-- simple wifi icon -->
93
+ <svg width="48" height="48" viewBox="0 0 24 24">
94
+ <path d="M2 8c5-4 15-4 20 0" stroke="#9E9E9E" stroke-width="2" fill="none" />
95
+ <path d="M5 12c3-3 11-3 14 0" stroke="#9E9E9E" stroke-width="2" fill="none" />
96
+ <circle cx="12" cy="16" r="2" fill="#9E9E9E"></circle>
97
+ </svg>
98
+ <!-- battery icon -->
99
+ <svg width="60" height="48" viewBox="0 0 30 16">
100
+ <rect x="1" y="2" width="24" height="12" rx="2" ry="2" fill="none" stroke="#9E9E9E" stroke-width="2"></rect>
101
+ <rect x="3" y="4" width="18" height="8" fill="#9E9E9E"></rect>
102
+ <rect x="25" y="6" width="4" height="4" fill="#9E9E9E"></rect>
103
+ </svg>
104
+ </div>
105
+ </div>
106
+
107
+ <!-- App Bar -->
108
+ <div class="app-bar">
109
+ <svg width="72" height="72" viewBox="0 0 24 24">
110
+ <path d="M15 18l-6-6 6-6" stroke="#616161" stroke-width="2.5" fill="none" stroke-linecap="round" stroke-linejoin="round"></path>
111
+ </svg>
112
+ <div class="app-title">Vehicle Overview</div>
113
+ </div>
114
+
115
+ <!-- Hero Image -->
116
+ <div class="hero">
117
+ <div class="hero-img">[IMG: Blue Sedan on road]</div>
118
+ <div class="heart-btn">
119
+ <svg width="72" height="72" viewBox="0 0 24 24">
120
+ <path d="M12 20c-4.5-3.5-8-6.5-8-10a4 4 0 0 1 8 0 4 4 0 0 1 8 0c0 3.5-3.5 6.5-8 10z" fill="none" stroke="#fff" stroke-width="2"></path>
121
+ </svg>
122
+ </div>
123
+ <div class="gallery-pill">
124
+ <svg width="52" height="52" viewBox="0 0 24 24">
125
+ <rect x="3" y="3" width="8" height="8" fill="none" stroke="#fff" stroke-width="2"></rect>
126
+ <rect x="13" y="3" width="8" height="8" fill="none" stroke="#fff" stroke-width="2"></rect>
127
+ <rect x="3" y="13" width="8" height="8" fill="none" stroke="#fff" stroke-width="2"></rect>
128
+ <rect x="13" y="13" width="8" height="8" fill="none" stroke="#fff" stroke-width="2"></rect>
129
+ </svg>
130
+ <span>Gallery</span>
131
+ </div>
132
+ </div>
133
+
134
+ <!-- Content -->
135
+ <div class="content">
136
+ <div class="vehicle-title">Used 2019 Camry Sedan</div>
137
+
138
+ <div class="style-row">
139
+ <div class="label">Style</div>
140
+ <div style="color:#9E9E9E; font-size:48px;">▾</div>
141
+ </div>
142
+ <div class="style-details">
143
+ <div class="line-1">L 4dr Car</div>
144
+ <div class="line-2">2.5L 4-cyl. 8-speed Automatic</div>
145
+ </div>
146
+
147
+ <div class="divider"></div>
148
+
149
+ <div class="prices">
150
+ <div class="price-block">
151
+ <div class="caption">Trade-In</div>
152
+ <div class="value">$13,997</div>
153
+ </div>
154
+ <div class="price-block">
155
+ <div class="caption">Private Party</div>
156
+ <div class="value">$16,784</div>
157
+ </div>
158
+ <div class="price-block">
159
+ <div class="caption">Dealer Retail</div>
160
+ <div class="value">$19,569</div>
161
+ </div>
162
+ </div>
163
+
164
+ <div class="cta">SEE ALL FOR SALE</div>
165
+
166
+ <div class="section-title">What's new for 2019</div>
167
+ <ul class="bullet-list">
168
+ <li>Part of the eighth Camry generation introduced for 2018</li>
169
+ <li>New Apple CarPlay and Amazon Alexa compatibility</li>
170
+ </ul>
171
+
172
+ <div class="pros-title">Pros</div>
173
+ </div>
174
+
175
+ <div class="placeholder-long"></div>
176
+
177
+ <!-- Bottom Navigation -->
178
+ <div class="bottom-nav">
179
+ <div class="nav-item">
180
+ <svg width="64" height="64" viewBox="0 0 64 40">
181
+ <rect x="8" y="10" width="48" height="20" rx="6" ry="6" fill="#757575"></rect>
182
+ <circle cx="18" cy="34" r="4" fill="#757575"></circle>
183
+ <circle cx="46" cy="34" r="4" fill="#757575"></circle>
184
+ </svg>
185
+ <span class="label">Buy a Car</span>
186
+ </div>
187
+ <div class="nav-item selected">
188
+ <svg width="64" height="64" viewBox="0 0 24 24">
189
+ <circle cx="11" cy="11" r="7" stroke="#1E88E5" stroke-width="2.5" fill="none"></circle>
190
+ <path d="M16.5 16.5 L21 21" stroke="#1E88E5" stroke-width="2.5" stroke-linecap="round"></path>
191
+ </svg>
192
+ <span class="label">Research</span>
193
+ </div>
194
+ <div class="nav-item">
195
+ <svg width="64" height="64" viewBox="0 0 24 24">
196
+ <path d="M12 20c-4.5-3.5-8-6.5-8-10a5 5 0 0 1 8 1 5 5 0 0 1 8-1c0 3.5-3.5 6.5-8 10z" fill="#757575"></path>
197
+ </svg>
198
+ <span class="label">Dashboard</span>
199
+ </div>
200
+ <div class="nav-item">
201
+ <svg width="64" height="64" viewBox="0 0 48 12">
202
+ <circle cx="8" cy="6" r="4" fill="#757575"></circle>
203
+ <circle cx="24" cy="6" r="4" fill="#757575"></circle>
204
+ <circle cx="40" cy="6" r="4" fill="#757575"></circle>
205
+ </svg>
206
+ <span class="label">More</span>
207
+ </div>
208
+ </div>
209
+
210
+ <div class="gesture-bar"></div>
211
+ </div>
212
+ </body>
213
+ </html>
code/889/889_9.html ADDED
@@ -0,0 +1,299 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Dashboard Mock</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: Roboto, Arial, sans-serif; color: #424242; }
9
+ #render-target {
10
+ width: 1080px;
11
+ height: 2400px;
12
+ position: relative;
13
+ overflow: hidden;
14
+ background: #FAFAFA;
15
+ }
16
+
17
+ /* Status bar */
18
+ .statusbar {
19
+ position: absolute;
20
+ top: 0;
21
+ left: 0;
22
+ width: 100%;
23
+ height: 120px;
24
+ background: #EDEDED;
25
+ display: flex;
26
+ align-items: center;
27
+ justify-content: space-between;
28
+ padding: 0 40px;
29
+ color: #9E9E9E;
30
+ font-size: 36px;
31
+ box-sizing: border-box;
32
+ }
33
+ .status-icons {
34
+ display: flex;
35
+ gap: 28px;
36
+ align-items: center;
37
+ }
38
+ .status-icons svg { width: 42px; height: 42px; fill: #9E9E9E; }
39
+
40
+ /* Header */
41
+ .header {
42
+ position: absolute;
43
+ top: 120px;
44
+ left: 0;
45
+ width: 100%;
46
+ height: 150px;
47
+ background: #FFFFFF;
48
+ box-shadow: 0 2px 8px rgba(0,0,0,0.08);
49
+ display: flex;
50
+ align-items: center;
51
+ justify-content: space-between;
52
+ padding: 0 44px;
53
+ box-sizing: border-box;
54
+ }
55
+ .header h1 {
56
+ margin: 0;
57
+ font-size: 56px;
58
+ font-weight: 600;
59
+ color: #616161;
60
+ letter-spacing: 0.2px;
61
+ }
62
+ .header-actions {
63
+ display: flex;
64
+ gap: 44px;
65
+ align-items: center;
66
+ }
67
+ .icon-btn svg { width: 56px; height: 56px; fill: #BDBDBD; }
68
+
69
+ /* Content area */
70
+ .content {
71
+ position: absolute;
72
+ top: 270px; /* statusbar + header */
73
+ left: 0;
74
+ width: 100%;
75
+ padding: 36px;
76
+ box-sizing: border-box;
77
+ }
78
+
79
+ .card {
80
+ background: #FFFFFF;
81
+ border-radius: 18px;
82
+ box-shadow: 0 6px 18px rgba(0,0,0,0.08);
83
+ }
84
+
85
+ .start-card {
86
+ width: 100%;
87
+ height: 430px;
88
+ padding: 40px;
89
+ box-sizing: border-box;
90
+ }
91
+ .start-card .title {
92
+ text-align: center;
93
+ color: #1976D2;
94
+ font-size: 54px;
95
+ font-weight: 700;
96
+ margin-top: 10px;
97
+ }
98
+ .start-card .subtitle {
99
+ text-align: center;
100
+ color: #757575;
101
+ font-size: 34px;
102
+ margin-top: 18px;
103
+ }
104
+ .plus-wrap {
105
+ margin: 48px auto 0;
106
+ width: 120px;
107
+ height: 120px;
108
+ border-radius: 60px;
109
+ background: #1976D2;
110
+ display: flex;
111
+ align-items: center;
112
+ justify-content: center;
113
+ }
114
+ .plus-wrap svg { width: 70px; height: 70px; fill: #FFFFFF; }
115
+
116
+ .section-title {
117
+ font-size: 48px;
118
+ font-weight: 700;
119
+ color: #616161;
120
+ margin: 44px 8px 28px;
121
+ }
122
+
123
+ .cards-row {
124
+ display: flex;
125
+ gap: 36px;
126
+ }
127
+ .model-card {
128
+ width: 486px;
129
+ overflow: hidden;
130
+ }
131
+ .model-image {
132
+ width: 100%;
133
+ height: 300px;
134
+ background: #E0E0E0;
135
+ border: 1px solid #BDBDBD;
136
+ display: flex;
137
+ align-items: center;
138
+ justify-content: center;
139
+ color: #757575;
140
+ font-size: 28px;
141
+ }
142
+ .model-info {
143
+ padding: 30px;
144
+ box-sizing: border-box;
145
+ }
146
+ .model-info .name {
147
+ font-size: 44px;
148
+ font-weight: 700;
149
+ color: #424242;
150
+ margin-bottom: 14px;
151
+ }
152
+ .model-info .trim {
153
+ font-size: 32px;
154
+ color: #757575;
155
+ }
156
+
157
+ /* Bottom navigation */
158
+ .bottom-nav {
159
+ position: absolute;
160
+ bottom: 0;
161
+ left: 0;
162
+ width: 100%;
163
+ height: 160px;
164
+ background: #FFFFFF;
165
+ border-top: 1px solid #E0E0E0;
166
+ display: flex;
167
+ align-items: center;
168
+ justify-content: space-around;
169
+ box-sizing: border-box;
170
+ }
171
+ .nav-item {
172
+ width: 230px;
173
+ text-align: center;
174
+ color: #757575;
175
+ font-size: 28px;
176
+ }
177
+ .nav-item .label {
178
+ margin-top: 10px;
179
+ }
180
+ .nav-item svg { width: 60px; height: 60px; }
181
+ .nav-item.active .label { color: #1976D2; }
182
+ .nav-item.active svg { fill: #1976D2; }
183
+ .nav-item:not(.active) svg { fill: #9E9E9E; }
184
+
185
+ /* Safe spacing to prevent overlap with nav */
186
+ .content-spacer { height: 220px; }
187
+ </style>
188
+ </head>
189
+ <body>
190
+ <div id="render-target">
191
+
192
+ <!-- Status Bar -->
193
+ <div class="statusbar">
194
+ <div>9:49</div>
195
+ <div class="status-icons">
196
+ <!-- WiFi -->
197
+ <svg viewBox="0 0 24 24">
198
+ <path d="M12 20l2-2-2-2-2 2 2 2zm-6-6l2-2 4 4 4-4 2 2-6 6-6-6zm-4-6l2-2 8 8 8-8 2 2-10 10L2 8z"></path>
199
+ </svg>
200
+ <!-- Battery -->
201
+ <svg viewBox="0 0 32 24">
202
+ <rect x="1" y="4" width="26" height="16" rx="3" ry="3" fill="#9E9E9E"></rect>
203
+ <rect x="4" y="7" width="20" height="10" fill="#FAFAFA"></rect>
204
+ <rect x="27" y="8" width="4" height="8" rx="1" ry="1" fill="#9E9E9E"></rect>
205
+ </svg>
206
+ </div>
207
+ </div>
208
+
209
+ <!-- Header -->
210
+ <div class="header">
211
+ <h1>Dashboard</h1>
212
+ <div class="header-actions">
213
+ <!-- Bell icon -->
214
+ <div class="icon-btn">
215
+ <svg viewBox="0 0 24 24">
216
+ <path d="M12 22a2 2 0 0 0 2-2H10a2 2 0 0 0 2 2zm7-6V11a7 7 0 1 0-14 0v5l-2 2v1h18v-1l-2-2z"></path>
217
+ </svg>
218
+ </div>
219
+ <!-- User icon -->
220
+ <div class="icon-btn">
221
+ <svg viewBox="0 0 24 24">
222
+ <circle cx="12" cy="8" r="4"></circle>
223
+ <path d="M4 20a8 8 0 0 1 16 0H4z"></path>
224
+ </svg>
225
+ </div>
226
+ </div>
227
+ </div>
228
+
229
+ <!-- Content -->
230
+ <div class="content">
231
+ <div class="card start-card">
232
+ <div class="title">Start a Search</div>
233
+ <div class="subtitle">Save your searches to get inventory alerts</div>
234
+ <div class="plus-wrap">
235
+ <svg viewBox="0 0 24 24">
236
+ <path d="M11 5h2v6h6v2h-6v6h-2v-6H5v-2h6z"></path>
237
+ </svg>
238
+ </div>
239
+ </div>
240
+
241
+ <div class="section-title">Favorite Models</div>
242
+
243
+ <div class="cards-row">
244
+ <!-- Card 1 -->
245
+ <div class="card model-card">
246
+ <div class="model-image">[IMG: Blue Toyota Camry]</div>
247
+ <div class="model-info">
248
+ <div class="name">2019 Toyota Camry</div>
249
+ <div class="trim">Sedan</div>
250
+ </div>
251
+ </div>
252
+
253
+ <!-- Card 2 -->
254
+ <div class="card model-card">
255
+ <div class="model-image">[IMG: Yellow Honda Civic]</div>
256
+ <div class="model-info">
257
+ <div class="name">2019 Honda Civic</div>
258
+ <div class="trim">Type R</div>
259
+ </div>
260
+ </div>
261
+ </div>
262
+
263
+ <div class="content-spacer"></div>
264
+ </div>
265
+
266
+ <!-- Bottom Navigation -->
267
+ <div class="bottom-nav">
268
+ <div class="nav-item">
269
+ <svg viewBox="0 0 24 24">
270
+ <path d="M3 11l9-7 9 7v8a2 2 0 0 1-2 2h-4v-6H9v6H5a2 2 0 0 1-2-2v-8z"></path>
271
+ </svg>
272
+ <div class="label">Buy a Car</div>
273
+ </div>
274
+ <div class="nav-item">
275
+ <svg viewBox="0 0 24 24">
276
+ <circle cx="11" cy="11" r="7"></circle>
277
+ <path d="M21 21l-4.5-4.5"></path>
278
+ </svg>
279
+ <div class="label">Research</div>
280
+ </div>
281
+ <div class="nav-item active">
282
+ <svg viewBox="0 0 24 24">
283
+ <path d="M12 21s-6-3.8-8.5-7.2C1.2 11.2 2.5 8 5.4 7.4c2-.4 3.2.7 4.1 1.8.9-1.1 2.1-2.2 4.1-1.8 2.9.6 4.2 3.8 1.9 6.4C18 17.2 12 21 12 21z"></path>
284
+ </svg>
285
+ <div class="label">Dashboard</div>
286
+ </div>
287
+ <div class="nav-item">
288
+ <svg viewBox="0 0 24 24">
289
+ <circle cx="5" cy="12" r="2"></circle>
290
+ <circle cx="12" cy="12" r="2"></circle>
291
+ <circle cx="19" cy="12" r="2"></circle>
292
+ </svg>
293
+ <div class="label">More</div>
294
+ </div>
295
+ </div>
296
+
297
+ </div>
298
+ </body>
299
+ </html>
code/8894/8894_0.html ADDED
@@ -0,0 +1,231 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Reader Drawer Menu</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Arial,Helvetica,sans-serif; }
9
+ #render-target {
10
+ position: relative;
11
+ overflow: hidden;
12
+ width: 1080px;
13
+ height: 2400px;
14
+ background: #0e0e0f;
15
+ color: #fff;
16
+ }
17
+
18
+ /* Status bar */
19
+ .status-bar {
20
+ position: absolute;
21
+ top: 0; left: 0; right: 0;
22
+ height: 120px;
23
+ background: #0d0d0d;
24
+ color: #fff;
25
+ font-weight: 600;
26
+ letter-spacing: 0.5px;
27
+ }
28
+ .status-content {
29
+ position: absolute; left: 32px; right: 32px; top: 0; bottom: 0;
30
+ display: flex; align-items: center; justify-content: space-between;
31
+ font-size: 42px;
32
+ }
33
+ .status-icons { display: flex; align-items: center; gap: 24px; opacity: 0.9; }
34
+ .status-icons svg { width: 54px; height: 54px; }
35
+
36
+ /* App bar */
37
+ .app-bar {
38
+ position: absolute;
39
+ top: 120px; left: 0; right: 0;
40
+ height: 160px;
41
+ background: #121212;
42
+ }
43
+ .app-actions {
44
+ position: absolute; left: 24px; right: 24px; top: 0; bottom: 0;
45
+ display: flex; align-items: center; gap: 40px;
46
+ }
47
+ .icon-btn { width: 96px; height: 96px; border-radius: 14px; display: flex; align-items: center; justify-content: center; color: #ddd; }
48
+ .icon-btn svg { width: 56px; height: 56px; }
49
+
50
+ /* Content (dimmed background reader) */
51
+ .content {
52
+ position: absolute;
53
+ top: 280px; left: 0; right: 0; bottom: 120px;
54
+ padding: 40px 32px;
55
+ background: #0f0f10;
56
+ }
57
+ .notice {
58
+ color: #b6e1ff;
59
+ font-size: 38px;
60
+ margin: 8px 8px 28px 8px;
61
+ }
62
+ .thumbs {
63
+ display: flex; gap: 28px;
64
+ padding: 12px 8px;
65
+ }
66
+ .thumb {
67
+ width: 380px; height: 560px;
68
+ background: #101010;
69
+ border: 2px solid #1f1f1f;
70
+ position: relative;
71
+ }
72
+ .thumb.selected { border: 4px solid #1ea1ff; box-shadow: inset 0 0 0 2px #0b2b3f; }
73
+ .thumb .page {
74
+ position: absolute; inset: 16px;
75
+ background: #0b0b0b;
76
+ border: 1px solid #222;
77
+ }
78
+ .thumb .placeholder {
79
+ position: absolute; left: 24px; right: 24px; top: 24px; bottom: 24px;
80
+ background: #E0E0E0; border: 1px solid #BDBDBD;
81
+ color: #757575; display: flex; align-items: center; justify-content: center;
82
+ font-size: 32px;
83
+ }
84
+
85
+ /* Bottom progress area */
86
+ .progress-area {
87
+ position: absolute; left: 0; right: 0; bottom: 84px;
88
+ padding: 0 40px 24px 40px;
89
+ }
90
+ .progress-wrap { display: flex; align-items: center; gap: 28px; }
91
+ .grid-ico { width: 80px; height: 80px; opacity: 0.75; }
92
+ .slider {
93
+ position: relative;
94
+ height: 24px; flex: 1;
95
+ background: #2a2a2a;
96
+ border-radius: 12px;
97
+ }
98
+ .slider .fill {
99
+ position: absolute; left: 0; top: 0; bottom: 0; width: 90px;
100
+ background: #7aa6ff;
101
+ border-radius: 12px 0 0 12px;
102
+ }
103
+ .slider .thumb {
104
+ position: absolute; left: 80px; top: 50%;
105
+ width: 60px; height: 60px; transform: translateY(-50%);
106
+ background: #bdbdbd; border-radius: 50%; border: 6px solid #222;
107
+ }
108
+
109
+ /* Gesture bar */
110
+ .gesture {
111
+ position: absolute; bottom: 22px; left: 50%;
112
+ width: 420px; height: 16px; transform: translateX(-50%);
113
+ background: #e7e7ea; border-radius: 12px; opacity: 0.9;
114
+ }
115
+
116
+ /* Right slide-out drawer */
117
+ .drawer {
118
+ position: absolute;
119
+ top: 160px; /* starts under status bar slightly */
120
+ right: 0;
121
+ width: 720px;
122
+ height: 2000px;
123
+ background: #3c3c3f;
124
+ box-shadow: -18px 0 36px rgba(0,0,0,0.6);
125
+ }
126
+ .drawer ul { list-style: none; margin: 0; padding: 24px 0; }
127
+ .drawer li {
128
+ padding: 48px 56px;
129
+ font-size: 48px;
130
+ color: #f3f3f3;
131
+ border-bottom: 1px solid rgba(255,255,255,0.06);
132
+ }
133
+ .drawer li:last-child { border-bottom: none; }
134
+ </style>
135
+ </head>
136
+ <body>
137
+ <div id="render-target">
138
+
139
+ <!-- Status bar -->
140
+ <div class="status-bar">
141
+ <div class="status-content">
142
+ <div>1:01</div>
143
+ <div class="status-icons">
144
+ <!-- simple "cast/video" placeholder icon -->
145
+ <svg viewBox="0 0 24 24" fill="currentColor" opacity="0.9">
146
+ <path d="M3 5h18v12h-4l-4 3-4-3H3z"/>
147
+ </svg>
148
+ <!-- cloud icon -->
149
+ <svg viewBox="0 0 24 24" fill="currentColor" opacity="0.9">
150
+ <path d="M6 18a4 4 0 1 1 .8-7.93A6 6 0 0 1 19 11a4 4 0 1 1 0 8H6z"/>
151
+ </svg>
152
+ <!-- wifi -->
153
+ <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
154
+ <path d="M2 8a16 16 0 0 1 20 0"/>
155
+ <path d="M5 12a11 11 0 0 1 14 0"/>
156
+ <path d="M8 16a6 6 0 0 1 8 0"/>
157
+ <circle cx="12" cy="20" r="1.6" fill="currentColor" stroke="none"/>
158
+ </svg>
159
+ <!-- battery -->
160
+ <svg viewBox="0 0 28 24" fill="currentColor">
161
+ <rect x="2" y="6" width="20" height="12" rx="2" ry="2"></rect>
162
+ <rect x="22" y="9" width="4" height="6" rx="1"></rect>
163
+ </svg>
164
+ </div>
165
+ </div>
166
+ </div>
167
+
168
+ <!-- App bar -->
169
+ <div class="app-bar">
170
+ <div class="app-actions">
171
+ <div class="icon-btn">
172
+ <svg viewBox="0 0 24 24" stroke="currentColor" fill="none" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round">
173
+ <path d="M15 6l-6 6 6 6"/>
174
+ </svg>
175
+ </div>
176
+ <div class="icon-btn">
177
+ <svg viewBox="0 0 24 24" stroke="currentColor" fill="none" stroke-width="2.2" stroke-linecap="round">
178
+ <path d="M4 7h16M4 12h10M4 17h16"/>
179
+ </svg>
180
+ </div>
181
+ </div>
182
+ </div>
183
+
184
+ <!-- Reader content behind drawer -->
185
+ <div class="content">
186
+ <div class="notice">
187
+ Purchase the full book<br>
188
+ <span style="color:#4fb1ff; font-size:36px;">See details in Kindle Store.</span>
189
+ </div>
190
+
191
+ <div class="thumbs">
192
+ <div class="thumb">
193
+ <div class="placeholder">[IMG: Page thumbnail]</div>
194
+ </div>
195
+ <div class="thumb selected">
196
+ <div class="placeholder">[IMG: Selected page]</div>
197
+ </div>
198
+ </div>
199
+ </div>
200
+
201
+ <!-- Bottom progress/slider -->
202
+ <div class="progress-area">
203
+ <div class="progress-wrap">
204
+ <svg class="grid-ico" viewBox="0 0 24 24" fill="currentColor">
205
+ <path d="M3 3h6v6H3zM10.5 3H21v6H10.5zM3 10.5h6V21H3zM10.5 10.5H21V21H10.5z"/>
206
+ </svg>
207
+ <div class="slider">
208
+ <div class="fill"></div>
209
+ <div class="thumb"></div>
210
+ </div>
211
+ </div>
212
+ </div>
213
+
214
+ <!-- Gesture bar -->
215
+ <div class="gesture"></div>
216
+
217
+ <!-- Right slide-out drawer menu -->
218
+ <div class="drawer">
219
+ <ul>
220
+ <li>Sync to furthest page read</li>
221
+ <li>Go to location</li>
222
+ <li>Flashcards</li>
223
+ <li>Recommend this book</li>
224
+ <li>Shop in Kindle store</li>
225
+ <li>Before you go</li>
226
+ </ul>
227
+ </div>
228
+
229
+ </div>
230
+ </body>
231
+ </html>
code/8894/8894_1.html ADDED
@@ -0,0 +1,100 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Ebook Foreword Page</title>
7
+ <style>
8
+ body {
9
+ margin: 0;
10
+ padding: 0;
11
+ background: transparent;
12
+ }
13
+ #render-target {
14
+ width: 1080px;
15
+ height: 2400px;
16
+ position: relative;
17
+ overflow: hidden;
18
+ background: #000000;
19
+ color: #D7D7D7;
20
+ font-family: Georgia, "Times New Roman", serif;
21
+ }
22
+
23
+ .page {
24
+ position: absolute;
25
+ top: 0;
26
+ left: 0;
27
+ right: 0;
28
+ padding: 340px 90px 200px 90px;
29
+ }
30
+
31
+ .title {
32
+ text-align: center;
33
+ font-size: 150px;
34
+ line-height: 1;
35
+ color: #E2E2E2;
36
+ font-weight: 700;
37
+ margin: 0 0 120px 0;
38
+ letter-spacing: 1px;
39
+ }
40
+
41
+ .lead {
42
+ font-size: 58px;
43
+ line-height: 1.55;
44
+ margin: 0 0 90px 0;
45
+ color: #D6D6D6;
46
+ letter-spacing: 0.4px;
47
+ }
48
+
49
+ .para {
50
+ font-size: 58px;
51
+ line-height: 1.6;
52
+ margin: 0 0 90px 0;
53
+ letter-spacing: 0.4px;
54
+ color: #D0D0D0;
55
+ text-align: justify;
56
+ text-indent: 64px;
57
+ }
58
+
59
+ .footer {
60
+ position: absolute;
61
+ left: 90px;
62
+ right: 90px;
63
+ bottom: 36px;
64
+ display: flex;
65
+ justify-content: space-between;
66
+ align-items: center;
67
+ color: #A9A9A9;
68
+ font-size: 32px;
69
+ letter-spacing: 0.3px;
70
+ }
71
+ </style>
72
+ </head>
73
+ <body>
74
+ <div id="render-target">
75
+ <div class="page">
76
+ <h1 class="title">Foreword</h1>
77
+
78
+ <p class="lead">
79
+ What Do You Want Most?<br>
80
+ Is It Money, Fame, Power,<br>
81
+ Contentment, Personality,<br>
82
+ Peace of Mind, Happiness?
83
+ </p>
84
+
85
+ <p class="para">
86
+ The Thirteen Steps to Riches described in this book offer the shortest dependable philosophy of individual achievement ever presented for the benefit of the man or woman who is searching for a definite goal in life.
87
+ </p>
88
+
89
+ <p class="para">
90
+ Before beginning the book you will profit greatly if you recognize the fact that the book was not written to entertain. You cannot digest the contents properly in a week or a month. After reading the book thoroughly, Dr. Miller Reese Hutchison, nationally known Consulting Engineer and long-time associate of Thomas A. Edison, said
91
+ </p>
92
+ </div>
93
+
94
+ <div class="footer">
95
+ <span>41 pages left in sample</span>
96
+ <span>1%</span>
97
+ </div>
98
+ </div>
99
+ </body>
100
+ </html>
code/8894/8894_2.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>Reader UI - Dark</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, "Noto Sans", sans-serif;
13
+ color: #ECEFF1;
14
+ }
15
+ #render-target {
16
+ position: relative;
17
+ overflow: hidden;
18
+ width: 1080px;
19
+ height: 2400px;
20
+ background: #2E3136; /* app background */
21
+ }
22
+
23
+ /* Status bar */
24
+ .status-bar {
25
+ height: 110px;
26
+ background: #000;
27
+ color: #D9D9D9;
28
+ display: flex;
29
+ align-items: center;
30
+ padding: 0 34px;
31
+ font-size: 40px;
32
+ letter-spacing: 1px;
33
+ }
34
+ .status-right {
35
+ margin-left: auto;
36
+ display: flex;
37
+ align-items: center;
38
+ gap: 28px;
39
+ }
40
+ .status-icon {
41
+ width: 44px;
42
+ height: 44px;
43
+ display: inline-flex;
44
+ align-items: center;
45
+ justify-content: center;
46
+ opacity: 0.9;
47
+ }
48
+
49
+ /* App header */
50
+ .app-bar {
51
+ height: 120px;
52
+ display: flex;
53
+ align-items: center;
54
+ padding: 0 34px;
55
+ color: #C7CCD1;
56
+ }
57
+ .app-bar .left {
58
+ display: flex;
59
+ align-items: center;
60
+ gap: 24px;
61
+ }
62
+ .app-bar .right {
63
+ margin-left: auto;
64
+ display: flex;
65
+ align-items: center;
66
+ gap: 44px;
67
+ }
68
+ .icon-btn svg {
69
+ width: 56px;
70
+ height: 56px;
71
+ fill: none;
72
+ stroke: #C7CCD1;
73
+ stroke-width: 6;
74
+ stroke-linecap: round;
75
+ stroke-linejoin: round;
76
+ }
77
+ .icon-dots {
78
+ width: 44px;
79
+ height: 44px;
80
+ }
81
+ .icon-dots span {
82
+ display: block;
83
+ width: 8px;
84
+ height: 8px;
85
+ background: #C7CCD1;
86
+ border-radius: 50%;
87
+ margin: 5px auto;
88
+ }
89
+ .app-bar .aa {
90
+ font-size: 48px;
91
+ color: #C7CCD1;
92
+ font-weight: 600;
93
+ }
94
+
95
+ /* Card row */
96
+ .cards-row {
97
+ position: relative;
98
+ padding: 40px 0 0;
99
+ height: 1200px;
100
+ }
101
+ .cards-track {
102
+ position: absolute;
103
+ top: 0;
104
+ left: 0;
105
+ width: 100%;
106
+ display: flex;
107
+ gap: 36px;
108
+ padding: 0 40px;
109
+ }
110
+ .card {
111
+ background: #0E0F11;
112
+ border-radius: 26px;
113
+ box-shadow: 0 16px 30px rgba(0,0,0,0.45);
114
+ border: 1px solid rgba(255,255,255,0.06);
115
+ }
116
+ .card.side {
117
+ width: 220px;
118
+ height: 980px;
119
+ opacity: 0.7;
120
+ }
121
+ .card.main {
122
+ width: 860px;
123
+ height: 980px;
124
+ padding: 60px 64px 40px;
125
+ color: #EDEDED;
126
+ font-family: Georgia, "Times New Roman", serif;
127
+ }
128
+ .main h1 {
129
+ margin: 10px 0 30px;
130
+ text-align: center;
131
+ font-size: 96px;
132
+ color: #EDEDED;
133
+ letter-spacing: 1px;
134
+ }
135
+ .main p {
136
+ font-size: 38px;
137
+ line-height: 64px;
138
+ color: #E5E5E5;
139
+ margin: 28px 0;
140
+ text-align: left;
141
+ }
142
+ .sample-meta {
143
+ position: absolute;
144
+ left: 120px;
145
+ top: 1160px;
146
+ display: flex;
147
+ width: 840px;
148
+ justify-content: space-between;
149
+ color: #9AA2A9;
150
+ font-size: 28px;
151
+ }
152
+
153
+ /* Buy button */
154
+ .buy-wrap {
155
+ width: 100%;
156
+ display: flex;
157
+ justify-content: center;
158
+ margin-top: 54px;
159
+ }
160
+ .buy-btn {
161
+ background: #4FAAF4;
162
+ color: #F4FBFF;
163
+ font-weight: 700;
164
+ border-radius: 18px;
165
+ padding: 30px 60px;
166
+ font-size: 44px;
167
+ box-shadow: 0 8px 18px rgba(30,144,255,0.35);
168
+ }
169
+
170
+ /* Bottom controls */
171
+ .bottom-area {
172
+ position: absolute;
173
+ left: 0;
174
+ bottom: 140px;
175
+ width: 100%;
176
+ padding: 0 48px;
177
+ }
178
+ .slider-row {
179
+ display: flex;
180
+ align-items: center;
181
+ gap: 24px;
182
+ margin-top: 26px;
183
+ }
184
+ .list-icon {
185
+ width: 72px;
186
+ height: 72px;
187
+ border-radius: 12px;
188
+ display: flex;
189
+ align-items: center;
190
+ justify-content: center;
191
+ color: #B6BDC4;
192
+ }
193
+ .list-icon svg {
194
+ width: 48px;
195
+ height: 48px;
196
+ stroke: #B6BDC4;
197
+ fill: none;
198
+ stroke-width: 6;
199
+ stroke-linecap: round;
200
+ }
201
+ .slider {
202
+ position: relative;
203
+ height: 16px;
204
+ background: #495159;
205
+ border-radius: 10px;
206
+ flex: 1;
207
+ }
208
+ .slider .progress {
209
+ position: absolute;
210
+ left: 0;
211
+ top: 0;
212
+ height: 100%;
213
+ width: 26%;
214
+ background: #50A9F3;
215
+ border-radius: 10px;
216
+ }
217
+ .slider .thumb {
218
+ position: absolute;
219
+ left: calc(26% - 22px);
220
+ top: 50%;
221
+ transform: translateY(-50%);
222
+ width: 44px;
223
+ height: 44px;
224
+ background: #55B3FF;
225
+ border: 6px solid #2E3136;
226
+ border-radius: 50%;
227
+ box-shadow: 0 6px 10px rgba(0,0,0,0.35);
228
+ }
229
+ .page-count {
230
+ width: 180px;
231
+ text-align: right;
232
+ color: #AFB7BE;
233
+ font-size: 34px;
234
+ }
235
+ .home-indicator {
236
+ position: absolute;
237
+ bottom: 56px;
238
+ left: 50%;
239
+ transform: translateX(-50%);
240
+ width: 360px;
241
+ height: 12px;
242
+ background: #E6E6E6;
243
+ border-radius: 8px;
244
+ opacity: 0.9;
245
+ }
246
+ </style>
247
+ </head>
248
+ <body>
249
+ <div id="render-target">
250
+
251
+ <!-- Status Bar -->
252
+ <div class="status-bar">
253
+ <div>1:02</div>
254
+ <div class="status-right">
255
+ <!-- Simple placeholder icons -->
256
+ <div class="status-icon">
257
+ <svg viewBox="0 0 24 24">
258
+ <circle cx="10" cy="10" r="6" stroke="#D9D9D9" stroke-width="2" fill="none"></circle>
259
+ <path d="M14 14l6 6" stroke="#D9D9D9" stroke-width="2"></path>
260
+ </svg>
261
+ </div>
262
+ <div class="status-icon">
263
+ <svg viewBox="0 0 24 24">
264
+ <path d="M3 10c3-3 15-3 18 0" stroke="#D9D9D9" stroke-width="2" fill="none" stroke-linecap="round"/>
265
+ <path d="M6 13c2-2 10-2 12 0" stroke="#D9D9D9" stroke-width="2" fill="none" stroke-linecap="round"/>
266
+ <circle cx="12" cy="17" r="1.2" fill="#D9D9D9"/>
267
+ </svg>
268
+ </div>
269
+ <div class="status-icon">
270
+ <svg viewBox="0 0 24 24">
271
+ <rect x="3" y="6" width="16" height="12" rx="2" ry="2" stroke="#D9D9D9" stroke-width="2" fill="none"></rect>
272
+ <rect x="5" y="8" width="10" height="8" fill="#D9D9D9"></rect>
273
+ </svg>
274
+ </div>
275
+ </div>
276
+ </div>
277
+
278
+ <!-- App Bar -->
279
+ <div class="app-bar">
280
+ <div class="left">
281
+ <div class="icon-btn">
282
+ <svg viewBox="0 0 24 24">
283
+ <path d="M15 4 L7 12 L15 20" />
284
+ </svg>
285
+ </div>
286
+ </div>
287
+ <div class="right">
288
+ <div class="icon-btn" title="Search">
289
+ <svg viewBox="0 0 24 24">
290
+ <circle cx="10" cy="10" r="6"></circle>
291
+ <path d="M14 14 L20 20"></path>
292
+ </svg>
293
+ </div>
294
+ <div class="aa">Aa</div>
295
+ <div class="icon-dots" aria-hidden="true">
296
+ <span></span><span></span><span></span>
297
+ </div>
298
+ </div>
299
+ </div>
300
+
301
+ <!-- Cards Row -->
302
+ <div class="cards-row">
303
+ <div class="cards-track">
304
+ <div class="card side"></div>
305
+
306
+ <div class="card main">
307
+ <h1>Foreword</h1>
308
+ <p>What Do You Want Most?
309
+ Is It Money, Fame, Power,
310
+ Contentment, Personality,
311
+ Peace of Mind, Happiness?</p>
312
+
313
+ <p>The Thirteen Steps to Riches described in this book offer the shortest dependable philosophy of individual achievement ever presented for the benefit of the man or woman who is searching for a definite goal in life.</p>
314
+
315
+ <p>Before beginning the book you will profit greatly if you recognize the fact that the book was not written to entertain. You cannot digest the contents properly in a week or a month. After reading the book thoroughly, Dr. Miller Reese Hutchison, nationally known Consulting Engineer and long-time associate of Thomas A. Edison, said</p>
316
+ </div>
317
+
318
+ <div class="card side"></div>
319
+ </div>
320
+
321
+ <div class="sample-meta">
322
+ <div>41 pages left in sample</div>
323
+ <div>1%</div>
324
+ </div>
325
+
326
+ <div class="buy-wrap">
327
+ <div class="buy-btn">Buy ₹66.08</div>
328
+ </div>
329
+ </div>
330
+
331
+ <!-- Bottom controls -->
332
+ <div class="bottom-area">
333
+ <div class="slider-row">
334
+ <div class="list-icon">
335
+ <svg viewBox="0 0 24 24">
336
+ <path d="M4 6h16M4 12h16M4 18h16"></path>
337
+ </svg>
338
+ </div>
339
+ <div class="slider">
340
+ <div class="progress"></div>
341
+ <div class="thumb"></div>
342
+ </div>
343
+ <div class="page-count">5 / 273</div>
344
+ </div>
345
+ </div>
346
+
347
+ <div class="home-indicator"></div>
348
+ </div>
349
+ </body>
350
+ </html>
code/8894/8894_3.html ADDED
@@ -0,0 +1,345 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <title>Reader UI Mock</title>
6
+ <style>
7
+ body { margin: 0; padding: 0; background: transparent; }
8
+ #render-target {
9
+ position: relative;
10
+ overflow: hidden;
11
+ width: 1080px;
12
+ height: 2400px;
13
+ background: #000;
14
+ }
15
+
16
+ /* Status bar */
17
+ .status-bar {
18
+ position: absolute;
19
+ top: 0;
20
+ left: 0;
21
+ width: 1080px;
22
+ height: 120px;
23
+ color: #fff;
24
+ font-family: system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif;
25
+ font-size: 36px;
26
+ display: flex;
27
+ align-items: center;
28
+ padding: 0 40px;
29
+ box-sizing: border-box;
30
+ }
31
+ .status-left, .status-right {
32
+ display: flex;
33
+ align-items: center;
34
+ gap: 24px;
35
+ }
36
+ .status-left { flex: 1; }
37
+ .status-right { justify-content: flex-end; }
38
+ .status-icon {
39
+ width: 44px; height: 44px;
40
+ display: inline-flex; align-items: center; justify-content: center;
41
+ opacity: 0.85;
42
+ }
43
+ .status-time { margin-right: 18px; }
44
+
45
+ /* Reading content */
46
+ .content {
47
+ position: absolute;
48
+ top: 140px;
49
+ left: 64px;
50
+ right: 64px;
51
+ bottom: 120px;
52
+ color: #fff;
53
+ font-family: "Georgia", "Times New Roman", serif;
54
+ font-size: 46px;
55
+ line-height: 1.75;
56
+ letter-spacing: 0.5px;
57
+ }
58
+ .content p {
59
+ margin: 48px 0;
60
+ }
61
+ .content .title {
62
+ font-size: 60px;
63
+ font-weight: 500;
64
+ margin-top: 40px;
65
+ margin-bottom: 28px;
66
+ }
67
+
68
+ /* Modal overlay */
69
+ .modal {
70
+ position: absolute;
71
+ top: 220px;
72
+ left: 110px;
73
+ width: 860px;
74
+ background: #2f333a;
75
+ color: #dfe5ec;
76
+ border-radius: 28px;
77
+ box-shadow: 0 24px 64px rgba(0,0,0,0.7);
78
+ font-family: system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif;
79
+ overflow: hidden;
80
+ }
81
+ .modal-header {
82
+ display: flex;
83
+ gap: 32px;
84
+ padding: 28px 32px 16px;
85
+ border-bottom: 1px solid rgba(255,255,255,0.06);
86
+ color: #b8c0c8;
87
+ font-size: 36px;
88
+ }
89
+ .tab {
90
+ padding-bottom: 12px;
91
+ }
92
+ .tab.active {
93
+ color: #ffffff;
94
+ border-bottom: 4px solid #3fa0ff;
95
+ }
96
+ .modal-body {
97
+ padding: 24px 32px 28px;
98
+ }
99
+
100
+ /* Font choice row */
101
+ .font-row {
102
+ display: flex;
103
+ gap: 36px;
104
+ margin-bottom: 32px;
105
+ align-items: center;
106
+ }
107
+ .font-option {
108
+ display: flex;
109
+ flex-direction: column;
110
+ align-items: center;
111
+ gap: 14px;
112
+ }
113
+ .font-circle {
114
+ width: 140px; height: 140px;
115
+ border-radius: 50%;
116
+ background: #3a3f46;
117
+ display: flex; align-items: center; justify-content: center;
118
+ font-size: 64px; font-weight: 600;
119
+ color: #dfe5ec;
120
+ border: 2px solid rgba(255,255,255,0.1);
121
+ }
122
+ .font-option.active .font-circle {
123
+ background: #3fa0ff;
124
+ color: #fff;
125
+ border-color: #3fa0ff;
126
+ }
127
+ .font-label {
128
+ font-size: 28px;
129
+ color: #aeb7bf;
130
+ }
131
+ .font-option.active .font-label { color: #ffffff; }
132
+
133
+ /* Controls grid */
134
+ .control-grid {
135
+ display: grid;
136
+ grid-template-columns: 1fr 1fr;
137
+ gap: 28px 36px;
138
+ margin-top: 6px;
139
+ }
140
+ .control {
141
+ display: flex;
142
+ align-items: center;
143
+ justify-content: space-between;
144
+ background: #2a2e34;
145
+ border: 1px solid rgba(255,255,255,0.08);
146
+ border-radius: 12px;
147
+ padding: 16px 20px;
148
+ }
149
+ .control .left {
150
+ display: flex; align-items: center; gap: 16px;
151
+ }
152
+ .icon-box {
153
+ width: 116px; height: 84px;
154
+ border-radius: 12px;
155
+ background: #3a3f46;
156
+ display: inline-flex; align-items: center; justify-content: center;
157
+ border: 1px solid rgba(255,255,255,0.08);
158
+ }
159
+ .control .value {
160
+ font-size: 30px;
161
+ color: #b8c0c8;
162
+ }
163
+
164
+ /* Footer inside modal */
165
+ .modal-footer {
166
+ display: flex; align-items: center; justify-content: space-between;
167
+ padding: 20px 32px 28px;
168
+ color: #b8c0c8;
169
+ font-size: 34px;
170
+ }
171
+ .menu-lines {
172
+ display: inline-flex; gap: 6px; align-items: center;
173
+ }
174
+ .menu-lines .line {
175
+ width: 26px; height: 3px; background: #b8c0c8; border-radius: 2px;
176
+ }
177
+ .chevron {
178
+ width: 24px; height: 24px; margin-left: 12px;
179
+ border-right: 3px solid #b8c0c8; border-bottom: 3px solid #b8c0c8;
180
+ transform: rotate(-45deg);
181
+ }
182
+
183
+ /* Bottom navigation pill */
184
+ .nav-pill {
185
+ position: absolute;
186
+ bottom: 36px;
187
+ left: 50%;
188
+ transform: translateX(-50%);
189
+ width: 300px; height: 14px;
190
+ background: #8a8a8a;
191
+ border-radius: 10px;
192
+ opacity: 0.6;
193
+ }
194
+ </style>
195
+ </head>
196
+ <body>
197
+ <div id="render-target">
198
+
199
+ <!-- Status Bar -->
200
+ <div class="status-bar">
201
+ <div class="status-left">
202
+ <span class="status-time">1:03</span>
203
+ <span class="status-icon">
204
+ <!-- play-in-rectangle icon -->
205
+ <svg width="44" height="44" viewBox="0 0 24 24" fill="none">
206
+ <rect x="3" y="5" width="18" height="14" rx="3" stroke="white" stroke-width="1.6"></rect>
207
+ <polygon points="10,9 16,12 10,15" fill="white"></polygon>
208
+ </svg>
209
+ </span>
210
+ <span class="status-icon">
211
+ <!-- cloud icon -->
212
+ <svg width="44" height="44" viewBox="0 0 24 24" fill="none">
213
+ <path d="M8 16h9a3 3 0 0 0 0-6h-.4A5 5 0 0 0 6 11a3 3 0 0 0 2 5z" fill="white"></path>
214
+ </svg>
215
+ </span>
216
+ </div>
217
+ <div class="status-right">
218
+ <span class="status-icon">
219
+ <!-- wifi icon -->
220
+ <svg width="44" height="44" viewBox="0 0 24 24" fill="none">
221
+ <path d="M3 9c4.5-4 13.5-4 18 0" stroke="white" stroke-width="1.6" stroke-linecap="round"></path>
222
+ <path d="M6 12c3-2.5 9-2.5 12 0" stroke="white" stroke-width="1.6" stroke-linecap="round"></path>
223
+ <path d="M9 15c1.5-1.3 4.5-1.3 6 0" stroke="white" stroke-width="1.6" stroke-linecap="round"></path>
224
+ <circle cx="12" cy="18" r="1.8" fill="white"></circle>
225
+ </svg>
226
+ </span>
227
+ <span class="status-icon">
228
+ <!-- battery icon -->
229
+ <svg width="44" height="44" viewBox="0 0 24 24" fill="none">
230
+ <rect x="4" y="7" width="15" height="10" rx="2" stroke="white" stroke-width="1.6"></rect>
231
+ <rect x="6" y="9" width="11" height="6" fill="white"></rect>
232
+ <rect x="20" y="10" width="2" height="4" rx="1" fill="white"></rect>
233
+ </svg>
234
+ </span>
235
+ </div>
236
+ </div>
237
+
238
+ <!-- Reading content -->
239
+ <div class="content">
240
+ <p class="title">What Do You Want Out of Life?</p>
241
+ <p>Is it more money, better health, or greater happiness? Is it contentment, freedom from worry, or the enduring Peace of Mind that comes with having a plan?</p>
242
+ <p>The pages you are about to study describe the shortest dependable philosophy of individual achievement ever presented for the benefit of the man or woman who is searching for a definite goal in life.</p>
243
+ <p>Before beginning the book you will profit greatly if you recognize the fact that the book was not written to entertain. You cannot digest the contents properly in a week or a month. After reading the book thoroughly, Dr. Miller Reese Hutchison, nationally known Consulting Engineer and long-time associate of Thomas A. Edison, said—</p>
244
+ <p>“This is a primer of personal power.”</p>
245
+ </div>
246
+
247
+ <!-- Settings modal -->
248
+ <div class="modal">
249
+ <div class="modal-header">
250
+ <div class="tab active">Text</div>
251
+ <div class="tab">Lighting</div>
252
+ </div>
253
+ <div class="modal-body">
254
+ <div class="font-row">
255
+ <div class="font-option active">
256
+ <div class="font-circle">A</div>
257
+ <div class="font-label">Original</div>
258
+ </div>
259
+ <div class="font-option">
260
+ <div class="font-circle">A</div>
261
+ <div class="font-label">Sans</div>
262
+ </div>
263
+ <div class="font-option">
264
+ <div class="font-circle">A</div>
265
+ <div class="font-label">Literata</div>
266
+ </div>
267
+ <div class="font-option">
268
+ <div class="font-circle">A</div>
269
+ <div class="font-label">Merriweather</div>
270
+ </div>
271
+ </div>
272
+
273
+ <div class="control-grid">
274
+ <div class="control">
275
+ <div class="left">
276
+ <div class="icon-box">
277
+ <!-- T icon -->
278
+ <svg width="80" height="60" viewBox="0 0 24 24" fill="none">
279
+ <path d="M4 6h16" stroke="#fff" stroke-width="2" stroke-linecap="round"></path>
280
+ <path d="M12 6v12" stroke="#fff" stroke-width="2" stroke-linecap="round"></path>
281
+ </svg>
282
+ </div>
283
+ <span style="font-size:30px;color:#dfe5ec;">Text size</span>
284
+ </div>
285
+ <div class="value">113%</div>
286
+ </div>
287
+
288
+ <div class="control">
289
+ <div class="left">
290
+ <div class="icon-box">
291
+ <!-- bold T icon -->
292
+ <svg width="80" height="60" viewBox="0 0 24 24" fill="none">
293
+ <path d="M7 6h10" stroke="#fff" stroke-width="2" stroke-linecap="round"></path>
294
+ <path d="M12 6v12" stroke="#fff" stroke-width="3" stroke-linecap="round"></path>
295
+ </svg>
296
+ </div>
297
+ <span style="font-size:30px;color:#dfe5ec;">Weight</span>
298
+ </div>
299
+ <div class="value">T</div>
300
+ </div>
301
+
302
+ <div class="control">
303
+ <div class="left">
304
+ <div class="icon-box">
305
+ <!-- alignment lines icon -->
306
+ <svg width="80" height="60" viewBox="0 0 24 24" fill="none">
307
+ <path d="M4 7h16M4 12h12M4 17h16" stroke="#fff" stroke-width="2" stroke-linecap="round"></path>
308
+ </svg>
309
+ </div>
310
+ <span style="font-size:30px;color:#dfe5ec;">Line height</span>
311
+ </div>
312
+ <div class="value">100%</div>
313
+ </div>
314
+
315
+ <div class="control">
316
+ <div class="left">
317
+ <div class="icon-box">
318
+ <!-- justify lines icon -->
319
+ <svg width="80" height="60" viewBox="0 0 24 24" fill="none">
320
+ <path d="M4 7h16M4 12h16M4 17h16" stroke="#fff" stroke-width="2" stroke-linecap="round"></path>
321
+ </svg>
322
+ </div>
323
+ <span style="font-size:30px;color:#dfe5ec;">Justification</span>
324
+ </div>
325
+ <div class="value">↕︎</div>
326
+ </div>
327
+ </div>
328
+ </div>
329
+ <div class="modal-footer">
330
+ <div class="menu-lines">
331
+ <div class="line"></div><div class="line"></div><div class="line"></div>
332
+ </div>
333
+ <div style="display:flex;align-items:center;gap:12px;">
334
+ <span>Default</span>
335
+ <div class="chevron"></div>
336
+ </div>
337
+ </div>
338
+ </div>
339
+
340
+ <!-- Bottom nav pill -->
341
+ <div class="nav-pill"></div>
342
+
343
+ </div>
344
+ </body>
345
+ </html>
code/8894/8894_4.html ADDED
@@ -0,0 +1,303 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Reading App - Lighting Panel</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: #000000;
15
+ }
16
+
17
+ /* Status bar */
18
+ .status-bar {
19
+ position: absolute;
20
+ top: 0; left: 0;
21
+ width: 100%;
22
+ height: 116px;
23
+ color: #ffffff;
24
+ font: 500 40px/1 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
25
+ display: flex;
26
+ align-items: center;
27
+ justify-content: space-between;
28
+ padding: 28px 32px;
29
+ box-sizing: border-box;
30
+ opacity: 0.95;
31
+ }
32
+ .sb-left, .sb-right { display: flex; align-items: center; gap: 24px; }
33
+ .sb-icon { display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center; }
34
+
35
+ /* Reading content behind modal */
36
+ .content {
37
+ position: absolute;
38
+ top: 140px;
39
+ left: 64px;
40
+ right: 64px;
41
+ color: #EAEAEA;
42
+ font-family: Georgia, "Times New Roman", serif;
43
+ font-size: 56px;
44
+ line-height: 1.46;
45
+ letter-spacing: 0.4px;
46
+ }
47
+ .content p { margin: 40px 0; }
48
+
49
+ /* Floating modal */
50
+ .modal {
51
+ position: absolute;
52
+ top: 250px;
53
+ left: 150px;
54
+ width: 780px;
55
+ background: #3a3c3f;
56
+ color: #E5E5E5;
57
+ border-radius: 26px;
58
+ box-shadow: 0 24px 70px rgba(0,0,0,0.65);
59
+ overflow: hidden;
60
+ z-index: 5;
61
+ }
62
+ .tabs {
63
+ display: flex;
64
+ gap: 48px;
65
+ padding: 28px 32px 22px 32px;
66
+ font: 600 40px/1.2 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
67
+ color: #A9AAAD;
68
+ }
69
+ .tab { position: relative; cursor: default; }
70
+ .tab.active { color: #4AA4FF; }
71
+ .tab.active::after {
72
+ content:"";
73
+ position: absolute;
74
+ left: 0;
75
+ right: 0;
76
+ bottom: -16px;
77
+ height: 6px;
78
+ background: #4AA4FF;
79
+ border-radius: 3px;
80
+ }
81
+ .divider {
82
+ height: 1px;
83
+ background: #54565A;
84
+ margin: 0 0 8px 0;
85
+ }
86
+ .section {
87
+ padding: 26px 32px;
88
+ font: 500 38px/1.3 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
89
+ }
90
+ .row {
91
+ display: flex;
92
+ align-items: center;
93
+ justify-content: space-between;
94
+ gap: 20px;
95
+ }
96
+ .label { color: #ECECEC; }
97
+ .sublabel { color: #BFC2C6; font-size: 30px; margin-top: 6px; }
98
+
99
+ /* Toggle switch */
100
+ .switch {
101
+ width: 120px;
102
+ height: 56px;
103
+ border-radius: 28px;
104
+ background: #5B5E61;
105
+ position: relative;
106
+ box-shadow: inset 0 0 0 2px rgba(255,255,255,0.08);
107
+ }
108
+ .switch .knob {
109
+ position: absolute;
110
+ top: 5px;
111
+ left: 6px;
112
+ width: 46px;
113
+ height: 46px;
114
+ background: #BBBBBB;
115
+ border-radius: 50%;
116
+ box-shadow: 0 2px 4px rgba(0,0,0,0.5);
117
+ }
118
+ .switch.on { background: #4AA4FF; }
119
+ .switch.on .knob { left: 68px; background: #FFFFFF; }
120
+
121
+ /* Slider */
122
+ .slider {
123
+ width: 100%;
124
+ height: 8px;
125
+ background: #5F6267;
126
+ border-radius: 4px;
127
+ margin-top: 26px;
128
+ position: relative;
129
+ }
130
+ .slider .thumb {
131
+ position: absolute;
132
+ top: -11px;
133
+ left: 48%;
134
+ width: 30px;
135
+ height: 30px;
136
+ background: #C5C7CB;
137
+ border: 2px solid #8C8F95;
138
+ border-radius: 50%;
139
+ }
140
+
141
+ /* Themes */
142
+ .theme-row {
143
+ display: flex;
144
+ gap: 26px;
145
+ margin-top: 18px;
146
+ }
147
+ .theme-box {
148
+ width: 230px;
149
+ height: 120px;
150
+ border-radius: 16px;
151
+ border: 3px solid #6C7075;
152
+ position: relative;
153
+ box-sizing: border-box;
154
+ }
155
+ .theme-white { background: #FFFFFF; }
156
+ .theme-warm { background: #E9DFC7; }
157
+ .theme-black { background: #000000; }
158
+ .check {
159
+ position: absolute;
160
+ right: 16px;
161
+ bottom: 16px;
162
+ width: 46px;
163
+ height: 46px;
164
+ border-radius: 10px;
165
+ border: 2px solid #8B8E93;
166
+ background: rgba(255,255,255,0.06);
167
+ display: flex;
168
+ align-items: center;
169
+ justify-content: center;
170
+ }
171
+ .check svg { width: 28px; height: 28px; }
172
+ .check svg path { stroke: #FFFFFF; stroke-width: 6; fill: none; stroke-linecap: round; stroke-linejoin: round; }
173
+
174
+ /* Info badge */
175
+ .info {
176
+ display: inline-flex;
177
+ align-items: center;
178
+ justify-content: center;
179
+ width: 54px;
180
+ height: 54px;
181
+ border-radius: 50%;
182
+ background: #5C5F64;
183
+ color: #D9DDE2;
184
+ font: 700 34px/1 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
185
+ margin-right: 20px;
186
+ }
187
+ .night-controls {
188
+ display: flex;
189
+ align-items: center;
190
+ gap: 24px;
191
+ }
192
+ .switch.disabled { opacity: 0.45; }
193
+
194
+ /* Bottom gesture pill */
195
+ .gesture {
196
+ position: absolute;
197
+ bottom: 34px;
198
+ left: 50%;
199
+ transform: translateX(-50%);
200
+ width: 360px;
201
+ height: 12px;
202
+ border-radius: 8px;
203
+ background: #8C8C8C;
204
+ opacity: 0.7;
205
+ }
206
+ </style>
207
+ </head>
208
+ <body>
209
+ <div id="render-target">
210
+
211
+ <!-- Status bar -->
212
+ <div class="status-bar">
213
+ <div class="sb-left">
214
+ <div>1:03</div>
215
+ <div class="sb-icon" aria-hidden="true">
216
+ <svg viewBox="0 0 24 24" width="44" height="44" fill="none">
217
+ <rect x="2" y="6" width="20" height="12" rx="2" ry="2" stroke="#ffffff" stroke-width="2"/>
218
+ <polygon points="10,9 15,12 10,15" fill="#ffffff"/>
219
+ </svg>
220
+ </div>
221
+ <div class="sb-icon" aria-hidden="true">
222
+ <svg viewBox="0 0 24 24" width="44" height="44" fill="#ffffff">
223
+ <path d="M6 15a4 4 0 0 1 3-3.9 5 5 0 0 1 9 2.4h1a3 3 0 0 1 0 6H7a3 3 0 0 1-1-5.5z"/>
224
+ </svg>
225
+ </div>
226
+ </div>
227
+ <div class="sb-right">
228
+ <div class="sb-icon" aria-hidden="true">
229
+ <svg viewBox="0 0 24 24" width="44" height="44" fill="none" stroke="#ffffff" stroke-width="2">
230
+ <path d="M2 18c5-5 15-5 20 0" />
231
+ <path d="M6 14c3-3 9-3 12 0" />
232
+ <path d="M10 10c1-1 3-1 4 0" />
233
+ </svg>
234
+ </div>
235
+ <div class="sb-icon" aria-hidden="true">
236
+ <svg viewBox="0 0 30 24" width="48" height="44" fill="none" stroke="#ffffff" stroke-width="2">
237
+ <rect x="2" y="4" width="22" height="16" rx="2"/>
238
+ <rect x="24" y="8" width="4" height="8" fill="#ffffff" stroke="none"/>
239
+ </svg>
240
+ </div>
241
+ </div>
242
+ </div>
243
+
244
+ <!-- Background reading text -->
245
+ <div class="content">
246
+ <p>What Do You Want Most? Is It Money, Fame, Power, Contentment, Personality, Peace of Mind?</p>
247
+ <p>The Thirteen Principles described in this book offer the shortest dependable philosophy of individual achievement ever presented for the benefit of the man or woman who is searching for a definite goal in life.</p>
248
+ <p>Before beginning the book you will profit greatly if you recognize the fact that the book was not written to entertain. You cannot digest the contents properly in a week or a month. After reading the book thoroughly, Dr. Miller Reese Hutchison, nationally known Consulting Engineer and long‑time associate of Thomas A. Edison, said...</p>
249
+ </div>
250
+
251
+ <!-- Modal panel -->
252
+ <div class="modal">
253
+ <div class="tabs">
254
+ <div class="tab">Text</div>
255
+ <div class="tab active">Lighting</div>
256
+ </div>
257
+ <div class="divider"></div>
258
+
259
+ <div class="section">
260
+ <div class="row">
261
+ <div class="label">Reading brightness</div>
262
+ <div class="switch" role="switch" aria-checked="false">
263
+ <div class="knob"></div>
264
+ </div>
265
+ </div>
266
+ <div class="slider">
267
+ <div class="thumb"></div>
268
+ </div>
269
+ </div>
270
+
271
+ <div class="section" style="padding-top: 16px;">
272
+ <div class="label">Viewing theme</div>
273
+ <div class="theme-row">
274
+ <div class="theme-box theme-white"></div>
275
+ <div class="theme-box theme-warm"></div>
276
+ <div class="theme-box theme-black">
277
+ <div class="check" aria-hidden="true">
278
+ <svg viewBox="0 0 24 24">
279
+ <path d="M5 13l4 4 10-10"/>
280
+ </svg>
281
+ </div>
282
+ </div>
283
+ </div>
284
+ </div>
285
+
286
+ <div class="section" style="padding-top: 20px;">
287
+ <div class="row">
288
+ <div class="label">Reading Night Light</div>
289
+ <div class="night-controls">
290
+ <div class="info">i</div>
291
+ <div class="switch disabled" aria-disabled="true">
292
+ <div class="knob"></div>
293
+ </div>
294
+ </div>
295
+ </div>
296
+ </div>
297
+ </div>
298
+
299
+ <!-- Gesture bar -->
300
+ <div class="gesture"></div>
301
+ </div>
302
+ </body>
303
+ </html>
code/8894/8894_5.html ADDED
@@ -0,0 +1,309 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Reader Lighting Settings</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: #000000;
15
+ font-family: Georgia, "Times New Roman", serif;
16
+ color: #eaeaea;
17
+ }
18
+
19
+ /* Status bar */
20
+ .status-bar {
21
+ position: absolute;
22
+ top: 0;
23
+ left: 0;
24
+ width: 100%;
25
+ height: 120px;
26
+ padding: 24px 28px 0 28px;
27
+ color: #ffffff;
28
+ font-size: 42px;
29
+ line-height: 1;
30
+ display: flex;
31
+ align-items: center;
32
+ justify-content: space-between;
33
+ pointer-events: none;
34
+ }
35
+ .sb-left, .sb-right { display: flex; align-items: center; gap: 20px; }
36
+ .sb-icon { display: inline-flex; }
37
+ .sb-right .sb-icon svg, .sb-left .sb-icon svg { fill: #ffffff; }
38
+
39
+ /* Reading page text */
40
+ .page {
41
+ position: absolute;
42
+ top: 120px;
43
+ left: 0;
44
+ right: 0;
45
+ bottom: 0;
46
+ padding: 80px 90px 140px 90px;
47
+ box-sizing: border-box;
48
+ }
49
+ .page p {
50
+ font-size: 52px;
51
+ line-height: 1.65;
52
+ letter-spacing: 0.4px;
53
+ margin: 40px 0 60px 0;
54
+ text-indent: 56px;
55
+ color: #f0f0f0;
56
+ }
57
+
58
+ /* Floating settings card */
59
+ .settings-card {
60
+ position: absolute;
61
+ top: 210px;
62
+ left: 130px;
63
+ width: 820px;
64
+ background: #36393c;
65
+ color: #e9ecef;
66
+ border-radius: 24px;
67
+ box-shadow: 0 24px 60px rgba(0,0,0,0.55);
68
+ overflow: hidden;
69
+ font-family: "Segoe UI", Roboto, Arial, sans-serif;
70
+ }
71
+ .tabs {
72
+ display: flex;
73
+ height: 110px;
74
+ align-items: flex-end;
75
+ padding: 0 30px;
76
+ box-sizing: border-box;
77
+ border-bottom: 1px solid #54585b;
78
+ gap: 36px;
79
+ }
80
+ .tab {
81
+ position: relative;
82
+ font-size: 40px;
83
+ color: #bfc6cc;
84
+ padding: 0 14px 22px 14px;
85
+ }
86
+ .tab.active {
87
+ color: #57a9ff;
88
+ font-weight: 600;
89
+ }
90
+ .tab.active .indicator {
91
+ position: absolute;
92
+ bottom: -2px;
93
+ left: 50%;
94
+ transform: translateX(-50%);
95
+ width: 140px;
96
+ height: 8px;
97
+ background: #57a9ff;
98
+ border-radius: 4px;
99
+ }
100
+
101
+ .card-body {
102
+ padding: 30px 36px 38px 36px;
103
+ }
104
+ .row {
105
+ display: flex;
106
+ align-items: center;
107
+ justify-content: space-between;
108
+ gap: 24px;
109
+ }
110
+ .label {
111
+ font-size: 34px;
112
+ color: #f3f6f8;
113
+ }
114
+
115
+ /* Toggle */
116
+ .toggle {
117
+ width: 120px;
118
+ height: 62px;
119
+ background: #5a5f63;
120
+ border-radius: 31px;
121
+ position: relative;
122
+ box-shadow: inset 0 0 0 2px rgba(255,255,255,0.06);
123
+ }
124
+ .toggle .knob {
125
+ position: absolute;
126
+ top: 7px;
127
+ left: 8px;
128
+ width: 48px;
129
+ height: 48px;
130
+ background: #eaeff4;
131
+ border-radius: 50%;
132
+ box-shadow: 0 2px 4px rgba(0,0,0,0.35);
133
+ transition: left 0.2s ease;
134
+ }
135
+ .toggle.on { background: #2e95ff; }
136
+ .toggle.on .knob { left: 64px; }
137
+ .toggle.disabled { opacity: 0.45; }
138
+
139
+ /* Slider (visual only) */
140
+ .slider {
141
+ margin: 26px 0 34px 0;
142
+ height: 8px;
143
+ background: #6a6f73;
144
+ border-radius: 4px;
145
+ position: relative;
146
+ }
147
+ .slider .thumb {
148
+ position: absolute;
149
+ top: 50%;
150
+ left: 52%;
151
+ transform: translate(-50%, -50%);
152
+ width: 34px;
153
+ height: 34px;
154
+ background: #4aa9ff;
155
+ border-radius: 50%;
156
+ box-shadow: 0 0 0 6px rgba(74,169,255,0.18);
157
+ }
158
+
159
+ .section {
160
+ margin-top: 24px;
161
+ }
162
+ .themes {
163
+ margin-top: 18px;
164
+ display: flex;
165
+ gap: 26px;
166
+ }
167
+ .tile {
168
+ position: relative;
169
+ width: 210px;
170
+ height: 120px;
171
+ border-radius: 14px;
172
+ border: 2px solid #73797e;
173
+ overflow: hidden;
174
+ }
175
+ .tile.light { background: #ffffff; }
176
+ .tile.sepia { background: #efe2c7; }
177
+ .tile.dark { background: #0b0b0b; border-color: #8b939a; }
178
+ .tile .check {
179
+ position: absolute;
180
+ right: 16px;
181
+ bottom: 16px;
182
+ width: 46px;
183
+ height: 46px;
184
+ }
185
+
186
+ .night-row {
187
+ display: flex;
188
+ align-items: center;
189
+ justify-content: space-between;
190
+ margin-top: 24px;
191
+ }
192
+ .night-left {
193
+ display: flex;
194
+ align-items: center;
195
+ gap: 16px;
196
+ }
197
+ .info-circle {
198
+ width: 44px;
199
+ height: 44px;
200
+ }
201
+
202
+ /* Bottom gesture bar */
203
+ .gesture {
204
+ position: absolute;
205
+ bottom: 34px;
206
+ left: 50%;
207
+ transform: translateX(-50%);
208
+ width: 340px;
209
+ height: 12px;
210
+ background: #7f7f7f;
211
+ border-radius: 8px;
212
+ opacity: 0.9;
213
+ }
214
+ </style>
215
+ </head>
216
+ <body>
217
+ <div id="render-target">
218
+ <!-- Status bar -->
219
+ <div class="status-bar">
220
+ <div class="sb-left">
221
+ <div class="time">1:05</div>
222
+ <div class="sb-icon" aria-hidden="true">
223
+ <svg width="38" height="28" viewBox="0 0 38 28">
224
+ <polygon points="0,0 38,14 0,28" fill="#ffffff"></polygon>
225
+ </svg>
226
+ </div>
227
+ <div class="sb-icon" aria-hidden="true">
228
+ <svg width="44" height="28" viewBox="0 0 44 28">
229
+ <path d="M6 18c0-6 5-11 11-11 4 0 7 2 9 5 1-2 4-4 7-4 5 0 9 4 9 10" stroke="#fff" stroke-width="3" fill="none" stroke-linecap="round"/>
230
+ <path d="M20 23c0-4 3-7 7-7" stroke="#fff" stroke-width="3" fill="none" stroke-linecap="round"/>
231
+ </svg>
232
+ </div>
233
+ </div>
234
+ <div class="sb-right">
235
+ <div class="sb-icon" aria-hidden="true" title="Wi‑Fi">
236
+ <svg width="44" height="28" viewBox="0 0 44 28">
237
+ <path d="M2 8c10-8 30-8 40 0" stroke="#fff" stroke-width="3" fill="none" stroke-linecap="round"/>
238
+ <path d="M8 14c7-6 21-6 28 0" stroke="#fff" stroke-width="3" fill="none" stroke-linecap="round"/>
239
+ <path d="M16 20c4-4 8-4 12 0" stroke="#fff" stroke-width="3" fill="none" stroke-linecap="round"/>
240
+ <circle cx="22" cy="24" r="2.8" fill="#fff"/>
241
+ </svg>
242
+ </div>
243
+ <div class="sb-icon" aria-hidden="true" title="Battery">
244
+ <svg width="64" height="28" viewBox="0 0 64 28">
245
+ <rect x="2" y="5" width="54" height="18" rx="4" ry="4" fill="none" stroke="#fff" stroke-width="3"/>
246
+ <rect x="5" y="8" width="40" height="12" rx="2" ry="2" fill="#ffffff"/>
247
+ <rect x="58" y="10" width="4" height="8" rx="1" fill="#fff"/>
248
+ </svg>
249
+ </div>
250
+ </div>
251
+ </div>
252
+
253
+ <!-- Reading content -->
254
+ <div class="page">
255
+ <p>What Do You Want Most? Is it money, fame, power, contentment, personality, peace of mind, or happiness?</p>
256
+ <p>The thirteen principles described in this book offer the shortest dependable philosophy of individual achievement ever presented for the benefit of the man or woman who is searching for a definite goal in life.</p>
257
+ <p>Before beginning the book you will profit greatly if you recognize the fact that the book was not written to entertain. You cannot digest the contents properly in a week or a month. After reading the book thoroughly, you will understand why.</p>
258
+ </div>
259
+
260
+ <!-- Floating Settings Card -->
261
+ <div class="settings-card" role="dialog" aria-label="Lighting Settings">
262
+ <div class="tabs" role="tablist">
263
+ <div class="tab" role="tab" aria-selected="false">Text</div>
264
+ <div class="tab active" role="tab" aria-selected="true">
265
+ Lighting
266
+ <div class="indicator" aria-hidden="true"></div>
267
+ </div>
268
+ </div>
269
+ <div class="card-body">
270
+ <div class="row">
271
+ <div class="label">Reading brightness</div>
272
+ <div class="toggle on" aria-hidden="true"><span class="knob"></span></div>
273
+ </div>
274
+ <div class="slider" aria-hidden="true">
275
+ <div class="thumb"></div>
276
+ </div>
277
+
278
+ <div class="section">
279
+ <div class="label">Viewing theme</div>
280
+ <div class="themes">
281
+ <div class="tile light" title="Light theme"></div>
282
+ <div class="tile sepia" title="Sepia theme"></div>
283
+ <div class="tile dark" title="Dark theme">
284
+ <svg class="check" viewBox="0 0 24 24">
285
+ <path d="M20 6L9 17l-5-5" stroke="#ffffff" stroke-width="3.2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
286
+ </svg>
287
+ </div>
288
+ </div>
289
+ </div>
290
+
291
+ <div class="night-row">
292
+ <div class="night-left">
293
+ <svg class="info-circle" viewBox="0 0 24 24">
294
+ <circle cx="12" cy="12" r="10" fill="#80868b"/>
295
+ <rect x="11" y="10" width="2" height="7" rx="1" fill="#e9ecef"/>
296
+ <circle cx="12" cy="7" r="1.2" fill="#e9ecef"/>
297
+ </svg>
298
+ <div class="label">Reading Night Light</div>
299
+ </div>
300
+ <div class="toggle disabled" aria-hidden="true"><span class="knob"></span></div>
301
+ </div>
302
+ </div>
303
+ </div>
304
+
305
+ <!-- Bottom gesture bar -->
306
+ <div class="gesture"></div>
307
+ </div>
308
+ </body>
309
+ </html>
code/8896/8896_0.html ADDED
@@ -0,0 +1,177 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="utf-8">
4
+ <title>Notes UI</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:#F3EAD2; /* cream main background */
13
+ }
14
+
15
+ /* Top bars */
16
+ .status-bar {
17
+ position:absolute;
18
+ top:0; left:0;
19
+ width:1080px; height:120px;
20
+ background:#F6A43A; /* orange */
21
+ color:#fff;
22
+ display:flex;
23
+ align-items:center;
24
+ padding:0 32px;
25
+ box-sizing:border-box;
26
+ }
27
+ .status-time { font-size:40px; font-weight:600; }
28
+ .status-icons {
29
+ margin-left:auto; display:flex; align-items:center; gap:24px;
30
+ }
31
+ .icon-dot { width:18px; height:18px; background:#fff; border-radius:50%; opacity:0.9; }
32
+ .battery {
33
+ width:42px; height:22px; border:2px solid #fff; border-radius:4px; position:relative;
34
+ }
35
+ .battery::after {
36
+ content:""; position:absolute; right:-8px; top:6px; width:6px; height:10px; background:#fff; border-radius:2px;
37
+ }
38
+ .battery-fill { position:absolute; left:3px; top:3px; width:30px; height:14px; background:#fff; opacity:0.9; }
39
+
40
+ .toolbar {
41
+ position:absolute; top:120px; left:0;
42
+ width:1080px; height:120px; background:#F6A43A;
43
+ display:flex; align-items:center; padding:0 24px; box-sizing:border-box;
44
+ }
45
+ .tool-left { display:flex; align-items:center; gap:20px; }
46
+ .tool-right { margin-left:auto; display:flex; align-items:center; gap:30px; }
47
+ .tool-icon { width:60px; height:60px; display:flex; align-items:center; justify-content:center; }
48
+
49
+ /* Content */
50
+ .content {
51
+ position:absolute; top:240px; left:0;
52
+ width:100%; height:1960px; /* remaining space before ad */
53
+ padding:40px 40px 240px 40px; box-sizing:border-box;
54
+ }
55
+ .title {
56
+ font-size:68px; font-weight:800; color:#1c1c1c; line-height:1.15;
57
+ margin-bottom:30px;
58
+ }
59
+ .edited {
60
+ font-size:32px; color:#757575; margin-bottom:24px;
61
+ }
62
+ .divider {
63
+ height:2px; background:#D8CDB6; margin:18px 0 40px 0;
64
+ }
65
+ .note-text {
66
+ font-size:46px; color:#222; line-height:1.4;
67
+ }
68
+
69
+ /* Bottom ad banner */
70
+ .ad-banner {
71
+ position:absolute; bottom:0; left:0;
72
+ width:1080px; height:220px;
73
+ background:#ffffff; border-top:2px solid #E1E1E1;
74
+ display:flex; align-items:center; padding:20px 28px; box-sizing:border-box;
75
+ }
76
+ .ad-left-badge {
77
+ width:120px; height:70px; border:1px solid #BDBDBD; background:#E0E0E0;
78
+ display:flex; align-items:center; justify-content:center; color:#555; font-size:22px; border-radius:8px;
79
+ }
80
+ .ad-text {
81
+ margin-left:24px;
82
+ }
83
+ .ad-title {
84
+ font-size:52px; color:#333; font-weight:700;
85
+ }
86
+ .ad-sub {
87
+ font-size:40px; color:#1677FF; margin-top:8px; font-weight:700;
88
+ }
89
+ .ad-right {
90
+ margin-left:auto; display:flex; align-items:center; gap:18px;
91
+ }
92
+ .ad-close {
93
+ width:42px; height:42px; border:1px solid #AFAFAF; border-radius:50%;
94
+ display:flex; align-items:center; justify-content:center; color:#888; font-size:26px;
95
+ }
96
+ .ad-arrow {
97
+ width:110px; height:110px; background:#1677FF; border-radius:24px;
98
+ display:flex; align-items:center; justify-content:center;
99
+ }
100
+ .ad-arrow svg { width:60px; height:60px; fill:#fff; }
101
+
102
+ /* Simple SVG icons */
103
+ .back svg, .circle svg, .pencil svg, .menu svg { fill:#2b2b2b; }
104
+ .menu svg { stroke:#2b2b2b; stroke-width:6; fill:none; }
105
+ .circle svg { fill:none; stroke:#2b2b2b; stroke-width:8; }
106
+ </style>
107
+ </head>
108
+ <body>
109
+ <div id="render-target">
110
+
111
+ <!-- Status bar -->
112
+ <div class="status-bar">
113
+ <div class="status-time">11:42</div>
114
+ <div class="status-icons">
115
+ <div class="icon-dot"></div>
116
+ <div class="icon-dot"></div>
117
+ <div class="battery"><div class="battery-fill"></div></div>
118
+ </div>
119
+ </div>
120
+
121
+ <!-- Toolbar -->
122
+ <div class="toolbar">
123
+ <div class="tool-left">
124
+ <div class="tool-icon back">
125
+ <svg viewBox="0 0 24 24">
126
+ <path d="M15.5 4L7 12l8.5 8 1.5-1.6L10.6 12 17 5.6z"></path>
127
+ </svg>
128
+ </div>
129
+ </div>
130
+ <div class="tool-right">
131
+ <div class="tool-icon circle">
132
+ <svg viewBox="0 0 24 24">
133
+ <circle cx="12" cy="12" r="9"></circle>
134
+ <circle cx="12" cy="12" r="2" fill="#2b2b2b"></circle>
135
+ </svg>
136
+ </div>
137
+ <div class="tool-icon pencil">
138
+ <svg viewBox="0 0 24 24">
139
+ <path d="M3 17.25V21h3.75L17.81 9.94 14.06 6.19 3 17.25z"></path>
140
+ </svg>
141
+ </div>
142
+ <div class="tool-icon menu">
143
+ <svg viewBox="0 0 24 24">
144
+ <circle cx="5" cy="12" r="2"></circle>
145
+ <circle cx="12" cy="12" r="2"></circle>
146
+ <circle cx="19" cy="12" r="2"></circle>
147
+ </svg>
148
+ </div>
149
+ </div>
150
+ </div>
151
+
152
+ <!-- Content -->
153
+ <div class="content">
154
+ <div class="title">things to buy in the future</div>
155
+ <div class="edited">Edited: 10-10 23:07</div>
156
+ <div class="divider"></div>
157
+ <div class="note-text">new car, investment property, home</div>
158
+ </div>
159
+
160
+ <!-- Bottom ad banner -->
161
+ <div class="ad-banner">
162
+ <div class="ad-left-badge">[IMG: e-o-d badge]</div>
163
+ <div class="ad-text">
164
+ <div class="ad-title">Fun with Friends at e-o-d</div>
165
+ <div class="ad-sub">E-O-D Adventure Park</div>
166
+ </div>
167
+ <div class="ad-right">
168
+ <div class="ad-close">×</div>
169
+ <div class="ad-arrow">
170
+ <svg viewBox="0 0 24 24"><path d="M8 5l8 7-8 7V5z"></path></svg>
171
+ </div>
172
+ </div>
173
+ </div>
174
+
175
+ </div>
176
+ </body>
177
+ </html>
code/8896/8896_1.html ADDED
@@ -0,0 +1,398 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
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: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }
7
+ #render-target {
8
+ position: relative;
9
+ width: 1080px;
10
+ height: 2400px;
11
+ overflow: hidden;
12
+ background: #5f5a51; /* dimmed background behind the modal */
13
+ }
14
+
15
+ /* Top brown status/header bar */
16
+ .top-bar {
17
+ position: absolute;
18
+ top: 0;
19
+ left: 0;
20
+ width: 1080px;
21
+ height: 140px;
22
+ background: #7b5728;
23
+ }
24
+ .status-row {
25
+ position: absolute;
26
+ top: 18px;
27
+ left: 24px;
28
+ right: 24px;
29
+ height: 50px;
30
+ display: flex;
31
+ align-items: center;
32
+ justify-content: space-between;
33
+ color: #fff;
34
+ font-weight: 600;
35
+ font-size: 36px;
36
+ letter-spacing: 0.5px;
37
+ }
38
+ .status-icons {
39
+ display: flex;
40
+ align-items: center;
41
+ gap: 24px;
42
+ }
43
+ .status-dot {
44
+ width: 26px;
45
+ height: 26px;
46
+ border-radius: 50%;
47
+ background: rgba(255,255,255,0.85);
48
+ }
49
+ .status-battery {
50
+ width: 38px;
51
+ height: 22px;
52
+ border: 3px solid rgba(255,255,255,0.85);
53
+ border-radius: 6px;
54
+ position: relative;
55
+ }
56
+ .status-battery::after {
57
+ content: "";
58
+ position: absolute;
59
+ right: -8px;
60
+ top: 6px;
61
+ width: 6px;
62
+ height: 10px;
63
+ background: rgba(255,255,255,0.85);
64
+ border-radius: 3px;
65
+ }
66
+
67
+ /* Back arrow below bar */
68
+ .back-btn {
69
+ position: absolute;
70
+ top: 160px;
71
+ left: 28px;
72
+ width: 72px;
73
+ height: 72px;
74
+ display: flex;
75
+ align-items: center;
76
+ justify-content: center;
77
+ }
78
+ .back-btn svg { width: 48px; height: 48px; }
79
+ .back-btn svg path { stroke: #212121; stroke-width: 8; fill: none; stroke-linecap: round; stroke-linejoin: round; }
80
+
81
+ /* Title and content */
82
+ .title {
83
+ position: absolute;
84
+ top: 230px;
85
+ left: 30px;
86
+ right: 160px;
87
+ font-size: 72px;
88
+ font-weight: 800;
89
+ color: #121212;
90
+ line-height: 1.2;
91
+ }
92
+ .edited {
93
+ position: absolute;
94
+ top: 420px;
95
+ left: 30px;
96
+ font-size: 34px;
97
+ color: #9e9e9e;
98
+ }
99
+ .divider {
100
+ position: absolute;
101
+ top: 470px;
102
+ left: 30px;
103
+ width: 1020px;
104
+ height: 2px;
105
+ background: #cfcfcf;
106
+ opacity: 0.6;
107
+ }
108
+ .content-text {
109
+ position: absolute;
110
+ top: 540px;
111
+ left: 30px;
112
+ right: 40px;
113
+ font-size: 48px;
114
+ color: #1c1c1c;
115
+ }
116
+
117
+ /* Actions on the right: color ring + pencil + menu */
118
+ .actions {
119
+ position: absolute;
120
+ top: 210px;
121
+ right: 34px;
122
+ display: flex;
123
+ align-items: center;
124
+ gap: 36px;
125
+ }
126
+ .color-ring {
127
+ width: 76px;
128
+ height: 76px;
129
+ border-radius: 50%;
130
+ border: 10px solid #d4a040;
131
+ box-sizing: border-box;
132
+ position: relative;
133
+ background: transparent;
134
+ }
135
+ .color-ring::after {
136
+ content: "";
137
+ position: absolute;
138
+ width: 26px;
139
+ height: 26px;
140
+ background: #d4a040;
141
+ border-radius: 50%;
142
+ left: 50%;
143
+ top: 50%;
144
+ transform: translate(-50%,-50%);
145
+ }
146
+ .icon-btn svg { width: 60px; height: 60px; }
147
+ .icon-btn path { fill: #1f1f1f; }
148
+ .menu-dots { width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; }
149
+ .menu-dots span {
150
+ display: inline-block;
151
+ width: 12px;
152
+ height: 12px;
153
+ background: #1f1f1f;
154
+ border-radius: 50%;
155
+ margin: 5px 0;
156
+ }
157
+
158
+ /* Modal card */
159
+ .modal {
160
+ position: absolute;
161
+ top: 860px;
162
+ left: 60px;
163
+ width: 960px;
164
+ background: #ffffff;
165
+ border-radius: 32px;
166
+ box-shadow: 0 22px 60px rgba(0,0,0,0.35);
167
+ padding: 38px 40px 40px;
168
+ }
169
+ .modal-title {
170
+ font-size: 48px;
171
+ font-weight: 700;
172
+ color: #222;
173
+ margin-bottom: 30px;
174
+ }
175
+ .options-grid {
176
+ display: grid;
177
+ grid-template-columns: 1fr 1fr;
178
+ gap: 28px 30px;
179
+ }
180
+ .color-option {
181
+ height: 150px;
182
+ border-radius: 28px;
183
+ display: flex;
184
+ align-items: center;
185
+ padding: 0 34px;
186
+ box-sizing: border-box;
187
+ position: relative;
188
+ }
189
+ .color-option .dot {
190
+ width: 56px;
191
+ height: 56px;
192
+ border-radius: 50%;
193
+ margin-right: 28px;
194
+ flex: 0 0 56px;
195
+ }
196
+ .color-option .label {
197
+ font-size: 42px;
198
+ color: #111;
199
+ font-weight: 600;
200
+ }
201
+
202
+ /* Specific option colors */
203
+ .opt-others { background: #fff4e3; border: 6px solid #f2b55a; }
204
+ .opt-others .dot { background: #f2b55a; }
205
+
206
+ .opt-work { background: #eef3ff; }
207
+ .opt-work .dot { background: #3651f2; }
208
+
209
+ .opt-important { background: #ffeded; }
210
+ .opt-important .dot { background: #ef3a2c; }
211
+
212
+ .opt-personal { background: #eaf7ea; }
213
+ .opt-personal .dot { background: #0ac260; }
214
+
215
+ .opt-purple { background: #efeaff; }
216
+ .opt-purple .dot { background: #6a4ce7; }
217
+
218
+ .opt-pink { background: #f8ecf2; }
219
+ .opt-pink .dot { background: #f0b6cc; }
220
+
221
+ .opt-mint { background: #e5f9f8; }
222
+ .opt-mint .dot { background: #54d2c0; }
223
+
224
+ .opt-gray { background: #eef0f6; }
225
+ .opt-gray .dot { background: #757a80; }
226
+
227
+ .opt-empty { background: #ffffff; border: 4px solid #e6e9f2; }
228
+ .opt-empty .dot { background: #e6e9f2; }
229
+
230
+ /* Bottom ad bar */
231
+ .ad-bar {
232
+ position: absolute;
233
+ bottom: 0;
234
+ left: 0;
235
+ width: 1080px;
236
+ height: 180px;
237
+ background: #e9e9ea;
238
+ border-top: 1px solid #d0d0d0;
239
+ display: flex;
240
+ align-items: center;
241
+ justify-content: space-between;
242
+ padding: 0 24px;
243
+ box-sizing: border-box;
244
+ }
245
+ .ad-left {
246
+ display: flex;
247
+ align-items: center;
248
+ gap: 18px;
249
+ color: #333;
250
+ }
251
+ .ad-badge {
252
+ width: 120px;
253
+ height: 64px;
254
+ background: #E0E0E0;
255
+ border: 1px solid #BDBDBD;
256
+ display: flex;
257
+ align-items: center;
258
+ justify-content: center;
259
+ color: #555;
260
+ font-weight: 700;
261
+ border-radius: 8px;
262
+ font-size: 28px;
263
+ }
264
+ .ad-title {
265
+ font-size: 50px;
266
+ font-weight: 600;
267
+ color: #2a2a2a;
268
+ }
269
+ .ad-right {
270
+ display: flex;
271
+ align-items: center;
272
+ gap: 24px;
273
+ }
274
+ .ad-info {
275
+ width: 40px; height: 40px; border-radius: 50%; background: #2a8fd8; color: #fff;
276
+ display: flex; align-items: center; justify-content: center; font-weight: 700;
277
+ }
278
+ .share-btn {
279
+ width: 90px; height: 90px; background: #2a8fd8; border-radius: 20px; display: flex; align-items: center; justify-content: center;
280
+ }
281
+ .share-btn svg { width: 58px; height: 58px; }
282
+ .share-btn path { fill: #fff; }
283
+
284
+ /* Home indicator */
285
+ .home-indicator {
286
+ position: absolute;
287
+ bottom: 110px;
288
+ left: 50%;
289
+ transform: translateX(-50%);
290
+ width: 360px;
291
+ height: 12px;
292
+ background: #ffffff;
293
+ border-radius: 8px;
294
+ opacity: 0.85;
295
+ }
296
+ </style>
297
+ </head>
298
+ <body>
299
+ <div id="render-target">
300
+
301
+ <div class="top-bar">
302
+ <div class="status-row">
303
+ <div>11:42</div>
304
+ <div class="status-icons">
305
+ <div class="status-dot"></div>
306
+ <div class="status-dot"></div>
307
+ <div class="status-battery"></div>
308
+ </div>
309
+ </div>
310
+ </div>
311
+
312
+ <div class="back-btn">
313
+ <svg viewBox="0 0 48 48">
314
+ <path d="M30 8 L14 24 L30 40"></path>
315
+ </svg>
316
+ </div>
317
+
318
+ <div class="actions">
319
+ <div class="color-ring"></div>
320
+ <div class="icon-btn">
321
+ <svg viewBox="0 0 64 64">
322
+ <path d="M52 12 L22 42 L14 50 L18 34 L48 4 Z"></path>
323
+ </svg>
324
+ </div>
325
+ <div class="menu-dots">
326
+ <div>
327
+ <span></span><span></span><span></span>
328
+ </div>
329
+ </div>
330
+ </div>
331
+
332
+ <div class="title">things to buy in the future</div>
333
+ <div class="edited">Edited: 10-10 23:07</div>
334
+ <div class="divider"></div>
335
+ <div class="content-text">new car, investment property, home</div>
336
+
337
+ <div class="modal">
338
+ <div class="modal-title">Change Color</div>
339
+ <div class="options-grid">
340
+ <div class="color-option opt-others">
341
+ <div class="dot"></div>
342
+ <div class="label">Others</div>
343
+ </div>
344
+ <div class="color-option opt-work">
345
+ <div class="dot"></div>
346
+ <div class="label">Work</div>
347
+ </div>
348
+ <div class="color-option opt-important">
349
+ <div class="dot"></div>
350
+ <div class="label">Important</div>
351
+ </div>
352
+ <div class="color-option opt-personal">
353
+ <div class="dot"></div>
354
+ <div class="label">Personal</div>
355
+ </div>
356
+ <div class="color-option opt-purple">
357
+ <div class="dot"></div>
358
+ <div class="label">Purple</div>
359
+ </div>
360
+ <div class="color-option opt-pink">
361
+ <div class="dot"></div>
362
+ <div class="label">Pink</div>
363
+ </div>
364
+ <div class="color-option opt-mint">
365
+ <div class="dot"></div>
366
+ <div class="label">Mint</div>
367
+ </div>
368
+ <div class="color-option opt-gray">
369
+ <div class="dot"></div>
370
+ <div class="label">Gray</div>
371
+ </div>
372
+ <div class="color-option opt-empty">
373
+ <div class="dot"></div>
374
+ <div class="label"></div>
375
+ </div>
376
+ </div>
377
+ </div>
378
+
379
+ <div class="ad-bar">
380
+ <div class="ad-left">
381
+ <div class="ad-badge">e-o-d</div>
382
+ <div class="ad-title">Masti in Delhi</div>
383
+ </div>
384
+ <div class="ad-right">
385
+ <div class="ad-info">i</div>
386
+ <div class="share-btn">
387
+ <svg viewBox="0 0 64 64">
388
+ <path d="M26 44 L26 36 L14 36 L14 20 L26 20 L26 12 L48 28 Z"></path>
389
+ </svg>
390
+ </div>
391
+ </div>
392
+ </div>
393
+
394
+ <div class="home-indicator"></div>
395
+
396
+ </div>
397
+ </body>
398
+ </html>
code/8896/8896_2.html ADDED
@@ -0,0 +1,216 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="utf-8">
4
+ <title>Note Screen Mockup</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: #f6e7e7; /* pale pink background */
13
+ }
14
+
15
+ /* Top red app bar */
16
+ .topbar {
17
+ position: absolute;
18
+ top: 0;
19
+ left: 0;
20
+ width: 1080px;
21
+ height: 160px;
22
+ background: #e53935;
23
+ color: #fff;
24
+ }
25
+
26
+ /* status row */
27
+ .status {
28
+ position: absolute;
29
+ top: 18px;
30
+ left: 28px;
31
+ right: 28px;
32
+ height: 40px;
33
+ display: flex;
34
+ align-items: center;
35
+ justify-content: space-between;
36
+ font-size: 34px;
37
+ letter-spacing: 0.5px;
38
+ }
39
+ .status .icons {
40
+ display: flex;
41
+ align-items: center;
42
+ gap: 18px;
43
+ }
44
+ .status .icon-dot {
45
+ width: 20px;
46
+ height: 20px;
47
+ border-radius: 50%;
48
+ background: rgba(255,255,255,0.9);
49
+ }
50
+ .status .battery {
51
+ width: 40px;
52
+ height: 20px;
53
+ border: 2px solid #fff;
54
+ border-radius: 4px;
55
+ position: relative;
56
+ }
57
+ .status .battery::after {
58
+ content: "";
59
+ position: absolute;
60
+ right: -6px;
61
+ top: 6px;
62
+ width: 6px;
63
+ height: 8px;
64
+ background: #fff;
65
+ border-radius: 1px;
66
+ }
67
+
68
+ /* Content header area (below the red bar) */
69
+ .header-icons {
70
+ position: absolute;
71
+ top: 180px;
72
+ right: 36px;
73
+ display: flex;
74
+ align-items: center;
75
+ gap: 34px;
76
+ }
77
+
78
+ .back-btn {
79
+ position: absolute;
80
+ top: 182px;
81
+ left: 30px;
82
+ width: 64px;
83
+ height: 64px;
84
+ }
85
+
86
+ .title {
87
+ position: absolute;
88
+ top: 260px;
89
+ left: 30px;
90
+ right: 30px;
91
+ font-size: 72px;
92
+ font-weight: 700;
93
+ color: #121212;
94
+ line-height: 88px;
95
+ }
96
+
97
+ .edited {
98
+ position: absolute;
99
+ top: 408px;
100
+ left: 30px;
101
+ font-size: 34px;
102
+ color: #6b6b6b;
103
+ }
104
+
105
+ .divider {
106
+ position: absolute;
107
+ top: 460px;
108
+ left: 30px;
109
+ width: 1020px;
110
+ height: 1px;
111
+ background: #d8c8c8;
112
+ }
113
+
114
+ .note-text {
115
+ position: absolute;
116
+ top: 520px;
117
+ left: 30px;
118
+ right: 30px;
119
+ font-size: 52px;
120
+ color: #1a1a1a;
121
+ line-height: 74px;
122
+ }
123
+
124
+ /* Bottom ad placeholder */
125
+ .ad-banner {
126
+ position: absolute;
127
+ left: 0;
128
+ bottom: 120px;
129
+ width: 1080px;
130
+ height: 200px;
131
+ background: #E0E0E0;
132
+ border-top: 1px solid #BDBDBD;
133
+ border-bottom: 1px solid #BDBDBD;
134
+ display: flex;
135
+ align-items: center;
136
+ justify-content: center;
137
+ color: #757575;
138
+ font-size: 36px;
139
+ }
140
+
141
+ /* Home pill indicator */
142
+ .home-pill {
143
+ position: absolute;
144
+ bottom: 40px;
145
+ left: 50%;
146
+ transform: translateX(-50%);
147
+ width: 260px;
148
+ height: 12px;
149
+ background: #cfcfcf;
150
+ border-radius: 12px;
151
+ }
152
+
153
+ /* Simple icon styles */
154
+ .icon {
155
+ width: 60px;
156
+ height: 60px;
157
+ }
158
+ </style>
159
+ </head>
160
+ <body>
161
+ <div id="render-target">
162
+
163
+ <!-- Top red bar with status -->
164
+ <div class="topbar">
165
+ <div class="status">
166
+ <div>11:43</div>
167
+ <div class="icons">
168
+ <div class="icon-dot"></div>
169
+ <div class="icon-dot"></div>
170
+ <div class="icon-dot"></div>
171
+ <div class="battery"></div>
172
+ </div>
173
+ </div>
174
+ </div>
175
+
176
+ <!-- Back arrow -->
177
+ <svg class="back-btn" viewBox="0 0 48 48">
178
+ <path d="M28 10 L12 24 L28 38" stroke="#000" stroke-width="4" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
179
+ </svg>
180
+
181
+ <!-- Right-side header icons -->
182
+ <div class="header-icons">
183
+ <!-- Record circle -->
184
+ <svg class="icon" viewBox="0 0 48 48">
185
+ <circle cx="24" cy="24" r="20" fill="#f44336"/>
186
+ <circle cx="24" cy="24" r="8" fill="#ffffff"/>
187
+ </svg>
188
+ <!-- Pencil icon -->
189
+ <svg class="icon" viewBox="0 0 48 48">
190
+ <path d="M10 34 L14 38 L34 18 L30 14 Z" fill="#000"/>
191
+ <rect x="12" y="36" width="12" height="2" fill="#000"/>
192
+ </svg>
193
+ <!-- Kebab vertical -->
194
+ <svg class="icon" viewBox="0 0 48 48">
195
+ <circle cx="24" cy="10" r="4" fill="#000"/>
196
+ <circle cx="24" cy="24" r="4" fill="#000"/>
197
+ <circle cx="24" cy="38" r="4" fill="#000"/>
198
+ </svg>
199
+ </div>
200
+
201
+ <!-- Title and note metadata -->
202
+ <div class="title">things to buy in the future</div>
203
+ <div class="edited">Edited: 10–10 23:07</div>
204
+ <div class="divider"></div>
205
+
206
+ <!-- Note body -->
207
+ <div class="note-text">new car, investment property, home</div>
208
+
209
+ <!-- Bottom ad banner placeholder -->
210
+ <div class="ad-banner">[IMG: Ad banner - E-O-D Adventure Park]</div>
211
+
212
+ <!-- Bottom home pill -->
213
+ <div class="home-pill"></div>
214
+ </div>
215
+ </body>
216
+ </html>
code/8897/8897_1.html ADDED
@@ -0,0 +1,484 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Alibaba Mobile UI Mock</title>
5
+ <style>
6
+ body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; }
7
+ #render-target {
8
+ width: 1080px;
9
+ height: 2400px;
10
+ position: relative;
11
+ overflow: hidden;
12
+ background: #ffffff;
13
+ border-radius: 32px;
14
+ box-shadow: 0 8px 40px rgba(0,0,0,0.15);
15
+ color: #111;
16
+ }
17
+
18
+ /* Status bar */
19
+ .status-bar {
20
+ position: absolute;
21
+ top: 0;
22
+ left: 0;
23
+ width: 100%;
24
+ height: 120px;
25
+ padding: 24px 36px;
26
+ box-sizing: border-box;
27
+ display: flex;
28
+ align-items: center;
29
+ justify-content: space-between;
30
+ color: #222;
31
+ }
32
+ .status-left {
33
+ display: flex;
34
+ align-items: center;
35
+ gap: 18px;
36
+ font-weight: 600;
37
+ font-size: 38px;
38
+ }
39
+ .status-icons {
40
+ display: flex;
41
+ align-items: center;
42
+ gap: 20px;
43
+ }
44
+ .dot-icon {
45
+ width: 28px;
46
+ height: 28px;
47
+ border-radius: 50%;
48
+ background: #d9d9d9;
49
+ }
50
+ .wifi-icon, .battery-icon {
51
+ width: 40px; height: 40px;
52
+ }
53
+ .wifi-icon svg, .battery-icon svg { width: 100%; height: 100%; }
54
+
55
+ /* Header with tabs and search */
56
+ .header {
57
+ position: absolute;
58
+ top: 120px;
59
+ left: 0;
60
+ width: 100%;
61
+ padding: 24px 36px 16px 36px;
62
+ box-sizing: border-box;
63
+ }
64
+ .tabs {
65
+ display: flex;
66
+ gap: 40px;
67
+ font-size: 44px;
68
+ font-weight: 700;
69
+ }
70
+ .tab.active {
71
+ color: #111;
72
+ border-bottom: 6px solid #111;
73
+ padding-bottom: 12px;
74
+ }
75
+ .tab {
76
+ color: #666;
77
+ }
78
+ .search-bar {
79
+ margin-top: 24px;
80
+ height: 108px;
81
+ background: #f5f5f7;
82
+ border-radius: 54px;
83
+ border: 2px solid #e0e0e0;
84
+ box-sizing: border-box;
85
+ display: flex;
86
+ align-items: center;
87
+ padding: 0 28px;
88
+ gap: 18px;
89
+ }
90
+ .search-input {
91
+ flex: 1;
92
+ font-size: 38px;
93
+ color: #333;
94
+ }
95
+ .search-input span { color: #5f6368; }
96
+ .icon-btn {
97
+ width: 80px; height: 80px;
98
+ border-radius: 24px;
99
+ background: #fff;
100
+ border: 2px solid #dcdcdc;
101
+ display: flex; align-items: center; justify-content: center;
102
+ }
103
+ .icon-btn svg { width: 50px; height: 50px; }
104
+
105
+ /* Info line */
106
+ .info-line {
107
+ margin-top: 30px;
108
+ font-size: 32px;
109
+ color: #333;
110
+ display: flex;
111
+ align-items: center;
112
+ justify-content: space-between;
113
+ }
114
+ .chevron {
115
+ width: 40px; height: 40px;
116
+ }
117
+
118
+ /* Welcome section */
119
+ .welcome {
120
+ margin-top: 40px;
121
+ font-size: 64px;
122
+ font-weight: 800;
123
+ }
124
+
125
+ .quick-actions {
126
+ margin-top: 24px;
127
+ display: flex;
128
+ gap: 24px;
129
+ }
130
+ .qa-btn {
131
+ flex: 1;
132
+ height: 160px;
133
+ border-radius: 28px;
134
+ display: flex;
135
+ flex-direction: column;
136
+ gap: 16px;
137
+ padding: 24px;
138
+ box-sizing: border-box;
139
+ color: #fff;
140
+ font-size: 40px;
141
+ font-weight: 700;
142
+ }
143
+ .qa-btn.orange { background: #f26a2e; }
144
+ .qa-btn.blue { background: #2f6edb; }
145
+ .qa-btn.deepblue { background: #3856b5; }
146
+ .mini-icon {
147
+ width: 72px; height: 72px;
148
+ }
149
+ .mini-icon svg { width: 100%; height: 100%; }
150
+
151
+ /* Membership banner */
152
+ .member-banner {
153
+ margin-top: 26px;
154
+ background: #f1f6ff;
155
+ border: 2px solid #dbe7ff;
156
+ border-radius: 28px;
157
+ padding: 28px;
158
+ display: flex;
159
+ align-items: center;
160
+ justify-content: space-between;
161
+ font-size: 36px;
162
+ color: #2a3d63;
163
+ }
164
+ .banner-join {
165
+ background: #fff;
166
+ color: #2a3d63;
167
+ border: 2px solid #c9d8ff;
168
+ border-radius: 40px;
169
+ padding: 16px 32px;
170
+ font-weight: 700;
171
+ }
172
+ .banner-bold { font-weight: 800; }
173
+
174
+ /* Top ranking section */
175
+ .section-title {
176
+ margin-top: 40px;
177
+ display: flex; align-items: center; justify-content: space-between;
178
+ }
179
+ .section-title .title {
180
+ font-size: 66px; font-weight: 800;
181
+ }
182
+ .arrow-box { width: 64px; height: 64px; }
183
+ .cards {
184
+ margin-top: 24px;
185
+ display: flex;
186
+ gap: 24px;
187
+ }
188
+ .card {
189
+ width: 336px;
190
+ border-radius: 28px;
191
+ background: #fff;
192
+ border: 2px solid #eeeeee;
193
+ box-shadow: 0 8px 24px rgba(0,0,0,0.06);
194
+ padding: 24px;
195
+ box-sizing: border-box;
196
+ }
197
+ .card .label {
198
+ font-size: 42px; font-weight: 800; color: #222;
199
+ margin-bottom: 16px;
200
+ }
201
+ .img-box {
202
+ width: 288px; height: 288px;
203
+ background: #E0E0E0;
204
+ border: 1px solid #BDBDBD;
205
+ border-radius: 18px;
206
+ display: flex; align-items: center; justify-content: center;
207
+ color: #757575; text-align: center; font-size: 30px; padding: 12px;
208
+ margin-bottom: 18px;
209
+ }
210
+ .card .caption {
211
+ font-size: 40px; font-weight: 700; color: #222; line-height: 1.2;
212
+ }
213
+ .card .subcaption {
214
+ margin-top: 10px;
215
+ font-size: 34px; color: #666;
216
+ }
217
+
218
+ /* Coupon toast */
219
+ .toast {
220
+ position: absolute;
221
+ left: 48px;
222
+ bottom: 360px;
223
+ width: 984px;
224
+ background: #fff;
225
+ border: 2px solid #eaeaea;
226
+ border-radius: 28px;
227
+ box-shadow: 0 8px 28px rgba(0,0,0,0.12);
228
+ padding: 28px;
229
+ display: flex; align-items: center; justify-content: space-between;
230
+ box-sizing: border-box;
231
+ font-size: 38px; color: #222;
232
+ }
233
+ .toast .go-btn {
234
+ background: #ff7f2a;
235
+ color: #fff;
236
+ border: none;
237
+ padding: 18px 36px;
238
+ border-radius: 34px;
239
+ font-size: 38px;
240
+ font-weight: 800;
241
+ }
242
+ .toast .help {
243
+ width: 68px; height: 68px;
244
+ border: 2px solid #e0e0e0;
245
+ border-radius: 24px;
246
+ display: flex; align-items: center; justify-content: center;
247
+ margin-left: 16px;
248
+ background: #fff;
249
+ }
250
+
251
+ /* Footer info */
252
+ .footer-info {
253
+ position: absolute;
254
+ bottom: 292px;
255
+ left: 48px;
256
+ font-size: 36px;
257
+ color: #555;
258
+ }
259
+
260
+ /* Bottom nav bar */
261
+ .bottom-nav {
262
+ position: absolute;
263
+ bottom: 0; left: 0; width: 100%;
264
+ height: 168px;
265
+ border-top: 2px solid #ececec;
266
+ background: #fff;
267
+ display: flex; align-items: center; justify-content: space-around;
268
+ box-sizing: border-box;
269
+ }
270
+ .nav-item {
271
+ display: flex; flex-direction: column; align-items: center; gap: 12px;
272
+ font-size: 34px; color: #333;
273
+ }
274
+ .nav-icon {
275
+ width: 88px; height: 88px; border-radius: 28px;
276
+ display: flex; align-items: center; justify-content: center;
277
+ }
278
+ .nav-icon svg { width: 60px; height: 60px; }
279
+ .nav-item.active .nav-icon { background: #ff6f00; color: #fff; }
280
+ .badge {
281
+ position: absolute; right: -6px; top: -6px;
282
+ width: 20px; height: 20px; background: #ff4d4f; border-radius: 50%;
283
+ }
284
+
285
+ </style>
286
+ </head>
287
+ <body>
288
+ <div id="render-target">
289
+
290
+ <!-- Status bar -->
291
+ <div class="status-bar">
292
+ <div class="status-left">
293
+ <div>10:45</div>
294
+ <div class="dot-icon"></div>
295
+ </div>
296
+ <div class="status-icons">
297
+ <div class="wifi-icon">
298
+ <svg viewBox="0 0 24 24">
299
+ <path d="M2 8c5-4 15-4 20 0" stroke="#444" stroke-width="2" fill="none" stroke-linecap="round"/>
300
+ <path d="M5 12c3-3 11-3 14 0" stroke="#444" stroke-width="2" fill="none" stroke-linecap="round"/>
301
+ <path d="M9 15c2-2 4-2 6 0" stroke="#444" stroke-width="2" fill="none" stroke-linecap="round"/>
302
+ <circle cx="12" cy="18" r="1.5" fill="#444"/>
303
+ </svg>
304
+ </div>
305
+ <div class="battery-icon">
306
+ <svg viewBox="0 0 24 24">
307
+ <rect x="2" y="6" width="18" height="12" rx="2" ry="2" stroke="#444" stroke-width="2" fill="none"/>
308
+ <rect x="4" y="8" width="12" height="8" fill="#4caf50"/>
309
+ <rect x="20" y="10" width="2" height="4" fill="#444"/>
310
+ </svg>
311
+ </div>
312
+ </div>
313
+ </div>
314
+
315
+ <!-- Header: tabs and search -->
316
+ <div class="header">
317
+ <div class="tabs">
318
+ <div class="tab active">Products</div>
319
+ <div class="tab">Manufacturers</div>
320
+ </div>
321
+
322
+ <div class="search-bar">
323
+ <div class="icon-btn" aria-label="camera">
324
+ <svg viewBox="0 0 24 24">
325
+ <path d="M7 6h4l1-2h4l1 2h4v12H3V6h4z" stroke="#666" stroke-width="1.6" fill="none"/>
326
+ <circle cx="12" cy="12" r="3.2" fill="#666"/>
327
+ </svg>
328
+ </div>
329
+ <div class="search-input"><span>furniture bedroom sets</span></div>
330
+ <div class="icon-btn" aria-label="search">
331
+ <svg viewBox="0 0 24 24">
332
+ <circle cx="11" cy="11" r="7" stroke="#333" stroke-width="2" fill="none"/>
333
+ <line x1="16.5" y1="16.5" x2="22" y2="22" stroke="#333" stroke-width="2" stroke-linecap="round"/>
334
+ </svg>
335
+ </div>
336
+ </div>
337
+
338
+ <div class="info-line">
339
+ <div>You are protected when you source on Alibaba.com</div>
340
+ <div class="chevron">
341
+ <svg viewBox="0 0 24 24"><polyline points="8,4 16,12 8,20" fill="none" stroke="#777" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
342
+ </div>
343
+ </div>
344
+
345
+ <div class="welcome">Welcome!</div>
346
+
347
+ <div class="quick-actions">
348
+ <div class="qa-btn orange">
349
+ <div style="display:flex;gap:12px;align-items:center;">
350
+ <div class="mini-icon">
351
+ <svg viewBox="0 0 24 24">
352
+ <rect x="3" y="3" width="7" height="7" fill="#fff"/>
353
+ <rect x="14" y="3" width="7" height="7" fill="#fff"/>
354
+ <rect x="3" y="14" width="7" height="7" fill="#fff"/>
355
+ <rect x="14" y="14" width="7" height="7" fill="#fff"/>
356
+ </svg>
357
+ </div>
358
+ <div>All categories</div>
359
+ </div>
360
+ </div>
361
+ <div class="qa-btn blue">
362
+ <div style="display:flex;gap:12px;align-items:center;">
363
+ <div class="mini-icon">
364
+ <svg viewBox="0 0 24 24">
365
+ <path d="M3 6h14M3 12h18M3 18h10" stroke="#fff" stroke-width="2" stroke-linecap="round"/>
366
+ </svg>
367
+ </div>
368
+ <div>Alibaba.com Membership</div>
369
+ </div>
370
+ </div>
371
+ <div class="qa-btn deepblue">
372
+ <div style="display:flex;gap:12px;align-items:center;">
373
+ <div class="mini-icon">
374
+ <svg viewBox="0 0 24 24">
375
+ <path d="M3 6h18M3 12h18M3 18h12" stroke="#fff" stroke-width="2" stroke-linecap="round"/>
376
+ </svg>
377
+ </div>
378
+ <div>Request Quotation</div>
379
+ </div>
380
+ </div>
381
+ </div>
382
+
383
+ <div class="member-banner">
384
+ <div>Join Alibaba.com Membership to enjoy curated benefits at <span class="banner-bold">zero cost</span></div>
385
+ <div class="banner-join">Join</div>
386
+ </div>
387
+
388
+ <div class="section-title">
389
+ <div class="title">Top ranking</div>
390
+ <div class="arrow-box">
391
+ <svg viewBox="0 0 24 24"><path d="M5 12h12M12 5l7 7-7 7" stroke="#333" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>
392
+ </div>
393
+ </div>
394
+
395
+ <div class="cards">
396
+ <!-- Card 1 -->
397
+ <div class="card">
398
+ <div class="label">Most popular</div>
399
+ <div class="img-box">[IMG: Loose Wave Front Wig mannequin]</div>
400
+ <div class="caption">Loose Wave Front Wigs</div>
401
+ </div>
402
+
403
+ <!-- Card 2 -->
404
+ <div class="card">
405
+ <div class="label">Hot selling</div>
406
+ <div class="img-box">[IMG: Full Strip Eyelashes set]</div>
407
+ <div class="caption">Full Strip Eyelashes</div>
408
+ <div class="subcaption">1.3M+ views</div>
409
+ </div>
410
+
411
+ <!-- Card 3 -->
412
+ <div class="card">
413
+ <div class="label">Trending</div>
414
+ <div class="img-box">[IMG: Pickup truck exterior]</div>
415
+ <div class="caption">Automotive Accessories</div>
416
+ <div class="subcaption">6k+ views</div>
417
+ </div>
418
+ </div>
419
+ </div>
420
+
421
+ <!-- Coupon Toast -->
422
+ <div class="toast">
423
+ <div>Enjoy new user coupons up to US $80 off!</div>
424
+ <div style="display:flex;align-items:center;gap:14px;">
425
+ <button class="go-btn">Go</button>
426
+ <div class="help">
427
+ <svg viewBox="0 0 24 24">
428
+ <circle cx="12" cy="12" r="10" stroke="#888" stroke-width="1.6" fill="none"/>
429
+ <text x="12" y="16" text-anchor="middle" font-size="12" fill="#888" font-family="Arial">?</text>
430
+ </svg>
431
+ </div>
432
+ </div>
433
+ </div>
434
+
435
+ <div class="footer-info">73,000+ products added today</div>
436
+
437
+ <!-- Bottom Navigation -->
438
+ <div class="bottom-nav">
439
+ <div class="nav-item active">
440
+ <div class="nav-icon">
441
+ <svg viewBox="0 0 24 24">
442
+ <path d="M3 11l9-7 9 7v9H15v-6H9v6H3z" fill="#fff"/>
443
+ </svg>
444
+ </div>
445
+ <div>Home</div>
446
+ </div>
447
+ <div class="nav-item">
448
+ <div class="nav-icon" style="background:#f4f4f4;">
449
+ <svg viewBox="0 0 24 24">
450
+ <path d="M3 12h18M3 6h18M3 18h12" stroke="#333" stroke-width="2" stroke-linecap="round"/>
451
+ </svg>
452
+ </div>
453
+ <div>Tips</div>
454
+ </div>
455
+ <div class="nav-item">
456
+ <div class="nav-icon" style="background:#f4f4f4; position:relative;">
457
+ <svg viewBox="0 0 24 24">
458
+ <path d="M4 4h16v12H13l-4 4v-4H4z" stroke="#333" stroke-width="2" fill="none" stroke-linejoin="round"/>
459
+ </svg>
460
+ </div>
461
+ <div>Messenger</div>
462
+ </div>
463
+ <div class="nav-item">
464
+ <div class="nav-icon" style="background:#f4f4f4;">
465
+ <svg viewBox="0 0 24 24">
466
+ <path d="M6 6h14l-2 10H8L6 6zM8 18a2 2 0 100 4 2 2 0 000-4zm10 0a2 2 0 100 4 2 2 0 000-4z" stroke="#333" stroke-width="1.6" fill="none"/>
467
+ </svg>
468
+ </div>
469
+ <div>Cart</div>
470
+ </div>
471
+ <div class="nav-item" style="position:relative;">
472
+ <div class="nav-icon" style="background:#f4f4f4; position:relative;">
473
+ <div class="badge"></div>
474
+ <svg viewBox="0 0 24 24">
475
+ <path d="M12 12a5 5 0 100-10 5 5 0 000 10zM3 22c1-5 7-7 9-7s8 2 9 7" stroke="#333" stroke-width="2" fill="none" stroke-linecap="round"/>
476
+ </svg>
477
+ </div>
478
+ <div>My Alibaba</div>
479
+ </div>
480
+ </div>
481
+
482
+ </div>
483
+ </body>
484
+ </html>
code/8897/8897_2.html ADDED
@@ -0,0 +1,284 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8" />
4
+ <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
5
+ <title>Search 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: #FFFFFF;
14
+ color: #1d1d1d;
15
+ }
16
+
17
+ /* Status bar */
18
+ .status-bar {
19
+ height: 90px;
20
+ padding: 0 36px;
21
+ display: flex;
22
+ align-items: center;
23
+ justify-content: space-between;
24
+ color: #222;
25
+ font-weight: 600;
26
+ font-size: 36px;
27
+ }
28
+ .status-icons { display: flex; gap: 22px; align-items: center; }
29
+ .dot { width: 18px; height: 18px; border-radius: 50%; background: #bbb; display: inline-block; }
30
+ .tiny-icon {
31
+ width: 32px; height: 18px; border: 2px solid #444; border-radius: 3px; position: relative;
32
+ }
33
+ .tiny-icon:after {
34
+ content: ""; position: absolute; right: -6px; top: 4px; width: 4px; height: 10px; background: #444; border-radius: 1px;
35
+ }
36
+
37
+ /* Search row */
38
+ .search-row {
39
+ display: flex;
40
+ align-items: center;
41
+ gap: 22px;
42
+ padding: 10px 24px 24px 24px;
43
+ }
44
+ .icon-btn {
45
+ width: 64px; height: 64px; border-radius: 18px; display: flex; align-items: center; justify-content: center; cursor: default;
46
+ }
47
+ .icon-btn svg { width: 40px; height: 40px; }
48
+ .search-pill {
49
+ flex: 1;
50
+ height: 96px;
51
+ border-radius: 48px;
52
+ background: #F2F2F2;
53
+ display: flex;
54
+ align-items: center;
55
+ padding: 0 26px;
56
+ gap: 16px;
57
+ border: 1px solid #E3E3E3;
58
+ }
59
+ .search-placeholder {
60
+ color: #9A9A9A;
61
+ font-size: 36px;
62
+ flex: 1;
63
+ }
64
+ .cam {
65
+ width: 72px; height: 72px; border-radius: 22px; background: #e9e9e9; display: flex; align-items: center; justify-content: center; border: 1px solid #D6D6D6;
66
+ }
67
+ .cam svg { width: 40px; height: 40px; }
68
+
69
+ /* Sections */
70
+ .section {
71
+ padding: 18px 36px;
72
+ }
73
+ .row-between {
74
+ display: flex; align-items: center; justify-content: space-between;
75
+ }
76
+ .title { font-size: 40px; font-weight: 700; }
77
+ .right-grey { color: #8a8a8a; display: flex; align-items: center; gap: 10px; font-size: 34px; }
78
+
79
+ /* List */
80
+ .list { margin-top: 10px; border-top: 1px solid #EEE; }
81
+ .list-item {
82
+ padding: 32px 6px;
83
+ font-size: 44px;
84
+ color: #242424;
85
+ border-bottom: 1px solid #EEE;
86
+ }
87
+
88
+ /* Explore ideas */
89
+ .cards {
90
+ display: flex;
91
+ gap: 24px;
92
+ padding: 16px 36px 0 36px;
93
+ }
94
+ .card {
95
+ width: 492px;
96
+ height: 210px;
97
+ background: #FFF7F2;
98
+ border: 1px solid #F0D7C7;
99
+ border-radius: 22px;
100
+ padding: 18px;
101
+ display: flex;
102
+ gap: 16px;
103
+ }
104
+ .card .img {
105
+ width: 170px; height: 170px;
106
+ background: #E0E0E0; border: 1px solid #BDBDBD; border-radius: 12px;
107
+ display: flex; align-items: center; justify-content: center; color: #757575; font-size: 26px; text-align: center; padding: 8px;
108
+ }
109
+ .card .txt { font-size: 40px; font-weight: 700; color: #222; line-height: 1.1; }
110
+
111
+ /* Keyboard overlay */
112
+ .keyboard {
113
+ position: absolute;
114
+ bottom: 0; left: 0; right: 0;
115
+ height: 900px;
116
+ background: #1f1612;
117
+ border-top-left-radius: 26px;
118
+ border-top-right-radius: 26px;
119
+ color: #e9d2c3;
120
+ box-shadow: 0 -6px 20px rgba(0,0,0,0.25);
121
+ }
122
+ .kb-top-row {
123
+ display: flex; align-items: center; justify-content: space-between;
124
+ padding: 22px 28px;
125
+ }
126
+ .kb-badge {
127
+ width: 70px; height: 70px; background: #2c211c; border-radius: 18px; display: flex; align-items: center; justify-content: center;
128
+ border: 1px solid #3b2e28; color: #e9d2c3; font-weight: 700;
129
+ }
130
+ .keys {
131
+ padding: 8px 20px;
132
+ }
133
+ .key-row { display: flex; gap: 18px; justify-content: center; margin: 18px 0; }
134
+ .key {
135
+ background: #2c211c;
136
+ border: 1px solid #3b2e28;
137
+ color: #f0dbc9;
138
+ width: 88px; height: 110px;
139
+ border-radius: 22px;
140
+ display: flex; align-items: center; justify-content: center;
141
+ font-size: 48px;
142
+ box-shadow: inset 0 -3px 0 rgba(0,0,0,0.25);
143
+ }
144
+ .key.wide { width: 128px; }
145
+ .space-row { display: flex; align-items: center; gap: 18px; justify-content: center; margin-top: 8px; padding: 0 24px; }
146
+ .space { flex: 1; height: 110px; border-radius: 22px; background: #2c211c; border: 1px solid #3b2e28; }
147
+ .period { width: 110px; height: 110px; border-radius: 22px; background: #2c211c; border: 1px solid #3b2e28; display:flex; align-items:center; justify-content:center; font-size:54px; color:#f0dbc9; }
148
+ .search-float {
149
+ width: 150px; height: 150px; border-radius: 46px; background: #ffd9c4; display: flex; align-items: center; justify-content: center;
150
+ position: absolute; right: 26px; bottom: 30px; box-shadow: 0 6px 16px rgba(0,0,0,0.35);
151
+ }
152
+ .search-float svg { width: 60px; height: 60px; stroke: #3a2a22; }
153
+
154
+ /* helper */
155
+ .chevron svg, .refresh svg { width: 40px; height: 40px; }
156
+ </style>
157
+ </head>
158
+ <body>
159
+ <div id="render-target">
160
+
161
+ <!-- Status bar -->
162
+ <div class="status-bar">
163
+ <div>10:46</div>
164
+ <div class="status-icons">
165
+ <span class="dot"></span>
166
+ <svg width="34" height="34" viewBox="0 0 24 24" fill="none" stroke="#444" stroke-width="2"><path d="M2 8c4-4 16-4 20 0v8c-4 4-16 4-20 0V8z"/><circle cx="12" cy="12" r="3" /></svg>
167
+ <div class="tiny-icon"></div>
168
+ </div>
169
+ </div>
170
+
171
+ <!-- Search Row -->
172
+ <div class="search-row">
173
+ <div class="icon-btn">
174
+ <svg viewBox="0 0 24 24" fill="none" stroke="#333" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
175
+ <path d="M15 18l-6-6 6-6"/>
176
+ </svg>
177
+ </div>
178
+ <div class="search-pill">
179
+ <div class="search-placeholder">king size bedsheets</div>
180
+ <div class="cam">
181
+ <svg viewBox="0 0 24 24" fill="none" stroke="#555" stroke-width="2">
182
+ <rect x="3" y="6" width="18" height="12" rx="2"></rect>
183
+ <circle cx="12" cy="12" r="3"></circle>
184
+ </svg>
185
+ </div>
186
+ </div>
187
+ </div>
188
+
189
+ <!-- Browse categories -->
190
+ <div class="section row-between">
191
+ <div class="title">Browse categories</div>
192
+ <div class="chevron">
193
+ <svg viewBox="0 0 24 24" fill="none" stroke="#999" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
194
+ <path d="M9 18l6-6-6-6"/>
195
+ </svg>
196
+ </div>
197
+ </div>
198
+
199
+ <!-- Recommended -->
200
+ <div class="section row-between" style="padding-top: 6px;">
201
+ <div class="title" style="font-size: 42px;">Recommended for you</div>
202
+ <div class="right-grey">
203
+ <span>Change</span>
204
+ <span class="refresh">
205
+ <svg viewBox="0 0 24 24" fill="none" stroke="#8a8a8a" stroke-width="2">
206
+ <path d="M21 12a9 9 0 1 1-2.64-6.36"/><polyline points="21 3 21 9 15 9"/>
207
+ </svg>
208
+ </span>
209
+ </div>
210
+ </div>
211
+
212
+ <!-- List of suggestions -->
213
+ <div class="list">
214
+ <div class="list-item">bed room furnitures</div>
215
+ <div class="list-item">bedroom sets</div>
216
+ <div class="list-item">double bed</div>
217
+ <div class="list-item">king size bedsheets</div>
218
+ <div class="list-item">bunk bed</div>
219
+ <div class="list-item">king bed frame</div>
220
+ </div>
221
+
222
+ <!-- Explore ideas -->
223
+ <div class="section" style="padding-bottom: 0;">
224
+ <div class="title">Explore ideas</div>
225
+ </div>
226
+ <div class="cards">
227
+ <div class="card">
228
+ <div class="img">[IMG: Bed graphic]</div>
229
+ <div class="txt">One-stop solutions</div>
230
+ </div>
231
+ <div class="card">
232
+ <div class="img">[IMG: Sofa set]</div>
233
+ <div class="txt">Easy Return items</div>
234
+ </div>
235
+ </div>
236
+
237
+ <!-- Keyboard Overlay -->
238
+ <div class="keyboard">
239
+ <div class="kb-top-row">
240
+ <div class="kb-badge">▦</div>
241
+ <div class="kb-badge">😊</div>
242
+ <div class="kb-badge">GIF</div>
243
+ <div class="kb-badge">⚙</div>
244
+ <div class="kb-badge">翻</div>
245
+ <div class="kb-badge">🎨</div>
246
+ <div class="kb-badge">🎙</div>
247
+ </div>
248
+
249
+ <div class="keys">
250
+ <div class="key-row">
251
+ <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>
252
+ <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>
253
+ </div>
254
+ <div class="key-row">
255
+ <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>
256
+ <div class="key">h</div><div class="key">j</div><div class="key">k</div><div class="key">l</div>
257
+ </div>
258
+ <div class="key-row">
259
+ <div class="key wide">⇧</div>
260
+ <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>
261
+ <div class="key">n</div><div class="key">m</div>
262
+ <div class="key wide">⌫</div>
263
+ </div>
264
+
265
+ <div class="space-row">
266
+ <div class="key wide">?123</div>
267
+ <div class="key">,</div>
268
+ <div class="key">😀</div>
269
+ <div class="space"></div>
270
+ <div class="key">.</div>
271
+ </div>
272
+ </div>
273
+
274
+ <div class="search-float">
275
+ <svg viewBox="0 0 24 24" fill="none" stroke-width="2">
276
+ <circle cx="11" cy="11" r="7"></circle>
277
+ <line x1="16.5" y1="16.5" x2="22" y2="22"></line>
278
+ </svg>
279
+ </div>
280
+ </div>
281
+
282
+ </div>
283
+ </body>
284
+ </html>
code/8897/8897_3.html ADDED
@@ -0,0 +1,222 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Search Suggestions UI</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: #ffffff;
11
+ }
12
+
13
+ /* Status bar */
14
+ .status-bar {
15
+ height: 100px;
16
+ padding: 0 30px;
17
+ display: flex; align-items: center; justify-content: space-between;
18
+ color: #2b2b2b; font-weight: 500; font-size: 42px;
19
+ }
20
+ .status-right { display: flex; align-items: center; gap: 24px; }
21
+ .tiny-icon { width: 34px; height: 34px; border-radius: 50%; background: #9e9e9e; }
22
+
23
+ /* Search header */
24
+ .search-header {
25
+ height: 150px;
26
+ display: flex; align-items: center;
27
+ padding: 0 24px;
28
+ gap: 24px;
29
+ }
30
+ .icon-btn {
31
+ width: 86px; height: 86px; border-radius: 43px;
32
+ display: flex; align-items: center; justify-content: center;
33
+ background: transparent;
34
+ }
35
+ .icon-btn svg { width: 44px; height: 44px; fill: #2b2b2b; }
36
+ .search-box {
37
+ flex: 1; height: 100px; border-radius: 50px;
38
+ background: #f1f1f1; display: flex; align-items: center;
39
+ padding: 0 30px; gap: 20px; position: relative;
40
+ }
41
+ .search-text {
42
+ font-size: 44px; color: #222222; letter-spacing: 0.2px;
43
+ }
44
+ .clear-x {
45
+ margin-left: auto;
46
+ width: 56px; height: 56px; border-radius: 28px;
47
+ display: flex; align-items: center; justify-content: center;
48
+ }
49
+ .clear-x svg { width: 36px; height: 36px; stroke: #7a7a7a; stroke-width: 6; }
50
+
51
+ /* Suggestions */
52
+ .suggestions { border-top: 1px solid #eeeeee; }
53
+ .suggestion {
54
+ height: 135px; display: flex; align-items: center;
55
+ padding: 0 30px; border-bottom: 1px solid #eeeeee;
56
+ gap: 10px;
57
+ }
58
+ .s-text { font-size: 46px; color: #222; }
59
+ .s-grey { color: #9e9e9e; }
60
+ .go-icon {
61
+ margin-left: auto; width: 42px; height: 42px;
62
+ display: flex; align-items: center; justify-content: center; color: #757575;
63
+ }
64
+ .go-icon svg { width: 42px; height: 42px; fill: #757575; }
65
+
66
+ /* Keyboard */
67
+ .keyboard {
68
+ position: absolute; left: 0; bottom: 0;
69
+ width: 100%; height: 1000px;
70
+ background: #2b221e; color: #e9d7c8;
71
+ box-shadow: 0 -6px 16px rgba(0,0,0,0.15);
72
+ padding: 22px 22px 26px 22px;
73
+ }
74
+ .kb-suggestions {
75
+ display: flex; gap: 30px; padding: 10px 10px 26px 10px;
76
+ }
77
+ .chip {
78
+ background: #3a2f29; color: #e9d7c8;
79
+ padding: 14px 26px; border-radius: 28px; font-size: 38px;
80
+ }
81
+ .kb-row { display: flex; gap: 16px; padding: 12px 10px; }
82
+ .key {
83
+ flex: 1; height: 120px; background: #3a2f29;
84
+ border-radius: 20px; display: flex; align-items: center; justify-content: center;
85
+ font-size: 50px;
86
+ }
87
+ .key.small { flex: 0 0 90px; }
88
+ .key.wide { flex: 2.5; }
89
+ .key.xwide { flex: 4.5; }
90
+ .key.icon svg { width: 48px; height: 48px; fill: #e9d7c8; }
91
+ .key.round {
92
+ height: 120px; width: 120px; border-radius: 60px; flex: 0 0 120px;
93
+ }
94
+ .keyboard-bottom {
95
+ display: flex; align-items: center; gap: 18px; padding: 12px 10px;
96
+ }
97
+ .kbd-spacer { flex: 1; }
98
+ </style>
99
+ </head>
100
+ <body>
101
+ <div id="render-target">
102
+
103
+ <!-- Status Bar -->
104
+ <div class="status-bar">
105
+ <div>10:46</div>
106
+ <div class="status-right">
107
+ <div class="tiny-icon" title="Status icon"></div>
108
+ <div class="tiny-icon" title="Wi-Fi"></div>
109
+ <div class="tiny-icon" title="Battery"></div>
110
+ </div>
111
+ </div>
112
+
113
+ <!-- Search Header -->
114
+ <div class="search-header">
115
+ <div class="icon-btn" title="Back">
116
+ <svg viewBox="0 0 24 24"><path d="M15.5 4.5L6 12l9.5 7.5v-3.5L9.5 12l6-4.5z"/></svg>
117
+ </div>
118
+ <div class="search-box">
119
+ <div class="search-text">king size bed</div>
120
+ <div class="clear-x" title="Clear">
121
+ <svg viewBox="0 0 24 24">
122
+ <line x1="5" y1="5" x2="19" y2="19"></line>
123
+ <line x1="19" y1="5" x2="5" y2="19"></line>
124
+ </svg>
125
+ </div>
126
+ </div>
127
+ </div>
128
+
129
+ <!-- Suggestions List -->
130
+ <div class="suggestions">
131
+ <div class="suggestion">
132
+ <span class="s-text s-grey">king size bed</span>&nbsp;<span class="s-text">european style</span>
133
+ <div class="go-icon">
134
+ <svg viewBox="0 0 24 24"><path d="M4 12h12l-5-5 1.4-1.4L21.8 15l-9.4 9.4L11 23l5-5H4z"/></svg>
135
+ </div>
136
+ </div>
137
+ <div class="suggestion">
138
+ <span class="s-text s-grey">king size bed</span>&nbsp;<span class="s-text">with tv</span>
139
+ <div class="go-icon">
140
+ <svg viewBox="0 0 24 24"><path d="M4 12h12l-5-5 1.4-1.4L21.8 15l-9.4 9.4L11 23l5-5H4z"/></svg>
141
+ </div>
142
+ </div>
143
+ <div class="suggestion">
144
+ <span class="s-text s-grey">king size bed</span><span class="s-text">sheets</span>
145
+ <div class="go-icon">
146
+ <svg viewBox="0 0 24 24"><path d="M4 12h12l-5-5 1.4-1.4L21.8 15l-9.4 9.4L11 23l5-5H4z"/></svg>
147
+ </div>
148
+ </div>
149
+ <div class="suggestion">
150
+ <span class="s-text s-grey">king size bed</span>
151
+ <div class="go-icon">
152
+ <svg viewBox="0 0 24 24"><path d="M4 12h12l-5-5 1.4-1.4L21.8 15l-9.4 9.4L11 23l5-5H4z"/></svg>
153
+ </div>
154
+ </div>
155
+ <div class="suggestion">
156
+ <span class="s-text s-grey">king size bed</span>&nbsp;<span class="s-text">frame</span>
157
+ <div class="go-icon">
158
+ <svg viewBox="0 0 24 24"><path d="M4 12h12l-5-5 1.4-1.4L21.8 15l-9.4 9.4L11 23l5-5H4z"/></svg>
159
+ </div>
160
+ </div>
161
+ <div class="suggestion">
162
+ <span class="s-text s-grey">king size bed</span>&nbsp;<span class="s-text">room</span>
163
+ <div class="go-icon">
164
+ <svg viewBox="0 0 24 24"><path d="M4 12h12l-5-5 1.4-1.4L21.8 15l-9.4 9.4L11 23l5-5H4z"/></svg>
165
+ </div>
166
+ </div>
167
+ <div class="suggestion">
168
+ <span class="s-text s-grey">king size bed</span>&nbsp;<span class="s-text">frame with storage</span>
169
+ <div class="go-icon">
170
+ <svg viewBox="0 0 24 24"><path d="M4 12h12l-5-5 1.4-1.4L21.8 15l-9.4 9.4L11 23l5-5H4z"/></svg>
171
+ </div>
172
+ </div>
173
+ <div class="suggestion">
174
+ <span class="s-text s-grey">king size bed</span>&nbsp;<span class="s-text">one set</span>
175
+ <div class="go-icon">
176
+ <svg viewBox="0 0 24 24"><path d="M4 12h12l-5-5 1.4-1.4L21.8 15l-9.4 9.4L11 23l5-5H4z"/></svg>
177
+ </div>
178
+ </div>
179
+ </div>
180
+
181
+ <!-- Keyboard -->
182
+ <div class="keyboard">
183
+ <div class="kb-suggestions">
184
+ <div class="chip">bed</div>
185
+ <div class="chip">beds</div>
186
+ <div class="chip">🛏️</div>
187
+ </div>
188
+
189
+ <div class="kb-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="kb-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="kb-row">
198
+ <div class="key small">⇧</div>
199
+ <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>
200
+ <div class="key small icon" title="Backspace">
201
+ <svg viewBox="0 0 24 24"><path d="M3 12l6-6h11v12H9zM15 8l-4 4 4 4 1.4-1.4L13.8 12l2.6-2.6z"/></svg>
202
+ </div>
203
+ </div>
204
+
205
+ <div class="keyboard-bottom">
206
+ <div class="key round">?123</div>
207
+ <div class="key round">,</div>
208
+ <div class="key round">☺</div>
209
+ <div class="key xwide">space</div>
210
+ <div class="key round">.</div>
211
+ <div class="key round icon" title="Mic">
212
+ <svg viewBox="0 0 24 24"><path d="M12 14a3 3 0 0 0 3-3V6a3 3 0 0 0-6 0v5a3 3 0 0 0 3 3zm5-3a5 5 0 0 1-10 0H5a7 7 0 0 0 6 6.9V21h2v-3.1A7 7 0 0 0 19 11h-2z"/></svg>
213
+ </div>
214
+ <div class="key round icon" title="Search">
215
+ <svg viewBox="0 0 24 24"><path d="M15.5 14h-.8l-.3-.3a6.5 6.5 0 1 0-.9.9l.3.3v.8L20 21l1-1-5.5-6zm-6 0a5 5 0 1 1 0-10 5 5 0 0 1 0 10z"/></svg>
216
+ </div>
217
+ </div>
218
+ </div>
219
+
220
+ </div>
221
+ </body>
222
+ </html>
code/8897/8897_4.html ADDED
@@ -0,0 +1,252 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
5
+ <title>King Size Bed Listing - Mock UI</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; position: relative; overflow: hidden;
10
+ background: #F5F6F8; color: #1f1f1f;
11
+ }
12
+
13
+ /* Status bar */
14
+ .status-bar {
15
+ height: 110px; padding: 0 36px; display: flex; align-items: center; justify-content: space-between;
16
+ font-size: 40px; color: #111;
17
+ }
18
+ .status-icons { display: flex; gap: 22px; align-items: center; }
19
+ .icon { width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; }
20
+ .icon svg { width: 100%; height: 100%; }
21
+
22
+ /* Search row */
23
+ .search-row {
24
+ padding: 12px 24px 18px 24px; display: flex; align-items: center; gap: 18px;
25
+ }
26
+ .back-btn {
27
+ width: 80px; height: 80px; border-radius: 40px; background: #FFFFFF; box-shadow: 0 2px 6px rgba(0,0,0,0.06);
28
+ display: flex; align-items: center; justify-content: center;
29
+ }
30
+ .search-pill {
31
+ flex: 1; height: 90px; border-radius: 48px; background: #FFFFFF; box-shadow: 0 2px 6px rgba(0,0,0,0.06);
32
+ display: flex; align-items: center; padding: 0 22px; gap: 16px;
33
+ }
34
+ .search-pill .chip {
35
+ flex: 1; color: #777; font-size: 36px;
36
+ }
37
+ .round-icon {
38
+ width: 68px; height: 68px; border-radius: 34px; background: #F2F3F5;
39
+ display: flex; align-items: center; justify-content: center;
40
+ }
41
+
42
+ /* Vendor header card */
43
+ .vendor-card {
44
+ margin: 10px 24px 18px; background: #FFFFFF; border-radius: 24px; padding: 24px;
45
+ box-shadow: 0 2px 8px rgba(0,0,0,0.05);
46
+ }
47
+ .vendor-head {
48
+ display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 18px;
49
+ }
50
+ .vendor-left { display: flex; align-items: center; gap: 18px; }
51
+ .logo {
52
+ width: 96px; height: 96px; border-radius: 20px; background: #E0E0E0; border: 1px solid #BDBDBD;
53
+ display: flex; align-items: center; justify-content: center; color: #666; font-size: 22px; text-align: center;
54
+ }
55
+ .vendor-info .name { font-size: 38px; font-weight: 700; color: #212121; }
56
+ .vendor-meta { display: flex; align-items: center; gap: 14px; margin-top: 6px; }
57
+ .verified {
58
+ padding: 6px 14px; background: #E8F1FF; color: #1D6FFF; border-radius: 24px; font-size: 28px; display: inline-flex; align-items: center; gap: 8px;
59
+ }
60
+ .verified .check {
61
+ width: 26px; height: 26px; display: inline-flex;
62
+ }
63
+ .meta-text { font-size: 28px; color: #6b6b6b; }
64
+ .chat-btn {
65
+ padding: 16px 28px; border-radius: 30px; background: #FFFFFF; border: 2px solid #D9DEE6; font-size: 34px; color: #1f1f1f;
66
+ }
67
+
68
+ /* Featured product mini card inside vendor */
69
+ .featured-row { display: flex; gap: 20px; }
70
+ .mini-card {
71
+ flex: 1; background: #FFFFFF; border-radius: 18px; border: 1px solid #ECECEC; padding: 16px; display: flex; gap: 18px;
72
+ }
73
+ .mini-img {
74
+ width: 280px; height: 200px; background: #E0E0E0; border: 1px solid #BDBDBD; border-radius: 14px;
75
+ display: flex; align-items: center; justify-content: center; color: #757575; font-size: 26px; text-align: center;
76
+ }
77
+ .mini-text { flex: 1; }
78
+ .mini-title { font-size: 34px; color: #1f1f1f; line-height: 1.25; max-height: 85px; overflow: hidden; }
79
+ .mini-price { margin-top: 10px; font-size: 36px; font-weight: 700; }
80
+ .mini-sub { margin-top: 6px; font-size: 28px; color: #6f6f6f; }
81
+
82
+ /* List cards */
83
+ .list { padding: 0 24px 24px; }
84
+ .card {
85
+ background: #FFFFFF; border-radius: 24px; padding: 18px; display: flex; gap: 18px; margin-bottom: 18px;
86
+ box-shadow: 0 2px 8px rgba(0,0,0,0.04);
87
+ }
88
+ .thumb {
89
+ width: 320px; height: 240px; border-radius: 18px; background: #E0E0E0; border: 1px solid #BDBDBD; color: #757575;
90
+ display: flex; align-items: center; justify-content: center; text-align: center; font-size: 28px;
91
+ }
92
+ .info { flex: 1; display: flex; flex-direction: column; }
93
+ .title { font-size: 38px; line-height: 1.2; color: #1f1f1f; margin-bottom: 10px; }
94
+ .price { font-size: 44px; font-weight: 800; margin: 8px 0; }
95
+ .sub { font-size: 30px; color: #6b6b6b; }
96
+ .seller-row { margin-top: 10px; display: flex; align-items: center; gap: 16px; color: #6b6b6b; font-size: 28px; }
97
+ .blue-badge { color: #1D6FFF; font-weight: 700; display: flex; align-items: center; gap: 8px; }
98
+ .eye-off {
99
+ margin-left: auto; width: 44px; height: 44px;
100
+ }
101
+
102
+ .pill-ad { position: absolute; right: 36px; top: 820px; font-size: 26px; color: #9aa0a6; }
103
+
104
+ /* Bottom handle (gesture bar) */
105
+ .gesture {
106
+ position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
107
+ width: 360px; height: 12px; background: #000; border-radius: 12px; opacity: 0.2;
108
+ }
109
+ </style>
110
+ </head>
111
+ <body>
112
+ <div id="render-target">
113
+
114
+ <!-- Status Bar -->
115
+ <div class="status-bar">
116
+ <div>10:47</div>
117
+ <div class="status-icons">
118
+ <div class="icon">
119
+ <svg viewBox="0 0 24 24" fill="#666"><path d="M6 10h2v4H6v-4zm3-2h2v8H9V8zm3 3h2v5h-2v-5zm3-4h2v9h-2V7z"/></svg>
120
+ </div>
121
+ <div class="icon">
122
+ <svg viewBox="0 0 24 24" fill="#666"><path d="M12 4C7 4 2.73 7.11 1 11.5 2.73 15.89 7 19 12 19s9.27-3.11 11-7.5C21.27 7.11 17 4 12 4zm0 13c-3.03 0-5.64-1.86-6.86-4.5C6.36 8.86 8.97 7 12 7s5.64 1.86 6.86 4.5C17.64 15.14 15.03 17 12 17z"/></svg>
123
+ </div>
124
+ <div class="icon">
125
+ <svg viewBox="0 0 24 24" fill="#666"><path d="M16 4h-1V2h-6v2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h8c1.11 0 2-.9 2-2V6c0-1.1-.89-2-2-2zm0 14H8V8h8v10z"/></svg>
126
+ </div>
127
+ </div>
128
+ </div>
129
+
130
+ <!-- Search Row -->
131
+ <div class="search-row">
132
+ <div class="back-btn">
133
+ <svg viewBox="0 0 24 24" width="48" height="48" fill="#333"><path d="M15.41 7.41 14 6l-6 6 6 6 1.41-1.41L10.83 12z"/></svg>
134
+ </div>
135
+
136
+ <div class="search-pill">
137
+ <div class="chip">king size bed</div>
138
+ <div class="round-icon">
139
+ <svg viewBox="0 0 24 24" width="34" height="34" fill="#555"><path d="M9 2L7.17 4H4c-1.1 0-2 .9-2 2v10h2V8h16v8h2V6c0-1.1-.9-2-2-2h-3.17L15 2H9zM2 20h20v2H2z"/></svg>
140
+ </div>
141
+ </div>
142
+
143
+ <div class="round-icon">
144
+ <svg viewBox="0 0 24 24" width="36" height="36" fill="#333">
145
+ <path d="M10 4H4v6h6V4zm10 0h-6v6h6V4zM10 14H4v6h6v-6zm10 0h-6v6h6v-6z"/>
146
+ </svg>
147
+ </div>
148
+ <div class="round-icon">
149
+ <svg viewBox="0 0 24 24" width="30" height="30" fill="#333"><circle cx="12" cy="5" r="2"/><circle cx="12" cy="12" r="2"/><circle cx="12" cy="19" r="2"/></svg>
150
+ </div>
151
+ </div>
152
+
153
+ <!-- Vendor Card -->
154
+ <div class="vendor-card">
155
+ <div class="vendor-head">
156
+ <div class="vendor-left">
157
+ <div class="logo">[LOGO]</div>
158
+ <div class="vendor-info">
159
+ <div class="name">Jiangxi Jingchen Furniture Co., Ltd.</div>
160
+ <div class="vendor-meta">
161
+ <div class="verified">
162
+ <span class="check">
163
+ <svg viewBox="0 0 24 24" fill="#1D6FFF"><path d="M12 2 2 7l10 5 10-5-10-5zm0 8-8-4 8-4 8 4-8 4z"/></svg>
164
+ </span>
165
+ Verified
166
+ </div>
167
+ <div class="meta-text">12 yrs · CN</div>
168
+ </div>
169
+ </div>
170
+ </div>
171
+ <button class="chat-btn">Chat now</button>
172
+ </div>
173
+
174
+ <div class="featured-row">
175
+ <div class="mini-card">
176
+ <div class="mini-img">[IMG: Wooden Bed]</div>
177
+ <div class="mini-text">
178
+ <div class="mini-title">ODM Bedroom Furniture Set Luxury...</div>
179
+ <div class="mini-price">$150.00 - $273.00</div>
180
+ <div class="mini-sub">5.0 pieces (MOQ)</div>
181
+ </div>
182
+ </div>
183
+ <div class="mini-card" style="opacity:.6;">
184
+ <div class="mini-img">[IMG: Bed with Storage]</div>
185
+ <div class="mini-text">
186
+ <div class="mini-title">Contemporary Bed with Storage Drawer</div>
187
+ <div class="mini-price">$199.00 - $320.00</div>
188
+ <div class="mini-sub">Ad</div>
189
+ </div>
190
+ </div>
191
+ </div>
192
+ </div>
193
+
194
+ <!-- Product List -->
195
+ <div class="list">
196
+
197
+ <!-- Item 1 -->
198
+ <div class="card">
199
+ <div class="thumb">[IMG: Classic Solid Wood Bed]</div>
200
+ <div class="info">
201
+ <div class="title">Custom Solid Wood Double Bed ...</div>
202
+ <div class="price">$82.00</div>
203
+ <div class="sub">Min. order: 200 sets</div>
204
+ <div class="seller-row">
205
+ <span>4 yrs · CN</span>
206
+ <svg class="eye-off" viewBox="0 0 24 24" fill="#9EA3AA"><path d="M12 5c-7 0-11 7-11 7s2.5 4.2 7 6.2l-2.2 2.2 1.4 1.4 15-15-1.4-1.4L17 6.8C15.5 6.2 13.8 5 12 5zm0 4c1.9 0 3.5 1.3 3.9 3.1l-4.9 4.9C9.3 16.5 8 14.9 8 13c0-2.2 1.8-4 4-4z"/></svg>
207
+ </div>
208
+ </div>
209
+ </div>
210
+
211
+ <!-- Item 2 -->
212
+ <div class="card">
213
+ <div class="thumb">[IMG: Tufted Fabric Bed]</div>
214
+ <div class="info">
215
+ <div class="title">ODM Sample Tufted Fabric Double ...</div>
216
+ <div class="price">$60.00 - $180.00</div>
217
+ <div class="sub">Min. order: 2.0 sets</div>
218
+ <div class="seller-row">
219
+ <span class="blue-badge">
220
+ <svg viewBox="0 0 24 24" width="26" height="26" fill="#1D6FFF"><path d="M12 2l3 6 6 .9-4.5 4.3L17.5 20 12 17l-5.5 3 1-6.8L3 8.9 9 8z"/></svg>
221
+ Verified
222
+ </span>
223
+ <span>4 yrs · CN</span>
224
+ <svg class="eye-off" viewBox="0 0 24 24" fill="#9EA3AA"><path d="M12 5c-7 0-11 7-11 7s2.5 4.2 7 6.2l-2.2 2.2 1.4 1.4 15-15-1.4-1.4L17 6.8C15.5 6.2 13.8 5 12 5zm0 4c1.9 0 3.5 1.3 3.9 3.1l-4.9 4.9C9.3 16.5 8 14.9 8 13c0-2.2 1.8-4 4-4z"/></svg>
225
+ </div>
226
+ </div>
227
+ </div>
228
+
229
+ <!-- Item 3 -->
230
+ <div class="card">
231
+ <div class="thumb">[IMG: Pink Tufted Bed]</div>
232
+ <div class="info">
233
+ <div class="title">Light luxury European design ...</div>
234
+ <div class="price">$100.00 - $150.00</div>
235
+ <div class="sub">Min. order: 30.0 sets</div>
236
+ <div class="seller-row">
237
+ <span class="blue-badge">
238
+ <svg viewBox="0 0 24 24" width="26" height="26" fill="#1D6FFF"><path d="M12 2l3 6 6 .9-4.5 4.3L17.5 20 12 17l-5.5 3 1-6.8L3 8.9 9 8z"/></svg>
239
+ Verified
240
+ </span>
241
+ <span>5 yrs · CN</span>
242
+ <svg class="eye-off" viewBox="0 0 24 24" fill="#9EA3AA"><path d="M12 5c-7 0-11 7-11 7s2.5 4.2 7 6.2l-2.2 2.2 1.4 1.4 15-15-1.4-1.4L17 6.8C15.5 6.2 13.8 5 12 5zm0 4c1.9 0 3.5 1.3 3.9 3.1l-4.9 4.9C9.3 16.5 8 14.9 8 13c0-2.2 1.8-4 4-4z"/></svg>
243
+ </div>
244
+ </div>
245
+ </div>
246
+
247
+ </div>
248
+
249
+ <div class="gesture"></div>
250
+ </div>
251
+ </body>
252
+ </html>
code/890/890_0.html ADDED
@@ -0,0 +1,343 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>Amsterdam · Dec 20 - Things to do</title>
6
+ <style>
7
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
8
+ #render-target {
9
+ position: relative;
10
+ overflow: hidden;
11
+ width: 1080px;
12
+ height: 2400px;
13
+ background: #ffffff;
14
+ }
15
+ /* Status bar */
16
+ .status-bar {
17
+ position: absolute;
18
+ top: 0;
19
+ left: 0;
20
+ width: 1080px;
21
+ height: 110px;
22
+ background: #143f8c;
23
+ color: #fff;
24
+ display: flex;
25
+ align-items: center;
26
+ padding: 0 36px;
27
+ box-sizing: border-box;
28
+ font-size: 34px;
29
+ }
30
+ .status-right {
31
+ margin-left: auto;
32
+ display: flex;
33
+ align-items: center;
34
+ gap: 24px;
35
+ }
36
+ .battery {
37
+ width: 40px; height: 22px; border: 2px solid #fff; border-radius: 4px; position: relative;
38
+ }
39
+ .battery::after {
40
+ content: ""; position: absolute; right: -8px; top: 6px; width: 6px; height: 10px; background: #fff; border-radius: 2px;
41
+ }
42
+ .battery-fill { position: absolute; left: 2px; top: 2px; height: 16px; width: 24px; background: #fff; }
43
+
44
+ /* App header background */
45
+ .app-header-bg {
46
+ position: absolute;
47
+ top: 110px;
48
+ left: 0;
49
+ width: 1080px;
50
+ height: 220px;
51
+ background: #143f8c;
52
+ }
53
+
54
+ /* Search pill */
55
+ .search-pill {
56
+ position: absolute;
57
+ top: 160px;
58
+ left: 36px;
59
+ width: 1008px;
60
+ height: 120px;
61
+ background: #fff;
62
+ border: 10px solid #f5c34c;
63
+ border-radius: 28px;
64
+ box-shadow: 0 6px 16px rgba(0,0,0,0.25);
65
+ display: flex;
66
+ align-items: center;
67
+ padding: 0 36px;
68
+ box-sizing: border-box;
69
+ color: #212121;
70
+ font-size: 40px;
71
+ font-weight: 600;
72
+ gap: 24px;
73
+ }
74
+ .back-icon { width: 48px; height: 48px; }
75
+
76
+ /* Toolbar */
77
+ .toolbar {
78
+ position: absolute;
79
+ top: 350px;
80
+ left: 0;
81
+ width: 1080px;
82
+ height: 120px;
83
+ background: #ffffff;
84
+ display: flex;
85
+ align-items: center;
86
+ padding: 0 36px;
87
+ box-sizing: border-box;
88
+ font-size: 36px;
89
+ color: #424242;
90
+ }
91
+ .toolbar .right { margin-left: auto; display: flex; align-items: center; gap: 16px; }
92
+ .toolbar .left { display: flex; align-items: center; gap: 16px; }
93
+ .toolbar svg { width: 40px; height: 40px; }
94
+
95
+ /* Content */
96
+ .content {
97
+ position: absolute;
98
+ top: 470px;
99
+ left: 0;
100
+ width: 1080px;
101
+ bottom: 120px;
102
+ overflow: hidden;
103
+ padding: 0 24px;
104
+ box-sizing: border-box;
105
+ }
106
+ .results-count {
107
+ font-size: 40px;
108
+ color: #424242;
109
+ padding: 20px 12px 8px 12px;
110
+ }
111
+
112
+ .card {
113
+ position: relative;
114
+ display: flex;
115
+ padding: 24px 12px 36px 12px;
116
+ box-sizing: border-box;
117
+ border-top: 2px solid #eeeeee;
118
+ }
119
+ .card:first-of-type { border-top: none; }
120
+ .img-wrap {
121
+ position: relative;
122
+ width: 280px;
123
+ height: 220px;
124
+ border-radius: 16px;
125
+ overflow: hidden;
126
+ }
127
+ .img-ph {
128
+ width: 100%;
129
+ height: 100%;
130
+ background: #E0E0E0;
131
+ border: 1px solid #BDBDBD;
132
+ display: flex;
133
+ justify-content: center;
134
+ align-items: center;
135
+ color: #757575;
136
+ font-size: 26px;
137
+ text-align: center;
138
+ padding: 8px;
139
+ box-sizing: border-box;
140
+ }
141
+ .badge {
142
+ position: absolute;
143
+ top: 0;
144
+ left: 0;
145
+ background: #1f4aa9;
146
+ color: #fff;
147
+ font-size: 28px;
148
+ padding: 12px 18px;
149
+ border-bottom-right-radius: 16px;
150
+ border-top-left-radius: 16px;
151
+ }
152
+ .info {
153
+ margin-left: 24px;
154
+ flex: 1;
155
+ min-width: 0;
156
+ }
157
+ .city {
158
+ font-size: 34px;
159
+ color: #757575;
160
+ margin-bottom: 6px;
161
+ }
162
+ .title {
163
+ font-size: 42px;
164
+ font-weight: 700;
165
+ color: #212121;
166
+ margin-bottom: 12px;
167
+ line-height: 1.2;
168
+ }
169
+ .rating {
170
+ display: flex;
171
+ align-items: center;
172
+ gap: 12px;
173
+ font-size: 34px;
174
+ color: #424242;
175
+ }
176
+ .rating svg { width: 38px; height: 38px; }
177
+ .price {
178
+ position: absolute;
179
+ right: 36px;
180
+ bottom: 36px;
181
+ font-size: 38px;
182
+ color: #212121;
183
+ }
184
+ .price .bold { font-weight: 700; }
185
+ .strike { text-decoration: line-through; color: #9e9e9e; margin-right: 8px; }
186
+ .free-cancel {
187
+ display: flex;
188
+ align-items: center;
189
+ gap: 10px;
190
+ color: #2e7d32;
191
+ font-size: 32px;
192
+ margin-top: 10px;
193
+ }
194
+ .home-indicator {
195
+ position: absolute;
196
+ bottom: 40px;
197
+ left: 50%;
198
+ transform: translateX(-50%);
199
+ width: 180px;
200
+ height: 12px;
201
+ background: #000;
202
+ border-radius: 6px;
203
+ opacity: 0.12;
204
+ }
205
+ </style>
206
+ </head>
207
+ <body>
208
+ <div id="render-target">
209
+ <div class="status-bar">
210
+ <div>3:21</div>
211
+ <div class="status-right">
212
+ <div style="width:18px;height:18px;border-radius:50%;border:2px solid #fff;"></div>
213
+ <div style="width:18px;height:18px;border-radius:50%;border:2px solid #fff;"></div>
214
+ <div style="width:18px;height:18px;border-radius:50%;border:2px solid #fff;"></div>
215
+ <div style="width:18px;height:18px;border-radius:50%;border:2px solid #fff;"></div>
216
+ <div style="width:10px;height:10px;background:#fff;border-radius:50%;opacity:0.7;"></div>
217
+ <svg width="34" height="24">
218
+ <polygon points="2,2 18,2 30,12 18,22 2,22" fill="#fff"></polygon>
219
+ </svg>
220
+ <div class="battery"><div class="battery-fill"></div></div>
221
+ </div>
222
+ </div>
223
+ <div class="app-header-bg"></div>
224
+
225
+ <div class="search-pill">
226
+ <svg class="back-icon" viewBox="0 0 24 24">
227
+ <path d="M15 6 L9 12 L15 18" stroke="#212121" stroke-width="2.5" fill="none" stroke-linecap="round" stroke-linejoin="round"></path>
228
+ </svg>
229
+ <div>Amsterdam · Dec 20</div>
230
+ </div>
231
+
232
+ <div class="toolbar">
233
+ <div class="left">
234
+ <svg viewBox="0 0 24 24">
235
+ <path d="M8 4 L4 8 M4 8 L8 12" stroke="#424242" stroke-width="2" fill="none" stroke-linecap="round"/>
236
+ <path d="M16 12 L20 8 M20 8 L16 4" stroke="#424242" stroke-width="2" fill="none" stroke-linecap="round"/>
237
+ </svg>
238
+ <span>Sort</span>
239
+ </div>
240
+ <div class="right">
241
+ <svg viewBox="0 0 24 24">
242
+ <path d="M3 6 H21" stroke="#424242" stroke-width="2" />
243
+ <circle cx="8" cy="6" r="2" fill="#424242"/>
244
+ <path d="M3 12 H21" stroke="#424242" stroke-width="2" />
245
+ <circle cx="14" cy="12" r="2" fill="#424242"/>
246
+ <path d="M3 18 H21" stroke="#424242" stroke-width="2" />
247
+ <circle cx="18" cy="18" r="2" fill="#424242"/>
248
+ </svg>
249
+ <span>Filter</span>
250
+ </div>
251
+ </div>
252
+
253
+ <div class="content">
254
+ <div class="results-count">772 things to do</div>
255
+
256
+ <!-- Card 1 -->
257
+ <div class="card">
258
+ <div class="img-wrap">
259
+ <div class="img-ph">[IMG: Heineken brewery facade]</div>
260
+ <div class="badge">Best seller</div>
261
+ </div>
262
+ <div class="info">
263
+ <div class="city">Amsterdam</div>
264
+ <div class="title">Heineken Experience Amsterdam</div>
265
+ <div class="rating">
266
+ <svg viewBox="0 0 24 24">
267
+ <path d="M12 2 L15 9 L22 9 L16.5 13.5 L18.5 21 L12 17 L5.5 21 L7.5 13.5 L2 9 L9 9 Z" fill="#FFC107"></path>
268
+ </svg>
269
+ <span>4.5 (710 reviews)</span>
270
+ </div>
271
+ </div>
272
+ <div class="price">From <span class="bold">Rs. 1,888.02</span></div>
273
+ </div>
274
+
275
+ <!-- Card 2 -->
276
+ <div class="card">
277
+ <div class="img-wrap">
278
+ <div class="img-ph">[IMG: Dutch museum painting]</div>
279
+ <div class="badge">Best seller</div>
280
+ </div>
281
+ <div class="info">
282
+ <div class="city">Amsterdam</div>
283
+ <div class="title">Rijksmuseum Admission</div>
284
+ <div class="rating">
285
+ <svg viewBox="0 0 24 24">
286
+ <path d="M12 2 L15 9 L22 9 L16.5 13.5 L18.5 21 L12 17 L5.5 21 L7.5 13.5 L2 9 L9 9 Z" fill="#FFC107"></path>
287
+ </svg>
288
+ <span>4.6 (863 reviews)</span>
289
+ </div>
290
+ </div>
291
+ <div class="price">From <span class="bold">Rs. 2,022.88</span></div>
292
+ </div>
293
+
294
+ <!-- Card 3 -->
295
+ <div class="card">
296
+ <div class="img-wrap">
297
+ <div class="img-ph">[IMG: Wax museum crowd]</div>
298
+ </div>
299
+ <div class="info">
300
+ <div class="city">Amsterdam</div>
301
+ <div class="title">Madame Tussauds Ticket</div>
302
+ <div class="rating">
303
+ <svg viewBox="0 0 24 24">
304
+ <path d="M12 2 L15 9 L22 9 L16.5 13.5 L18.5 21 L12 17 L5.5 21 L7.5 13.5 L2 9 L9 9 Z" fill="#FFC107"></path>
305
+ </svg>
306
+ <span>4.4 (190 reviews)</span>
307
+ </div>
308
+ <div class="free-cancel">
309
+ <svg viewBox="0 0 24 24" width="28" height="28">
310
+ <path d="M4 12 L10 18 L20 6" stroke="#2e7d32" stroke-width="3" fill="none" stroke-linecap="round" stroke-linejoin="round"></path>
311
+ </svg>
312
+ <span>Free cancellation available</span>
313
+ </div>
314
+ </div>
315
+ <div class="price">
316
+ From <span class="strike">Rs. 1,798.11</span> <span class="bold">Rs. 1,438.49</span>
317
+ </div>
318
+ </div>
319
+
320
+ <!-- Card 4 -->
321
+ <div class="card">
322
+ <div class="img-wrap">
323
+ <div class="img-ph">[IMG: Van Gogh Museum interior]</div>
324
+ <div class="badge">Best seller</div>
325
+ </div>
326
+ <div class="info">
327
+ <div class="city">Amsterdam</div>
328
+ <div class="title">Van Gogh Museum Admission</div>
329
+ <div class="rating">
330
+ <svg viewBox="0 0 24 24">
331
+ <path d="M12 2 L15 9 L22 9 L16.5 13.5 L18.5 21 L12 17 L5.5 21 L7.5 13.5 L2 9 L9 9 Z" fill="#FFC107"></path>
332
+ </svg>
333
+ <span>4.7 (1673 reviews)</span>
334
+ </div>
335
+ </div>
336
+ <div class="price">From <span class="bold">Rs. 2,157.73</span></div>
337
+ </div>
338
+ </div>
339
+
340
+ <div class="home-indicator"></div>
341
+ </div>
342
+ </body>
343
+ </html>
code/890/890_1.html ADDED
@@ -0,0 +1,440 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Booking UI Mock</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, Arial, sans-serif;
16
+ color: #111;
17
+ }
18
+
19
+ /* Header */
20
+ .header {
21
+ background: #003580;
22
+ color: #fff;
23
+ padding: 24px 36px 30px;
24
+ }
25
+ .status-row {
26
+ display: flex;
27
+ align-items: center;
28
+ justify-content: space-between;
29
+ font-size: 34px;
30
+ opacity: 0.95;
31
+ margin-bottom: 16px;
32
+ }
33
+ .status-left { display: flex; align-items: center; gap: 18px; }
34
+ .status-icons { display: flex; align-items: center; gap: 12px; opacity: 0.9; }
35
+ .brand-row {
36
+ display: flex;
37
+ align-items: center;
38
+ justify-content: center;
39
+ position: relative;
40
+ margin-top: 8px;
41
+ }
42
+ .brand-row h1 {
43
+ margin: 0;
44
+ font-size: 62px;
45
+ font-weight: 800;
46
+ letter-spacing: 0.5px;
47
+ }
48
+ .brand-actions {
49
+ position: absolute;
50
+ right: 0;
51
+ top: 50%;
52
+ transform: translateY(-50%);
53
+ display: flex;
54
+ gap: 28px;
55
+ }
56
+ .brand-actions .icon-wrap {
57
+ width: 64px;
58
+ height: 64px;
59
+ border-radius: 32px;
60
+ display: flex;
61
+ align-items: center;
62
+ justify-content: center;
63
+ border: 2px solid rgba(255,255,255,0.5);
64
+ }
65
+ .badge {
66
+ position: absolute;
67
+ right: -4px;
68
+ top: -6px;
69
+ background: #E83B3B;
70
+ color: #fff;
71
+ font-size: 28px;
72
+ width: 42px;
73
+ height: 42px;
74
+ border-radius: 21px;
75
+ display: flex;
76
+ align-items: center;
77
+ justify-content: center;
78
+ border: 2px solid #fff;
79
+ }
80
+
81
+ .tabs {
82
+ display: flex;
83
+ align-items: center;
84
+ gap: 38px;
85
+ margin-top: 28px;
86
+ padding-bottom: 8px;
87
+ }
88
+ .tab {
89
+ display: flex;
90
+ align-items: center;
91
+ gap: 16px;
92
+ color: #fff;
93
+ font-size: 36px;
94
+ opacity: 0.95;
95
+ }
96
+ .tab-pill {
97
+ padding: 14px 26px;
98
+ border: 3px solid rgba(255,255,255,0.7);
99
+ border-radius: 44px;
100
+ display: flex;
101
+ align-items: center;
102
+ gap: 16px;
103
+ font-size: 36px;
104
+ }
105
+
106
+ /* Search Card */
107
+ .search-card {
108
+ background: #fff;
109
+ margin: 28px 36px 0;
110
+ border: 8px solid #FFB400;
111
+ border-radius: 26px;
112
+ box-shadow: 0 12px 22px rgba(0,0,0,0.12);
113
+ overflow: hidden;
114
+ }
115
+ .search-field {
116
+ display: flex;
117
+ align-items: center;
118
+ gap: 22px;
119
+ padding: 32px 28px;
120
+ font-size: 40px;
121
+ border-bottom: 3px solid #F0F0F0;
122
+ }
123
+ .search-btn {
124
+ background: #0A5FDE;
125
+ color: #fff;
126
+ text-align: center;
127
+ font-size: 44px;
128
+ font-weight: 700;
129
+ padding: 34px 0;
130
+ }
131
+
132
+ /* Sections */
133
+ .section {
134
+ padding: 40px 36px 0;
135
+ }
136
+ .section h2 {
137
+ margin: 18px 0 24px;
138
+ font-size: 54px;
139
+ font-weight: 800;
140
+ }
141
+
142
+ .promo-grid {
143
+ display: grid;
144
+ grid-template-columns: 1fr 1fr;
145
+ gap: 26px;
146
+ padding: 8px 0 0;
147
+ }
148
+ .card {
149
+ border-radius: 26px;
150
+ box-shadow: 0 10px 20px rgba(0,0,0,0.10);
151
+ overflow: hidden;
152
+ background: #fff;
153
+ border: 2px solid #E6E7EB;
154
+ }
155
+ .card.blue {
156
+ background: #0A3E9E;
157
+ border: none;
158
+ color: #fff;
159
+ }
160
+ .card-content {
161
+ padding: 34px;
162
+ font-size: 34px;
163
+ line-height: 1.4;
164
+ }
165
+ .card.blue .title {
166
+ font-size: 40px;
167
+ font-weight: 800;
168
+ margin-bottom: 14px;
169
+ }
170
+ .card .title {
171
+ font-size: 38px;
172
+ font-weight: 800;
173
+ color: #111;
174
+ margin-bottom: 12px;
175
+ }
176
+ .muted {
177
+ color: #555;
178
+ }
179
+
180
+ /* Continue Search */
181
+ .horizontal-cards {
182
+ display: grid;
183
+ grid-template-columns: 1fr 1fr;
184
+ gap: 26px;
185
+ padding: 8px 0 0;
186
+ }
187
+ .list-card {
188
+ background: #fff;
189
+ border-radius: 26px;
190
+ box-shadow: 0 10px 20px rgba(0,0,0,0.10);
191
+ border: 2px solid #F0F0F0;
192
+ padding: 26px;
193
+ display: flex;
194
+ align-items: center;
195
+ gap: 26px;
196
+ }
197
+ .img-ph {
198
+ width: 150px;
199
+ height: 120px;
200
+ background: #E0E0E0;
201
+ border: 1px solid #BDBDBD;
202
+ display: flex;
203
+ align-items: center;
204
+ justify-content: center;
205
+ color: #757575;
206
+ font-size: 28px;
207
+ border-radius: 18px;
208
+ }
209
+ .list-card .title {
210
+ font-size: 40px;
211
+ margin-bottom: 8px;
212
+ }
213
+ .list-card .subtitle {
214
+ font-size: 32px;
215
+ color: #666;
216
+ }
217
+
218
+ /* Bottom Nav */
219
+ .bottom-nav {
220
+ position: absolute;
221
+ left: 0;
222
+ right: 0;
223
+ bottom: 0;
224
+ height: 180px;
225
+ border-top: 1px solid #E6E7EB;
226
+ background: #fff;
227
+ display: flex;
228
+ align-items: center;
229
+ justify-content: space-around;
230
+ padding-bottom: 20px;
231
+ }
232
+ .nav-item {
233
+ display: flex;
234
+ flex-direction: column;
235
+ align-items: center;
236
+ gap: 14px;
237
+ color: #111;
238
+ font-size: 30px;
239
+ }
240
+ .nav-item.active { color: #0A5FDE; }
241
+ .home-indicator {
242
+ position: absolute;
243
+ bottom: 16px;
244
+ left: 50%;
245
+ transform: translateX(-50%);
246
+ width: 280px;
247
+ height: 16px;
248
+ border-radius: 8px;
249
+ background: #DADDE2;
250
+ }
251
+
252
+ /* Simple SVG styles */
253
+ svg { display: block; }
254
+
255
+ /* Utility */
256
+ .spacer-24 { height: 24px; }
257
+ </style>
258
+ </head>
259
+ <body>
260
+ <div id="render-target">
261
+
262
+ <!-- Header -->
263
+ <div class="header">
264
+ <div class="status-row">
265
+ <div class="status-left">
266
+ <div style="font-weight:700;">3:22</div>
267
+ <div class="status-icons">
268
+ <div style="width:14px;height:14px;background:#fff;border-radius:7px;opacity:0.85;"></div>
269
+ <div style="width:14px;height:14px;background:#fff;border-radius:7px;opacity:0.85;"></div>
270
+ <div style="width:14px;height:14px;background:#fff;border-radius:7px;opacity:0.85;"></div>
271
+ <div style="width:14px;height:14px;background:#fff;border-radius:7px;opacity:0.85;"></div>
272
+ <div style="width:14px;height:14px;background:#fff;border-radius:7px;opacity:0.85;"></div>
273
+ <div style="width:8px;height:8px;background:#fff;border-radius:4px;opacity:0.7;"></div>
274
+ </div>
275
+ </div>
276
+ <div class="status-icons">
277
+ <svg width="34" height="34" viewBox="0 0 24 24" fill="none">
278
+ <path d="M12 3l9 7-9 7-9-7 9-7z" stroke="#fff" stroke-width="2" fill="none"/>
279
+ </svg>
280
+ <svg width="34" height="34" viewBox="0 0 24 24" fill="none">
281
+ <path d="M6 12h12" stroke="#fff" stroke-width="2"/>
282
+ <circle cx="20" cy="6" r="2" fill="#fff"/>
283
+ </svg>
284
+ </div>
285
+ </div>
286
+
287
+ <div class="brand-row">
288
+ <h1>Booking.com</h1>
289
+ <div class="brand-actions">
290
+ <div class="icon-wrap" title="Chat">
291
+ <svg width="36" height="36" viewBox="0 0 24 24" fill="none">
292
+ <path d="M4 5h16v10H8l-4 4V5z" stroke="#fff" stroke-width="2" fill="none"/>
293
+ </svg>
294
+ </div>
295
+ <div class="icon-wrap" title="Notifications" style="position:relative;">
296
+ <svg width="36" height="36" viewBox="0 0 24 24" fill="none">
297
+ <path d="M12 3c-2.8 0-5 2.2-5 5v4l-2 3h14l-2-3V8c0-2.8-2.2-5-5-5z" stroke="#fff" stroke-width="2" fill="none"/>
298
+ <circle cx="12" cy="20" r="1.8" fill="#fff"/>
299
+ </svg>
300
+ <div class="badge">1</div>
301
+ </div>
302
+ </div>
303
+ </div>
304
+
305
+ <div class="tabs">
306
+ <div class="tab">
307
+ <svg width="38" height="38" viewBox="0 0 24 24" fill="none">
308
+ <path d="M3 11h18l-2 7H5l-2-7z" stroke="#fff" stroke-width="2" fill="none"/>
309
+ <path d="M7 11V8h10v3" stroke="#fff" stroke-width="2"/>
310
+ </svg>
311
+ <span>Flights</span>
312
+ </div>
313
+ <div class="tab">
314
+ <svg width="40" height="40" viewBox="0 0 24 24" fill="none">
315
+ <rect x="3" y="10" width="18" height="6" stroke="#fff" stroke-width="2" fill="none"/>
316
+ <circle cx="7" cy="18" r="2" fill="#fff"/>
317
+ <circle cx="17" cy="18" r="2" fill="#fff"/>
318
+ </svg>
319
+ <span>Car rental</span>
320
+ </div>
321
+ <div class="tab">
322
+ <svg width="40" height="40" viewBox="0 0 24 24" fill="none">
323
+ <rect x="5" y="10" width="14" height="6" stroke="#fff" stroke-width="2" fill="none"/>
324
+ <text x="7" y="15" font-size="6" fill="#fff">TAXI</text>
325
+ </svg>
326
+ <span>Taxi</span>
327
+ </div>
328
+ <div class="tab-pill">
329
+ <svg width="40" height="40" viewBox="0 0 24 24" fill="none">
330
+ <circle cx="12" cy="6" r="2.5" stroke="#fff" stroke-width="2"/>
331
+ <path d="M12 9v5" stroke="#fff" stroke-width="2"/>
332
+ <circle cx="6" cy="16" r="2.5" stroke="#fff" stroke-width="2"/>
333
+ <circle cx="18" cy="16" r="2.5" stroke="#fff" stroke-width="2"/>
334
+ <path d="M8 15l3-2m5 2l-3-2" stroke="#fff" stroke-width="2"/>
335
+ </svg>
336
+ <span>Attractions</span>
337
+ </div>
338
+ </div>
339
+ </div>
340
+
341
+ <!-- Search Card -->
342
+ <div class="search-card">
343
+ <div class="search-field">
344
+ <svg width="44" height="44" viewBox="0 0 24 24" fill="none">
345
+ <circle cx="11" cy="11" r="7" stroke="#666" stroke-width="2" fill="none"/>
346
+ <path d="M20 20l-4-4" stroke="#666" stroke-width="2"/>
347
+ </svg>
348
+ <span style="color:#333;">Amsterdam, Netherlands</span>
349
+ </div>
350
+ <div class="search-field">
351
+ <svg width="44" height="44" viewBox="0 0 24 24" fill="none">
352
+ <rect x="3" y="5" width="18" height="16" rx="2" stroke="#666" stroke-width="2" fill="none"/>
353
+ <path d="M7 3v4M17 3v4M3 9h18" stroke="#666" stroke-width="2"/>
354
+ </svg>
355
+ <span style="color:#333;">Wed, Dec 20</span>
356
+ </div>
357
+ <div class="search-btn">Search</div>
358
+ </div>
359
+
360
+ <!-- Travel more section -->
361
+ <div class="section">
362
+ <h2>Travel more, spend less</h2>
363
+
364
+ <div class="promo-grid">
365
+ <div class="card blue">
366
+ <div class="card-content">
367
+ <div class="title">Genius</div>
368
+ <div>Larson, you're at <strong>Genius Level 1</strong><br>in our loyalty program</div>
369
+ </div>
370
+ </div>
371
+ <div class="card">
372
+ <div class="card-content">
373
+ <div class="title">15% discounts on stays</div>
374
+ <div class="muted">Enjoy discounts at participating<br>properties worldwide</div>
375
+ </div>
376
+ </div>
377
+ </div>
378
+ </div>
379
+
380
+ <!-- Continue your search -->
381
+ <div class="section">
382
+ <h2>Continue your search</h2>
383
+ <div class="horizontal-cards">
384
+ <div class="list-card">
385
+ <div class="img-ph">[IMG: Amsterdam]</div>
386
+ <div>
387
+ <div class="title">Amsterdam</div>
388
+ <div class="subtitle">17 - 21 Dec, 1 adult</div>
389
+ </div>
390
+ </div>
391
+ <div class="list-card">
392
+ <div class="img-ph">[IMG: Berlin]</div>
393
+ <div>
394
+ <div class="title">Berlin</div>
395
+ <div class="subtitle">17 - 21 Dec, 1 adult</div>
396
+ </div>
397
+ </div>
398
+ </div>
399
+ </div>
400
+
401
+ <div class="section">
402
+ <h2>More for you</h2>
403
+ <div class="spacer-24"></div>
404
+ </div>
405
+
406
+ <!-- Bottom navigation -->
407
+ <div class="bottom-nav">
408
+ <div class="nav-item active">
409
+ <svg width="54" height="54" viewBox="0 0 24 24" fill="none">
410
+ <circle cx="11" cy="11" r="7" stroke="#0A5FDE" stroke-width="2" fill="none"/>
411
+ <path d="M20 20l-4-4" stroke="#0A5FDE" stroke-width="2"/>
412
+ </svg>
413
+ <div>Search</div>
414
+ </div>
415
+ <div class="nav-item">
416
+ <svg width="54" height="54" viewBox="0 0 24 24" fill="none">
417
+ <path d="M12 21s-6-4.5-6-9a6 6 0 1112 0c0 4.5-6 9-6 9z" stroke="#111" stroke-width="2" fill="none"/>
418
+ </svg>
419
+ <div>Saved</div>
420
+ </div>
421
+ <div class="nav-item">
422
+ <svg width="54" height="54" viewBox="0 0 24 24" fill="none">
423
+ <rect x="6" y="6" width="12" height="12" stroke="#111" stroke-width="2" fill="none"/>
424
+ <path d="M9 6V4h6v2" stroke="#111" stroke-width="2"/>
425
+ </svg>
426
+ <div>Bookings</div>
427
+ </div>
428
+ <div class="nav-item">
429
+ <svg width="54" height="54" viewBox="0 0 24 24" fill="none">
430
+ <circle cx="12" cy="9" r="4" stroke="#111" stroke-width="2" fill="none"/>
431
+ <path d="M4 20c0-4.4 4-6 8-6s8 1.6 8 6" stroke="#111" stroke-width="2"/>
432
+ </svg>
433
+ <div>Profile</div>
434
+ </div>
435
+ <div class="home-indicator"></div>
436
+ </div>
437
+
438
+ </div>
439
+ </body>
440
+ </html>
code/890/890_2.html ADDED
@@ -0,0 +1,405 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Booking UI Mock</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: #1d1d1d;
17
+ }
18
+
19
+ /* Header */
20
+ .header {
21
+ position: absolute;
22
+ left: 0; top: 0;
23
+ width: 1080px;
24
+ height: 520px;
25
+ background: #0b53ce;
26
+ color: #fff;
27
+ padding: 40px 40px 0 40px;
28
+ box-sizing: border-box;
29
+ }
30
+ .status-bar {
31
+ display: flex;
32
+ justify-content: space-between;
33
+ align-items: center;
34
+ height: 44px;
35
+ font-size: 32px;
36
+ opacity: 0.95;
37
+ }
38
+ .status-icons {
39
+ display: flex; align-items: center; gap: 18px;
40
+ }
41
+ .dot { width: 10px; height: 10px; background: #fff; border-radius: 50%; opacity: 0.9; }
42
+ .title-row {
43
+ margin-top: 30px;
44
+ display: flex;
45
+ align-items: center;
46
+ justify-content: center;
47
+ position: relative;
48
+ height: 90px;
49
+ }
50
+ .brand {
51
+ font-weight: 700;
52
+ font-size: 56px;
53
+ letter-spacing: 0.5px;
54
+ }
55
+ .header-actions {
56
+ position: absolute;
57
+ right: 40px;
58
+ top: 50%;
59
+ transform: translateY(-50%);
60
+ display: flex; gap: 30px; align-items: center;
61
+ }
62
+ .icon-btn {
63
+ width: 56px; height: 56px;
64
+ }
65
+ .badge {
66
+ position: absolute;
67
+ right: -6px; top: -6px;
68
+ background: #e53935; color: #fff;
69
+ width: 34px; height: 34px;
70
+ border-radius: 17px;
71
+ font-size: 22px;
72
+ display: flex; align-items: center; justify-content: center;
73
+ border: 2px solid #0b53ce;
74
+ }
75
+
76
+ /* Header tabs */
77
+ .tabs {
78
+ margin-top: 40px;
79
+ display: flex;
80
+ gap: 40px;
81
+ align-items: center;
82
+ padding-bottom: 20px;
83
+ }
84
+ .tab {
85
+ display: flex; align-items: center; gap: 16px;
86
+ color: #ffffff;
87
+ font-size: 34px; font-weight: 600;
88
+ opacity: 0.95;
89
+ }
90
+ .tab svg { width: 42px; height: 42px; fill: none; stroke: #fff; stroke-width: 2.5; }
91
+ .tab.taxi {
92
+ font-weight: 700;
93
+ letter-spacing: 2px;
94
+ border: 3px solid #fff;
95
+ padding: 10px 16px;
96
+ border-radius: 8px;
97
+ }
98
+ .tab.attractions {
99
+ border: 3px solid #ffffff;
100
+ padding: 16px 26px;
101
+ border-radius: 50px;
102
+ }
103
+ .tab.attractions svg { stroke: #fff; }
104
+
105
+ /* Content area */
106
+ .content {
107
+ position: absolute;
108
+ left: 0; top: 520px;
109
+ width: 100%;
110
+ padding: 30px 36px 220px 36px;
111
+ box-sizing: border-box;
112
+ background: #ffffff;
113
+ }
114
+ .section-title {
115
+ font-size: 48px;
116
+ font-weight: 700;
117
+ margin: 8px 8px 24px 8px;
118
+ }
119
+
120
+ .card-grid {
121
+ display: grid;
122
+ grid-template-columns: 1fr 1fr;
123
+ gap: 32px;
124
+ padding: 8px;
125
+ box-sizing: border-box;
126
+ }
127
+ .card {
128
+ background: #fff;
129
+ border-radius: 32px;
130
+ box-shadow: 0 8px 22px rgba(0,0,0,0.12);
131
+ overflow: hidden;
132
+ }
133
+ .card-img {
134
+ width: 100%;
135
+ height: 360px;
136
+ background: #E0E0E0;
137
+ border-bottom: 1px solid #BDBDBD;
138
+ display: flex; align-items: center; justify-content: center;
139
+ color: #757575;
140
+ font-size: 30px;
141
+ }
142
+ .card-body {
143
+ padding: 26px 26px 30px 26px;
144
+ }
145
+ .card-title {
146
+ font-size: 42px;
147
+ font-weight: 700;
148
+ margin-bottom: 14px;
149
+ }
150
+ .card-sub {
151
+ font-size: 30px;
152
+ color: #6b6b6b;
153
+ line-height: 1.25;
154
+ }
155
+
156
+ /* Overlay-style cards (bottom row) */
157
+ .card.overlay {
158
+ position: relative;
159
+ }
160
+ .card.overlay .card-img {
161
+ height: 420px;
162
+ }
163
+ .overlay-label {
164
+ position: absolute;
165
+ left: 26px; bottom: 24px;
166
+ color: #ffffff;
167
+ font-size: 42px; font-weight: 700;
168
+ text-shadow: 0 2px 6px rgba(0,0,0,0.35);
169
+ }
170
+
171
+ /* Recommendation bar */
172
+ .recommend {
173
+ margin: 34px 8px 0 8px;
174
+ background: #ffffff;
175
+ border-radius: 24px;
176
+ box-shadow: 0 6px 18px rgba(0,0,0,0.12);
177
+ padding: 26px;
178
+ display: flex; align-items: center; justify-content: space-between;
179
+ }
180
+ .re-left { display: flex; align-items: center; gap: 18px; }
181
+ .info-pill {
182
+ width: 38px; height: 38px; border-radius: 19px;
183
+ background: #fff5e6; border: 1px solid #e0c89a;
184
+ color: #b77a00; font-weight: 700;
185
+ display: flex; align-items: center; justify-content: center;
186
+ font-size: 24px;
187
+ }
188
+ .re-text { font-size: 32px; color: #2f2f2f; }
189
+ .chev {
190
+ width: 40px; height: 40px;
191
+ }
192
+ .chev svg { width: 100%; height: 100%; stroke: #5b5b5b; stroke-width: 3; fill: none; }
193
+
194
+ /* Bottom nav */
195
+ .bottom-nav {
196
+ position: absolute;
197
+ left: 0; bottom: 50px;
198
+ width: 100%;
199
+ height: 160px;
200
+ background: #ffffff;
201
+ border-top: 1px solid #e6e6e6;
202
+ display: flex;
203
+ align-items: center;
204
+ justify-content: space-around;
205
+ padding: 0 20px;
206
+ box-sizing: border-box;
207
+ }
208
+ .nav-item {
209
+ display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
210
+ color: #5b5b5b;
211
+ font-size: 28px; font-weight: 600;
212
+ }
213
+ .nav-item.active { color: #0b53ce; }
214
+ .nav-icon { width: 56px; height: 56px; }
215
+ .nav-icon svg { width: 100%; height: 100%; stroke-width: 2.5; fill: none; }
216
+ .profile-pill {
217
+ width: 56px; height: 56px; border-radius: 28px;
218
+ background: #e7f0ff; color: #0b53ce; display: flex; align-items: center; justify-content: center;
219
+ font-weight: 700; font-size: 28px; border: 1px solid #c7d9ff;
220
+ }
221
+
222
+ /* Gesture bar */
223
+ .gesture-bar {
224
+ position: absolute;
225
+ left: 0; bottom: 0;
226
+ width: 100%; height: 50px;
227
+ background: #000;
228
+ }
229
+ .gesture-pill {
230
+ position: absolute;
231
+ left: 50%; top: 50%;
232
+ transform: translate(-50%, -50%);
233
+ width: 220px; height: 12px;
234
+ background: #ffffff;
235
+ border-radius: 6px;
236
+ opacity: 0.9;
237
+ }
238
+
239
+ /* Utility */
240
+ .sr { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
241
+ </style>
242
+ </head>
243
+ <body>
244
+ <div id="render-target">
245
+
246
+ <!-- Header -->
247
+ <div class="header">
248
+ <div class="status-bar">
249
+ <div>3:22</div>
250
+ <div class="status-icons">
251
+ <svg width="34" height="34" viewBox="0 0 24 24">
252
+ <path d="M3 8l9-6 9 6v8a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8z"></path>
253
+ </svg>
254
+ <svg width="34" height="34" viewBox="0 0 24 24">
255
+ <path d="M3 18h18M6 12h12M9 6h6" stroke="#fff"></path>
256
+ </svg>
257
+ <div class="dot"></div>
258
+ <svg width="34" height="34" viewBox="0 0 24 24">
259
+ <path d="M2 8l10 6 10-6" stroke="#fff"></path>
260
+ </svg>
261
+ <svg width="34" height="34" viewBox="0 0 24 24">
262
+ <path d="M20 7h-3l-2-3H9L7 7H4a2 2 0 0 0-2 2v9h20V9a2 2 0 0 0-2-2z"></path>
263
+ </svg>
264
+ </div>
265
+ </div>
266
+
267
+ <div class="title-row">
268
+ <div class="brand">Booking.com</div>
269
+ <div class="header-actions">
270
+ <div class="icon-btn" style="position: relative;">
271
+ <svg viewBox="0 0 24 24">
272
+ <path d="M4 5h12a4 4 0 0 1 4 4v6a4 4 0 0 1-4 4H10l-6 4V9a4 4 0 0 1 4-4z" stroke="#fff" fill="none" stroke-width="2.4"></path>
273
+ </svg>
274
+ </div>
275
+ <div class="icon-btn" style="position: relative;">
276
+ <svg viewBox="0 0 24 24">
277
+ <path d="M12 3a5 5 0 0 1 5 5v4l2 3H5l2-3V8a5 5 0 0 1 5-5z"></path>
278
+ <circle cx="12" cy="19" r="2"></circle>
279
+ </svg>
280
+ <div class="badge">1</div>
281
+ </div>
282
+ </div>
283
+ </div>
284
+
285
+ <div class="tabs">
286
+ <div class="tab">
287
+ <svg viewBox="0 0 24 24">
288
+ <path d="M2 16l6-6 5 3 6-6" />
289
+ <path d="M12 21l2-5 5-2" />
290
+ </svg>
291
+ <span>Flights</span>
292
+ </div>
293
+ <div class="tab">
294
+ <svg viewBox="0 0 24 24">
295
+ <path d="M3 16h18M6 16l2-4h8l2 4M7 16v3M17 16v3M5 19h14" />
296
+ <circle cx="7" cy="19" r="2"></circle>
297
+ <circle cx="17" cy="19" r="2"></circle>
298
+ </svg>
299
+ <span>Car rental</span>
300
+ </div>
301
+ <div class="tab taxi">TAXI</div>
302
+ <div class="tab attractions">
303
+ <svg viewBox="0 0 24 24">
304
+ <circle cx="5" cy="12" r="2"></circle>
305
+ <circle cx="12" cy="7" r="2"></circle>
306
+ <circle cx="19" cy="12" r="2"></circle>
307
+ <path d="M7 11l3-3M14 8l3 3M7 13l3 3M17 13l-3 3"></path>
308
+ </svg>
309
+ <span>Attractions</span>
310
+ </div>
311
+ </div>
312
+ </div>
313
+
314
+ <!-- Content -->
315
+ <div class="content">
316
+ <div class="section-title">More for you</div>
317
+
318
+ <div class="card-grid">
319
+ <!-- Card 1 -->
320
+ <div class="card">
321
+ <div class="card-img">[IMG: Group hiking in mountain landscape]</div>
322
+ <div class="card-body">
323
+ <div class="card-title">Discover Late Escape Deals</div>
324
+ <div class="card-sub">Save 15% or more at destinations worldwide</div>
325
+ </div>
326
+ </div>
327
+
328
+ <!-- Card 2 -->
329
+ <div class="card">
330
+ <div class="card-img">[IMG: Person working on laptop overlooking nature]</div>
331
+ <div class="card-body">
332
+ <div class="card-title">Extended stays</div>
333
+ <div class="card-sub">Live your life anywhere with 30+ night stays</div>
334
+ </div>
335
+ </div>
336
+
337
+ <!-- Card 3 (overlay style) -->
338
+ <div class="card overlay">
339
+ <div class="card-img">[IMG: Traveler in van by river and forest]</div>
340
+ <div class="overlay-label">Travel articles</div>
341
+ </div>
342
+
343
+ <!-- Card 4 (overlay style) -->
344
+ <div class="card overlay">
345
+ <div class="card-img">[IMG: Packing suitcase close-up]</div>
346
+ <div class="overlay-label">Quick trips</div>
347
+ </div>
348
+ </div>
349
+
350
+ <!-- Recommendation Bar -->
351
+ <div class="recommend">
352
+ <div class="re-left">
353
+ <div class="info-pill">i</div>
354
+ <div class="re-text">Manage personalized recommendations</div>
355
+ </div>
356
+ <div class="chev">
357
+ <svg viewBox="0 0 24 24">
358
+ <path d="M6 9l6 6 6-6"></path>
359
+ </svg>
360
+ </div>
361
+ </div>
362
+ </div>
363
+
364
+ <!-- Bottom Navigation -->
365
+ <div class="bottom-nav">
366
+ <div class="nav-item active">
367
+ <div class="nav-icon">
368
+ <svg viewBox="0 0 24 24" stroke="#0b53ce">
369
+ <circle cx="11" cy="11" r="7"></circle>
370
+ <path d="M20 20l-4-4"></path>
371
+ </svg>
372
+ </div>
373
+ <div>Search</div>
374
+ </div>
375
+ <div class="nav-item">
376
+ <div class="nav-icon">
377
+ <svg viewBox="0 0 24 24" stroke="#5b5b5b">
378
+ <path d="M12 21s-7-4.4-7-10a4 4 0 0 1 7-2 4 4 0 0 1 7 2c0 5.6-7 10-7 10z"></path>
379
+ </svg>
380
+ </div>
381
+ <div>Saved</div>
382
+ </div>
383
+ <div class="nav-item">
384
+ <div class="nav-icon">
385
+ <svg viewBox="0 0 24 24" stroke="#5b5b5b">
386
+ <rect x="6" y="7" width="12" height="12" rx="2"></rect>
387
+ <path d="M9 7V5h6v2"></path>
388
+ <path d="M9 11h6"></path>
389
+ </svg>
390
+ </div>
391
+ <div>Bookings</div>
392
+ </div>
393
+ <div class="nav-item">
394
+ <div class="profile-pill">N</div>
395
+ <div>Profile</div>
396
+ </div>
397
+ </div>
398
+
399
+ <!-- Gesture bar -->
400
+ <div class="gesture-bar">
401
+ <div class="gesture-pill"></div>
402
+ </div>
403
+ </div>
404
+ </body>
405
+ </html>
code/890/890_4.html ADDED
@@ -0,0 +1,223 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Travel Articles 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, Arial, sans-serif;
16
+ color: #212121;
17
+ }
18
+
19
+ /* Top blue app bar */
20
+ .topbar {
21
+ position: absolute;
22
+ top: 0; left: 0;
23
+ width: 100%;
24
+ height: 240px;
25
+ background: #183E8A;
26
+ color: #ffffff;
27
+ }
28
+ .status-row {
29
+ height: 80px;
30
+ display: flex;
31
+ align-items: center;
32
+ justify-content: space-between;
33
+ padding: 0 36px;
34
+ font-size: 36px;
35
+ letter-spacing: 0.5px;
36
+ }
37
+ .status-right {
38
+ display: flex;
39
+ align-items: center;
40
+ gap: 22px;
41
+ }
42
+ .dot {
43
+ width: 10px; height: 10px; background: #fff; border-radius: 50%;
44
+ opacity: 0.9;
45
+ }
46
+
47
+ .nav-row {
48
+ height: 160px;
49
+ display: flex;
50
+ align-items: center;
51
+ padding: 0 32px;
52
+ gap: 28px;
53
+ }
54
+ .back-icon {
55
+ width: 60px; height: 60px;
56
+ }
57
+ .app-title {
58
+ font-size: 60px;
59
+ font-weight: 600;
60
+ color: #ffffff;
61
+ }
62
+
63
+ /* Content */
64
+ .content {
65
+ position: absolute;
66
+ top: 240px; left: 0; right: 0; bottom: 0;
67
+ overflow: hidden;
68
+ }
69
+
70
+ .page-header {
71
+ background: #ffffff;
72
+ padding: 32px 36px 24px 36px;
73
+ border-bottom: 1px solid #eeeeee;
74
+ }
75
+ .header-row {
76
+ display: flex;
77
+ align-items: baseline;
78
+ justify-content: space-between;
79
+ gap: 24px;
80
+ }
81
+ .header-title {
82
+ font-size: 72px;
83
+ font-weight: 700;
84
+ line-height: 82px;
85
+ }
86
+ .header-tabs {
87
+ display: flex;
88
+ gap: 36px;
89
+ color: #616161;
90
+ font-size: 40px;
91
+ white-space: nowrap;
92
+ }
93
+
94
+ /* Article blocks */
95
+ .article {
96
+ position: relative;
97
+ width: 100%;
98
+ }
99
+ .hero {
100
+ width: 100%;
101
+ height: 600px;
102
+ background: #E0E0E0;
103
+ border-top: 1px solid #BDBDBD;
104
+ border-bottom: 1px solid #BDBDBD;
105
+ display: flex;
106
+ align-items: center;
107
+ justify-content: center;
108
+ color: #757575;
109
+ font-size: 40px;
110
+ }
111
+
112
+ .overlay-card {
113
+ position: absolute;
114
+ left: 36px;
115
+ right: 36px;
116
+ bottom: -60px;
117
+ background: #ffffff;
118
+ border-radius: 8px;
119
+ box-shadow: 0 8px 24px rgba(0,0,0,0.15);
120
+ padding: 40px;
121
+ }
122
+ .article-title {
123
+ font-size: 58px;
124
+ font-weight: 700;
125
+ line-height: 70px;
126
+ margin: 0 0 20px 0;
127
+ }
128
+ .article-sub {
129
+ font-size: 38px;
130
+ color: #666666;
131
+ line-height: 52px;
132
+ margin: 0;
133
+ }
134
+
135
+ .spacer {
136
+ height: 160px;
137
+ }
138
+
139
+ /* Bottom home indicator */
140
+ .home-indicator {
141
+ position: absolute;
142
+ bottom: 24px;
143
+ left: 50%;
144
+ transform: translateX(-50%);
145
+ width: 320px;
146
+ height: 14px;
147
+ background: #000000;
148
+ opacity: 0.35;
149
+ border-radius: 8px;
150
+ }
151
+ </style>
152
+ </head>
153
+ <body>
154
+ <div id="render-target">
155
+ <!-- Top bar -->
156
+ <div class="topbar">
157
+ <div class="status-row">
158
+ <div>3:23</div>
159
+ <div class="status-right">
160
+ <div class="dot"></div>
161
+ <div class="dot"></div>
162
+ <!-- Wi-Fi icon -->
163
+ <svg class="wifi" width="48" height="48" viewBox="0 0 24 24" aria-hidden="true">
164
+ <path d="M4 9 C8 5 16 5 20 9" stroke="#ffffff" stroke-width="2" fill="none"/>
165
+ <path d="M6 12 C9 9 15 9 18 12" stroke="#ffffff" stroke-width="2" fill="none"/>
166
+ <path d="M9 15 C11 13.5 13 13.5 15 15" stroke="#ffffff" stroke-width="2" fill="none"/>
167
+ <circle cx="12" cy="18" r="1.8" fill="#ffffff"/>
168
+ </svg>
169
+ <!-- Battery icon -->
170
+ <svg class="battery" width="48" height="48" viewBox="0 0 24 24" aria-hidden="true">
171
+ <rect x="2" y="6" width="18" height="12" rx="2" ry="2" stroke="#ffffff" stroke-width="2" fill="none"/>
172
+ <rect x="20" y="9" width="2" height="6" fill="#ffffff"/>
173
+ <rect x="4" y="8" width="10" height="8" fill="#ffffff" opacity="0.8"/>
174
+ </svg>
175
+ </div>
176
+ </div>
177
+ <div class="nav-row">
178
+ <!-- Back arrow -->
179
+ <svg class="back-icon" viewBox="0 0 24 24" aria-hidden="true">
180
+ <path d="M15 4 L7 12 L15 20" stroke="#ffffff" stroke-width="2.5" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
181
+ </svg>
182
+ <div class="app-title">Travel Articles</div>
183
+ </div>
184
+ </div>
185
+
186
+ <!-- Content -->
187
+ <div class="content">
188
+ <div class="page-header">
189
+ <div class="header-row">
190
+ <div class="header-title">Travel articles</div>
191
+ <div class="header-tabs">
192
+ <div>Eat &amp; Drink</div>
193
+ <div>Health &amp; Fitness</div>
194
+ <div>Shopping</div>
195
+ </div>
196
+ </div>
197
+ </div>
198
+
199
+ <!-- Article 1 -->
200
+ <div class="article">
201
+ <div class="hero">[IMG: Bright hotel interior with beams and large windows]</div>
202
+ <div class="overlay-card">
203
+ <h2 class="article-title">The 6 best Orlando hotels for families</h2>
204
+ <p class="article-sub">Discover the best Orlando hotels for families for your vacation.</p>
205
+ </div>
206
+ </div>
207
+
208
+ <div class="spacer"></div>
209
+
210
+ <!-- Article 2 -->
211
+ <div class="article" style="margin-top: 40px;">
212
+ <div class="hero" style="height: 620px;">[IMG: City skyline view with person at lookout]</div>
213
+ <div class="overlay-card">
214
+ <h2 class="article-title">5 of the best hotels in Los Angeles</h2>
215
+ </div>
216
+ </div>
217
+ </div>
218
+
219
+ <!-- Home indicator -->
220
+ <div class="home-indicator"></div>
221
+ </div>
222
+ </body>
223
+ </html>
code/890/890_5.html ADDED
@@ -0,0 +1,161 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>Travel Articles UI</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: #ffffff;
14
+ }
15
+
16
+ /* Top bars */
17
+ .topbar {
18
+ position: relative;
19
+ width: 100%;
20
+ background: #0b4d8f;
21
+ color: #ffffff;
22
+ }
23
+ .statusbar {
24
+ height: 90px;
25
+ display: flex;
26
+ align-items: center;
27
+ padding: 0 32px;
28
+ font-size: 36px;
29
+ color: #ffffff;
30
+ opacity: 0.95;
31
+ }
32
+ .status-icons {
33
+ margin-left: auto;
34
+ display: flex;
35
+ align-items: center;
36
+ gap: 22px;
37
+ }
38
+ .status-dot {
39
+ width: 10px; height: 10px; background: #ffffff; border-radius: 50%;
40
+ opacity: 0.9;
41
+ }
42
+
43
+ .appbar {
44
+ height: 160px;
45
+ display: flex;
46
+ align-items: center;
47
+ padding: 0 32px;
48
+ }
49
+ .back-icon {
50
+ width: 64px; height: 64px; margin-right: 24px;
51
+ }
52
+ .app-title {
53
+ font-size: 58px;
54
+ font-weight: 600;
55
+ color: #ffffff;
56
+ }
57
+
58
+ /* Content sections */
59
+ .section {
60
+ position: relative;
61
+ width: 100%;
62
+ padding-bottom: 32px;
63
+ background: #ffffff;
64
+ }
65
+ .hero-image {
66
+ width: 100%;
67
+ height: 470px;
68
+ background: #E0E0E0;
69
+ border: 1px solid #BDBDBD;
70
+ display: flex;
71
+ justify-content: center;
72
+ align-items: center;
73
+ color: #757575;
74
+ font-size: 36px;
75
+ }
76
+ .card {
77
+ position: relative;
78
+ width: calc(100% - 96px);
79
+ margin: -70px 48px 24px 48px; /* overlap on image */
80
+ background: #ffffff;
81
+ border-radius: 8px;
82
+ box-shadow: 0 8px 18px rgba(0,0,0,0.15);
83
+ padding: 48px;
84
+ }
85
+ .card h2 {
86
+ margin: 0 0 28px 0;
87
+ font-size: 56px;
88
+ line-height: 70px;
89
+ color: #2b2b2b;
90
+ font-weight: 700;
91
+ }
92
+ .card p {
93
+ margin: 0;
94
+ font-size: 36px;
95
+ line-height: 50px;
96
+ color: #757575;
97
+ font-weight: 500;
98
+ }
99
+
100
+ /* Spacer between sections */
101
+ .spacer {
102
+ height: 36px;
103
+ background: #ffffff;
104
+ }
105
+
106
+ /* Gesture bar */
107
+ .gesture-bar {
108
+ position: absolute;
109
+ bottom: 40px;
110
+ left: 50%;
111
+ transform: translateX(-50%);
112
+ width: 240px;
113
+ height: 14px;
114
+ background: #d6d6d6;
115
+ border-radius: 8px;
116
+ }
117
+ </style>
118
+ </head>
119
+ <body>
120
+ <div id="render-target">
121
+
122
+ <div class="topbar">
123
+ <div class="statusbar">
124
+ <div>3:24</div>
125
+ <div class="status-icons">
126
+ <!-- Simple placeholders for status icons -->
127
+ <svg width="34" height="34" viewBox="0 0 24 24" fill="#ffffff"><circle cx="12" cy="12" r="10"/></svg>
128
+ <svg width="34" height="34" viewBox="0 0 24 24" fill="#ffffff"><rect x="4" y="10" width="16" height="8" rx="2"/></svg>
129
+ <div class="status-dot"></div>
130
+ </div>
131
+ </div>
132
+ <div class="appbar">
133
+ <svg class="back-icon" viewBox="0 0 24 24">
134
+ <path d="M15 18L9 12l6-6" stroke="#ffffff" stroke-width="2.5" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
135
+ </svg>
136
+ <div class="app-title">Travel Articles</div>
137
+ </div>
138
+ </div>
139
+
140
+ <div class="section">
141
+ <div class="hero-image">[IMG: Los Angeles skyline]</div>
142
+ <div class="card">
143
+ <h2>5 of the best hotels in Los Angeles</h2>
144
+ <p>From Hollywood to Beverly Hills discover 5 of the best hotels in Los Angeles for your stay</p>
145
+ </div>
146
+ </div>
147
+
148
+ <div class="spacer"></div>
149
+
150
+ <div class="section">
151
+ <div class="hero-image" style="height: 520px;">[IMG: Snowy mountain landscape]</div>
152
+ <div class="card">
153
+ <h2>5 best ski towns around the world</h2>
154
+ <p>Discover a winter wonderland in these charming ski destinations</p>
155
+ </div>
156
+ </div>
157
+
158
+ <div class="gesture-bar"></div>
159
+ </div>
160
+ </body>
161
+ </html>
code/890/890_6.html ADDED
@@ -0,0 +1,224 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Travel Articles UI</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; }
9
+ #render-target {
10
+ position: relative;
11
+ overflow: hidden;
12
+ width: 1080px;
13
+ height: 2400px;
14
+ background: #FFFFFF;
15
+ border-radius: 0;
16
+ box-shadow: none;
17
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
18
+ color: #212121;
19
+ }
20
+
21
+ /* Top app bar */
22
+ .appbar {
23
+ position: relative;
24
+ width: 100%;
25
+ height: 240px;
26
+ background: #183A7A; /* deep blue */
27
+ color: #FFFFFF;
28
+ }
29
+ .status-row {
30
+ height: 90px;
31
+ padding: 22px 36px 0 36px;
32
+ font-size: 36px;
33
+ display: flex;
34
+ align-items: center;
35
+ justify-content: space-between;
36
+ opacity: 0.95;
37
+ }
38
+ .status-right {
39
+ display: flex;
40
+ align-items: center;
41
+ gap: 22px;
42
+ }
43
+ .status-dot { width: 12px; height: 12px; background: #FFFFFF; border-radius: 50%; opacity: 0.9; }
44
+ .toolbar {
45
+ height: 150px;
46
+ display: flex;
47
+ align-items: center;
48
+ padding: 0 36px;
49
+ gap: 24px;
50
+ }
51
+ .toolbar h1 {
52
+ margin: 0;
53
+ font-size: 60px;
54
+ font-weight: 600;
55
+ letter-spacing: 0.2px;
56
+ }
57
+ .icon-btn {
58
+ width: 72px; height: 72px;
59
+ display: inline-flex; align-items: center; justify-content: center;
60
+ }
61
+ .icon-btn svg { width: 48px; height: 48px; fill: #FFFFFF; }
62
+
63
+ /* Content area */
64
+ .content {
65
+ position: relative;
66
+ padding: 36px;
67
+ }
68
+
69
+ .card {
70
+ background: #FFFFFF;
71
+ border-radius: 18px;
72
+ box-shadow: 0 6px 18px rgba(0,0,0,0.18);
73
+ }
74
+ .card .inner {
75
+ padding: 40px 44px;
76
+ }
77
+ .headline {
78
+ font-size: 64px;
79
+ font-weight: 700;
80
+ line-height: 76px;
81
+ margin: 0 0 24px 0;
82
+ color: #212121;
83
+ }
84
+ .subhead {
85
+ font-size: 36px;
86
+ line-height: 46px;
87
+ color: #6D6D6D;
88
+ margin: 0;
89
+ }
90
+
91
+ /* First top card */
92
+ .top-card {
93
+ margin-top: 8px;
94
+ margin-left: 12px;
95
+ margin-right: 12px;
96
+ }
97
+
98
+ /* Hero image + overlay card */
99
+ .hero {
100
+ position: relative;
101
+ width: 100%;
102
+ margin-top: 40px;
103
+ }
104
+ .img-placeholder {
105
+ width: 100%;
106
+ height: 760px;
107
+ background: #E0E0E0;
108
+ border: 1px solid #BDBDBD;
109
+ display: flex;
110
+ align-items: center;
111
+ justify-content: center;
112
+ color: #757575;
113
+ font-size: 34px;
114
+ letter-spacing: 0.3px;
115
+ }
116
+ .overlay-card {
117
+ position: absolute;
118
+ left: 24px;
119
+ right: 24px;
120
+ bottom: -40px;
121
+ }
122
+
123
+ /* Section title */
124
+ .section-title {
125
+ margin: 140px 24px 24px 24px;
126
+ font-size: 52px;
127
+ font-weight: 700;
128
+ color: #2B2B2B;
129
+ }
130
+
131
+ /* Trending card with thumbnail */
132
+ .thumb-card {
133
+ margin: 24px;
134
+ display: flex;
135
+ align-items: center;
136
+ gap: 34px;
137
+ padding: 24px;
138
+ }
139
+ .thumb-image {
140
+ width: 220px;
141
+ height: 220px;
142
+ background: #E0E0E0;
143
+ border: 1px solid #BDBDBD;
144
+ display: flex;
145
+ align-items: center;
146
+ justify-content: center;
147
+ color: #757575;
148
+ font-size: 28px;
149
+ text-align: center;
150
+ }
151
+ .thumb-text h3 {
152
+ margin: 0 0 8px 0;
153
+ font-size: 44px;
154
+ line-height: 54px;
155
+ font-weight: 600;
156
+ color: #212121;
157
+ }
158
+
159
+ /* Bottom gesture bar */
160
+ .gesture {
161
+ position: absolute;
162
+ bottom: 32px;
163
+ left: 50%;
164
+ transform: translateX(-50%);
165
+ width: 360px;
166
+ height: 16px;
167
+ background: #000000;
168
+ border-radius: 12px;
169
+ opacity: 0.85;
170
+ }
171
+ </style>
172
+ </head>
173
+ <body>
174
+ <div id="render-target">
175
+ <div class="appbar">
176
+ <div class="status-row">
177
+ <div class="status-left">3:24</div>
178
+ <div class="status-right">
179
+ <div class="status-dot"></div>
180
+ <div class="status-dot"></div>
181
+ <div class="status-dot"></div>
182
+ <div class="status-dot"></div>
183
+ </div>
184
+ </div>
185
+ <div class="toolbar">
186
+ <div class="icon-btn" aria-label="Back">
187
+ <svg viewBox="0 0 24 24"><path d="M15.5 19L8.5 12l7-7-1.5-1.5L5.5 12l8.5 8.5z"/></svg>
188
+ </div>
189
+ <h1>Travel Articles</h1>
190
+ </div>
191
+ </div>
192
+
193
+ <div class="content">
194
+ <div class="card top-card">
195
+ <div class="inner">
196
+ <h2 class="headline">5 best ski towns around the world</h2>
197
+ <p class="subhead">Discover a winter wonderland in these charming ski destinations</p>
198
+ </div>
199
+ </div>
200
+
201
+ <div class="hero">
202
+ <div class="img-placeholder">[IMG: Cabin in forest]</div>
203
+ <div class="card overlay-card">
204
+ <div class="inner">
205
+ <h2 class="headline">5 vacation homes for a Thanksgiving getaway</h2>
206
+ <p class="subhead">Enjoy Thanksgiving dinner at these vacation homes.</p>
207
+ </div>
208
+ </div>
209
+ </div>
210
+
211
+ <h2 class="section-title">Trending in "Travel Tips"</h2>
212
+
213
+ <div class="card thumb-card">
214
+ <div class="thumb-image">[IMG: Environmental protest sign]</div>
215
+ <div class="thumb-text">
216
+ <h3>6 standout sustainable cities around the world</h3>
217
+ </div>
218
+ </div>
219
+ </div>
220
+
221
+ <div class="gesture"></div>
222
+ </div>
223
+ </body>
224
+ </html>
code/8909/8909_0.html ADDED
@@ -0,0 +1,228 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Central Park Trail - 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;position:relative;overflow:hidden;
9
+ background:#0b0d0b;color:#fff;
10
+ }
11
+ .status-bar{
12
+ height:90px;padding:0 32px;display:flex;align-items:center;justify-content:space-between;
13
+ color:#cfcfcf;font-size:34px;background:#0b0d0b;
14
+ }
15
+ .status-icons{display:flex;gap:26px;align-items:center;}
16
+ .hero{
17
+ position:relative;width:100%;height:620px;overflow:hidden;
18
+ }
19
+ .hero .img{
20
+ position:absolute;inset:0;background:#E0E0E0;border-bottom:1px solid #BDBDBD;
21
+ display:flex;align-items:center;justify-content:center;color:#555;font-size:40px;
22
+ }
23
+ .hero::after{
24
+ content:"";position:absolute;left:0;right:0;bottom:0;height:260px;
25
+ background:linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.0));
26
+ }
27
+ .top-controls{
28
+ position:absolute;top:22px;left:22px;right:22px;display:flex;justify-content:space-between;align-items:center;
29
+ }
30
+ .circle-btn, .menu-btn{
31
+ width:72px;height:72px;border-radius:36px;background:rgba(0,0,0,0.45);
32
+ display:flex;align-items:center;justify-content:center;
33
+ }
34
+ .menu-btn{border-radius:18px;width:60px;height:60px}
35
+ .bookmark{
36
+ position:absolute;right:26px;top:240px;width:84px;height:120px;border-radius:24px;
37
+ background:rgba(0,0,0,0.45);display:flex;align-items:center;justify-content:center;
38
+ }
39
+ .bookmark .flag{
40
+ width:56px;height:90px;border:3px solid #fff;border-radius:14px;position:relative;
41
+ }
42
+ .bookmark .flag:after{
43
+ content:"";position:absolute;top:18px;left:10px;width:36px;height:36px;background:#fff;
44
+ clip-path:polygon(0 0, 100% 0, 100% 70%, 50% 50%, 0 70%);
45
+ }
46
+ .hero-content{
47
+ position:absolute;left:40px;bottom:24px;right:40px;
48
+ }
49
+ .title{font-size:68px;font-weight:700;letter-spacing:0.5px;margin-bottom:10px;}
50
+ .subtitle{display:flex;align-items:center;gap:12px;color:#cfdacb;font-size:36px;margin-bottom:8px;}
51
+ .subtitle .easy{color:#cfe6b0}
52
+ .location{font-size:34px;color:#cfdacb}
53
+ .green-actions{
54
+ background:#2f5a2f;padding:26px 30px;display:flex;justify-content:space-between;align-items:center;
55
+ }
56
+ .action{
57
+ display:flex;flex-direction:column;align-items:center;gap:16px;flex:1;
58
+ }
59
+ .action .icon-wrap{
60
+ width:140px;height:140px;border-radius:70px;background:#121512;display:flex;align-items:center;justify-content:center;
61
+ box-shadow:0 4px 0 rgba(0,0,0,0.35);
62
+ }
63
+ .action span{font-size:36px}
64
+ .metrics{display:flex;gap:40px;padding:38px 40px 12px;border-bottom:1px solid #1d241d}
65
+ .metric{flex:1}
66
+ .metric .label{color:#a6b0a6;font-size:34px;margin-bottom:10px}
67
+ .metric .value{font-size:54px;font-weight:700;color:#fff}
68
+ .desc{padding:24px 40px 0;color:#d6d6d6;font-size:36px;line-height:1.4}
69
+ .desc a{color:#b8d9a9;text-decoration:none}
70
+ .preview{
71
+ margin:28px 40px;padding:24px 32px;background:#1f221f;border-radius:60px;display:flex;align-items:center;gap:26px;
72
+ font-size:44px;font-weight:600;color:#fff;box-shadow:0 6px 0 rgba(0,0,0,0.35)
73
+ }
74
+ .chips{padding:0 40px;display:flex;flex-wrap:wrap;gap:22px;margin-top:10px}
75
+ .chip{
76
+ padding:18px 28px;border-radius:34px;background:#121512;color:#e8e8e8;border:1px solid #283028;
77
+ font-size:34px
78
+ }
79
+ .map{
80
+ margin:28px 40px;height:300px;background:#E0E0E0;border:1px solid #BDBDBD;color:#555;display:flex;align-items:center;justify-content:center;
81
+ font-size:40px;border-radius:22px;
82
+ }
83
+ /* simple inline icons shared style */
84
+ svg{width:48px;height:48px;fill:none;stroke:#fff;stroke-width:6;stroke-linecap:round;stroke-linejoin:round}
85
+ .big svg{width:64px;height:64px}
86
+ .star{fill:#8bd55c;stroke:none}
87
+ </style>
88
+ </head>
89
+ <body>
90
+ <div id="render-target">
91
+
92
+ <!-- Status bar -->
93
+ <div class="status-bar">
94
+ <div>12:29</div>
95
+ <div class="status-icons">
96
+ <span>◦</span>
97
+ <span>⌁</span>
98
+ <span>▦</span>
99
+ </div>
100
+ </div>
101
+
102
+ <!-- Hero section -->
103
+ <div class="hero">
104
+ <div class="img">[IMG: Lake skyline at Central Park]</div>
105
+
106
+ <div class="top-controls">
107
+ <div class="circle-btn">
108
+ <svg viewBox="0 0 24 24">
109
+ <path d="M15 5 L7 12 L15 19"></path>
110
+ </svg>
111
+ </div>
112
+ <div class="menu-btn">
113
+ <svg viewBox="0 0 24 24">
114
+ <circle cx="12" cy="5" r="2" fill="#fff"></circle>
115
+ <circle cx="12" cy="12" r="2" fill="#fff"></circle>
116
+ <circle cx="12" cy="19" r="2" fill="#fff"></circle>
117
+ </svg>
118
+ </div>
119
+ </div>
120
+
121
+ <div class="bookmark">
122
+ <div class="flag"></div>
123
+ </div>
124
+
125
+ <div class="hero-content">
126
+ <div class="title">Central Park Trail</div>
127
+ <div class="subtitle">
128
+ <span class="easy">Easy</span>
129
+ <span>•</span>
130
+ <svg class="big" viewBox="0 0 24 24">
131
+ <polygon class="star" points="12,2 15,9 22,9 16,13 18,20 12,16 6,20 8,13 2,9 9,9"></polygon>
132
+ </svg>
133
+ <span>4.5 (450)</span>
134
+ </div>
135
+ <div class="location">Central Park</div>
136
+ </div>
137
+ </div>
138
+
139
+ <!-- Actions row -->
140
+ <div class="green-actions">
141
+ <div class="action">
142
+ <div class="icon-wrap">
143
+ <svg viewBox="0 0 24 24">
144
+ <rect x="4" y="10" width="16" height="7" rx="2"></rect>
145
+ <path d="M6 10 L8 6 H16 L18 10"></path>
146
+ <circle cx="7" cy="18" r="2" fill="#fff" stroke="none"></circle>
147
+ <circle cx="17" cy="18" r="2" fill="#fff" stroke="none"></circle>
148
+ </svg>
149
+ </div>
150
+ <span>Directions</span>
151
+ </div>
152
+ <div class="action">
153
+ <div class="icon-wrap">
154
+ <svg viewBox="0 0 24 24">
155
+ <path d="M3 20 L21 12 L3 4 L7 12 Z"></path>
156
+ </svg>
157
+ </div>
158
+ <span>Navigate</span>
159
+ </div>
160
+ <div class="action">
161
+ <div class="icon-wrap">
162
+ <svg viewBox="0 0 24 24">
163
+ <path d="M4 12h8"></path>
164
+ <path d="M12 8l4 4-4 4"></path>
165
+ <rect x="4" y="5" width="16" height="14" rx="3"></rect>
166
+ </svg>
167
+ </div>
168
+ <span>Share</span>
169
+ </div>
170
+ <div class="action">
171
+ <div class="icon-wrap">
172
+ <svg viewBox="0 0 24 24">
173
+ <path d="M12 5v10"></path>
174
+ <path d="M8 11l4 4 4-4"></path>
175
+ <rect x="5" y="18" width="14" height="2"></rect>
176
+ </svg>
177
+ </div>
178
+ <span>Download</span>
179
+ </div>
180
+ </div>
181
+
182
+ <!-- Metrics -->
183
+ <div class="metrics">
184
+ <div class="metric">
185
+ <div class="label">Length</div>
186
+ <div class="value">5.95 km</div>
187
+ </div>
188
+ <div class="metric">
189
+ <div class="label">Elevation gain</div>
190
+ <div class="value">50 m</div>
191
+ </div>
192
+ <div class="metric">
193
+ <div class="label">Route type</div>
194
+ <div class="value">Point to point</div>
195
+ </div>
196
+ </div>
197
+
198
+ <!-- Description -->
199
+ <div class="desc">
200
+ Experience this 6.0‑km point‑to‑point trail near New York City, New York. Generally considered an easy route, it takes an average of 1 h 14 min to complete. This is a very popular a… <a href="#">Show more</a>
201
+ </div>
202
+
203
+ <!-- Preview button -->
204
+ <div class="preview">
205
+ <svg viewBox="0 0 24 24">
206
+ <polygon points="7,5 19,12 7,19" fill="#fff" stroke="none"></polygon>
207
+ </svg>
208
+ <span>Preview trail</span>
209
+ </div>
210
+
211
+ <!-- Chips -->
212
+ <div class="chips">
213
+ <div class="chip">dog friendly</div>
214
+ <div class="chip">kid friendly</div>
215
+ <div class="chip">Trail running</div>
216
+ <div class="chip">Walking</div>
217
+ <div class="chip">City walk</div>
218
+ <div class="chip">Lake</div>
219
+ <div class="chip">Views</div>
220
+ <div class="chip">Wildflowers</div>
221
+ </div>
222
+
223
+ <!-- Map preview -->
224
+ <div class="map">[IMG: Map preview]</div>
225
+
226
+ </div>
227
+ </body>
228
+ </html>
code/8909/8909_1.html ADDED
@@ -0,0 +1,138 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Share Trail UI Mock</title>
5
+ <style>
6
+ body { margin:0; padding:0; background:transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; }
7
+ #render-target {
8
+ width:1080px; height:2400px; position:relative; overflow:hidden;
9
+ background:#0f1a12; color:#e9ecec;
10
+ }
11
+ /* Status bar */
12
+ .status-bar {
13
+ position:absolute; top:0; left:0; right:0;
14
+ height:110px; padding:30px 36px 0 36px; color:#e8e8e8; font-weight:600;
15
+ display:flex; align-items:center; justify-content:space-between;
16
+ font-size:38px;
17
+ }
18
+ .status-right { display:flex; gap:28px; align-items:center; }
19
+ .icon { width:40px; height:40px; }
20
+ /* Header row */
21
+ .header {
22
+ position:absolute; top:110px; left:0; right:0;
23
+ height:120px; display:flex; align-items:center; gap:24px; padding:0 36px;
24
+ }
25
+ .back-btn {
26
+ width:70px; height:70px; border-radius:50%; display:flex; align-items:center; justify-content:center;
27
+ }
28
+ .title { font-size:56px; font-weight:700; letter-spacing:0.2px; }
29
+ /* Hero card */
30
+ .hero {
31
+ position:absolute; left:36px; right:36px; top:250px;
32
+ height:640px; border-radius:36px; overflow:hidden;
33
+ background:#162418;
34
+ box-shadow: 0 4px 18px rgba(0,0,0,0.45) inset;
35
+ }
36
+ .hero-img {
37
+ position:absolute; inset:0;
38
+ display:flex; align-items:center; justify-content:center;
39
+ background:#E0E0E0; border:1px solid #BDBDBD; color:#5f5f5f; font-size:42px;
40
+ }
41
+ .hero-overlay {
42
+ position:absolute; left:32px; right:32px; bottom:30px; display:flex; justify-content:space-between; align-items:flex-end;
43
+ color:#ffffff;
44
+ }
45
+ .metric { font-size:28px; opacity:0.9; }
46
+ .metric strong { display:block; font-size:36px; margin-top:8px; }
47
+ .logo {
48
+ position:absolute; right:34px; bottom:26px; color:#7ef28c; font-weight:800; font-size:42px;
49
+ }
50
+ /* Gallery area background strip */
51
+ .gallery-wrap {
52
+ position:absolute; left:0; right:0; top:930px; bottom:300px; background:#101b12;
53
+ padding:36px;
54
+ }
55
+ .thumb-grid {
56
+ display:grid; grid-template-columns:repeat(3, 1fr); grid-auto-rows: 300px; gap:30px;
57
+ }
58
+ .thumb {
59
+ background:#E0E0E0; border:1px solid #BDBDBD; color:#606060;
60
+ display:flex; align-items:center; justify-content:center; text-align:center;
61
+ border-radius:26px; font-size:30px; padding:12px;
62
+ }
63
+ .selected { outline:8px solid #35c46a; }
64
+ /* Next button */
65
+ .cta {
66
+ position:absolute; left:60px; right:60px; bottom:150px;
67
+ height:120px; background:#f0f0f0; color:#1b5e35; border-radius:60px;
68
+ display:flex; align-items:center; justify-content:center;
69
+ font-size:52px; font-weight:700;
70
+ box-shadow: 0 6px 16px rgba(0,0,0,0.35);
71
+ }
72
+ /* Home indicator */
73
+ .home-indicator {
74
+ position:absolute; left:330px; right:330px; bottom:70px; height:12px; border-radius:6px; background:#c7c7c7; opacity:0.7;
75
+ }
76
+ </style>
77
+ </head>
78
+ <body>
79
+ <div id="render-target">
80
+ <!-- Status bar -->
81
+ <div class="status-bar">
82
+ <div>12:30</div>
83
+ <div class="status-right">
84
+ <!-- Simple inline icons -->
85
+ <svg class="icon" viewBox="0 0 24 24" fill="#e8e8e8"><path d="M12 2C8.7 2 6 4.7 6 8c0 5.2 6 12 6 12s6-6.8 6-12c0-3.3-2.7-6-6-6zm0 8.5c-1.4 0-2.5-1.1-2.5-2.5S10.6 5.5 12 5.5s2.5 1.1 2.5 2.5S13.4 10.5 12 10.5z"/></svg>
86
+ <svg class="icon" viewBox="0 0 24 24" fill="#e8e8e8"><path d="M12 20a8 8 0 1 1 0-16 8 8 0 0 1 0 16zm-4-9h8v2H8z"/></svg>
87
+ <svg class="icon" viewBox="0 0 24 24" fill="#e8e8e8"><path d="M2 18l8-12 8 12H2zm11-2h7v2h-7v-2z"/></svg>
88
+ <svg class="icon" viewBox="0 0 24 24" fill="#e8e8e8"><path d="M16 6h3a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-3v-2h3V8h-3V6zM3 7h11v10H3V7zm2 2v6h7V9H5z"/></svg>
89
+ </div>
90
+ </div>
91
+
92
+ <!-- Header -->
93
+ <div class="header">
94
+ <div class="back-btn">
95
+ <svg class="icon" viewBox="0 0 24 24" fill="#e8e8e8"><path d="M15.5 19l-7-7 7-7 1.5 1.5L11 12l6 6-1.5 1z"/></svg>
96
+ </div>
97
+ <div class="title">Share trail</div>
98
+ </div>
99
+
100
+ <!-- Hero card -->
101
+ <div class="hero">
102
+ <div class="hero-img">[IMG: Lake view with city skyline]</div>
103
+ <div class="hero-overlay">
104
+ <div class="metric">Distance<strong>5.9 km</strong></div>
105
+ <div class="metric">Elev. gain<strong>50 m</strong></div>
106
+ </div>
107
+ <div class="logo">AllTrails</div>
108
+ </div>
109
+
110
+ <!-- Gallery -->
111
+ <div class="gallery-wrap">
112
+ <div class="thumb-grid">
113
+ <div class="thumb">[IMG: Map route of Central Park]</div>
114
+ <div class="thumb selected">[IMG: Lake with reflections]</div>
115
+ <div class="thumb">[IMG: Tree canopy by reservoir fence]</div>
116
+
117
+ <div class="thumb">[IMG: Red canopy building entrance]</div>
118
+ <div class="thumb">[IMG: Park lawn with city towers]</div>
119
+ <div class="thumb">[IMG: Reservoir with fence and skyline]</div>
120
+
121
+ <div class="thumb">[IMG: Clouds over water and skyline]</div>
122
+ <div class="thumb">[IMG: Fence close-up with clouds]</div>
123
+ <div class="thumb">[IMG: Tall buildings across reservoir]</div>
124
+
125
+ <div class="thumb">[IMG: Sky with big clouds]</div>
126
+ <div class="thumb">[IMG: More clouds and water]</div>
127
+ <div class="thumb">[IMG: Blue sky and clouds close]</div>
128
+ </div>
129
+ </div>
130
+
131
+ <!-- CTA -->
132
+ <div class="cta">Next</div>
133
+
134
+ <!-- Home Indicator -->
135
+ <div class="home-indicator"></div>
136
+ </div>
137
+ </body>
138
+ </html>
code/8909/8909_2.html ADDED
@@ -0,0 +1,230 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Share Trail UI</title>
5
+ <style>
6
+ body { margin:0; padding:0; background:transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
7
+ #render-target {
8
+ position: relative;
9
+ overflow: hidden;
10
+ width: 1080px;
11
+ height: 2400px;
12
+ background: #0F140F; /* deep greenish black */
13
+ color: #F2F2F2;
14
+ }
15
+ /* Status bar */
16
+ .status-bar {
17
+ position: absolute;
18
+ top: 0;
19
+ left: 0;
20
+ width: 1080px;
21
+ height: 80px;
22
+ display: flex;
23
+ align-items: center;
24
+ justify-content: space-between;
25
+ padding: 0 28px;
26
+ color: #EAEAEA;
27
+ font-weight: 600;
28
+ font-size: 34px;
29
+ }
30
+ .status-right {
31
+ display: flex;
32
+ align-items: center;
33
+ gap: 26px;
34
+ }
35
+ .icon { width: 36px; height: 36px; fill: #EAEAEA; opacity: 0.9; }
36
+ /* Header */
37
+ .header {
38
+ position: absolute;
39
+ top: 80px;
40
+ left: 0;
41
+ width: 1080px;
42
+ height: 120px;
43
+ display: flex;
44
+ align-items: center;
45
+ padding: 0 40px;
46
+ box-sizing: border-box;
47
+ color: #F7F7F7;
48
+ gap: 24px;
49
+ }
50
+ .header-title {
51
+ font-size: 48px;
52
+ font-weight: 700;
53
+ letter-spacing: 0.2px;
54
+ }
55
+
56
+ /* Content */
57
+ .content {
58
+ position: absolute;
59
+ top: 200px;
60
+ left: 0;
61
+ width: 1080px;
62
+ padding: 0 40px;
63
+ box-sizing: border-box;
64
+ }
65
+
66
+ .hero {
67
+ width: 1000px;
68
+ height: 580px;
69
+ border-radius: 36px;
70
+ background: #E0E0E0;
71
+ border: 1px solid #BDBDBD;
72
+ display: flex;
73
+ align-items: center;
74
+ justify-content: center;
75
+ color: #555;
76
+ position: relative;
77
+ overflow: hidden;
78
+ }
79
+ .hero-label { font-size: 34px; }
80
+ .hero-overlay {
81
+ position: absolute;
82
+ bottom: 28px;
83
+ left: 28px;
84
+ display: flex;
85
+ gap: 40px;
86
+ }
87
+ .metric {
88
+ background: rgba(20, 25, 20, 0.85);
89
+ border-radius: 14px;
90
+ padding: 14px 18px;
91
+ min-width: 170px;
92
+ border: 1px solid rgba(255,255,255,0.1);
93
+ }
94
+ .metric .name { font-size: 26px; color: #C9C9C9; }
95
+ .metric .value { font-size: 32px; font-weight: 700; color: #FFFFFF; margin-top: 4px; }
96
+
97
+ .watermark {
98
+ position: absolute;
99
+ right: 28px;
100
+ bottom: 28px;
101
+ color: #FFFFFF;
102
+ font-weight: 800;
103
+ font-size: 38px;
104
+ opacity: 0.9;
105
+ }
106
+
107
+ /* Grid of thumbnails */
108
+ .thumb-grid {
109
+ margin-top: 36px;
110
+ display: grid;
111
+ grid-template-columns: repeat(3, 1fr);
112
+ gap: 24px;
113
+ }
114
+ .thumb {
115
+ height: 320px;
116
+ border-radius: 26px;
117
+ background: #E0E0E0;
118
+ border: 1px solid #BDBDBD;
119
+ color: #666;
120
+ display: flex;
121
+ align-items: center;
122
+ justify-content: center;
123
+ font-size: 28px;
124
+ position: relative;
125
+ }
126
+ .thumb.selected {
127
+ border: 6px solid #57D27A;
128
+ box-shadow: 0 0 0 4px rgba(87,210,122,0.15) inset;
129
+ }
130
+
131
+ /* Bottom Next button */
132
+ .bottom-bar {
133
+ position: absolute;
134
+ bottom: 100px;
135
+ left: 40px;
136
+ width: 1000px;
137
+ height: 120px;
138
+ background: #EDEDED;
139
+ border-radius: 80px;
140
+ display: flex;
141
+ align-items: center;
142
+ justify-content: center;
143
+ color: #1A1A1A;
144
+ font-size: 52px;
145
+ font-weight: 700;
146
+ letter-spacing: 0.5px;
147
+ box-shadow: 0 6px 14px rgba(0,0,0,0.35);
148
+ }
149
+ </style>
150
+ </head>
151
+ <body>
152
+ <div id="render-target">
153
+
154
+ <!-- Status Bar -->
155
+ <div class="status-bar">
156
+ <div>12:33</div>
157
+ <div class="status-right">
158
+ <!-- location icon -->
159
+ <svg class="icon" viewBox="0 0 24 24">
160
+ <path d="M12 2l6 6-6 14-6-14 6-6zm0 6.5a2.5 2.5 0 110 5 2.5 2.5 0 010-5z"/>
161
+ </svg>
162
+ <!-- do-not-disturb icon (minus in circle) -->
163
+ <svg class="icon" viewBox="0 0 24 24">
164
+ <path d="M12 2a10 10 0 100 20 10 10 0 000-20zm-6 9h12v2H6z"/>
165
+ </svg>
166
+ <!-- wifi icon -->
167
+ <svg class="icon" viewBox="0 0 24 24">
168
+ <path d="M12 18l2 2-2 2-2-2 2-2zm-6.5-7.5C8.4 8 11.6 8 18.5 10.5l-1.5 1.5C13 10 11 10 7 12l-1.5-1.5zM2 7c6-3 14-3 20 0l-2 2C15 6 9 6 4 9L2 7z"/>
169
+ </svg>
170
+ <!-- battery icon -->
171
+ <svg class="icon" viewBox="0 0 24 24">
172
+ <path d="M2 7h16v10H2V7zm18 3h2v4h-2v-4z"/>
173
+ </svg>
174
+ </div>
175
+ </div>
176
+
177
+ <!-- Header -->
178
+ <div class="header">
179
+ <!-- back arrow -->
180
+ <svg class="icon" viewBox="0 0 24 24" style="width:48px;height:48px;">
181
+ <path d="M15 19l-7-7 7-7v14z"/>
182
+ </svg>
183
+ <div class="header-title">Share trail</div>
184
+ </div>
185
+
186
+ <!-- Content -->
187
+ <div class="content">
188
+ <!-- Hero image -->
189
+ <div class="hero">
190
+ <div class="hero-label">[IMG: Tree branch over reservoir view]</div>
191
+
192
+ <div class="hero-overlay">
193
+ <div class="metric">
194
+ <div class="name">Distance</div>
195
+ <div class="value">5.9 km</div>
196
+ </div>
197
+ <div class="metric">
198
+ <div class="name">Elev. gain</div>
199
+ <div class="value">50 m</div>
200
+ </div>
201
+ </div>
202
+
203
+ <div class="watermark">AllTrails</div>
204
+ </div>
205
+
206
+ <!-- Grid of thumbnails -->
207
+ <div class="thumb-grid">
208
+ <div class="thumb">[IMG: Map route]</div>
209
+ <div class="thumb">[IMG: Lake with skyline]</div>
210
+ <div class="thumb selected">[IMG: Tree over fence & water]</div>
211
+
212
+ <div class="thumb">[IMG: Park pavilion]</div>
213
+ <div class="thumb">[IMG: Park lawn & towers]</div>
214
+ <div class="thumb">[IMG: Reservoir with fence]</div>
215
+
216
+ <div class="thumb">[IMG: Cloudy skyline over water]</div>
217
+ <div class="thumb">[IMG: Fence & lake close view]</div>
218
+ <div class="thumb">[IMG: Towers across lake]</div>
219
+
220
+ <div class="thumb">[IMG: Blue sky & clouds]</div>
221
+ <div class="thumb">[IMG: Clouds above skyline]</div>
222
+ </div>
223
+ </div>
224
+
225
+ <!-- Bottom Next button -->
226
+ <div class="bottom-bar">Next</div>
227
+
228
+ </div>
229
+ </body>
230
+ </html>
code/8909/8909_3.html ADDED
@@ -0,0 +1,279 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Share Trail UI</title>
5
+ <style>
6
+ body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
7
+ #render-target {
8
+ width: 1080px;
9
+ height: 2400px;
10
+ position: relative;
11
+ overflow: hidden;
12
+ background: #121712; /* deep forest green/black */
13
+ color: #F2F2F2;
14
+ }
15
+
16
+ /* Status bar */
17
+ .status-bar {
18
+ position: absolute;
19
+ top: 0;
20
+ left: 0;
21
+ width: 1080px;
22
+ height: 110px;
23
+ display: flex;
24
+ align-items: center;
25
+ justify-content: space-between;
26
+ padding: 0 40px;
27
+ color: #FFFFFF;
28
+ font-weight: 600;
29
+ font-size: 42px;
30
+ }
31
+ .status-right {
32
+ display: flex;
33
+ align-items: center;
34
+ gap: 26px;
35
+ font-size: 0;
36
+ }
37
+ .icon {
38
+ width: 40px;
39
+ height: 40px;
40
+ display: inline-block;
41
+ }
42
+ .icon svg { width: 100%; height: 100%; fill: #FFFFFF; }
43
+
44
+ /* Header */
45
+ .header {
46
+ position: absolute;
47
+ top: 110px;
48
+ left: 0;
49
+ width: 1080px;
50
+ height: 110px;
51
+ display: flex;
52
+ align-items: center;
53
+ gap: 28px;
54
+ padding: 0 40px;
55
+ color: #FFFFFF;
56
+ }
57
+ .back-btn {
58
+ width: 72px;
59
+ height: 72px;
60
+ border-radius: 36px;
61
+ display: flex;
62
+ align-items: center;
63
+ justify-content: center;
64
+ }
65
+ .header-title {
66
+ font-size: 56px;
67
+ font-weight: 600;
68
+ letter-spacing: 0.2px;
69
+ }
70
+
71
+ /* Featured image card */
72
+ .hero {
73
+ position: absolute;
74
+ left: 36px;
75
+ top: 230px;
76
+ width: 1008px;
77
+ height: 620px;
78
+ border-radius: 36px;
79
+ overflow: hidden;
80
+ background: #E0E0E0;
81
+ border: 1px solid #BDBDBD;
82
+ display: flex;
83
+ align-items: flex-end;
84
+ justify-content: space-between;
85
+ }
86
+ .hero::before {
87
+ content: "";
88
+ position: absolute;
89
+ inset: 0;
90
+ background: linear-gradient(to top, rgba(0,0,0,0.45), rgba(0,0,0,0.05));
91
+ pointer-events: none;
92
+ }
93
+ .hero-label {
94
+ position: absolute;
95
+ top: 20px;
96
+ left: 24px;
97
+ width: 960px;
98
+ height: 60px;
99
+ display: flex;
100
+ align-items: center;
101
+ justify-content: center;
102
+ color: #222;
103
+ font-size: 28px;
104
+ font-weight: 600;
105
+ }
106
+ .hero-content {
107
+ position: relative;
108
+ width: 100%;
109
+ padding: 26px 30px;
110
+ display: flex;
111
+ align-items: flex-end;
112
+ justify-content: space-between;
113
+ z-index: 1;
114
+ }
115
+ .metrics {
116
+ display: flex;
117
+ gap: 40px;
118
+ color: #FFFFFF;
119
+ }
120
+ .metric {
121
+ display: flex;
122
+ flex-direction: column;
123
+ gap: 6px;
124
+ }
125
+ .metric .label {
126
+ font-size: 26px;
127
+ opacity: 0.85;
128
+ }
129
+ .metric .value {
130
+ font-size: 34px;
131
+ font-weight: 700;
132
+ }
133
+ .alltrails {
134
+ background: rgba(255,255,255,0.15);
135
+ color: #FFFFFF;
136
+ border: 1px solid rgba(255,255,255,0.3);
137
+ border-radius: 14px;
138
+ padding: 12px 16px;
139
+ font-size: 28px;
140
+ font-weight: 600;
141
+ }
142
+
143
+ /* Gallery grid */
144
+ .gallery {
145
+ position: absolute;
146
+ left: 36px;
147
+ top: 900px;
148
+ width: 1008px;
149
+ display: grid;
150
+ grid-template-columns: repeat(3, 1fr);
151
+ gap: 30px;
152
+ }
153
+ .tile {
154
+ height: 300px;
155
+ border-radius: 24px;
156
+ background: #E0E0E0;
157
+ border: 1px solid #BDBDBD;
158
+ display: flex;
159
+ align-items: center;
160
+ justify-content: center;
161
+ color: #757575;
162
+ font-size: 26px;
163
+ text-align: center;
164
+ padding: 18px;
165
+ }
166
+ .tile.selected {
167
+ box-shadow: 0 0 0 6px #57D37B inset;
168
+ border-color: #57D37B;
169
+ }
170
+
171
+ /* Next button */
172
+ .next-cta {
173
+ position: absolute;
174
+ left: 60px;
175
+ bottom: 170px;
176
+ width: 960px;
177
+ height: 120px;
178
+ background: #FFFFFF;
179
+ color: #2B2B2B;
180
+ border-radius: 60px;
181
+ display: flex;
182
+ align-items: center;
183
+ justify-content: center;
184
+ font-size: 52px;
185
+ font-weight: 700;
186
+ letter-spacing: 0.5px;
187
+ box-shadow: 0 6px 12px rgba(0,0,0,0.35);
188
+ }
189
+
190
+ /* Home indicator */
191
+ .home-indicator {
192
+ position: absolute;
193
+ bottom: 70px;
194
+ left: 50%;
195
+ transform: translateX(-50%);
196
+ width: 300px;
197
+ height: 10px;
198
+ background: #D9D9D9;
199
+ border-radius: 8px;
200
+ opacity: 0.85;
201
+ }
202
+ </style>
203
+ </head>
204
+ <body>
205
+ <div id="render-target">
206
+
207
+ <!-- Status bar -->
208
+ <div class="status-bar">
209
+ <div class="status-left">12:34</div>
210
+ <div class="status-right">
211
+ <span class="icon" title="Location">
212
+ <svg viewBox="0 0 24 24"><path d="M12 2c4.2 0 7.5 3.3 7.5 7.5 0 5.6-7.5 12.5-7.5 12.5S4.5 15.1 4.5 9.5C4.5 5.3 7.8 2 12 2zm0 10a3 3 0 1 0 0-6 3 3 0 0 0 0 6z"/></svg>
213
+ </span>
214
+ <span class="icon" title="Do Not Disturb">
215
+ <svg viewBox="0 0 24 24"><path d="M12 2a10 10 0 1 1 0 20A10 10 0 0 1 12 2zm-6 9h12v2H6z"/></svg>
216
+ </span>
217
+ <span class="icon" title="Wi‑Fi">
218
+ <svg viewBox="0 0 24 24"><path d="M12 18l-2.5 2.5L12 23l2.5-2.5L12 18zm-7-8c3.9-3.9 10.1-3.9 14 0l-1.4 1.4c-3.1-3.1-8.1-3.1-11.3 0L5 10zm3.5 3.5c2.9-2.9 7.6-2.9 10.6 0l-1.4 1.4c-2.2-2.2-5.7-2.2-7.9 0l-1.3-1.4z"/></svg>
219
+ </span>
220
+ <span class="icon" title="Battery">
221
+ <svg viewBox="0 0 24 24"><path d="M20 7h1v10h-1v2H4V5h16v2zM6 7v10h12V7H6z"/></svg>
222
+ </span>
223
+ </div>
224
+ </div>
225
+
226
+ <!-- Header -->
227
+ <div class="header">
228
+ <div class="back-btn">
229
+ <svg class="icon" viewBox="0 0 24 24"><path d="M15.5 3.5L7 12l8.5 8.5-1.5 1.5L4 12 14 2l1.5 1.5z"/></svg>
230
+ </div>
231
+ <div class="header-title">Share trail</div>
232
+ </div>
233
+
234
+ <!-- Featured image -->
235
+ <div class="hero">
236
+ <div class="hero-label">[IMG: Lake view under tree canopy]</div>
237
+ <div class="hero-content">
238
+ <div class="metrics">
239
+ <div class="metric">
240
+ <div class="label">Distance</div>
241
+ <div class="value">5.9 km</div>
242
+ </div>
243
+ <div class="metric">
244
+ <div class="label">Elev. gain</div>
245
+ <div class="value">50 m</div>
246
+ </div>
247
+ </div>
248
+ <div class="alltrails">AllTrails</div>
249
+ </div>
250
+ </div>
251
+
252
+ <!-- Gallery -->
253
+ <div class="gallery">
254
+ <div class="tile">[IMG: Map of trail route]</div>
255
+ <div class="tile">[IMG: Reservoir with skyline]</div>
256
+ <div class="tile selected">[IMG: Tree branch over lake path]</div>
257
+
258
+ <div class="tile">[IMG: Building with red awning]</div>
259
+ <div class="tile">[IMG: Park hill with towers]</div>
260
+ <div class="tile">[IMG: Lake with fence and clouds]</div>
261
+
262
+ <div class="tile">[IMG: Skyline over water and fence]</div>
263
+ <div class="tile">[IMG: Fence close-up with water]</div>
264
+ <div class="tile">[IMG: Tall towers across reservoir]</div>
265
+
266
+ <div class="tile">[IMG: Bright clouds over water]</div>
267
+ <div class="tile">[IMG: Cloudy sky above city line]</div>
268
+ <div class="tile">[IMG: Cloud clusters and blue sky]</div>
269
+ </div>
270
+
271
+ <!-- Next CTA -->
272
+ <div class="next-cta">Next</div>
273
+
274
+ <!-- Home indicator -->
275
+ <div class="home-indicator"></div>
276
+
277
+ </div>
278
+ </body>
279
+ </html>
code/8909/8909_4.html ADDED
@@ -0,0 +1,267 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Share trail - Mock UI</title>
5
+ <style>
6
+ body {
7
+ margin: 0;
8
+ padding: 0;
9
+ background: transparent;
10
+ font-family: Arial, Helvetica, sans-serif;
11
+ }
12
+ #render-target {
13
+ width: 1080px;
14
+ height: 2400px;
15
+ position: relative;
16
+ overflow: hidden;
17
+ background: #0f1712; /* deep olive/dark theme */
18
+ color: #fff;
19
+ }
20
+
21
+ /* Top status bar */
22
+ .status-bar {
23
+ height: 88px;
24
+ padding: 0 36px;
25
+ display: flex;
26
+ align-items: center;
27
+ justify-content: space-between;
28
+ color: #e9e9e9;
29
+ font-weight: 600;
30
+ font-size: 36px;
31
+ opacity: 0.95;
32
+ }
33
+ .status-icons {
34
+ display: flex;
35
+ gap: 24px;
36
+ align-items: center;
37
+ }
38
+ .status-icons svg {
39
+ width: 36px;
40
+ height: 36px;
41
+ fill: #e9e9e9;
42
+ }
43
+
44
+ /* Title row */
45
+ .title-row {
46
+ height: 110px;
47
+ padding: 0 36px;
48
+ display: flex;
49
+ align-items: center;
50
+ gap: 26px;
51
+ color: #f5f5f5;
52
+ }
53
+ .title-row .back {
54
+ width: 60px;
55
+ height: 60px;
56
+ display: inline-flex;
57
+ align-items: center;
58
+ justify-content: center;
59
+ border-radius: 30px;
60
+ }
61
+ .title-row .text {
62
+ font-size: 48px;
63
+ font-weight: 700;
64
+ letter-spacing: 0.2px;
65
+ }
66
+
67
+ /* Hero image card */
68
+ .hero {
69
+ margin: 10px 36px 24px;
70
+ height: 520px;
71
+ border-radius: 38px;
72
+ position: relative;
73
+ overflow: hidden;
74
+ border: 1px solid #1c2a22;
75
+ background: linear-gradient(0deg,#102018,#102018);
76
+ }
77
+ .hero .img {
78
+ position: absolute;
79
+ inset: 0;
80
+ display: flex;
81
+ align-items: center;
82
+ justify-content: center;
83
+ background: #E0E0E0;
84
+ border: 1px solid #BDBDBD;
85
+ color: #757575;
86
+ font-size: 34px;
87
+ }
88
+ .overlay {
89
+ position: absolute;
90
+ left: 24px;
91
+ right: 24px;
92
+ bottom: 22px;
93
+ display: flex;
94
+ justify-content: space-between;
95
+ align-items: flex-end;
96
+ color: #fff;
97
+ }
98
+ .metrics {
99
+ display: flex;
100
+ gap: 60px;
101
+ }
102
+ .metric {
103
+ font-size: 28px;
104
+ opacity: 0.95;
105
+ }
106
+ .metric .label {
107
+ font-size: 26px;
108
+ color: #cfd8dc;
109
+ }
110
+ .metric .value {
111
+ font-size: 30px;
112
+ font-weight: 700;
113
+ margin-top: 6px;
114
+ }
115
+ .brand {
116
+ display: flex;
117
+ align-items: center;
118
+ gap: 14px;
119
+ font-size: 36px;
120
+ font-weight: 800;
121
+ color: #eaf7ee;
122
+ }
123
+ .brand svg {
124
+ width: 56px;
125
+ height: 56px;
126
+ fill: #44c27c;
127
+ }
128
+
129
+ /* Grid of thumbnails */
130
+ .grid {
131
+ margin: 8px 36px 0;
132
+ display: grid;
133
+ grid-template-columns: repeat(3, 1fr);
134
+ gap: 28px;
135
+ }
136
+ .thumb {
137
+ height: 290px;
138
+ border-radius: 26px;
139
+ overflow: hidden;
140
+ border: 1px solid #1f2b22;
141
+ background: #E0E0E0;
142
+ display: flex;
143
+ align-items: center;
144
+ justify-content: center;
145
+ color: #757575;
146
+ text-align: center;
147
+ font-size: 28px;
148
+ line-height: 1.25;
149
+ }
150
+ .thumb.selected {
151
+ border: 6px solid #45b876;
152
+ box-shadow: 0 0 0 4px #12381f inset;
153
+ }
154
+
155
+ /* Bottom next button */
156
+ .bottom-area {
157
+ position: absolute;
158
+ left: 0;
159
+ right: 0;
160
+ bottom: 90px;
161
+ display: flex;
162
+ align-items: center;
163
+ justify-content: center;
164
+ }
165
+ .next-btn {
166
+ width: 940px;
167
+ height: 134px;
168
+ border-radius: 84px;
169
+ background: #f2f2f2;
170
+ color: #1d291f;
171
+ display: flex;
172
+ align-items: center;
173
+ justify-content: center;
174
+ font-size: 54px;
175
+ font-weight: 800;
176
+ letter-spacing: 0.5px;
177
+ box-shadow: 0 6px 18px rgba(0,0,0,0.35) inset;
178
+ }
179
+ /* Home indicator */
180
+ .home-indicator {
181
+ position: absolute;
182
+ bottom: 22px;
183
+ left: 50%;
184
+ transform: translateX(-50%);
185
+ width: 420px;
186
+ height: 10px;
187
+ background: #cfcfcf;
188
+ border-radius: 6px;
189
+ opacity: 0.5;
190
+ }
191
+ </style>
192
+ </head>
193
+ <body>
194
+ <div id="render-target">
195
+
196
+ <!-- Status Bar -->
197
+ <div class="status-bar">
198
+ <div>12:35</div>
199
+ <div class="status-icons">
200
+ <!-- location pin -->
201
+ <svg viewBox="0 0 24 24"><path d="M12 2c3.3 0 6 2.7 6 6 0 5.5-6 14-6 14S6 13.5 6 8c0-3.3 2.7-6 6-6zm0 8a2 2 0 100-4 2 2 0 000 4z"/></svg>
202
+ <!-- do-not-disturb -->
203
+ <svg viewBox="0 0 24 24"><path d="M12 2a10 10 0 110 20 10 10 0 010-20zm-6 10h12a6 6 0 10-12 0z"/></svg>
204
+ <!-- wifi -->
205
+ <svg viewBox="0 0 24 24"><path d="M12 18l2 2-2 2-2-2 2-2zm-6-6a10 10 0 0112 0l-2 2a7 7 0 00-8 0l-2-2zm-3-3a14 14 0 0118 0l-2 2a11 11 0 00-14 0l-2-2z"/></svg>
206
+ <!-- battery -->
207
+ <svg viewBox="0 0 24 24"><path d="M2 8h16a2 2 0 012 2v4a2 2 0 01-2 2H2a2 2 0 01-2-2v-4a2 2 0 012-2zm18 2h2v4h-2v-4z"/></svg>
208
+ </div>
209
+ </div>
210
+
211
+ <!-- Title Row -->
212
+ <div class="title-row">
213
+ <div class="back">
214
+ <svg viewBox="0 0 24 24" width="48" height="48" fill="#e9e9e9"><path d="M15.5 4.5L7 12l8.5 7.5-1.5 2L4 12 14 2.5z"/></svg>
215
+ </div>
216
+ <div class="text">Share trail</div>
217
+ </div>
218
+
219
+ <!-- Hero Image Card -->
220
+ <div class="hero">
221
+ <div class="img">[IMG: Tree canopy over lake reservoir]</div>
222
+ <div class="overlay">
223
+ <div class="metrics">
224
+ <div class="metric">
225
+ <div class="label">Distance</div>
226
+ <div class="value">5.9 km</div>
227
+ </div>
228
+ <div class="metric">
229
+ <div class="label">Elev. gain</div>
230
+ <div class="value">50 m</div>
231
+ </div>
232
+ </div>
233
+ <div class="brand">
234
+ <svg viewBox="0 0 24 24"><path d="M5 14l3-5 3 4 3-6 5 9H5z"/></svg>
235
+ <span>AllTrails</span>
236
+ </div>
237
+ </div>
238
+ </div>
239
+
240
+ <!-- Grid of thumbnails -->
241
+ <div class="grid">
242
+ <div class="thumb">[IMG: Park map route]</div>
243
+ <div class="thumb">[IMG: Reservoir with skyline]</div>
244
+ <div class="thumb selected">[IMG: Tree-lined path by water]</div>
245
+
246
+ <div class="thumb">[IMG: Building with red canopy]</div>
247
+ <div class="thumb">[IMG: Sunny park lawn and trees]</div>
248
+ <div class="thumb">[IMG: Reservoir with fence and city]</div>
249
+
250
+ <div class="thumb">[IMG: Water & clouds panorama]</div>
251
+ <div class="thumb">[IMG: Fence close-up with lake]</div>
252
+ <div class="thumb">[IMG: Tall stacks across water]</div>
253
+
254
+ <div class="thumb">[IMG: Cloudy sky over lake]</div>
255
+ <div class="thumb">[IMG: Reservoir panorama with clouds]</div>
256
+ <div class="thumb">[IMG: Cloud clusters above water]</div>
257
+ </div>
258
+
259
+ <!-- Bottom Next Button -->
260
+ <div class="bottom-area">
261
+ <div class="next-btn">Next</div>
262
+ </div>
263
+
264
+ <div class="home-indicator"></div>
265
+ </div>
266
+ </body>
267
+ </html>
code/8909/8909_5.html ADDED
@@ -0,0 +1,199 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
5
+ <style>
6
+ body { margin:0; padding:0; background:transparent; font-family: system-ui, -apple-system, Roboto, Arial, sans-serif; }
7
+ #render-target {
8
+ width:1080px; height:2400px;
9
+ position:relative; overflow:hidden;
10
+ background:#121212; color:#fff;
11
+ }
12
+
13
+ /* Status bar */
14
+ .status-bar {
15
+ position:absolute; top:0; left:0; right:0;
16
+ height:90px; padding:24px 32px;
17
+ color:#eaeaea; font-weight:600; font-size:36px;
18
+ }
19
+ .status-bar .right-icons { position:absolute; right:28px; top:26px; display:flex; gap:26px; align-items:center; }
20
+ .icon-dot { width:24px; height:24px; border-radius:50%; border:2px solid #e0e0e0; opacity:0.85; }
21
+ .icon-wifi, .icon-battery, .icon-location {
22
+ width:34px; height:24px; position:relative;
23
+ }
24
+ .icon-wifi:before {
25
+ content:""; position:absolute; left:2px; right:2px; top:2px; height:18px;
26
+ border:2px solid #e0e0e0; border-top-left-radius:18px; border-top-right-radius:18px; border-bottom:none; opacity:0.85;
27
+ }
28
+ .icon-location:before {
29
+ content:""; position:absolute; left:10px; top:0; width:14px; height:22px;
30
+ border:2px solid #e0e0e0; border-radius:10px 10px 10px 10px; opacity:0.85;
31
+ }
32
+ .icon-battery {
33
+ border:2px solid #e0e0e0; border-radius:4px;
34
+ }
35
+ .icon-battery:after {
36
+ content:""; position:absolute; right:-8px; top:6px; width:6px; height:12px; background:#e0e0e0; border-radius:2px;
37
+ }
38
+
39
+ /* Top bar */
40
+ .top-bar {
41
+ position:absolute; top:90px; left:0; right:0;
42
+ height:120px; display:flex; align-items:center; gap:18px; color:#d9d9d9;
43
+ padding:0 32px;
44
+ }
45
+ .back-btn {
46
+ width:56px; height:56px; display:flex; align-items:center; justify-content:center; border-radius:28px;
47
+ }
48
+ .back-btn svg { width:38px; height:38px; fill:none; stroke:#e6e6e6; stroke-width:6; }
49
+ .title { font-size:52px; font-weight:700; color:#e6e6e6; }
50
+
51
+ /* Hero image placeholder */
52
+ .hero {
53
+ position:absolute; left:40px; top:220px;
54
+ width:1000px; height:470px; border-radius:36px;
55
+ background:#E0E0E0; border:1px solid #BDBDBD;
56
+ display:flex; align-items:center; justify-content:center; color:#555; font-size:36px; text-align:center;
57
+ overflow:hidden;
58
+ }
59
+ .hero .info {
60
+ position:absolute; bottom:18px; left:24px; right:24px; display:flex; gap:60px; color:#ddd; font-size:28px;
61
+ justify-content:flex-start;
62
+ }
63
+ .hero .info .value { color:#9ee493; font-weight:700; margin-left:10px; }
64
+
65
+ /* Bottom sheet */
66
+ .sheet {
67
+ position:absolute; left:0; right:0; top:760px;
68
+ height:1640px; background:#181818; border-top-left-radius:34px; border-top-right-radius:34px;
69
+ box-shadow:0 -6px 20px rgba(0,0,0,0.45);
70
+ }
71
+ .handle {
72
+ width:140px; height:10px; background:#2a2a2a; border-radius:6px;
73
+ position:absolute; top:18px; left:50%; transform:translateX(-50%);
74
+ }
75
+ .sheet-content { padding:80px 48px 40px; }
76
+ .sheet h2 { font-size:44px; margin:0 0 16px 0; color:#ffffff; }
77
+ .sheet .url { font-size:32px; color:#bcbcbc; line-height:1.4; }
78
+ .btn-row { display:flex; gap:26px; margin-top:36px; }
79
+ .btn {
80
+ display:flex; align-items:center; gap:16px; padding:22px 32px;
81
+ border-radius:18px; border:2px solid #7cc576; color:#cfe9c9; background:#141414; font-size:34px; font-weight:700;
82
+ }
83
+ .btn svg { width:34px; height:34px; stroke:#9ee493; fill:none; stroke-width:4; }
84
+
85
+ .input-pill {
86
+ margin-top:42px; padding:36px 42px; border-radius:44px; border:2px solid #2e2e2e;
87
+ background:#121212; color:#ffffff; font-size:44px; font-weight:600;
88
+ }
89
+
90
+ .subtle { margin-top:32px; color:#9f9f9f; font-size:34px; text-align:center; }
91
+
92
+ /* Share targets */
93
+ .apps { margin-top:40px; display:flex; justify-content:space-around; padding:0 40px; }
94
+ .app { width:200px; text-align:center; color:#dcdcdc; }
95
+ .app .circle {
96
+ width:150px; height:150px; border-radius:75px; margin:0 auto 18px auto;
97
+ display:flex; align-items:center; justify-content:center; font-size:42px; font-weight:800; color:#fff;
98
+ }
99
+ .app .label { font-size:34px; color:#d6d6d6; }
100
+
101
+ .blue { background:#2F7BF6; }
102
+ .gmail {
103
+ background:linear-gradient(135deg,#EA4335 0 25%,#FBBC05 25% 50%,#34A853 50% 75%,#4285F4 75% 100%);
104
+ }
105
+ .drive { background:linear-gradient(45deg,#1FA463,#F9BB00,#3A86F7); }
106
+ .yellow { background:#F5C437; color:#222; }
107
+
108
+ /* Bottom gesture bar */
109
+ .gesture {
110
+ position:absolute; bottom:22px; left:50%; transform:translateX(-50%);
111
+ width:420px; height:10px; background:#2a2a2a; border-radius:6px;
112
+ }
113
+ </style>
114
+ </head>
115
+ <body>
116
+ <div id="render-target">
117
+
118
+ <!-- Status bar -->
119
+ <div class="status-bar">
120
+ 12:35
121
+ <div class="right-icons">
122
+ <div class="icon-location"></div>
123
+ <div class="icon-dot"></div>
124
+ <div class="icon-dot"></div>
125
+ <div class="icon-wifi"></div>
126
+ <div class="icon-battery"></div>
127
+ </div>
128
+ </div>
129
+
130
+ <!-- Top action bar -->
131
+ <div class="top-bar">
132
+ <div class="back-btn">
133
+ <svg viewBox="0 0 24 24"><path d="M15 4 L7 12 L15 20" /></svg>
134
+ </div>
135
+ <div class="title">Share trail</div>
136
+ </div>
137
+
138
+ <!-- Hero image preview -->
139
+ <div class="hero">
140
+ [IMG: AllTrails trail banner]
141
+ <div class="info">
142
+ <div>Distance <span class="value">5.9 km</span></div>
143
+ <div>Elev. gain <span class="value">50 m</span></div>
144
+ </div>
145
+ </div>
146
+
147
+ <!-- Bottom sheet -->
148
+ <div class="sheet">
149
+ <div class="handle"></div>
150
+ <div class="sheet-content">
151
+ <h2>Central Park Trail on AllTrails</h2>
152
+ <div class="url">https://www.alltrails.com/trail/us/new-york/manhattan-c...</div>
153
+
154
+ <div class="btn-row">
155
+ <div class="btn">
156
+ <svg viewBox="0 0 24 24">
157
+ <rect x="5" y="7" width="12" height="12" rx="2"></rect>
158
+ <path d="M9 5 h8 v10" />
159
+ </svg>
160
+ Copy
161
+ </div>
162
+ <div class="btn">
163
+ <svg viewBox="0 0 24 24">
164
+ <path d="M4 12 L10 8 L14 12 L20 8" />
165
+ <path d="M4 16 L10 12 L14 16 L20 12" />
166
+ </svg>
167
+ Nearby
168
+ </div>
169
+ </div>
170
+
171
+ <div class="input-pill">Central Park Trail</div>
172
+
173
+ <div class="subtle">No recommended people to share with</div>
174
+
175
+ <div class="apps">
176
+ <div class="app">
177
+ <div class="circle blue">M</div>
178
+ <div class="label">Messages</div>
179
+ </div>
180
+ <div class="app">
181
+ <div class="circle gmail">G</div>
182
+ <div class="label">Gmail</div>
183
+ </div>
184
+ <div class="app">
185
+ <div class="circle drive">D</div>
186
+ <div class="label">Drive</div>
187
+ </div>
188
+ <div class="app">
189
+ <div class="circle yellow">K</div>
190
+ <div class="label">Keep Notes</div>
191
+ </div>
192
+ </div>
193
+ </div>
194
+ </div>
195
+
196
+ <div class="gesture"></div>
197
+ </div>
198
+ </body>
199
+ </html>
code/8909/8909_6.html ADDED
@@ -0,0 +1,218 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
5
+ <title>Select Conversation UI</title>
6
+ <style>
7
+ body { margin: 0; padding: 0; background: transparent; font-family: "Roboto", Arial, sans-serif; }
8
+ #render-target {
9
+ width: 1080px;
10
+ height: 2400px;
11
+ position: relative;
12
+ overflow: hidden;
13
+ background: #0b0d0a;
14
+ }
15
+
16
+ /* Status bar */
17
+ .status-bar {
18
+ position: absolute;
19
+ top: 0;
20
+ left: 0;
21
+ width: 1080px;
22
+ height: 110px;
23
+ display: flex;
24
+ align-items: center;
25
+ padding: 0 40px;
26
+ color: #ffffff;
27
+ font-weight: 600;
28
+ }
29
+ .status-left, .status-right {
30
+ display: flex;
31
+ align-items: center;
32
+ }
33
+ .status-left { gap: 24px; }
34
+ .status-right { margin-left: auto; gap: 28px; }
35
+ .time { font-size: 44px; letter-spacing: 0.5px; }
36
+
37
+ /* Modal card */
38
+ .modal {
39
+ position: absolute;
40
+ left: 50%;
41
+ top: 980px;
42
+ transform: translateX(-50%);
43
+ width: 920px;
44
+ background: #1f2a21;
45
+ border-radius: 54px;
46
+ box-shadow: 0 30px 80px rgba(0,0,0,0.55);
47
+ color: #ffffff;
48
+ overflow: hidden;
49
+ }
50
+ .modal-inner {
51
+ padding: 58px 60px 40px;
52
+ }
53
+ .title {
54
+ font-size: 64px;
55
+ line-height: 1.15;
56
+ margin: 0 0 50px 0;
57
+ font-weight: 700;
58
+ letter-spacing: 0.3px;
59
+ }
60
+ .conversation {
61
+ display: flex;
62
+ gap: 34px;
63
+ align-items: center;
64
+ margin-bottom: 44px;
65
+ }
66
+ .avatar {
67
+ width: 150px;
68
+ height: 150px;
69
+ border-radius: 50%;
70
+ background: #dadada;
71
+ border: 1px solid #bdbdbd;
72
+ display: flex;
73
+ justify-content: center;
74
+ align-items: center;
75
+ color: #666;
76
+ font-size: 22px;
77
+ }
78
+ .lines {
79
+ flex: 1;
80
+ }
81
+ .line {
82
+ height: 26px;
83
+ background: #eaeaea;
84
+ border-radius: 12px;
85
+ margin-bottom: 18px;
86
+ }
87
+ .w1 { width: 330px; }
88
+ .w2 { width: 560px; }
89
+ .w3 { width: 160px; }
90
+ .w4 { width: 500px; }
91
+ .w5 { width: 620px; }
92
+ .w6 { width: 200px; }
93
+
94
+ .hint {
95
+ text-align: center;
96
+ font-size: 36px;
97
+ color: #d8d8d8;
98
+ margin: 16px 40px 50px;
99
+ line-height: 1.35;
100
+ }
101
+ .modal-footer {
102
+ border-top: 2px solid rgba(255,255,255,0.55);
103
+ padding: 34px 54px 42px;
104
+ display: flex;
105
+ justify-content: space-between;
106
+ align-items: center;
107
+ }
108
+ .btn {
109
+ font-size: 42px;
110
+ font-weight: 600;
111
+ color: #9BE277;
112
+ cursor: default;
113
+ }
114
+ .btn.secondary {
115
+ color: #9BE277;
116
+ opacity: 0.95;
117
+ }
118
+
119
+ /* Helper: center content vertically inside avatar text */
120
+ .avatar span { display: block; text-align: center; padding: 0 16px; }
121
+
122
+ /* Simple icon styling for status bar */
123
+ .icon {
124
+ width: 40px; height: 40px;
125
+ display: inline-flex; align-items: center; justify-content: center;
126
+ }
127
+ .icon svg { width: 40px; height: 40px; fill: none; stroke: #ffffff; stroke-width: 4; }
128
+ .icon.fill svg { fill: #ffffff; stroke: none; }
129
+ </style>
130
+ </head>
131
+ <body>
132
+ <div id="render-target">
133
+
134
+ <!-- Status Bar -->
135
+ <div class="status-bar">
136
+ <div class="status-left">
137
+ <div class="time">12:36</div>
138
+ <div class="icon">
139
+ <!-- crescent moon -->
140
+ <svg viewBox="0 0 24 24"><path d="M14 3a9 9 0 1 0 7 14.5A10 10 0 1 1 14 3z"/></svg>
141
+ </div>
142
+ <div class="icon fill">
143
+ <!-- rounded square -->
144
+ <svg viewBox="0 0 24 24"><rect x="4" y="4" width="16" height="16" rx="3"/></svg>
145
+ </div>
146
+ <div class="icon">
147
+ <!-- M envelope simplified -->
148
+ <svg viewBox="0 0 24 24">
149
+ <rect x="3" y="5" width="18" height="14" rx="2" stroke="#fff" fill="none"/>
150
+ <path d="M3 7l9 6 9-6" />
151
+ </svg>
152
+ </div>
153
+ </div>
154
+ <div class="status-right">
155
+ <div class="icon">
156
+ <!-- do-not-disturb -->
157
+ <svg viewBox="0 0 24 24">
158
+ <circle cx="12" cy="12" r="9" />
159
+ <path d="M7 12h10" />
160
+ </svg>
161
+ </div>
162
+ <div class="icon">
163
+ <!-- wifi -->
164
+ <svg viewBox="0 0 24 24">
165
+ <path d="M3 9c4.5-4 13.5-4 18 0"/>
166
+ <path d="M6 12c3-2.5 9-2.5 12 0"/>
167
+ <path d="M9 15c1.5-1 4.5-1 6 0"/>
168
+ <circle cx="12" cy="18" r="1.8" fill="#fff" stroke="none"/>
169
+ </svg>
170
+ </div>
171
+ <div class="icon">
172
+ <!-- battery -->
173
+ <svg viewBox="0 0 28 24">
174
+ <rect x="3" y="6" width="18" height="12" rx="2" />
175
+ <rect x="22" y="9" width="3" height="6" rx="1" />
176
+ </svg>
177
+ </div>
178
+ </div>
179
+ </div>
180
+
181
+ <!-- Modal Card -->
182
+ <div class="modal">
183
+ <div class="modal-inner">
184
+ <div class="title">Select conversation</div>
185
+
186
+ <div class="conversation">
187
+ <div class="avatar"><span>[IMG: User Avatar]</span></div>
188
+ <div class="lines">
189
+ <div class="line w1"></div>
190
+ <div class="line w2"></div>
191
+ <div class="line w3"></div>
192
+ </div>
193
+ </div>
194
+
195
+ <div class="conversation">
196
+ <div class="avatar"><span>[IMG: User Avatar]</span></div>
197
+ <div class="lines">
198
+ <div class="line w4"></div>
199
+ <div class="line w5"></div>
200
+ <div class="line w6"></div>
201
+ </div>
202
+ </div>
203
+
204
+ <div class="hint">
205
+ Once you start a new<br>
206
+ conversation, you’ll see it listed<br>
207
+ here
208
+ </div>
209
+ </div>
210
+ <div class="modal-footer">
211
+ <div class="btn secondary">Cancel</div>
212
+ <div class="btn">New message</div>
213
+ </div>
214
+ </div>
215
+
216
+ </div>
217
+ </body>
218
+ </html>
code/8909/8909_7.html ADDED
@@ -0,0 +1,276 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
5
+ <title>New Conversation UI</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: #1d241d; /* dark greenish background */
14
+ color: #f2f2f2;
15
+ }
16
+
17
+ /* Status bar */
18
+ .status-bar {
19
+ height: 110px;
20
+ padding: 0 36px;
21
+ display: flex;
22
+ align-items: center;
23
+ justify-content: space-between;
24
+ color: #e9efe5;
25
+ font-weight: 600;
26
+ font-size: 44px;
27
+ letter-spacing: 0.5px;
28
+ }
29
+ .status-icons {
30
+ display: flex; gap: 28px; align-items: center;
31
+ }
32
+ .status-dot, .status-wifi, .status-battery {
33
+ width: 40px; height: 40px;
34
+ }
35
+ .status-wifi svg, .status-battery svg, .status-dot svg { width: 100%; height: 100%; }
36
+
37
+ /* Header */
38
+ .header {
39
+ padding: 10px 32px 24px 32px;
40
+ }
41
+ .header-row {
42
+ display: flex; align-items: center; gap: 28px;
43
+ }
44
+ .back-btn {
45
+ width: 72px; height: 72px; display: flex; align-items: center; justify-content: center;
46
+ }
47
+ .header-title {
48
+ font-size: 60px; font-weight: 700;
49
+ }
50
+
51
+ /* To row */
52
+ .to-row {
53
+ margin-top: 32px;
54
+ display: flex; align-items: center; gap: 20px;
55
+ color: #c6d0c4;
56
+ font-size: 40px;
57
+ }
58
+ .to-label { color: #cbd6ca; font-weight: 600; width: 80px; }
59
+ .to-placeholder { color: #98a694; }
60
+
61
+ /* Create group button */
62
+ .group-btn {
63
+ margin-top: 36px;
64
+ width: 680px;
65
+ height: 120px;
66
+ background: #465b43;
67
+ border-radius: 60px;
68
+ display: flex; align-items: center; gap: 26px;
69
+ padding: 0 34px;
70
+ font-size: 44px; font-weight: 700;
71
+ }
72
+ .group-icon {
73
+ width: 60px; height: 60px;
74
+ }
75
+
76
+ /* List */
77
+ .list {
78
+ margin-top: 42px;
79
+ padding: 0 32px 0 32px;
80
+ }
81
+ .section-label {
82
+ color: #a1ad9e;
83
+ font-size: 40px;
84
+ margin: 26px 0 18px 0;
85
+ }
86
+ .contact {
87
+ display: flex; align-items: center;
88
+ padding: 26px 0;
89
+ border-bottom: 1px solid rgba(255,255,255,0.06);
90
+ }
91
+ .avatar {
92
+ width: 120px; height: 120px; border-radius: 60px;
93
+ display: flex; align-items: center; justify-content: center;
94
+ font-size: 56px; font-weight: 800; margin-right: 30px;
95
+ color: #263025;
96
+ }
97
+ .avatar.yellow { background: #f4d46a; }
98
+ .avatar.pink { background: #f3a19e; color: #3a2020; }
99
+ .avatar.blue { background: #9ad6e7; color: #10333b; }
100
+ .contact-info { display: flex; flex-direction: column; }
101
+ .contact-name { font-size: 52px; font-weight: 700; color: #eef2ec; }
102
+ .contact-number { font-size: 40px; color: #b7c3b4; }
103
+
104
+ /* Bottom keyboard */
105
+ .keyboard {
106
+ position: absolute; left: 0; right: 0; bottom: 70px;
107
+ height: 900px;
108
+ background: #111611;
109
+ border-top: 1px solid rgba(255,255,255,0.06);
110
+ padding: 20px 28px;
111
+ }
112
+ .kb-top {
113
+ display: flex; align-items: center; gap: 40px; margin-bottom: 22px;
114
+ }
115
+ .kb-chip {
116
+ width: 80px; height: 80px; border-radius: 20px;
117
+ background: #202520; display: flex; align-items: center; justify-content: center;
118
+ color: #dfe6db; font-size: 30px; border: 1px solid rgba(255,255,255,0.08);
119
+ }
120
+
121
+ .kb-row { display: grid; grid-template-columns: repeat(10, 1fr); gap: 18px; margin-bottom: 18px; }
122
+ .kb-row-letters { grid-template-columns: repeat(10, 1fr); }
123
+ .kb-row-mid { grid-template-columns: repeat(10, 1fr); }
124
+ .kb-row-bottom { grid-template-columns: repeat(9, 1fr); }
125
+
126
+ .key {
127
+ height: 120px; border-radius: 18px;
128
+ background: #1d221d;
129
+ display: flex; align-items: center; justify-content: center;
130
+ color: #e9efe5; font-size: 46px; font-weight: 600;
131
+ border: 1px solid rgba(255,255,255,0.05);
132
+ }
133
+ .key.wide { grid-column: span 2; }
134
+ .spacebar { grid-column: span 5; height: 120px; border-radius: 22px; }
135
+ .enter { background: #caff9a; color: #1a281a; font-weight: 800; }
136
+ .nav-bar {
137
+ position: absolute; left: 0; right: 0; bottom: 14px;
138
+ height: 42px; display: flex; align-items: center; justify-content: center;
139
+ }
140
+ .nav-bar .pill {
141
+ width: 380px; height: 12px; border-radius: 8px; background: #cfd6cc;
142
+ }
143
+ </style>
144
+ </head>
145
+ <body>
146
+ <div id="render-target">
147
+
148
+ <!-- Status Bar -->
149
+ <div class="status-bar">
150
+ <div class="status-time">12:36</div>
151
+ <div class="status-icons">
152
+ <div class="status-dot">
153
+ <svg viewBox="0 0 24 24" fill="#e6eee3"><circle cx="12" cy="12" r="9"/></svg>
154
+ </div>
155
+ <div class="status-wifi">
156
+ <svg viewBox="0 0 24 24" fill="none" stroke="#e6eee3" stroke-width="2">
157
+ <path d="M2 8c5-4 15-4 20 0"/>
158
+ <path d="M5 12c3-3 11-3 14 0"/>
159
+ <path d="M8 16c2-2 6-2 8 0"/>
160
+ <circle cx="12" cy="20" r="2" fill="#e6eee3"/>
161
+ </svg>
162
+ </div>
163
+ <div class="status-battery">
164
+ <svg viewBox="0 0 28 24" fill="none" stroke="#e6eee3" stroke-width="2">
165
+ <rect x="2" y="4" width="20" height="16" rx="3"/>
166
+ <rect x="4" y="6" width="12" height="12" fill="#e6eee3"/>
167
+ <rect x="22" y="9" width="4" height="6" rx="1" fill="#e6eee3"/>
168
+ </svg>
169
+ </div>
170
+ </div>
171
+ </div>
172
+
173
+ <!-- Header -->
174
+ <div class="header">
175
+ <div class="header-row">
176
+ <div class="back-btn">
177
+ <svg viewBox="0 0 48 48" fill="none" stroke="#e9efe5" stroke-width="4" stroke-linecap="round" stroke-linejoin="round">
178
+ <path d="M30 8 L14 24 L30 40"/>
179
+ </svg>
180
+ </div>
181
+ <div class="header-title">New conversation</div>
182
+ </div>
183
+
184
+ <div class="to-row">
185
+ <div class="to-label">To:</div>
186
+ <div class="to-placeholder">Type names, phone numbers, or emails</div>
187
+ </div>
188
+
189
+ <div class="group-btn">
190
+ <div class="group-icon">
191
+ <svg viewBox="0 0 48 48" fill="none" stroke="#eef2ec" stroke-width="2">
192
+ <circle cx="16" cy="16" r="8" fill="#eef2ec" stroke="none"/>
193
+ <circle cx="32" cy="16" r="6" fill="#dfe6db" stroke="none"/>
194
+ <path d="M6 36c2-6 18-6 20 0" stroke="#eef2ec"/>
195
+ <path d="M26 36c2-4 12-4 14 0" stroke="#dfe6db"/>
196
+ </svg>
197
+ </div>
198
+ <div>Create group</div>
199
+ </div>
200
+ </div>
201
+
202
+ <!-- List of contacts -->
203
+ <div class="list">
204
+ <div class="section-label">A</div>
205
+ <div class="contact">
206
+ <div class="avatar yellow">A</div>
207
+ <div class="contact-info">
208
+ <div class="contact-name">Alexa</div>
209
+ <div class="contact-number">+1 867-421-7713</div>
210
+ </div>
211
+ </div>
212
+
213
+ <div class="section-label">C</div>
214
+ <div class="contact">
215
+ <div class="avatar pink">C</div>
216
+ <div class="contact-info">
217
+ <div class="contact-name">Cloe</div>
218
+ <div class="contact-number">+1 384-475-4324</div>
219
+ </div>
220
+ </div>
221
+
222
+ <div class="section-label">H</div>
223
+ <div class="contact">
224
+ <div class="avatar blue">H</div>
225
+ <div class="contact-info">
226
+ <div class="contact-name">Henry</div>
227
+ <div class="contact-number">+1 123-245-2111</div>
228
+ </div>
229
+ </div>
230
+ </div>
231
+
232
+ <!-- Keyboard -->
233
+ <div class="keyboard">
234
+ <div class="kb-top">
235
+ <div class="kb-chip">⬛</div>
236
+ <div class="kb-chip">😊</div>
237
+ <div class="kb-chip">GIF</div>
238
+ <div class="kb-chip">
239
+ <svg viewBox="0 0 24 24" width="34" height="34" fill="none" stroke="#dfe6db" stroke-width="2">
240
+ <circle cx="12" cy="12" r="9"/>
241
+ <path d="M12 7v5l4 2"/>
242
+ </svg>
243
+ </div>
244
+ <div class="kb-chip">G↔</div>
245
+ <div class="kb-chip">🎨</div>
246
+ <div class="kb-chip">🎤</div>
247
+ </div>
248
+
249
+ <div class="kb-row kb-row-letters">
250
+ <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>
251
+ <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>
252
+ </div>
253
+
254
+ <div class="kb-row kb-row-mid">
255
+ <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>
256
+ <div class="key">H</div><div class="key">J</div><div class="key">K</div><div class="key">L</div><div class="key">⌫</div>
257
+ </div>
258
+
259
+ <div class="kb-row kb-row-bottom">
260
+ <div class="key wide">Shift</div>
261
+ <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>
262
+ <div class="key">N</div><div class="key">M</div><div class="key enter">✓</div>
263
+ </div>
264
+
265
+ <div class="kb-row" style="grid-template-columns: 160px 1fr 160px 160px;">
266
+ <div class="key">?123</div>
267
+ <div class="key spacebar"></div>
268
+ <div class="key">.</div>
269
+ <div class="key enter">✓</div>
270
+ </div>
271
+ </div>
272
+
273
+ <div class="nav-bar"><div class="pill"></div></div>
274
+ </div>
275
+ </body>
276
+ </html>
code/8910/8910_0.html ADDED
@@ -0,0 +1,242 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>WhatsApp Welcome Mock</title>
7
+ <style>
8
+ body {
9
+ margin: 0;
10
+ padding: 0;
11
+ background: transparent;
12
+ }
13
+ #render-target {
14
+ width: 1080px;
15
+ height: 2400px;
16
+ position: relative;
17
+ overflow: hidden;
18
+ background: #111B21;
19
+ font-family: "Segoe UI", Roboto, Arial, sans-serif;
20
+ color: #EDEDED;
21
+ }
22
+ /* Status bar */
23
+ .status-bar {
24
+ position: absolute;
25
+ top: 24px;
26
+ left: 36px;
27
+ right: 36px;
28
+ height: 80px;
29
+ display: flex;
30
+ align-items: center;
31
+ justify-content: space-between;
32
+ color: #FFFFFF;
33
+ opacity: 0.95;
34
+ }
35
+ .status-left {
36
+ display: flex;
37
+ align-items: center;
38
+ gap: 18px;
39
+ font-size: 36px;
40
+ letter-spacing: 0.5px;
41
+ }
42
+ .ghost-dot {
43
+ width: 22px;
44
+ height: 22px;
45
+ background: #FFFFFF;
46
+ border-radius: 50%;
47
+ opacity: 0.85;
48
+ }
49
+ .status-right {
50
+ display: flex;
51
+ align-items: center;
52
+ gap: 26px;
53
+ }
54
+ .status-icon svg {
55
+ display: block;
56
+ }
57
+
58
+ /* Vertical menu dots */
59
+ .more-dots {
60
+ position: absolute;
61
+ top: 160px;
62
+ right: 40px;
63
+ width: 16px;
64
+ display: flex;
65
+ flex-direction: column;
66
+ gap: 14px;
67
+ align-items: center;
68
+ opacity: 0.8;
69
+ }
70
+ .more-dots span {
71
+ width: 8px;
72
+ height: 8px;
73
+ background: #98A4AA;
74
+ border-radius: 50%;
75
+ }
76
+
77
+ /* Illustration placeholder */
78
+ .illustration {
79
+ width: 900px;
80
+ height: 900px;
81
+ margin: 360px auto 80px;
82
+ background: #E0E0E0;
83
+ border: 1px solid #BDBDBD;
84
+ border-radius: 50%;
85
+ display: flex;
86
+ align-items: center;
87
+ justify-content: center;
88
+ color: #757575;
89
+ font-size: 34px;
90
+ text-align: center;
91
+ line-height: 1.2;
92
+ }
93
+
94
+ /* Heading and description */
95
+ h1 {
96
+ margin: 0;
97
+ text-align: center;
98
+ font-size: 64px;
99
+ font-weight: 700;
100
+ color: #FFFFFF;
101
+ }
102
+ .desc {
103
+ width: 900px;
104
+ margin: 30px auto 0;
105
+ text-align: center;
106
+ font-size: 38px;
107
+ line-height: 58px;
108
+ color: #AEB6BA;
109
+ }
110
+ .desc a {
111
+ color: #61B8FF;
112
+ text-decoration: none;
113
+ font-weight: 600;
114
+ }
115
+
116
+ /* Language selector pill */
117
+ .lang-select {
118
+ width: 640px;
119
+ height: 120px;
120
+ margin: 60px auto 0;
121
+ background: #1F2C33;
122
+ border-radius: 60px;
123
+ display: flex;
124
+ align-items: center;
125
+ padding: 0 40px;
126
+ gap: 28px;
127
+ box-shadow: 0 6px 12px rgba(0,0,0,0.25);
128
+ }
129
+ .lang-select .label {
130
+ font-size: 42px;
131
+ color: #00A884;
132
+ flex: 1;
133
+ }
134
+ .caret {
135
+ width: 36px;
136
+ height: 36px;
137
+ }
138
+
139
+ /* CTA button */
140
+ .cta {
141
+ position: absolute;
142
+ left: 60px;
143
+ right: 60px;
144
+ bottom: 180px;
145
+ height: 140px;
146
+ background: #00A884;
147
+ border-radius: 80px;
148
+ display: flex;
149
+ align-items: center;
150
+ justify-content: center;
151
+ color: #0B141A;
152
+ font-size: 44px;
153
+ font-weight: 700;
154
+ box-shadow: 0 8px 16px rgba(0,0,0,0.35);
155
+ }
156
+
157
+ /* Home indicator */
158
+ .home-indicator {
159
+ position: absolute;
160
+ bottom: 70px;
161
+ left: 50%;
162
+ transform: translateX(-50%);
163
+ width: 240px;
164
+ height: 18px;
165
+ background: #E0E0E0;
166
+ opacity: 0.65;
167
+ border-radius: 9px;
168
+ }
169
+ </style>
170
+ </head>
171
+ <body>
172
+ <div id="render-target">
173
+
174
+ <!-- Status bar -->
175
+ <div class="status-bar">
176
+ <div class="status-left">
177
+ <div>7:26</div>
178
+ <div class="ghost-dot"></div>
179
+ <div class="ghost-dot"></div>
180
+ <div class="ghost-dot"></div>
181
+ <div class="ghost-dot"></div>
182
+ <div style="width:6px;height:6px;background:#FFFFFF;border-radius:50%;"></div>
183
+ </div>
184
+ <div class="status-right">
185
+ <div class="status-icon">
186
+ <!-- Wi-Fi icon -->
187
+ <svg width="50" height="50" viewBox="0 0 24 24">
188
+ <path d="M2 8c5-5 15-5 20 0" stroke="#ffffff" stroke-width="2" fill="none" stroke-linecap="round"/>
189
+ <path d="M5 11c3.5-3.5 10.5-3.5 14 0" stroke="#ffffff" stroke-width="2" fill="none" stroke-linecap="round"/>
190
+ <path d="M8 14c2-2 6-2 8 0" stroke="#ffffff" stroke-width="2" fill="none" stroke-linecap="round"/>
191
+ <circle cx="12" cy="18" r="2" fill="#ffffff"/>
192
+ </svg>
193
+ </div>
194
+ <div class="status-icon">
195
+ <!-- Battery icon -->
196
+ <svg width="50" height="50" viewBox="0 0 24 24">
197
+ <rect x="2" y="6" width="16" height="12" rx="2" stroke="#ffffff" stroke-width="2" fill="none"/>
198
+ <rect x="19" y="9" width="3" height="6" rx="1" fill="#ffffff"/>
199
+ <rect x="4" y="8" width="12" height="8" fill="#ffffff"/>
200
+ </svg>
201
+ </div>
202
+ </div>
203
+ </div>
204
+
205
+ <!-- Vertical menu dots -->
206
+ <div class="more-dots">
207
+ <span></span>
208
+ <span></span>
209
+ <span></span>
210
+ </div>
211
+
212
+ <!-- Illustration placeholder -->
213
+ <div class="illustration">[IMG: WhatsApp doodle illustration]</div>
214
+
215
+ <!-- Welcome content -->
216
+ <h1>Welcome to WhatsApp</h1>
217
+ <div class="desc">
218
+ Read our <a href="#">Privacy Policy</a>. Tap "Agree and continue" to accept the <a href="#">Terms of Service</a>.
219
+ </div>
220
+
221
+ <!-- Language selector -->
222
+ <div class="lang-select">
223
+ <svg width="52" height="52" viewBox="0 0 24 24">
224
+ <circle cx="12" cy="12" r="9" stroke="#00A884" stroke-width="2" fill="none"/>
225
+ <path d="M3 12h18M12 3v18" stroke="#00A884" stroke-width="2" fill="none"/>
226
+ <path d="M5 8h14M5 16h14" stroke="#00A884" stroke-width="1.6" opacity="0.7"/>
227
+ </svg>
228
+ <div class="label">English</div>
229
+ <svg class="caret" viewBox="0 0 24 24">
230
+ <path d="M6 9l6 6 6-6" fill="none" stroke="#00A884" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
231
+ </svg>
232
+ </div>
233
+
234
+ <!-- CTA button -->
235
+ <div class="cta">Agree and continue</div>
236
+
237
+ <!-- Home indicator -->
238
+ <div class="home-indicator"></div>
239
+
240
+ </div>
241
+ </body>
242
+ </html>
code/8910/8910_1.html ADDED
@@ -0,0 +1,355 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>Video Detail UI</title>
6
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; color: #1d2630; }
9
+ #render-target {
10
+ position: relative;
11
+ overflow: hidden;
12
+ width: 1080px;
13
+ height: 2400px;
14
+ background: #ffffff;
15
+ border-radius: 0;
16
+ }
17
+ /* Status bar */
18
+ .status-bar {
19
+ position: absolute;
20
+ top: 0; left: 0;
21
+ width: 1080px; height: 120px;
22
+ background: #000000;
23
+ color: #ffffff;
24
+ display: flex;
25
+ align-items: center;
26
+ padding: 0 36px;
27
+ font-weight: 600;
28
+ letter-spacing: 0.5px;
29
+ }
30
+ .status-left { display: flex; align-items: center; gap: 24px; font-size: 42px; }
31
+ .status-icons { margin-left: 24px; display: flex; gap: 14px; }
32
+ .status-right { margin-left: auto; display: flex; align-items: center; gap: 28px; }
33
+ .icon { width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center; }
34
+ .icon svg { width: 100%; height: 100%; }
35
+ /* Hero video */
36
+ .hero {
37
+ position: absolute;
38
+ top: 120px; left: 0;
39
+ width: 1080px; height: 600px;
40
+ background: #E0E0E0;
41
+ border-bottom: 1px solid #e6eaef;
42
+ display: flex; align-items: center; justify-content: center;
43
+ color: #757575; font-size: 34px;
44
+ }
45
+ .hero .overlay-label {
46
+ position: absolute;
47
+ right: 24px; bottom: 20px;
48
+ background: #ffffff;
49
+ border: 2px solid #3b3e43;
50
+ border-radius: 10px;
51
+ padding: 10px 16px;
52
+ font-weight: 700;
53
+ color: #3b3e43;
54
+ }
55
+ .hero .corner-sticker {
56
+ position: absolute; left: 24px; top: 24px;
57
+ width: 220px; height: 140px;
58
+ background: #E0E0E0; border: 1px solid #BDBDBD;
59
+ display: flex; align-items: center; justify-content: center; color: #757575; font-size: 26px; text-align: center;
60
+ }
61
+ /* Content */
62
+ .content {
63
+ position: absolute;
64
+ top: 720px; left: 0;
65
+ width: 100%;
66
+ padding: 40px 40px 0 40px;
67
+ }
68
+ .title {
69
+ font-size: 56px;
70
+ font-weight: 800;
71
+ line-height: 1.15;
72
+ margin-bottom: 32px;
73
+ color: #17202a;
74
+ }
75
+ .actions-row {
76
+ display: flex; align-items: center; gap: 36px;
77
+ margin-bottom: 18px;
78
+ }
79
+ .action {
80
+ width: 120px; height: 120px;
81
+ border: 1px solid #d8dde6;
82
+ border-radius: 28px;
83
+ display: flex; align-items: center; justify-content: center;
84
+ background: #ffffff;
85
+ }
86
+ .action svg { width: 54px; height: 54px; stroke: #2c3e50; }
87
+ .counts {
88
+ display: flex; gap: 120px; padding-left: 10px; color: #6b7a8c; font-size: 32px; margin-top: 8px;
89
+ }
90
+ .actions-spacer { margin-left: auto; }
91
+ .more-vert { width: 90px; height: 90px; border-radius: 24px; border: 1px solid #e1e6ee; display: flex; align-items: center; justify-content: center; }
92
+ .desc {
93
+ margin-top: 24px;
94
+ font-size: 36px;
95
+ line-height: 1.45;
96
+ color: #314154;
97
+ }
98
+ .more-link { color: #2a73ff; font-weight: 600; }
99
+ .divider { height: 1px; background: #e6eaef; margin: 28px 0; }
100
+ /* Channel row */
101
+ .channel-row {
102
+ display: flex; align-items: center; gap: 24px;
103
+ }
104
+ .avatar {
105
+ width: 120px; height: 120px; border-radius: 60px;
106
+ background: #E0E0E0; border: 1px solid #BDBDBD;
107
+ display: flex; align-items: center; justify-content: center; color: #757575; font-size: 28px;
108
+ }
109
+ .channel-info { display: flex; flex-direction: column; }
110
+ .channel-name { font-size: 40px; font-weight: 800; color: #1b2a3a; }
111
+ .channel-meta { font-size: 32px; color: #6f8094; }
112
+ .follow-btn {
113
+ margin-left: auto;
114
+ padding: 18px 28px;
115
+ border-radius: 18px;
116
+ background: #eef3ff;
117
+ color: #1b2a3a;
118
+ border: 1px solid #cdd7ff;
119
+ font-size: 34px; font-weight: 700;
120
+ display: inline-flex; align-items: center; gap: 16px;
121
+ }
122
+ .follow-btn svg { width: 40px; height: 40px; fill: none; stroke: #2a73ff; stroke-width: 6px; }
123
+ /* Share button */
124
+ .share-btn {
125
+ margin-top: 26px;
126
+ width: 100%;
127
+ height: 140px;
128
+ background: #3aa0ff;
129
+ border-radius: 28px;
130
+ color: #ffffff;
131
+ font-size: 42px; font-weight: 800;
132
+ display: flex; align-items: center; justify-content: center; gap: 22px;
133
+ box-shadow: 0 6px 14px rgba(58,160,255,0.35);
134
+ }
135
+ .share-btn svg { width: 52px; height: 52px; stroke: #ffffff; stroke-width: 6px; }
136
+ /* More videos + autoplay */
137
+ .section-header {
138
+ margin-top: 40px;
139
+ display: flex; align-items: center;
140
+ font-weight: 800; font-size: 36px; color: #263446;
141
+ }
142
+ .section-header .spacer { margin-left: auto; }
143
+ .toggle {
144
+ display: inline-flex; align-items: center; gap: 16px;
145
+ font-size: 32px; color: #8493a8;
146
+ }
147
+ .switch {
148
+ width: 120px; height: 62px; background: #dbe7ff; border-radius: 31px; position: relative; border: 1px solid #c9daff;
149
+ }
150
+ .switch::after {
151
+ content: ""; position: absolute; right: 6px; top: 6px;
152
+ width: 50px; height: 50px; background: #2a73ff; border-radius: 25px;
153
+ box-shadow: 0 2px 6px rgba(0,0,0,0.25);
154
+ }
155
+ /* Video list item */
156
+ .video-item {
157
+ margin-top: 20px;
158
+ padding: 20px 0;
159
+ display: flex; align-items: flex-start; gap: 24px;
160
+ }
161
+ .thumb {
162
+ width: 360px; height: 200px;
163
+ background: #E0E0E0; border: 1px solid #BDBDBD;
164
+ position: relative; display: flex; align-items: center; justify-content: center; color: #757575; font-size: 26px; text-align: center; padding: 8px;
165
+ border-radius: 16px;
166
+ }
167
+ .runtime {
168
+ position: absolute; right: 10px; bottom: 10px;
169
+ background: rgba(0,0,0,0.75); color: #fff; font-size: 28px; padding: 6px 10px; border-radius: 8px;
170
+ }
171
+ .video-meta { flex: 1; }
172
+ .video-title { font-size: 36px; font-weight: 800; color: #233242; line-height: 1.3; margin-bottom: 8px; }
173
+ .video-author { font-size: 32px; color: #5b6b7f; margin-bottom: 6px; }
174
+ .video-stats { font-size: 30px; color: #8a9ab0; }
175
+ .video-more {
176
+ width: 80px; height: 80px; border-radius: 24px; border: 1px solid #e1e6ee; display: flex; align-items: center; justify-content: center;
177
+ }
178
+ /* Floating controls */
179
+ .floating-controls {
180
+ position: absolute;
181
+ bottom: 140px; left: 50%; transform: translateX(-50%);
182
+ background: #ffffff;
183
+ border-radius: 40px;
184
+ box-shadow: 0 16px 40px rgba(0,0,0,0.18);
185
+ display: flex; gap: 40px; align-items: center;
186
+ padding: 20px 36px;
187
+ }
188
+ .floating-controls .pill {
189
+ width: 140px; height: 140px; border-radius: 70px; border: 1px solid #e6eaef; display: flex; align-items: center; justify-content: center;
190
+ background: #f9fbff;
191
+ }
192
+ .floating-controls .pill svg { width: 64px; height: 64px; stroke: #2c3e50; }
193
+ /* Home gesture bar */
194
+ .home-handle {
195
+ position: absolute; bottom: 40px; left: 50%;
196
+ transform: translateX(-50%);
197
+ width: 300px; height: 14px; background: #000000; border-radius: 7px;
198
+ }
199
+ /* Reusable placeholders */
200
+ .img-label { color: #757575; }
201
+ </style>
202
+ </head>
203
+ <body>
204
+ <div id="render-target">
205
+ <!-- Status bar -->
206
+ <div class="status-bar">
207
+ <div class="status-left">
208
+ <span>7:27</span>
209
+ <div class="status-icons">
210
+ <span style="width:18px;height:18px;background:#fff;border-radius:9px;display:inline-block;"></span>
211
+ <span style="width:18px;height:18px;background:#fff;border-radius:9px;display:inline-block;"></span>
212
+ <span style="width:18px;height:18px;background:#fff;border-radius:9px;display:inline-block;"></span>
213
+ <span style="width:18px;height:18px;background:#fff;border-radius:9px;display:inline-block;"></span>
214
+ <span style="width:10px;height:10px;background:#fff;border-radius:5px;display:inline-block;margin-left:6px;"></span>
215
+ </div>
216
+ </div>
217
+ <div class="status-right">
218
+ <!-- Wi-Fi -->
219
+ <div class="icon">
220
+ <svg viewBox="0 0 24 24">
221
+ <path d="M2 8c5-4 15-4 20 0M6 12c3-3 9-3 12 0M10 16c2-2 6-2 8 0" fill="none" stroke="#fff" stroke-width="2" stroke-linecap="round"/>
222
+ <circle cx="12" cy="20" r="2" fill="#fff"/>
223
+ </svg>
224
+ </div>
225
+ <!-- Battery -->
226
+ <div class="icon">
227
+ <svg viewBox="0 0 24 24">
228
+ <rect x="2" y="6" width="18" height="12" rx="2" ry="2" fill="none" stroke="#fff" stroke-width="2"/>
229
+ <rect x="4" y="8" width="12" height="8" fill="#fff"/>
230
+ <rect x="20" y="10" width="2" height="8" fill="#fff"/>
231
+ </svg>
232
+ </div>
233
+ </div>
234
+ </div>
235
+
236
+ <!-- Hero video area -->
237
+ <div class="hero">
238
+ <div class="corner-sticker">[IMG: Logo/Sticker]</div>
239
+ <div class="img-label">[IMG: Person pointing at stock market backdrop]</div>
240
+ <div class="overlay-label">PTAcoaching.com</div>
241
+ </div>
242
+
243
+ <!-- Content area -->
244
+ <div class="content">
245
+ <div class="title">Stock Market Tips Train Yourself To Success in Stock Market</div>
246
+
247
+ <div class="actions-row">
248
+ <div class="action">
249
+ <svg viewBox="0 0 24 24" fill="none" stroke="#2c3e50" stroke-width="2" stroke-linejoin="round">
250
+ <polygon points="8,6 18,12 8,18"></polygon>
251
+ </svg>
252
+ </div>
253
+ <div class="action">
254
+ <svg viewBox="0 0 24 24" fill="none" stroke="#2c3e50" stroke-width="2">
255
+ <path d="M12 21s-6-4.35-8.5-7.1C1.3 11.5 2 8.5 4.6 7.2c2.2-1.1 4.2.2 5.4 2.1 1.2-1.9 3.2-3.2 5.4-2.1 2.6 1.3 3.3 4.3 1.1 6.7C18 16.65 12 21 12 21z"></path>
256
+ </svg>
257
+ </div>
258
+ <div class="action">
259
+ <svg viewBox="0 0 24 24" fill="none" stroke="#2c3e50" stroke-width="2">
260
+ <path d="M21 15a4 4 0 0 1-4 4H8l-5 4V7a4 4 0 0 1 4-4h10a4 4 0 0 1 4 4v8z"></path>
261
+ </svg>
262
+ </div>
263
+ <div class="actions-spacer"></div>
264
+ <div class="more-vert">
265
+ <svg viewBox="0 0 24 24" fill="#6b7a8c">
266
+ <circle cx="12" cy="5" r="2"></circle>
267
+ <circle cx="12" cy="12" r="2"></circle>
268
+ <circle cx="12" cy="19" r="2"></circle>
269
+ </svg>
270
+ </div>
271
+ </div>
272
+ <div class="counts">
273
+ <div>14</div>
274
+ <div>0</div>
275
+ <div>0</div>
276
+ </div>
277
+
278
+ <div class="desc">
279
+ Train yourself to success in stock market. Get all important stock/share market tips from… <span class="more-link">more</span>
280
+ </div>
281
+
282
+ <div class="divider"></div>
283
+
284
+ <div class="channel-row">
285
+ <div class="avatar">[IMG: User Avatar]</div>
286
+ <div class="channel-info">
287
+ <div class="channel-name">Yatharth Dass</div>
288
+ <div class="channel-meta">2 videos</div>
289
+ </div>
290
+ <div class="follow-btn">
291
+ <svg viewBox="0 0 24 24">
292
+ <path d="M5 12l5 5 9-11"></path>
293
+ </svg>
294
+ Following
295
+ </div>
296
+ </div>
297
+
298
+ <div class="divider"></div>
299
+
300
+ <div class="share-btn">
301
+ <svg viewBox="0 0 24 24" fill="none">
302
+ <path d="M4 12v8h16v-8M12 4v12M7 9l5-5 5 5" stroke-linecap="round" stroke-linejoin="round"></path>
303
+ </svg>
304
+ Share
305
+ </div>
306
+
307
+ <div class="section-header">
308
+ <div>MORE VIDEOS</div>
309
+ <div class="spacer"></div>
310
+ <div class="toggle">
311
+ <span>Autoplay</span>
312
+ <div class="switch"></div>
313
+ </div>
314
+ </div>
315
+
316
+ <div class="video-item">
317
+ <div class="thumb">
318
+ [IMG: Person teaching stock market at whiteboard]
319
+ <div class="runtime">01:28</div>
320
+ </div>
321
+ <div class="video-meta">
322
+ <div class="video-title">Stock Market Tips (Hindi) How to Maximize Profit in Stock Market</div>
323
+ <div class="video-author">Yatharth Dass</div>
324
+ <div class="video-stats">24 views • 7 years ago</div>
325
+ </div>
326
+ <div class="video-more">
327
+ <svg viewBox="0 0 24 24" fill="#6b7a8c">
328
+ <circle cx="12" cy="5" r="2"></circle>
329
+ <circle cx="12" cy="12" r="2"></circle>
330
+ <circle cx="12" cy="19" r="2"></circle>
331
+ </svg>
332
+ </div>
333
+ </div>
334
+ </div>
335
+
336
+ <!-- Floating controls -->
337
+ <div class="floating-controls">
338
+ <div class="pill">
339
+ <svg viewBox="0 0 24 24" fill="none" stroke-width="2">
340
+ <rect x="3" y="5" width="18" height="14" rx="2" ry="2" stroke="#2c3e50"></rect>
341
+ <polygon points="10,9 15,12 10,15" fill="#2c3e50"></polygon>
342
+ </svg>
343
+ </div>
344
+ <div class="pill">
345
+ <svg viewBox="0 0 24 24" fill="none" stroke-width="2">
346
+ <path d="M21 15a4 4 0 0 1-4 4H8l-5 4V7a4 4 0 0 1 4-4h10a4 4 0 0 1 4 4v8z" stroke="#2c3e50"></path>
347
+ </svg>
348
+ </div>
349
+ </div>
350
+
351
+ <!-- Home gesture handle -->
352
+ <div class="home-handle"></div>
353
+ </div>
354
+ </body>
355
+ </html>
code/8910/8910_2.html ADDED
@@ -0,0 +1,369 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>Video Detail Mock</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, Helvetica, Arial, sans-serif; }
9
+ #render-target {
10
+ width: 1080px;
11
+ height: 2400px;
12
+ position: relative;
13
+ overflow: hidden;
14
+ background: #ffffff;
15
+ color: #111827;
16
+ }
17
+
18
+ /* Status bar */
19
+ .status-bar {
20
+ height: 96px;
21
+ background: #000000;
22
+ color: #fff;
23
+ display: flex;
24
+ align-items: center;
25
+ padding: 0 36px;
26
+ font-size: 36px;
27
+ box-sizing: border-box;
28
+ }
29
+ .status-left { flex: 1; }
30
+ .status-right {
31
+ display: flex;
32
+ gap: 28px;
33
+ align-items: center;
34
+ }
35
+ .status-dot { width: 10px; height: 10px; background:#fff; border-radius:50%; opacity:.8; }
36
+
37
+ /* Hero image placeholder */
38
+ .hero {
39
+ height: 560px;
40
+ background: #E0E0E0;
41
+ border-bottom: 1px solid #e5e7eb;
42
+ display: flex;
43
+ align-items: center;
44
+ justify-content: center;
45
+ position: relative;
46
+ }
47
+ .hero .img-label {
48
+ color: #555;
49
+ font-size: 34px;
50
+ border: 1px solid #BDBDBD;
51
+ padding: 18px 28px;
52
+ background: rgba(255,255,255,0.7);
53
+ border-radius: 6px;
54
+ }
55
+
56
+ /* Content */
57
+ .content {
58
+ padding: 42px 40px 24px 40px;
59
+ }
60
+ .title {
61
+ font-size: 58px;
62
+ line-height: 1.15;
63
+ font-weight: 800;
64
+ color: #1f2937;
65
+ margin-bottom: 36px;
66
+ letter-spacing: -0.5px;
67
+ }
68
+
69
+ .action-row {
70
+ display: flex;
71
+ align-items: center;
72
+ gap: 28px;
73
+ margin-bottom: 18px;
74
+ }
75
+ .icon-btn {
76
+ width: 112px;
77
+ height: 112px;
78
+ border: 2px solid #e5e7eb;
79
+ border-radius: 22px;
80
+ display: flex;
81
+ align-items: center;
82
+ justify-content: center;
83
+ color: #374151;
84
+ background: #ffffff;
85
+ }
86
+ .counts {
87
+ display: flex;
88
+ align-items: center;
89
+ gap: 88px;
90
+ margin-top: 10px;
91
+ margin-left: 12px;
92
+ color: #6b7280;
93
+ font-size: 32px;
94
+ }
95
+ .spacer { flex: 1; }
96
+ .kebab {
97
+ width: 92px; height: 92px;
98
+ border: 2px solid #e5e7eb;
99
+ border-radius: 22px;
100
+ display:flex; align-items:center; justify-content:center;
101
+ background: #ffffff;
102
+ }
103
+
104
+ .desc {
105
+ margin-top: 32px;
106
+ font-size: 36px;
107
+ line-height: 1.45;
108
+ color: #374151;
109
+ }
110
+ .desc a { color: #1e88e5; text-decoration: none; }
111
+
112
+ .divider {
113
+ height: 2px;
114
+ background: #e5e7eb;
115
+ margin: 36px 0;
116
+ }
117
+
118
+ .author-row {
119
+ display: flex;
120
+ align-items: center;
121
+ gap: 24px;
122
+ margin-bottom: 28px;
123
+ }
124
+ .avatar {
125
+ width: 104px;
126
+ height: 104px;
127
+ background: #E0E0E0;
128
+ border: 1px solid #BDBDBD;
129
+ border-radius: 50%;
130
+ display: flex;
131
+ align-items: center;
132
+ justify-content: center;
133
+ color: #6b7280;
134
+ font-size: 24px;
135
+ }
136
+ .author-meta { display: flex; flex-direction: column; }
137
+ .author-name { font-size: 40px; font-weight: 700; color: #1f2937; }
138
+ .author-sub { font-size: 30px; color: #6b7280; margin-top: 4px; }
139
+ .follow-btn {
140
+ margin-left: auto;
141
+ background: #eef2ff;
142
+ border: 2px solid #d1d5fe;
143
+ color: #0f172a;
144
+ font-weight: 700;
145
+ padding: 18px 28px;
146
+ border-radius: 16px;
147
+ font-size: 34px;
148
+ }
149
+
150
+ .share-wrap {
151
+ margin-top: 22px;
152
+ }
153
+ .share-btn {
154
+ width: 100%;
155
+ height: 132px;
156
+ background: #4ba3ff;
157
+ color: #fff;
158
+ border-radius: 26px;
159
+ border: 1px solid #3b82f6;
160
+ display:flex; align-items: center; justify-content: center;
161
+ gap: 18px;
162
+ font-size: 40px;
163
+ font-weight: 700;
164
+ box-shadow: 0 6px 18px rgba(59,130,246,0.35);
165
+ }
166
+
167
+ .toggle-row {
168
+ display: flex;
169
+ align-items: center;
170
+ justify-content: space-between;
171
+ margin-top: 40px;
172
+ }
173
+ .toggle-label { color:#6b7280; font-size: 32px; letter-spacing: .5px; }
174
+ .switch {
175
+ width: 120px; height: 64px; background: #d1d5db; border-radius: 40px; position: relative;
176
+ }
177
+ .switch.active { background: #8dd1ff; }
178
+ .switch .knob {
179
+ width: 56px; height: 56px; background: #ffffff; border-radius: 50%;
180
+ position: absolute; top: 4px; left: 6px; transition: left .2s;
181
+ box-shadow: 0 2px 6px rgba(0,0,0,0.2);
182
+ }
183
+ .switch.active .knob { left: 58px; }
184
+
185
+ .more-heading {
186
+ margin-top: 38px;
187
+ color: #6b7280;
188
+ font-weight: 700;
189
+ font-size: 30px;
190
+ letter-spacing: 1px;
191
+ }
192
+
193
+ .video-item {
194
+ margin-top: 18px;
195
+ display: grid;
196
+ grid-template-columns: 360px 1fr 80px;
197
+ gap: 24px;
198
+ align-items: start;
199
+ }
200
+ .thumb {
201
+ width: 360px; height: 200px;
202
+ background: #E0E0E0;
203
+ border: 1px solid #BDBDBD;
204
+ display:flex; align-items:center; justify-content:center;
205
+ color:#555; font-size: 24px; text-align: center; padding: 10px;
206
+ border-radius: 12px;
207
+ }
208
+ .vid-title {
209
+ font-size: 36px;
210
+ font-weight: 700;
211
+ color: #1f2937;
212
+ line-height: 1.25;
213
+ margin-bottom: 6px;
214
+ }
215
+ .vid-sub { font-size: 30px; color: #6b7280; }
216
+
217
+ .floating-controls {
218
+ position: absolute;
219
+ left: 50%;
220
+ bottom: 82px;
221
+ transform: translateX(-50%);
222
+ background: #ffffff;
223
+ width: 420px;
224
+ height: 120px;
225
+ border-radius: 60px;
226
+ box-shadow: 0 10px 24px rgba(0,0,0,0.15);
227
+ display: flex;
228
+ align-items: center;
229
+ justify-content: space-evenly;
230
+ border: 1px solid #e5e7eb;
231
+ }
232
+
233
+ .gesture-bar {
234
+ position: absolute;
235
+ bottom: 24px; left: 50%;
236
+ width: 320px; height: 10px; background: #111;
237
+ border-radius: 10px; transform: translateX(-50%);
238
+ opacity: .8;
239
+ }
240
+ /* Helpers */
241
+ svg { display: block; }
242
+ </style>
243
+ </head>
244
+ <body>
245
+ <div id="render-target">
246
+
247
+ <!-- Top Status Bar -->
248
+ <div class="status-bar">
249
+ <div class="status-left">7:27</div>
250
+ <div class="status-right">
251
+ <div class="status-dot"></div>
252
+ <div class="status-dot"></div>
253
+ <div class="status-dot"></div>
254
+ <div class="status-dot"></div>
255
+ <div class="status-dot"></div>
256
+ <div class="status-dot" style="width:14px;height:14px;"></div>
257
+ </div>
258
+ </div>
259
+
260
+ <!-- Hero image placeholder -->
261
+ <div class="hero">
262
+ <div class="img-label">[IMG: Academy Logo]</div>
263
+ </div>
264
+
265
+ <!-- Body Content -->
266
+ <div class="content">
267
+ <div class="title">
268
+ Stock Market Tips Train Yourself<br>
269
+ To Success in Stock Market
270
+ </div>
271
+
272
+ <div class="action-row">
273
+ <div class="icon-btn" title="Play">
274
+ <svg width="54" height="54" viewBox="0 0 24 24" fill="#374151">
275
+ <path d="M8 5v14l11-7z"/>
276
+ </svg>
277
+ </div>
278
+ <div class="icon-btn" title="Like">
279
+ <svg width="54" height="54" viewBox="0 0 24 24" fill="none" stroke="#374151" stroke-width="2">
280
+ <path d="M12 21s-6-4.35-8.5-7.2C1.4 10.9 2.4 7.5 5.2 6.3 7 5.5 8.9 6 10 7.4c1.1-1.4 3-1.9 4.8-1.1 2.8 1.2 3.8 4.6 1.7 7.5C18 16.7 12 21 12 21z"/>
281
+ </svg>
282
+ </div>
283
+ <div class="icon-btn" title="Comment">
284
+ <svg width="54" height="54" viewBox="0 0 24 24" fill="none" stroke="#374151" stroke-width="2">
285
+ <path d="M21 15a3 3 0 0 1-3 3H8l-5 4V6a3 3 0 0 1 3-3h12a3 3 0 0 1 3 3z"/>
286
+ </svg>
287
+ </div>
288
+ <div class="spacer"></div>
289
+ <div class="kebab" title="More">
290
+ <svg width="36" height="36" viewBox="0 0 24 24" fill="#374151">
291
+ <circle cx="12" cy="5" r="2"/><circle cx="12" cy="12" r="2"/><circle cx="12" cy="19" r="2"/>
292
+ </svg>
293
+ </div>
294
+ </div>
295
+ <div class="counts">
296
+ <div>14</div>
297
+ <div>0</div>
298
+ <div>0</div>
299
+ </div>
300
+
301
+ <div class="desc">
302
+ Train yourself to success in stock market. Get all important stock/share market tips from… <a href="#">more</a>
303
+ </div>
304
+
305
+ <div class="divider"></div>
306
+
307
+ <div class="author-row">
308
+ <div class="avatar">[IMG]</div>
309
+ <div class="author-meta">
310
+ <div class="author-name">Yatharth Dass</div>
311
+ <div class="author-sub">2 videos</div>
312
+ </div>
313
+ <button class="follow-btn">✓ Following</button>
314
+ </div>
315
+
316
+ <div class="divider"></div>
317
+
318
+ <div class="share-wrap">
319
+ <button class="share-btn">
320
+ <svg width="44" height="44" viewBox="0 0 24 24" fill="#fff">
321
+ <path d="M12 3l5 5h-3v6h-4V8H7l5-5z"/>
322
+ <path d="M5 19h14v2H5z"/>
323
+ </svg>
324
+ Share
325
+ </button>
326
+ </div>
327
+
328
+ <div class="toggle-row">
329
+ <div class="more-heading">MORE VIDEOS</div>
330
+ <div style="display:flex; align-items:center; gap:20px;">
331
+ <div class="toggle-label">Autoplay</div>
332
+ <div class="switch active">
333
+ <div class="knob"></div>
334
+ </div>
335
+ </div>
336
+ </div>
337
+
338
+ <div class="video-item">
339
+ <div class="thumb">[IMG: Video Thumbnail - Instructor at whiteboard]</div>
340
+ <div>
341
+ <div class="vid-title">Stock Market Tips (Hindi) How to Maximize Profit in Stock Ma…</div>
342
+ <div class="vid-sub">Yatharth Dass</div>
343
+ <div class="vid-sub">24 views • 7 years ago</div>
344
+ </div>
345
+ <div style="display:flex; justify-content:center; padding-top:8px;">
346
+ <svg width="36" height="36" viewBox="0 0 24 24" fill="#6b7280">
347
+ <circle cx="12" cy="5" r="2"/><circle cx="12" cy="12" r="2"/><circle cx="12" cy="19" r="2"/>
348
+ </svg>
349
+ </div>
350
+ </div>
351
+
352
+ </div>
353
+
354
+ <!-- Floating mini-controls -->
355
+ <div class="floating-controls">
356
+ <svg width="44" height="44" viewBox="0 0 24 24" fill="#0f172a">
357
+ <rect x="4" y="5" width="16" height="12" rx="2" ry="2" fill="none" stroke="#0f172a" stroke-width="2"/>
358
+ <path d="M10 9l5 3-5 3z" fill="#0f172a"/>
359
+ </svg>
360
+ <svg width="44" height="44" viewBox="0 0 24 24" fill="none" stroke="#0f172a" stroke-width="2">
361
+ <path d="M21 15a3 3 0 0 1-3 3H8l-5 4V6a3 3 0 0 1 3-3h12a3 3 0 0 1 3 3z"/>
362
+ </svg>
363
+ </div>
364
+
365
+ <!-- Gesture bar -->
366
+ <div class="gesture-bar"></div>
367
+ </div>
368
+ </body>
369
+ </html>
code/8910/8910_3.html ADDED
@@ -0,0 +1,306 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Video Page Mock</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; color: #263238; }
9
+ #render-target {
10
+ position: relative; overflow: hidden;
11
+ width: 1080px; height: 2400px;
12
+ background: #FFFFFF;
13
+ }
14
+
15
+ /* Status bar */
16
+ .status-bar {
17
+ position: absolute; top: 0; left: 0; right: 0;
18
+ height: 100px; background: #000; color: #fff;
19
+ display: flex; align-items: center; padding: 0 32px; font-weight: 600; letter-spacing: 0.5px;
20
+ z-index: 5;
21
+ }
22
+ .status-bar .right { margin-left: auto; display: flex; gap: 24px; align-items: center; }
23
+ .dot { width: 8px; height: 8px; background: #fff; border-radius: 50%; opacity: 0.8; }
24
+
25
+ /* Video area */
26
+ .video-area {
27
+ position: absolute; top: 100px; left: 0; width: 1080px; height: 900px;
28
+ background: linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.25)), #9E9E9E;
29
+ }
30
+ .video-image {
31
+ position: absolute; top: 140px; left: 120px; right: 120px; height: 520px;
32
+ background: #E0E0E0; border: 1px solid #BDBDBD; display: flex; justify-content: center; align-items: center; color: #757575; font-size: 28px; text-align: center;
33
+ }
34
+ .overlay-close {
35
+ position: absolute; top: 140px; left: 32px; width: 70px; height: 70px; border-radius: 50%;
36
+ background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center;
37
+ }
38
+ .overlay-dots {
39
+ position: absolute; top: 160px; right: 32px; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
40
+ }
41
+ .overlay-fullscreen {
42
+ position: absolute; bottom: 140px; right: 36px; width: 56px; height: 56px; display: flex; align-items: center; justify-content: center;
43
+ background: rgba(255,255,255,0.12); border-radius: 8px;
44
+ }
45
+
46
+ .replay-center {
47
+ position: absolute; top: 440px; left: 0; right: 0; text-align: center; color: #fff;
48
+ }
49
+ .replay-number { font-size: 120px; font-weight: 700; opacity: 0.9; }
50
+ .replay-text { margin-top: -16px; font-size: 40px; font-weight: 600; opacity: 0.9; }
51
+
52
+ .progress-row {
53
+ position: absolute; bottom: 54px; left: 32px; right: 32px; display: flex; align-items: center; gap: 32px; color: #E0E0E0;
54
+ }
55
+ .time-text { font-size: 30px; color: #E0E0E0; }
56
+ .progress {
57
+ flex: 1; height: 10px; background: rgba(255,255,255,0.35); border-radius: 10px; position: relative;
58
+ }
59
+ .progress .bar { position: absolute; left: 0; top: 0; height: 10px; width: 88%; background: #3BA7FF; border-radius: 10px; }
60
+ .progress .knob { position: absolute; left: calc(88% - 12px); top: -6px; width: 24px; height: 24px; background: #fff; border-radius: 50%; box-shadow: 0 2px 6px rgba(0,0,0,0.3); }
61
+
62
+ /* Content area */
63
+ .content {
64
+ position: absolute; top: 1000px; left: 0; right: 0; bottom: 0; background: #fff; border-top-left-radius: 24px; border-top-right-radius: 24px;
65
+ }
66
+ .section { padding: 40px 48px 16px 48px; }
67
+ .title {
68
+ font-size: 54px; font-weight: 800; line-height: 64px; color: #233044;
69
+ margin: 0 0 24px 0;
70
+ }
71
+ .actions {
72
+ display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px;
73
+ }
74
+ .actions-left { display: flex; gap: 36px; align-items: center; }
75
+ .pill {
76
+ width: 96px; height: 96px; border-radius: 18px; border: 1px solid #DDE3E8; background: #F4F7FA; display: flex; align-items: center; justify-content: center;
77
+ }
78
+ .count { text-align: center; font-size: 28px; color: #607D8B; margin-top: 8px; }
79
+ .action-item { display: flex; flex-direction: column; align-items: center; }
80
+ .more-vert { width: 60px; height: 60px; border-radius: 18px; background: #F4F7FA; border: 1px solid #DDE3E8; display: flex; align-items: center; justify-content: center; }
81
+
82
+ .desc {
83
+ font-size: 34px; line-height: 46px; color: #546E7A; margin-top: 16px;
84
+ }
85
+ .desc .more { color: #1976D2; font-weight: 600; }
86
+
87
+ .divider { height: 1px; background: #E6ECF1; margin: 32px 0; }
88
+
89
+ .channel-row { display: flex; align-items: center; justify-content: space-between; }
90
+ .channel-info { display: flex; align-items: center; gap: 24px; }
91
+ .avatar {
92
+ width: 96px; height: 96px; border-radius: 50%; background: #E0E0E0; border: 1px solid #BDBDBD; display: flex; align-items: center; justify-content: center; color: #757575; font-size: 22px;
93
+ }
94
+ .channel-text .name { font-size: 40px; font-weight: 700; margin-bottom: 8px; }
95
+ .channel-text .meta { font-size: 30px; color: #607D8B; }
96
+
97
+ .follow-btn {
98
+ display: inline-flex; align-items: center; gap: 12px; padding: 18px 26px; border-radius: 14px; background: #F5F7FA; border: 1px solid #DDE3E8; color: #233044; font-weight: 700; font-size: 30px;
99
+ }
100
+
101
+ .share-button {
102
+ margin-top: 24px; height: 120px; border-radius: 26px; background: #56A9F4; color: #fff; display: flex; align-items: center; justify-content: center; gap: 16px; font-size: 38px; font-weight: 700;
103
+ box-shadow: 0 6px 16px rgba(86,169,244,0.4);
104
+ }
105
+
106
+ .more-header { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; }
107
+ .more-header .label { font-size: 34px; letter-spacing: 1px; color: #90A4AE; font-weight: 800; }
108
+ /* Toggle */
109
+ .toggle { width: 120px; height: 56px; background: #DDE3E8; border-radius: 28px; position: relative; }
110
+ .toggle .knob { position: absolute; top: 6px; right: 6px; width: 44px; height: 44px; background: #3BA7FF; border-radius: 50%; box-shadow: 0 2px 6px rgba(0,0,0,0.25); }
111
+
112
+ /* Suggested video card */
113
+ .suggestion {
114
+ margin-top: 24px; display: flex; gap: 24px; align-items: flex-start;
115
+ }
116
+ .thumb {
117
+ width: 340px; height: 190px; background: #E0E0E0; border: 1px solid #BDBDBD; display: flex; align-items: center; justify-content: center; color: #757575; font-size: 24px; position: relative;
118
+ border-radius: 12px; overflow: hidden;
119
+ }
120
+ .thumb .duration {
121
+ position: absolute; bottom: 8px; right: 8px; padding: 6px 10px; background: rgba(0,0,0,0.75); color: #fff; border-radius: 8px; font-size: 24px;
122
+ }
123
+ .sug-text { flex: 1; }
124
+ .sug-title { font-size: 34px; font-weight: 700; color: #263238; margin-bottom: 8px; }
125
+ .sug-meta { font-size: 30px; color: #607D8B; }
126
+ .sug-right { display: flex; align-items: start; }
127
+ .sug-menu { width: 56px; height: 56px; border-radius: 18px; background: #F4F7FA; border: 1px solid #DDE3E8; display: flex; align-items: center; justify-content: center; }
128
+
129
+ /* Floating action bar */
130
+ .fab-bar {
131
+ position: absolute; bottom: 170px; left: 50%; transform: translateX(-50%);
132
+ width: 520px; height: 120px; border-radius: 60px; background: #fff; box-shadow: 0 10px 40px rgba(0,0,0,0.12);
133
+ display: flex; align-items: center; justify-content: space-evenly;
134
+ }
135
+ .fab-pill {
136
+ width: 100px; height: 100px; border-radius: 50%; background: #F4F7FA; border: 1px solid #DDE3E8; display: flex; align-items: center; justify-content: center;
137
+ }
138
+
139
+ /* Home indicator */
140
+ .home-indicator {
141
+ position: absolute; bottom: 56px; left: 50%; transform: translateX(-50%);
142
+ width: 360px; height: 12px; border-radius: 6px; background: #D0D4D9;
143
+ }
144
+
145
+ /* SVG helpers */
146
+ svg { display: block; }
147
+ .icon-36 { width: 36px; height: 36px; }
148
+ .icon-42 { width: 42px; height: 42px; }
149
+ .icon-48 { width: 48px; height: 48px; }
150
+ </style>
151
+ </head>
152
+ <body>
153
+ <div id="render-target">
154
+
155
+ <div class="status-bar">
156
+ <div>7:28</div>
157
+ <div class="right">
158
+ <div class="dot"></div><div class="dot"></div><div class="dot"></div><div class="dot"></div>
159
+ <svg class="icon-36" viewBox="0 0 24 24" fill="#fff"><path d="M3 18h18v2H3v-2zm2-3h14v2H5v-2zm2-3h10v2H7v-2zm2-3h6v2H9V9z"/></svg>
160
+ <svg class="icon-36" viewBox="0 0 24 24" fill="#fff"><path d="M12 4c4.4 0 8 3.6 8 8s-3.6 8-8 8-8-3.6-8-8 3.6-8 8-8zm0 14c3.3 0 6-2.7 6-6s-2.7-6-6-6-6 2.7-6 6 2.7 6 6 6z"/></svg>
161
+ </div>
162
+ </div>
163
+
164
+ <div class="video-area">
165
+ <div class="overlay-close">
166
+ <svg class="icon-42" viewBox="0 0 24 24" stroke="#fff" fill="none" stroke-width="2.2">
167
+ <path d="M6 6l12 12M18 6L6 18"/>
168
+ </svg>
169
+ </div>
170
+
171
+ <div class="overlay-dots">
172
+ <svg class="icon-36" viewBox="0 0 24 24" fill="#fff">
173
+ <circle cx="12" cy="5" r="2.2"/><circle cx="12" cy="12" r="2.2"/><circle cx="12" cy="19" r="2.2"/>
174
+ </svg>
175
+ </div>
176
+
177
+ <div class="video-image">[IMG: Video frame - Academy logo]</div>
178
+
179
+ <div class="replay-center">
180
+ <div class="replay-number">5</div>
181
+ <div class="replay-text">Replay</div>
182
+ </div>
183
+
184
+ <div class="overlay-fullscreen">
185
+ <svg class="icon-36" viewBox="0 0 24 24" fill="#fff">
186
+ <path d="M4 10V4h6v2H6v4H4zm10-6h6v6h-2V6h-4V4zM4 14h2v4h4v2H4v-6zm14 6h-6v-2h4v-4h2v6z"/>
187
+ </svg>
188
+ </div>
189
+
190
+ <div class="progress-row">
191
+ <div class="time-text">01:35 / 01:36</div>
192
+ <div class="progress">
193
+ <div class="bar"></div>
194
+ <div class="knob"></div>
195
+ </div>
196
+ </div>
197
+ </div>
198
+
199
+ <div class="content">
200
+ <div class="section">
201
+ <h1 class="title">Stock Market Tips Train Yourself To Success in Stock Market</h1>
202
+
203
+ <div class="actions">
204
+ <div class="actions-left">
205
+ <div class="action-item">
206
+ <div class="pill">
207
+ <svg class="icon-48" viewBox="0 0 24 24" fill="#233044"><path d="M8 5v14l11-7-11-7z"/></svg>
208
+ </div>
209
+ <div class="count">14</div>
210
+ </div>
211
+ <div class="action-item">
212
+ <div class="pill">
213
+ <svg class="icon-48" viewBox="0 0 24 24" fill="none" stroke="#233044" stroke-width="2">
214
+ <path d="M12 21s-6-4.35-9-7.5C-1 9 2.5 3.5 7.5 5.5 9.3 6.2 10.5 7.8 12 9c1.5-1.2 2.7-2.8 4.5-3.5C21.5 3.5 25 9 21 13.5 18 16.65 12 21 12 21z"/>
215
+ </svg>
216
+ </div>
217
+ <div class="count">0</div>
218
+ </div>
219
+ <div class="action-item">
220
+ <div class="pill">
221
+ <svg class="icon-48" viewBox="0 0 24 24" fill="none" stroke="#233044" stroke-width="2">
222
+ <path d="M21 15c0 1.7-1.8 3-4 3H8l-5 4V6c0-1.7 1.8-3 4-3h10c2.2 0 4 1.3 4 3v9z"/>
223
+ </svg>
224
+ </div>
225
+ <div class="count">0</div>
226
+ </div>
227
+ </div>
228
+ <div class="more-vert">
229
+ <svg class="icon-36" viewBox="0 0 24 24" fill="#233044">
230
+ <circle cx="12" cy="6" r="2"/><circle cx="12" cy="12" r="2"/><circle cx="12" cy="18" r="2"/>
231
+ </svg>
232
+ </div>
233
+ </div>
234
+
235
+ <div class="desc">
236
+ Train yourself to success in stock market. Get all important stock/share market tips from<span class="more">… more</span>
237
+ </div>
238
+
239
+ <div class="divider"></div>
240
+
241
+ <div class="channel-row">
242
+ <div class="channel-info">
243
+ <div class="avatar">Avatar</div>
244
+ <div class="channel-text">
245
+ <div class="name">Yatharth Dass</div>
246
+ <div class="meta">2 videos</div>
247
+ </div>
248
+ </div>
249
+ <div class="follow-btn">
250
+ <svg class="icon-36" viewBox="0 0 24 24" fill="#233044"><path d="M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"/></svg>
251
+ Following
252
+ </div>
253
+ </div>
254
+
255
+ <div class="divider"></div>
256
+
257
+ <div class="share-button">
258
+ <svg class="icon-42" viewBox="0 0 24 24" fill="#fff"><path d="M18 8a3 3 0 0 0-2.8 2L9 7.7A3 3 0 1 0 8 10l6.2 2.3A3 3 0 0 0 18 16a3 3 0 1 0-2.9-3.8L8.9 9.9A3 3 0 0 0 6 8a3 3 0 1 0 2.9 3.8l6.2 2.3A3 3 0 0 0 18 8z"/></svg>
259
+ Share
260
+ </div>
261
+
262
+ <div class="more-header">
263
+ <div class="label">MORE VIDEOS</div>
264
+ <div style="display:flex; align-items:center; gap:18px;">
265
+ <div style="font-size:32px; color:#607D8B;">Autoplay</div>
266
+ <div class="toggle"><div class="knob"></div></div>
267
+ </div>
268
+ </div>
269
+
270
+ <div class="suggestion">
271
+ <div class="thumb">
272
+ [IMG: Video thumbnail - writing on whiteboard]
273
+ <div class="duration">01:28</div>
274
+ </div>
275
+ <div class="sug-text">
276
+ <div class="sug-title">Stock Market Tips (Hindi) How to Maximize Profit in Stock Ma...</div>
277
+ <div class="sug-meta">Yatharth Dass</div>
278
+ <div class="sug-meta" style="margin-top:6px;">24 views • 7 years ago</div>
279
+ </div>
280
+ <div class="sug-right">
281
+ <div class="sug-menu">
282
+ <svg class="icon-36" viewBox="0 0 24 24" fill="#233044">
283
+ <circle cx="12" cy="6" r="2"/><circle cx="12" cy="12" r="2"/><circle cx="12" cy="18" r="2"/>
284
+ </svg>
285
+ </div>
286
+ </div>
287
+ </div>
288
+ </div>
289
+ </div>
290
+
291
+ <div class="fab-bar">
292
+ <div class="fab-pill">
293
+ <svg class="icon-42" viewBox="0 0 24 24" fill="#233044"><path d="M8 5v14l11-7-11-7z"/></svg>
294
+ </div>
295
+ <div class="fab-pill">
296
+ <svg class="icon-42" viewBox="0 0 24 24" fill="none" stroke="#233044" stroke-width="2">
297
+ <path d="M21 15c0 1.7-1.8 3-4 3H8l-5 4V6c0-1.7 1.8-3 4-3h10c2.2 0 4 1.3 4 3v9z"/>
298
+ </svg>
299
+ </div>
300
+ </div>
301
+
302
+ <div class="home-indicator"></div>
303
+
304
+ </div>
305
+ </body>
306
+ </html>
code/8910/8910_5.html ADDED
@@ -0,0 +1,511 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>UI Render</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; }
9
+ #render-target {
10
+ position: relative;
11
+ overflow: hidden;
12
+ width: 1080px;
13
+ height: 2400px;
14
+ background: #ffffff;
15
+ font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
16
+ color: #0d0d0d;
17
+ }
18
+
19
+ /* Status bar */
20
+ .status-bar {
21
+ position: absolute;
22
+ top: 0;
23
+ left: 0;
24
+ width: 1080px;
25
+ height: 96px;
26
+ background: #000;
27
+ color: #fff;
28
+ display: flex;
29
+ align-items: center;
30
+ padding: 0 32px;
31
+ box-sizing: border-box;
32
+ font-size: 36px;
33
+ z-index: 50;
34
+ }
35
+ .status-left { flex: 1; }
36
+ .status-right {
37
+ display: flex;
38
+ align-items: center;
39
+ gap: 18px;
40
+ }
41
+ .notif-dot {
42
+ width: 22px;
43
+ height: 22px;
44
+ background: #fff;
45
+ opacity: 0.85;
46
+ border-radius: 50%;
47
+ display: inline-block;
48
+ }
49
+ .icon-svg { width: 48px; height: 48px; fill: none; stroke: #fff; stroke-width: 2.5; }
50
+
51
+ /* Video overlay area */
52
+ .video-area {
53
+ position: absolute;
54
+ top: 96px;
55
+ left: 0;
56
+ width: 1080px;
57
+ height: 980px;
58
+ background: #2b2b2b;
59
+ overflow: hidden;
60
+ }
61
+ .video-dim {
62
+ position: absolute;
63
+ inset: 0;
64
+ background: radial-gradient(ellipse at center, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.8) 100%);
65
+ }
66
+ .video-top-controls {
67
+ position: absolute;
68
+ top: 24px;
69
+ left: 24px;
70
+ right: 24px;
71
+ height: 80px;
72
+ display: flex;
73
+ align-items: center;
74
+ justify-content: space-between;
75
+ z-index: 2;
76
+ }
77
+ .circle-btn {
78
+ width: 72px;
79
+ height: 72px;
80
+ border-radius: 50%;
81
+ background: rgba(255,255,255,0.08);
82
+ display: flex;
83
+ align-items: center;
84
+ justify-content: center;
85
+ }
86
+ .circle-btn svg { stroke: #d9d9d9; }
87
+ .logo-holder {
88
+ position: absolute;
89
+ top: 220px;
90
+ left: 50%;
91
+ transform: translateX(-50%);
92
+ width: 720px;
93
+ height: 320px;
94
+ background: #E0E0E0;
95
+ border: 1px solid #BDBDBD;
96
+ color: #757575;
97
+ display: flex;
98
+ align-items: center;
99
+ justify-content: center;
100
+ text-align: center;
101
+ z-index: 1;
102
+ font-size: 40px;
103
+ border-radius: 8px;
104
+ }
105
+ .replay {
106
+ position: absolute;
107
+ top: 540px;
108
+ left: 50%;
109
+ transform: translateX(-50%);
110
+ width: 220px;
111
+ height: 220px;
112
+ border-radius: 50%;
113
+ border: 8px solid rgba(255,255,255,0.25);
114
+ display: flex;
115
+ align-items: center;
116
+ justify-content: center;
117
+ color: #e6e6e6;
118
+ font-size: 72px;
119
+ font-weight: 600;
120
+ z-index: 2;
121
+ }
122
+ .replay-label {
123
+ position: absolute;
124
+ top: 760px;
125
+ width: 100%;
126
+ text-align: center;
127
+ color: #cfcfcf;
128
+ font-size: 40px;
129
+ z-index: 2;
130
+ }
131
+ .time-row {
132
+ position: absolute;
133
+ bottom: 120px;
134
+ left: 32px;
135
+ right: 32px;
136
+ display: flex;
137
+ align-items: center;
138
+ justify-content: space-between;
139
+ color: #cfcfcf;
140
+ font-size: 34px;
141
+ z-index: 2;
142
+ opacity: 0.95;
143
+ }
144
+ .progress-bar {
145
+ position: absolute;
146
+ bottom: 78px;
147
+ left: 32px;
148
+ width: 900px;
149
+ height: 6px;
150
+ background: rgba(255,255,255,0.25);
151
+ border-radius: 3px;
152
+ z-index: 2;
153
+ }
154
+ .progress-fill {
155
+ width: 820px;
156
+ height: 6px;
157
+ background: #2da1ff;
158
+ border-radius: 3px;
159
+ }
160
+ .progress-knob {
161
+ position: absolute;
162
+ left: 810px;
163
+ top: -8px;
164
+ width: 24px;
165
+ height: 24px;
166
+ border-radius: 50%;
167
+ background: #cfe9ff;
168
+ border: 3px solid #2da1ff;
169
+ }
170
+ .fullscreen-btn {
171
+ position: absolute;
172
+ right: 32px;
173
+ bottom: 62px;
174
+ width: 72px;
175
+ height: 72px;
176
+ border-radius: 8px;
177
+ background: rgba(255,255,255,0.1);
178
+ display: flex;
179
+ align-items: center;
180
+ justify-content: center;
181
+ z-index: 2;
182
+ }
183
+ .fullscreen-btn svg { stroke: #e6e6e6; }
184
+
185
+ /* Details section */
186
+ .details {
187
+ position: absolute;
188
+ top: 1076px;
189
+ left: 0;
190
+ width: 1080px;
191
+ background: #fff;
192
+ padding: 48px 40px 24px 40px;
193
+ box-sizing: border-box;
194
+ }
195
+ .title {
196
+ font-size: 60px;
197
+ font-weight: 800;
198
+ line-height: 1.2;
199
+ color: #082c3a;
200
+ margin-bottom: 40px;
201
+ }
202
+ .actions-row {
203
+ display: flex;
204
+ align-items: center;
205
+ gap: 28px;
206
+ margin-bottom: 24px;
207
+ }
208
+ .rounded-icon {
209
+ width: 132px;
210
+ height: 132px;
211
+ border-radius: 28px;
212
+ border: 2px solid #e3e6ea;
213
+ display: flex;
214
+ align-items: center;
215
+ justify-content: center;
216
+ color: #2c3e50;
217
+ background: #fafafa;
218
+ }
219
+ .rounded-icon svg { stroke: #2c3e50; }
220
+ .counts-row {
221
+ display: flex;
222
+ gap: 132px;
223
+ margin: 8px 0 24px 6px;
224
+ font-size: 36px;
225
+ color: #3b4c59;
226
+ }
227
+ .desc {
228
+ font-size: 40px;
229
+ line-height: 1.5;
230
+ color: #394b59;
231
+ }
232
+ .desc .more { color: #1677FF; }
233
+ .divider {
234
+ height: 1px;
235
+ background: #e6e6e6;
236
+ margin: 32px 0;
237
+ }
238
+ .channel-row {
239
+ display: flex;
240
+ align-items: center;
241
+ justify-content: space-between;
242
+ }
243
+ .channel-left {
244
+ display: flex;
245
+ align-items: center;
246
+ gap: 24px;
247
+ }
248
+ .avatar {
249
+ width: 96px;
250
+ height: 96px;
251
+ border-radius: 50%;
252
+ background: #E0E0E0;
253
+ border: 1px solid #BDBDBD;
254
+ display: flex;
255
+ align-items: center;
256
+ justify-content: center;
257
+ color: #757575;
258
+ font-size: 28px;
259
+ }
260
+ .channel-name {
261
+ font-size: 44px;
262
+ font-weight: 700;
263
+ color: #0f2b3a;
264
+ }
265
+ .channel-sub {
266
+ font-size: 32px;
267
+ color: #7b8a98;
268
+ margin-top: 6px;
269
+ }
270
+ .follow-btn {
271
+ display: inline-flex;
272
+ align-items: center;
273
+ gap: 14px;
274
+ background: #f1f5f9;
275
+ border: 2px solid #d3dae2;
276
+ color: #0f2b3a;
277
+ font-weight: 700;
278
+ padding: 20px 28px;
279
+ border-radius: 18px;
280
+ font-size: 36px;
281
+ }
282
+ .follow-btn svg { stroke: #0f2b3a; }
283
+
284
+ /* Bottom sheet for playback speed */
285
+ .sheet {
286
+ position: absolute;
287
+ left: 0;
288
+ bottom: 96px;
289
+ width: 1080px;
290
+ height: 1040px;
291
+ background: #fff;
292
+ border-top-left-radius: 24px;
293
+ border-top-right-radius: 24px;
294
+ box-shadow: 0 -8px 24px rgba(0,0,0,0.15);
295
+ z-index: 40;
296
+ padding: 32px 40px;
297
+ box-sizing: border-box;
298
+ }
299
+ .sheet-option {
300
+ display: flex;
301
+ align-items: center;
302
+ gap: 28px;
303
+ height: 140px;
304
+ font-size: 40px;
305
+ color: #2a3a46;
306
+ }
307
+ .radio {
308
+ width: 48px;
309
+ height: 48px;
310
+ border: 4px solid #b8bec6;
311
+ border-radius: 50%;
312
+ position: relative;
313
+ }
314
+ .radio.selected {
315
+ border-color: #1ea0ff;
316
+ }
317
+ .radio.selected::after {
318
+ content: "";
319
+ position: absolute;
320
+ inset: 10px;
321
+ border-radius: 50%;
322
+ background: #1ea0ff;
323
+ }
324
+
325
+ /* Bottom gesture bar */
326
+ .gesture {
327
+ position: absolute;
328
+ left: 0;
329
+ bottom: 0;
330
+ width: 1080px;
331
+ height: 96px;
332
+ background: #000;
333
+ display: flex;
334
+ align-items: center;
335
+ justify-content: center;
336
+ }
337
+ .gesture-indicator {
338
+ width: 280px;
339
+ height: 10px;
340
+ background: #e6e6e6;
341
+ border-radius: 5px;
342
+ opacity: 0.9;
343
+ }
344
+
345
+ /* Utility */
346
+ .spacer { flex: 1; }
347
+ </style>
348
+ </head>
349
+ <body>
350
+ <div id="render-target">
351
+
352
+ <!-- Status Bar -->
353
+ <div class="status-bar">
354
+ <div class="status-left">7:29</div>
355
+ <div class="status-right">
356
+ <span class="notif-dot"></span>
357
+ <span class="notif-dot"></span>
358
+ <span class="notif-dot"></span>
359
+ <span class="notif-dot"></span>
360
+ <svg class="icon-svg" viewBox="0 0 24 24" aria-hidden="true">
361
+ <path d="M2 17c4-4 10-4 14 0M5 14c3-3 8-3 11 0M8 11c2-2 6-2 8 0" stroke-linecap="round"/>
362
+ </svg>
363
+ <svg class="icon-svg" viewBox="0 0 24 24" aria-hidden="true">
364
+ <rect x="3" y="6" width="18" height="12" rx="2"></rect>
365
+ <rect x="5" y="8" width="10" height="8" fill="#fff" stroke="none"></rect>
366
+ </svg>
367
+ </div>
368
+ </div>
369
+
370
+ <!-- Video Overlay Area -->
371
+ <div class="video-area">
372
+ <div class="video-dim"></div>
373
+
374
+ <div class="video-top-controls">
375
+ <div class="circle-btn">
376
+ <svg width="36" height="36" viewBox="0 0 24 24">
377
+ <path d="M5 5 L19 19 M19 5 L5 19" stroke="#e6e6e6" stroke-width="2.2" stroke-linecap="round"/>
378
+ </svg>
379
+ </div>
380
+ <div class="circle-btn" style="background: rgba(255,255,255,0.02);">
381
+ <svg width="28" height="28" viewBox="0 0 24 24">
382
+ <circle cx="12" cy="5" r="2.2" fill="#e6e6e6" stroke="none"/>
383
+ <circle cx="12" cy="12" r="2.2" fill="#e6e6e6" stroke="none"/>
384
+ <circle cx="12" cy="19" r="2.2" fill="#e6e6e6" stroke="none"/>
385
+ </svg>
386
+ </div>
387
+ </div>
388
+
389
+ <div class="logo-holder">[IMG: Stock Market Academy Logo]</div>
390
+
391
+ <div class="replay">5</div>
392
+ <div class="replay-label">Replay</div>
393
+
394
+ <div class="time-row">
395
+ <div>01:35 / 01:36</div>
396
+ <div style="display:flex; align-items:center; gap:16px;">
397
+ <svg width="28" height="28" viewBox="0 0 24 24">
398
+ <circle cx="12" cy="4" r="2" fill="#e6e6e6"></circle>
399
+ <circle cx="12" cy="12" r="2" fill="#e6e6e6"></circle>
400
+ <circle cx="12" cy="20" r="2" fill="#e6e6e6"></circle>
401
+ </svg>
402
+ </div>
403
+ </div>
404
+
405
+ <div class="progress-bar">
406
+ <div class="progress-fill"></div>
407
+ <div class="progress-knob"></div>
408
+ </div>
409
+
410
+ <div class="fullscreen-btn" title="Fullscreen">
411
+ <svg width="36" height="36" viewBox="0 0 24 24">
412
+ <path d="M4 10 V4 H10 M20 10 V4 H14 M4 14 V20 H10 M20 14 V20 H14" stroke="#e6e6e6" stroke-width="2" fill="none" stroke-linecap="round"/>
413
+ </svg>
414
+ </div>
415
+ </div>
416
+
417
+ <!-- Details Section -->
418
+ <div class="details">
419
+ <div class="title">Stock Market Tips Train Yourself To Success in Stock Market</div>
420
+
421
+ <div class="actions-row">
422
+ <div class="rounded-icon">
423
+ <svg width="56" height="56" viewBox="0 0 24 24">
424
+ <path d="M6 5 L19 12 L6 19 Z" stroke-width="2" stroke-linejoin="round" fill="none"/>
425
+ </svg>
426
+ </div>
427
+ <div class="rounded-icon">
428
+ <svg width="56" height="56" viewBox="0 0 24 24">
429
+ <path d="M12 20s-7-4.5-7-9a4 4 0 0 1 7-2 4 4 0 0 1 7 2c0 4.5-7 9-7 9Z" stroke-width="2" fill="none"/>
430
+ </svg>
431
+ </div>
432
+ <div class="rounded-icon">
433
+ <svg width="56" height="56" viewBox="0 0 24 24">
434
+ <path d="M4 5 H20 V16 H8 L4 20 Z" stroke-width="2" fill="none" stroke-linejoin="round"/>
435
+ </svg>
436
+ </div>
437
+ <div class="spacer"></div>
438
+ <div class="rounded-icon" style="width: 112px; height: 112px;">
439
+ <svg width="40" height="40" viewBox="0 0 24 24">
440
+ <circle cx="5" cy="12" r="2" fill="#2c3e50"></circle>
441
+ <circle cx="12" cy="12" r="2" fill="#2c3e50"></circle>
442
+ <circle cx="19" cy="12" r="2" fill="#2c3e50"></circle>
443
+ </svg>
444
+ </div>
445
+ </div>
446
+
447
+ <div class="counts-row">
448
+ <div>14</div>
449
+ <div>0</div>
450
+ <div>0</div>
451
+ </div>
452
+
453
+ <div class="desc">
454
+ Train yourself to success in stock market. Get all important stock/share market tips from… <span class="more">more</span>
455
+ </div>
456
+
457
+ <div class="divider"></div>
458
+
459
+ <div class="channel-row">
460
+ <div class="channel-left">
461
+ <div class="avatar">[IMG]</div>
462
+ <div>
463
+ <div class="channel-name">Yatharth Dass</div>
464
+ <div class="channel-sub">2 videos</div>
465
+ </div>
466
+ </div>
467
+ <div class="follow-btn">
468
+ <svg width="36" height="36" viewBox="0 0 24 24">
469
+ <path d="M4 12 L9 17 L20 6" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
470
+ </svg>
471
+ Following
472
+ </div>
473
+ </div>
474
+ </div>
475
+
476
+ <!-- Playback Speed Bottom Sheet -->
477
+ <div class="sheet">
478
+ <div class="sheet-option">
479
+ <div class="radio"></div>
480
+ <div>0.5x</div>
481
+ </div>
482
+ <div class="sheet-option">
483
+ <div class="radio"></div>
484
+ <div>0.75x</div>
485
+ </div>
486
+ <div class="sheet-option">
487
+ <div class="radio selected"></div>
488
+ <div>Normal</div>
489
+ </div>
490
+ <div class="sheet-option">
491
+ <div class="radio"></div>
492
+ <div>1.25x</div>
493
+ </div>
494
+ <div class="sheet-option">
495
+ <div class="radio"></div>
496
+ <div>1.5x</div>
497
+ </div>
498
+ <div class="sheet-option">
499
+ <div class="radio"></div>
500
+ <div>2x</div>
501
+ </div>
502
+ </div>
503
+
504
+ <!-- Bottom Gesture Bar -->
505
+ <div class="gesture">
506
+ <div class="gesture-indicator"></div>
507
+ </div>
508
+
509
+ </div>
510
+ </body>
511
+ </html>
code/8916/8916_0.html ADDED
@@ -0,0 +1,281 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Android Home Mock</title>
7
+ <style>
8
+ body { margin:0; padding:0; background:transparent; }
9
+ #render-target {
10
+ width:1080px; height:2400px;
11
+ position:relative; overflow:hidden;
12
+ font-family: Roboto, Arial, Helvetica, sans-serif;
13
+ color:#fff;
14
+ }
15
+
16
+ /* Wallpaper placeholder */
17
+ .wallpaper {
18
+ position:absolute; inset:0;
19
+ background:#E0E0E0;
20
+ border:1px solid #BDBDBD;
21
+ display:flex; align-items:center; justify-content:center;
22
+ color:#757575; font-size:32px; letter-spacing:0.5px;
23
+ }
24
+ .darken {
25
+ position:absolute; inset:0;
26
+ background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.15) 35%, rgba(0,0,0,0.35) 75%, rgba(0,0,0,0.65) 100%);
27
+ pointer-events:none;
28
+ }
29
+
30
+ /* Status bar */
31
+ .status-bar {
32
+ position:absolute; top:18px; left:24px; right:24px; height:60px;
33
+ display:flex; align-items:center; justify-content:space-between;
34
+ font-size:36px; font-weight:500;
35
+ }
36
+ .center-dots {
37
+ display:flex; gap:16px; align-items:center; justify-content:center;
38
+ }
39
+ .dot { width:16px; height:16px; border-radius:50%; background:#fff; opacity:0.7; }
40
+ .dot.hollow { background:transparent; border:2px solid #fff; opacity:0.85; }
41
+ .right-icons { display:flex; gap:24px; align-items:center; }
42
+ .icon-s { width:34px; height:34px; fill:#fff; opacity:0.95; }
43
+
44
+ /* Date and weather */
45
+ .info {
46
+ position:absolute; left:56px; top:210px;
47
+ }
48
+ .date {
49
+ font-size:64px; font-weight:500; line-height:1.2;
50
+ text-shadow: 0 2px 6px rgba(0,0,0,0.35);
51
+ }
52
+ .weather {
53
+ margin-top:18px; display:flex; align-items:center; gap:18px;
54
+ font-size:36px; opacity:0.95;
55
+ }
56
+ .waves { width:56px; height:36px; }
57
+
58
+ /* App grid */
59
+ .apps-row {
60
+ position:absolute; left:0; right:0;
61
+ display:flex; justify-content:space-around; align-items:flex-start;
62
+ padding:0 44px;
63
+ }
64
+ .apps-row.top { top:1500px; }
65
+ .apps-row.dock { top:1785px; justify-content:space-evenly; padding:0 80px; }
66
+ .app {
67
+ width:190px; text-align:center; color:#fff;
68
+ }
69
+ .circle {
70
+ width:180px; height:180px; border-radius:50%;
71
+ background:#fff; display:flex; align-items:center; justify-content:center;
72
+ box-shadow: 0 10px 24px rgba(0,0,0,0.25);
73
+ position:relative;
74
+ }
75
+ .label {
76
+ margin-top:20px; font-size:34px; opacity:0.95;
77
+ }
78
+ .badge {
79
+ position:absolute; right:18px; top:12px;
80
+ width:28px; height:28px; border-radius:50%; background:#f3b4ca;
81
+ border:4px solid #fff;
82
+ }
83
+ .svg-app { width:108px; height:108px; }
84
+
85
+ /* Search bar */
86
+ .search {
87
+ position:absolute; left:56px; right:56px; bottom:210px;
88
+ height:120px; background:#fff; border-radius:60px;
89
+ display:flex; align-items:center; padding:0 34px;
90
+ box-shadow: 0 12px 28px rgba(0,0,0,0.35);
91
+ }
92
+ .search .glogo { width:58px; height:58px; }
93
+ .search .hint {
94
+ margin-left:24px; color:#7a7a7a; font-size:40px; flex:1;
95
+ }
96
+ .search .tools { display:flex; gap:28px; align-items:center; }
97
+ .tool-ico { width:48px; height:48px; }
98
+
99
+ /* Gesture bar */
100
+ .gesture {
101
+ position:absolute; left:50%; transform:translateX(-50%);
102
+ bottom:84px; width:260px; height:12px; border-radius:6px;
103
+ background:#d9d9d9; opacity:0.9;
104
+ }
105
+ </style>
106
+ </head>
107
+ <body>
108
+ <div id="render-target">
109
+ <!-- Wallpaper placeholder with subtle darken overlay -->
110
+ <div class="wallpaper">[IMG: Mountain Wallpaper]</div>
111
+ <div class="darken"></div>
112
+
113
+ <!-- Status bar -->
114
+ <div class="status-bar">
115
+ <div class="left">8:11</div>
116
+ <div class="center-dots">
117
+ <div class="dot"></div>
118
+ <div class="dot hollow"></div>
119
+ <div class="dot"></div>
120
+ <div class="dot" style="opacity:0.45;"></div>
121
+ </div>
122
+ <div class="right-icons">
123
+ <!-- WiFi -->
124
+ <svg class="icon-s" viewBox="0 0 24 24">
125
+ <path d="M12 20.5c.9 0 1.6-.7 1.6-1.5S12.9 17.5 12 17.5s-1.6.7-1.6 1.5.7 1.5 1.6 1.5zM3 9.5l1.7 1.7C7.2 8.6 9.5 7.8 12 7.8s4.8.8 7.3 3.4L21 9.5C18 6.8 15 5.8 12 5.8S6 6.8 3 9.5zm4 4l1.7 1.7c1.2-1.2 2.3-1.7 3.3-1.7s2 .5 3.3 1.7L17 13.5c-1.8-1.8-3.4-2.7-5-2.7s-3.2.9-5 2.7z"/>
126
+ </svg>
127
+ <!-- Battery -->
128
+ <svg class="icon-s" viewBox="0 0 24 24">
129
+ <path d="M16 6H6c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm3 3h1v6h-1V9z"/>
130
+ </svg>
131
+ </div>
132
+ </div>
133
+
134
+ <!-- Date and weather -->
135
+ <div class="info">
136
+ <div class="date">Thu, Sep 28</div>
137
+ <div class="weather">
138
+ <svg class="waves" viewBox="0 0 64 32" fill="none">
139
+ <path d="M2 8c6 6 14 6 20 0s14-6 20 0 14 6 20 0" stroke="#fff" stroke-width="4" stroke-linecap="round"/>
140
+ <path d="M2 20c6 6 14 6 20 0s14-6 20 0 14 6 20 0" stroke="#fff" stroke-width="4" stroke-linecap="round" opacity="0.8"/>
141
+ </svg>
142
+ <div>30°C</div>
143
+ </div>
144
+ </div>
145
+
146
+ <!-- Top app row -->
147
+ <div class="apps-row top">
148
+ <!-- Play Store -->
149
+ <div class="app">
150
+ <div class="circle">
151
+ <svg class="svg-app" viewBox="0 0 100 100">
152
+ <polygon points="20,20 70,50 20,80" fill="#00C853"/>
153
+ <polygon points="70,50 50,65 40,55 55,45" fill="#FFC107"/>
154
+ <polygon points="20,20 55,45 40,55" fill="#40C4FF"/>
155
+ <polygon points="20,80 50,65 40,55" fill="#EA4335"/>
156
+ </svg>
157
+ </div>
158
+ <div class="label">Play Store</div>
159
+ </div>
160
+
161
+ <!-- Gmail -->
162
+ <div class="app">
163
+ <div class="circle">
164
+ <div class="badge"></div>
165
+ <svg class="svg-app" viewBox="0 0 100 100">
166
+ <path d="M15 30v40c0 5 4 9 9 9h52c5 0 9-4 9-9V30L50 54 15 30z" fill="#fff"/>
167
+ <path d="M15 30l35 24 35-24" fill="none" stroke-width="14" stroke="#EA4335"/>
168
+ <path d="M15 30v40" stroke="#34A853" stroke-width="14"/>
169
+ <path d="M89 30v40" stroke="#4285F4" stroke-width="14"/>
170
+ <path d="M50 54L15 30h70L50 54z" fill="none" stroke="#FBBC05" stroke-width="14"/>
171
+ </svg>
172
+ </div>
173
+ <div class="label">Gmail</div>
174
+ </div>
175
+
176
+ <!-- Photos -->
177
+ <div class="app">
178
+ <div class="circle">
179
+ <div class="badge"></div>
180
+ <svg class="svg-app" viewBox="0 0 100 100">
181
+ <path d="M50 18a18 18 0 110 36H50V18z" fill="#FBBC05"/>
182
+ <path d="M82 50a18 18 0 11-36 0V50H82z" fill="#34A853"/>
183
+ <path d="M50 82a18 18 0 110-36H50V82z" fill="#4285F4"/>
184
+ <path d="M18 50a18 18 0 1136 0V50H18z" fill="#EA4335"/>
185
+ </svg>
186
+ </div>
187
+ <div class="label">Photos</div>
188
+ </div>
189
+
190
+ <!-- YouTube -->
191
+ <div class="app">
192
+ <div class="circle">
193
+ <svg class="svg-app" viewBox="0 0 100 100">
194
+ <rect x="12" y="30" width="76" height="40" rx="14" fill="#FF0000"/>
195
+ <polygon points="44,50 44,38 62,50 44,62" fill="#fff"/>
196
+ </svg>
197
+ </div>
198
+ <div class="label">YouTube</div>
199
+ </div>
200
+ </div>
201
+
202
+ <!-- Dock row -->
203
+ <div class="apps-row dock">
204
+ <!-- Phone -->
205
+ <div class="app">
206
+ <div class="circle">
207
+ <svg class="svg-app" viewBox="0 0 100 100">
208
+ <path d="M66 72c-12-5-22-15-27-27l9-9-12-12-10 10c-2 2-3 6-2 9 6 16 20 30 36 36 3 1 7 0 9-2l10-10-12-12-9 9z" fill="#1E88E5"/>
209
+ </svg>
210
+ </div>
211
+ </div>
212
+
213
+ <!-- Messages -->
214
+ <div class="app">
215
+ <div class="circle">
216
+ <svg class="svg-app" viewBox="0 0 100 100">
217
+ <rect x="18" y="20" width="64" height="48" rx="10" fill="#1976D2"/>
218
+ <polygon points="36,68 48,56 64,56" fill="#1976D2"/>
219
+ <rect x="28" y="32" width="44" height="8" rx="4" fill="#BBDEFB"/>
220
+ <rect x="28" y="44" width="32" height="8" rx="4" fill="#BBDEFB"/>
221
+ </svg>
222
+ </div>
223
+ </div>
224
+
225
+ <!-- Chrome -->
226
+ <div class="app">
227
+ <div class="circle">
228
+ <svg class="svg-app" viewBox="0 0 100 100">
229
+ <circle cx="50" cy="50" r="20" fill="#1A73E8"/>
230
+ <circle cx="50" cy="50" r="12" fill="#fff"/>
231
+ <path d="M50 12a38 38 0 0133 20H50L34 24A38 38 0 0150 12z" fill="#EA4335"/>
232
+ <path d="M83 32a38 38 0 01-8 48L60 56l-10-24h33z" fill="#FBBC05"/>
233
+ <path d="M75 80A38 38 0 0116 34l30 6 14 16 15 24z" fill="#34A853"/>
234
+ </svg>
235
+ </div>
236
+ </div>
237
+
238
+ <!-- Camera -->
239
+ <div class="app">
240
+ <div class="circle">
241
+ <svg class="svg-app" viewBox="0 0 100 100">
242
+ <rect x="16" y="30" width="68" height="44" rx="10" fill="#616161"/>
243
+ <rect x="26" y="22" width="18" height="12" rx="4" fill="#757575"/>
244
+ <circle cx="50" cy="52" r="16" fill="#90CAF9"/>
245
+ <circle cx="50" cy="52" r="10" fill="#42A5F5"/>
246
+ </svg>
247
+ </div>
248
+ </div>
249
+ </div>
250
+
251
+ <!-- Search bar -->
252
+ <div class="search">
253
+ <!-- Google G -->
254
+ <svg class="glogo" viewBox="0 0 24 24">
255
+ <path d="M12 4a8 8 0 105.7 13.7l-2.7-2.1A4.8 4.8 0 116.6 12H12v-4z" fill="#4285F4"/>
256
+ <path d="M6.6 12a5.4 5.4 0 010-2h5.4V6H9.8A8 8 0 004 12" fill="#EA4335"/>
257
+ <path d="M12 20a8 8 0 005.7-2.3l-2.7-2.1A4.8 4.8 0 116.6 12 8 8 0 0012 20z" fill="#34A853"/>
258
+ <path d="M20 12c0-.7-.1-1.4-.3-2H12v4h4.6c-.3 1-.9 1.9-1.9 2.6l2.7 2.1A8 8 0 0020 12z" fill="#FBBC05"/>
259
+ </svg>
260
+ <div class="hint">Search</div>
261
+ <div class="tools">
262
+ <!-- Mic -->
263
+ <svg class="tool-ico" viewBox="0 0 24 24" fill="#1A73E8">
264
+ <path d="M12 14a3 3 0 003-3V7a3 3 0 10-6 0v4a3 3 0 003 3z"/>
265
+ <path d="M5 11a7 7 0 0014 0h-2a5 5 0 11-10 0H5z" fill="#34A853"/>
266
+ <rect x="11" y="18" width="2" height="3" fill="#EA4335"/>
267
+ </svg>
268
+ <!-- Lens/Camera -->
269
+ <svg class="tool-ico" viewBox="0 0 24 24">
270
+ <rect x="4" y="6" width="16" height="12" rx="3" fill="#FF6F00"/>
271
+ <circle cx="12" cy="12" r="4" fill="#fff"/>
272
+ <circle cx="12" cy="12" r="2.2" fill="#2196F3"/>
273
+ </svg>
274
+ </div>
275
+ </div>
276
+
277
+ <!-- Gesture bar -->
278
+ <div class="gesture"></div>
279
+ </div>
280
+ </body>
281
+ </html>
code/8916/8916_1.html ADDED
@@ -0,0 +1,231 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Recorder Plus UI Mock</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: #212121;
17
+ }
18
+
19
+ /* Status bar */
20
+ .status {
21
+ height: 110px;
22
+ padding: 0 36px;
23
+ display: flex;
24
+ align-items: center;
25
+ justify-content: space-between;
26
+ color: #555;
27
+ font-size: 32px;
28
+ }
29
+ .status .center-dots {
30
+ display: flex; gap: 16px; align-items: center;
31
+ }
32
+ .dot {
33
+ width: 18px; height: 18px; background: #8e8e8e; border-radius: 50%;
34
+ }
35
+ .right-icons { display: flex; align-items: center; gap: 22px; }
36
+ .battery {
37
+ width: 44px; height: 22px; border: 3px solid #555; border-radius: 4px; position: relative;
38
+ }
39
+ .battery::after {
40
+ content: ""; position: absolute; right: -8px; top: 6px; width: 6px; height: 10px; background: #555; border-radius: 1px;
41
+ }
42
+ .battery .level { position: absolute; left: 3px; top: 3px; bottom: 3px; right: 16px; background: #555; }
43
+
44
+ /* Ad banner placeholder */
45
+ .ad {
46
+ margin: 8px 60px 12px;
47
+ height: 150px;
48
+ background: #E0E0E0;
49
+ border: 1px solid #BDBDBD;
50
+ display: flex;
51
+ align-items: center;
52
+ justify-content: center;
53
+ color: #757575;
54
+ font-size: 36px;
55
+ border-radius: 6px;
56
+ }
57
+
58
+ /* Toolbar */
59
+ .toolbar {
60
+ height: 120px;
61
+ display: flex;
62
+ align-items: center;
63
+ padding: 0 32px;
64
+ border-bottom: 1px solid #ECECEC;
65
+ }
66
+ .tb-left, .tb-right { width: 200px; display: flex; align-items: center; gap: 28px; }
67
+ .tb-title {
68
+ flex: 1;
69
+ text-align: center;
70
+ font-weight: 700;
71
+ letter-spacing: 1px;
72
+ font-size: 42px;
73
+ }
74
+ .tb-title .plus { color: #FF3D00; }
75
+
76
+ .icon-btn { width: 56px; height: 56px; display: inline-flex; align-items: center; justify-content: center; }
77
+
78
+ /* List section */
79
+ .list {
80
+ border-bottom: 1px solid #f0f0f0;
81
+ }
82
+ .item {
83
+ display: flex;
84
+ align-items: center;
85
+ padding: 26px 28px;
86
+ }
87
+ .play-wrap {
88
+ width: 84px; height: 84px; border-radius: 50%;
89
+ border: 2px solid #E0E0E0; display: flex; align-items: center; justify-content: center; margin-right: 24px;
90
+ }
91
+ .item-main { flex: 1; }
92
+ .item-title { font-size: 40px; margin-bottom: 6px; }
93
+ .item-sub { font-size: 28px; color: #8e8e8e; }
94
+ .item-right {
95
+ display: flex; align-items: center; gap: 22px; color: #6f6f6f; font-size: 30px;
96
+ }
97
+
98
+ /* Content spacer */
99
+ .content-space {
100
+ height: 1180px;
101
+ background: #FAFAFA;
102
+ border-top: 1px solid #F1F1F1;
103
+ border-bottom: 1px solid #F1F1F1;
104
+ }
105
+
106
+ /* Bottom record area */
107
+ .bottom-area {
108
+ position: absolute; left: 0; right: 0; bottom: 0;
109
+ height: 620px; background: #FFFFFF; border-top: 1px solid #EEEEEE;
110
+ display: flex; align-items: center; justify-content: center;
111
+ }
112
+ .record-outer {
113
+ width: 240px; height: 240px; border-radius: 50%;
114
+ border: 3px solid #D9D9D9;
115
+ display: flex; align-items: center; justify-content: center;
116
+ background: #fff;
117
+ }
118
+ .record-inner {
119
+ width: 200px; height: 200px; border-radius: 50%;
120
+ border: 3px solid #E5E5E5;
121
+ display: flex; align-items: center; justify-content: center;
122
+ background: #fff;
123
+ }
124
+ .record-dot {
125
+ width: 92px; height: 92px; border-radius: 50%;
126
+ background: #FF3D00;
127
+ }
128
+
129
+ /* Gesture handle */
130
+ .handle {
131
+ position: absolute; bottom: 22px; left: 50%;
132
+ transform: translateX(-50%);
133
+ width: 300px; height: 12px; background: #7a7a7a; border-radius: 8px;
134
+ opacity: 0.8;
135
+ }
136
+
137
+ /* Utility */
138
+ svg { display: block; }
139
+ </style>
140
+ </head>
141
+ <body>
142
+ <div id="render-target">
143
+
144
+ <!-- Status bar -->
145
+ <div class="status">
146
+ <div style="font-weight:600;">8:12</div>
147
+ <div class="center-dots">
148
+ <div class="dot"></div>
149
+ <div class="dot" style="opacity:.6;"></div>
150
+ <div class="dot" style="opacity:.3;"></div>
151
+ <div class="dot" style="width:10px;height:10px;opacity:.4;"></div>
152
+ </div>
153
+ <div class="right-icons">
154
+ <svg width="36" height="36" viewBox="0 0 24 24"><path fill="#555" d="M3 12h3l3 4 4-6 4 8h4v2H0v-2h3z"/></svg>
155
+ <div class="battery"><div class="level"></div></div>
156
+ </div>
157
+ </div>
158
+
159
+ <!-- Ad banner placeholder -->
160
+ <div class="ad">[IMG: Ad Banner]</div>
161
+
162
+ <!-- Toolbar -->
163
+ <div class="toolbar">
164
+ <div class="tb-left">
165
+ <div class="icon-btn">
166
+ <svg width="40" height="40" viewBox="0 0 24 24">
167
+ <path fill="#222" d="M3 6h18v2H3zm0 5h18v2H3zm0 5h18v2H3z"/>
168
+ </svg>
169
+ </div>
170
+ </div>
171
+
172
+ <div class="tb-title">RECORDER <span class="plus">PLUS</span></div>
173
+
174
+ <div class="tb-right" style="justify-content:flex-end;">
175
+ <div class="icon-btn">
176
+ <svg width="40" height="40" viewBox="0 0 24 24">
177
+ <path fill="#222" d="M15.5 14h-.79l-.28-.27A6.471 6.471 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zM9.5 14C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/>
178
+ </svg>
179
+ </div>
180
+ <div class="icon-btn">
181
+ <svg width="40" height="40" viewBox="0 0 24 24">
182
+ <circle cx="12" cy="5" r="2" fill="#222"></circle>
183
+ <circle cx="12" cy="12" r="2" fill="#222"></circle>
184
+ <circle cx="12" cy="19" r="2" fill="#222"></circle>
185
+ </svg>
186
+ </div>
187
+ </div>
188
+ </div>
189
+
190
+ <!-- One list item -->
191
+ <div class="list">
192
+ <div class="item">
193
+ <div class="play-wrap">
194
+ <svg width="46" height="46" viewBox="0 0 24 24">
195
+ <circle cx="12" cy="12" r="11" fill="none"></circle>
196
+ <path d="M9 7l8 5-8 5V7z" fill="#FF3D00"></path>
197
+ </svg>
198
+ </div>
199
+ <div class="item-main">
200
+ <div class="item-title">Vecna</div>
201
+ <div class="item-sub">Jul 06, 11:52</div>
202
+ </div>
203
+ <div class="item-right">
204
+ <div>00:19</div>
205
+ <svg width="40" height="40" viewBox="0 0 24 24">
206
+ <circle cx="12" cy="5" r="2" fill="#7a7a7a"></circle>
207
+ <circle cx="12" cy="12" r="2" fill="#7a7a7a"></circle>
208
+ <circle cx="12" cy="19" r="2" fill="#7a7a7a"></circle>
209
+ </svg>
210
+ </div>
211
+ </div>
212
+ </div>
213
+
214
+ <!-- spacer to mimic large empty list -->
215
+ <div class="content-space"></div>
216
+
217
+ <!-- Bottom recording area -->
218
+ <div class="bottom-area">
219
+ <div class="record-outer">
220
+ <div class="record-inner">
221
+ <div class="record-dot"></div>
222
+ </div>
223
+ </div>
224
+ </div>
225
+
226
+ <!-- Gesture handle -->
227
+ <div class="handle"></div>
228
+
229
+ </div>
230
+ </body>
231
+ </html>
code/8916/8916_2.html ADDED
@@ -0,0 +1,246 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Recorder Plus Mock</title>
7
+ <style>
8
+ body { margin:0; padding:0; background:transparent; font-family: Arial, Helvetica, sans-serif; color:#222; }
9
+ #render-target {
10
+ position: relative;
11
+ width:1080px; height:2400px;
12
+ overflow:hidden;
13
+ background:#7f7f7f;
14
+ }
15
+
16
+ /* Status bar */
17
+ .status-bar {
18
+ position:absolute; top:0; left:0; right:0;
19
+ height:100px;
20
+ padding:0 32px;
21
+ display:flex; align-items:center; justify-content:space-between;
22
+ color:#222;
23
+ }
24
+ .status-left { font-weight:600; font-size:40px; }
25
+ .status-right { display:flex; align-items:center; gap:22px; }
26
+ .dot { width:18px; height:18px; background:#2b2b2b; border-radius:50%; opacity:.8; }
27
+ .green-pill {
28
+ background:#31d282; color:#fff; border-radius:28px; padding:16px 26px; font-size:28px; display:flex; align-items:center; gap:12px;
29
+ }
30
+ .green-pill svg { width:26px; height:26px; }
31
+
32
+ /* Ad area */
33
+ .ad-wrap {
34
+ position:absolute; top:100px; left:0; right:0;
35
+ height:160px; background:#ffffff;
36
+ display:flex; align-items:center; justify-content:center;
37
+ box-shadow: inset 0 -1px 0 rgba(0,0,0,0.06), inset 0 1px 0 rgba(0,0,0,0.06);
38
+ }
39
+ .ad-placeholder {
40
+ width:960px; height:120px;
41
+ background:#FFE01B;
42
+ border:1px solid #BDBDBD;
43
+ display:flex; align-items:center; justify-content:space-between;
44
+ padding:0 20px; box-sizing:border-box;
45
+ color:#111; font-weight:700; font-size:36px;
46
+ }
47
+ .ad-left { display:flex; align-items:center; gap:18px; }
48
+ .ad-badge {
49
+ width:64px; height:64px; background:#E0E0E0; border:1px solid #BDBDBD;
50
+ display:flex; align-items:center; justify-content:center; color:#757575; font-size:20px;
51
+ }
52
+ .ad-install {
53
+ background:#111; color:#fff; padding:18px 36px; border-radius:999px; font-weight:700; font-size:34px;
54
+ }
55
+
56
+ /* App bar */
57
+ .app-bar {
58
+ position:absolute; top:260px; left:0; right:0; height:120px; background:#ffffff;
59
+ display:flex; align-items:center; justify-content:space-between;
60
+ padding:0 28px; box-sizing:border-box;
61
+ box-shadow:0 1px 0 rgba(0,0,0,0.08);
62
+ }
63
+ .title {
64
+ font-size:44px; letter-spacing:2px; font-weight:800;
65
+ }
66
+ .title span { color:#c54020; }
67
+ .app-bar .left, .app-bar .right { width:220px; display:flex; align-items:center; gap:36px; }
68
+ .app-bar .center { flex:1; display:flex; justify-content:center; }
69
+
70
+ .icon-btn svg { width:48px; height:48px; fill:#2b2b2b; }
71
+
72
+ /* List item */
73
+ .list {
74
+ position:absolute; top:380px; left:0; right:0; bottom:900px;
75
+ overflow:hidden;
76
+ }
77
+ .list-item {
78
+ background:rgba(255,255,255,0.08);
79
+ height:180px; display:flex; align-items:center; padding:0 28px; box-sizing:border-box;
80
+ border-bottom:1px solid rgba(0,0,0,0.08);
81
+ }
82
+ .play-icon {
83
+ width:72px; height:72px; border-radius:50%; display:flex; align-items:center; justify-content:center; margin-right:24px;
84
+ }
85
+ .play-icon svg { width:40px; height:40px; fill:#e64228; }
86
+ .item-text { flex:1; }
87
+ .item-title { font-size:42px; font-weight:700; margin-bottom:6px; }
88
+ .item-sub { font-size:34px; color:#666; }
89
+ .item-meta { display:flex; align-items:center; gap:24px; color:#333; font-size:34px; }
90
+
91
+ /* Bottom recording sheet */
92
+ .sheet {
93
+ position:absolute; left:0; right:0; bottom:0; height:900px;
94
+ background:#ffffff; border-top-left-radius:24px; border-top-right-radius:24px;
95
+ box-shadow:0 -2px 14px rgba(0,0,0,0.18);
96
+ }
97
+ .pull {
98
+ position:absolute; top:22px; left:56px; color:#333; font-size:48px; line-height:1;
99
+ transform:translateY(-2px);
100
+ }
101
+ .timer {
102
+ position:absolute; top:180px; left:0; right:0; text-align:center; font-size:80px; letter-spacing:2px; color:#333; font-weight:600;
103
+ }
104
+ .wave {
105
+ position:absolute; top:260px; right:80px; width:300px; height:140px;
106
+ background:repeating-linear-gradient(
107
+ to right,
108
+ rgba(230,66,40,0.0) 0 6px,
109
+ rgba(230,66,40,0.0) 6px,
110
+ rgba(230,66,40,0.9) 6px 10px
111
+ );
112
+ clip-path: polygon(0% 70%, 10% 40%, 20% 60%, 30% 35%, 40% 65%, 50% 30%, 60% 60%, 70% 40%, 80% 65%, 90% 45%, 100% 70%, 100% 100%, 0% 100%);
113
+ border-radius:8px;
114
+ }
115
+ .controls {
116
+ position:absolute; bottom:170px; left:54px; right:54px;
117
+ display:flex; align-items:center; justify-content:space-between;
118
+ }
119
+ .pill {
120
+ display:flex; align-items:center; gap:22px;
121
+ height:140px; padding:0 60px; border-radius:90px; background:#fff;
122
+ border:1px solid #e9e9e9; box-shadow:0 6px 14px rgba(0,0,0,0.06);
123
+ font-size:44px; color:#333; font-weight:600;
124
+ }
125
+ .circle-btn {
126
+ width:150px; height:150px; border-radius:50%;
127
+ background:#fff; border:1px solid #e9e9e9; box-shadow:0 6px 14px rgba(0,0,0,0.08);
128
+ display:flex; align-items:center; justify-content:center;
129
+ }
130
+ .btn-area { display:flex; flex-direction:column; align-items:center; gap:24px; }
131
+ .btn-label { font-size:36px; color:#666; }
132
+
133
+ .pause-ico { width:32px; height:54px; display:flex; gap:10px; }
134
+ .pause-ico span { display:block; width:12px; height:100%; background:#e64228; border-radius:4px; }
135
+ .x-ico, .check-ico { width:52px; height:52px; }
136
+ .x-ico path { stroke:#111; stroke-width:10; stroke-linecap:round; fill:none; }
137
+ .check-ico path { stroke:#111; stroke-width:10; stroke-linecap:round; fill:none; }
138
+
139
+ .gesture {
140
+ position:absolute; bottom:36px; left:50%; transform:translateX(-50%);
141
+ width:320px; height:12px; background:#bdbdbd; border-radius:12px; opacity:.9;
142
+ }
143
+ </style>
144
+ </head>
145
+ <body>
146
+ <div id="render-target">
147
+
148
+ <!-- Status bar -->
149
+ <div class="status-bar">
150
+ <div class="status-left">8:16</div>
151
+ <div class="status-right">
152
+ <div class="dot"></div>
153
+ <div class="dot"></div>
154
+ <div class="dot" style="opacity:.5;"></div>
155
+ <div class="green-pill">
156
+ <svg viewBox="0 0 24 24"><path d="M12 3a4 4 0 0 0-4 4v4a4 4 0 0 0 8 0V7a4 4 0 0 0-4-4zM5 11a7 7 0 0 0 14 0h-2a5 5 0 0 1-10 0H5z"/></svg>
157
+ <span>mic</span>
158
+ </div>
159
+ </div>
160
+ </div>
161
+
162
+ <!-- Ad banner -->
163
+ <div class="ad-wrap">
164
+ <div class="ad-placeholder">
165
+ <div class="ad-left">
166
+ <div class="ad-badge">Ad</div>
167
+ <div>Share your moments with Group Chat</div>
168
+ </div>
169
+ <div class="ad-install">Install</div>
170
+ </div>
171
+ </div>
172
+
173
+ <!-- App bar -->
174
+ <div class="app-bar">
175
+ <div class="left">
176
+ <div class="icon-btn" title="menu">
177
+ <svg viewBox="0 0 24 24"><path d="M3 6h18v2H3zm0 5h18v2H3zm0 5h18v2H3z"/></svg>
178
+ </div>
179
+ </div>
180
+ <div class="center">
181
+ <div class="title">RECORDER <span>PLUS</span></div>
182
+ </div>
183
+ <div class="right" style="justify-content:flex-end;">
184
+ <div class="icon-btn" title="search">
185
+ <svg viewBox="0 0 24 24"><path d="M15.5 14h-.79l-.28-.27A6.5 6.5 0 1 0 14 15.5l.27.28v.79L20 21.5 21.5 20l-5.99-6zM6.5 11a4.5 4.5 0 1 1 9 0 4.5 4.5 0 0 1-9 0z"/></svg>
186
+ </div>
187
+ <div class="icon-btn" title="more">
188
+ <svg viewBox="0 0 24 24"><path d="M12 5a2 2 0 1 0 0 4 2 2 0 0 0 0-4zm0 5a2 2 0 1 0 0 4 2 2 0 0 0 0-4zm0 5a2 2 0 1 0 0 4 2 2 0 0 0 0-4z"/></svg>
189
+ </div>
190
+ </div>
191
+ </div>
192
+
193
+ <!-- List -->
194
+ <div class="list">
195
+ <div class="list-item">
196
+ <div class="play-icon">
197
+ <svg viewBox="0 0 24 24"><path d="M8 5v14l11-7z"/></svg>
198
+ </div>
199
+ <div class="item-text">
200
+ <div class="item-title">Vecna</div>
201
+ <div class="item-sub">Jul 06, 11:52</div>
202
+ </div>
203
+ <div class="item-meta">
204
+ <div>00:19</div>
205
+ <svg viewBox="0 0 24 24" width="44" height="44"><path d="M12 5a2 2 0 1 0 0 4 2 2 0 0 0 0-4zm0 5a2 2 0 1 0 0 4 2 2 0 0 0 0-4zm0 5a2 2 0 1 0 0 4 2 2 0 0 0 0-4z"/></svg>
206
+ </div>
207
+ </div>
208
+ </div>
209
+
210
+ <!-- Bottom sheet (recording) -->
211
+ <div class="sheet">
212
+ <div class="pull">^</div>
213
+ <div class="timer">00:01.70</div>
214
+ <div class="wave"></div>
215
+
216
+ <div class="controls">
217
+ <div class="btn-area">
218
+ <div class="circle-btn">
219
+ <svg class="x-ico" viewBox="0 0 24 24">
220
+ <path d="M5 5 L19 19M19 5 L5 19"></path>
221
+ </svg>
222
+ </div>
223
+ <div class="btn-label">Discard</div>
224
+ </div>
225
+
226
+ <div class="pill">
227
+ <div class="pause-ico"><span></span><span></span></div>
228
+ <div>Pause</div>
229
+ </div>
230
+
231
+ <div class="btn-area">
232
+ <div class="circle-btn">
233
+ <svg class="check-ico" viewBox="0 0 24 24">
234
+ <path d="M4 13l5 5 11-11"></path>
235
+ </svg>
236
+ </div>
237
+ <div class="btn-label">Save</div>
238
+ </div>
239
+ </div>
240
+
241
+ <div class="gesture"></div>
242
+ </div>
243
+
244
+ </div>
245
+ </body>
246
+ </html>
code/8916/8916_3.html ADDED
@@ -0,0 +1,292 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Recorder Plus 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: #f0f0f0;
15
+ font-family: Arial, Helvetica, sans-serif;
16
+ color: #333;
17
+ }
18
+
19
+ /* Status bar */
20
+ .status-bar {
21
+ position: absolute;
22
+ top: 0; left: 0;
23
+ width: 100%; height: 90px;
24
+ background: #e6e6e6;
25
+ display: flex;
26
+ align-items: center;
27
+ justify-content: space-between;
28
+ padding: 0 36px;
29
+ box-sizing: border-box;
30
+ font-size: 34px;
31
+ }
32
+ .status-icons {
33
+ display: flex; align-items: center; gap: 26px;
34
+ }
35
+ .dot { width: 18px; height: 18px; background: #4b4b4b; border-radius: 50%; display: inline-block; }
36
+
37
+ /* Ad banner area */
38
+ .ad-area {
39
+ position: absolute;
40
+ top: 90px; left: 0;
41
+ width: 100%; height: 150px;
42
+ background: #ffffff;
43
+ display: flex; align-items: center; justify-content: center;
44
+ }
45
+ .ad-placeholder {
46
+ width: 960px; height: 110px;
47
+ background: #E0E0E0;
48
+ border: 1px solid #BDBDBD;
49
+ display: flex; align-items: center; justify-content: center;
50
+ color: #757575; font-size: 32px; font-weight: 600;
51
+ }
52
+
53
+ /* Top app bar */
54
+ .app-bar {
55
+ position: absolute;
56
+ top: 240px; left: 0;
57
+ width: 100%; height: 120px;
58
+ background: #ffffff;
59
+ border-bottom: 1px solid #ddd;
60
+ display: flex; align-items: center; justify-content: space-between;
61
+ padding: 0 28px;
62
+ box-sizing: border-box;
63
+ }
64
+ .title {
65
+ font-size: 38px; letter-spacing: 1px; font-weight: 700;
66
+ }
67
+ .title .plus { color: #c74b2c; margin-left: 12px; }
68
+ .app-left, .app-right { display: flex; align-items: center; gap: 28px; }
69
+
70
+ /* List item */
71
+ .list-item {
72
+ position: absolute;
73
+ top: 360px; left: 0;
74
+ width: 100%; height: 220px;
75
+ background: #f7f7f7;
76
+ border-bottom: 1px solid #ddd;
77
+ display: flex; align-items: center;
78
+ padding: 0 28px; box-sizing: border-box;
79
+ }
80
+ .list-left { display: flex; align-items: center; gap: 24px; flex: 1; }
81
+ .list-text { display: flex; flex-direction: column; }
82
+ .list-title { font-size: 36px; font-weight: 700; }
83
+ .list-sub { font-size: 28px; color: #777; margin-top: 8px; }
84
+ .list-right { display: flex; align-items: center; gap: 20px; }
85
+ .list-duration { font-size: 30px; color: #444; }
86
+
87
+ /* Grey filler area */
88
+ .filler {
89
+ position: absolute;
90
+ top: 580px; left: 0;
91
+ width: 100%; height: 1090px;
92
+ background: #9b9b9b;
93
+ }
94
+
95
+ /* Bottom recorder sheet */
96
+ .sheet {
97
+ position: absolute;
98
+ top: 1670px; left: 0;
99
+ width: 100%; height: 700px;
100
+ background: #ffffff;
101
+ border-top: 1px solid #e2e2e2;
102
+ box-sizing: border-box;
103
+ }
104
+ .chevron {
105
+ position: absolute; top: 20px; left: 40px;
106
+ }
107
+ .timer {
108
+ position: absolute; top: 140px; left: 0; width: 100%;
109
+ text-align: center; font-size: 64px; font-weight: 600; color: #222;
110
+ }
111
+ .wave {
112
+ position: absolute; top: 260px; left: 40px;
113
+ width: 1000px; height: 120px;
114
+ background:
115
+ repeating-linear-gradient(
116
+ to right,
117
+ #ff6e61 0px, #ff6e61 4px,
118
+ transparent 4px, transparent 10px
119
+ );
120
+ opacity: 0.9;
121
+ }
122
+ .controls {
123
+ position: absolute; bottom: 120px; left: 0;
124
+ width: 100%;
125
+ display: flex; align-items: center; justify-content: space-around;
126
+ padding: 0 60px; box-sizing: border-box;
127
+ }
128
+ .ctrl {
129
+ display: flex; flex-direction: column; align-items: center; gap: 16px;
130
+ color: #777; font-size: 30px;
131
+ }
132
+ .circle-btn {
133
+ width: 140px; height: 140px; border-radius: 50%;
134
+ background: #fafafa; border: 2px solid #d7d7d7;
135
+ display: flex; align-items: center; justify-content: center;
136
+ }
137
+ .pill-btn {
138
+ height: 120px; min-width: 360px;
139
+ padding: 0 40px; border-radius: 60px;
140
+ background: #ffffff; border: 2px solid #e0e0e0;
141
+ box-shadow: 0 2px 0 rgba(0,0,0,0.06);
142
+ display: flex; align-items: center; gap: 24px;
143
+ font-size: 42px; color: #333; font-weight: 600;
144
+ }
145
+
146
+ /* Gesture bar */
147
+ .gesture {
148
+ position: absolute; bottom: 24px; left: 0;
149
+ width: 100%; height: 24px;
150
+ display: flex; align-items: center; justify-content: center;
151
+ }
152
+ .gesture .bar {
153
+ width: 240px; height: 10px; border-radius: 5px; background: #9c9c9c;
154
+ }
155
+
156
+ /* SVG helpers */
157
+ svg { display: block; }
158
+ </style>
159
+ </head>
160
+ <body>
161
+ <div id="render-target">
162
+
163
+ <!-- Status Bar -->
164
+ <div class="status-bar">
165
+ <div>8:16</div>
166
+ <div class="status-icons">
167
+ <span class="dot"></span>
168
+ <span class="dot"></span>
169
+ <span class="dot"></span>
170
+ <!-- Network icon -->
171
+ <svg width="34" height="34" viewBox="0 0 24 24">
172
+ <path d="M2 16h2l8-8 8 8h2L12 6 2 16z" fill="#4b4b4b"></path>
173
+ </svg>
174
+ <!-- Battery icon -->
175
+ <svg width="34" height="34" viewBox="0 0 24 24">
176
+ <rect x="3" y="6" width="16" height="12" rx="2" fill="#4b4b4b"></rect>
177
+ <rect x="20" y="10" width="2" height="4" fill="#4b4b4b"></rect>
178
+ </svg>
179
+ </div>
180
+ </div>
181
+
182
+ <!-- Ad banner -->
183
+ <div class="ad-area">
184
+ <div class="ad-placeholder">[IMG: Yellow Snapchat Ad - "Share your moments" + Install]</div>
185
+ </div>
186
+
187
+ <!-- App Bar -->
188
+ <div class="app-bar">
189
+ <div class="app-left">
190
+ <!-- Hamburger -->
191
+ <svg width="48" height="48" viewBox="0 0 48 48">
192
+ <rect x="6" y="12" width="36" height="4" fill="#333"></rect>
193
+ <rect x="6" y="22" width="26" height="4" fill="#333"></rect>
194
+ <rect x="6" y="32" width="36" height="4" fill="#333"></rect>
195
+ </svg>
196
+ </div>
197
+ <div class="title">RECORDER <span class="plus">PLUS</span></div>
198
+ <div class="app-right">
199
+ <!-- Search -->
200
+ <svg width="48" height="48" viewBox="0 0 24 24">
201
+ <circle cx="10" cy="10" r="6" stroke="#333" stroke-width="2" fill="none"></circle>
202
+ <line x1="14" y1="14" x2="20" y2="20" stroke="#333" stroke-width="2"></line>
203
+ </svg>
204
+ <!-- Kebab vertical -->
205
+ <svg width="48" height="48" viewBox="0 0 24 24">
206
+ <circle cx="12" cy="5" r="2" fill="#333"></circle>
207
+ <circle cx="12" cy="12" r="2" fill="#333"></circle>
208
+ <circle cx="12" cy="19" r="2" fill="#333"></circle>
209
+ </svg>
210
+ </div>
211
+ </div>
212
+
213
+ <!-- List Item -->
214
+ <div class="list-item">
215
+ <div class="list-left">
216
+ <!-- Play icon (red) -->
217
+ <svg width="56" height="56" viewBox="0 0 24 24">
218
+ <polygon points="6,4 20,12 6,20" fill="#e53935"></polygon>
219
+ </svg>
220
+ <div class="list-text">
221
+ <div class="list-title">Vecna</div>
222
+ <div class="list-sub">Jul 06, 11:52</div>
223
+ </div>
224
+ </div>
225
+ <div class="list-right">
226
+ <div class="list-duration">00:19</div>
227
+ <!-- Kebab vertical -->
228
+ <svg width="44" height="44" viewBox="0 0 24 24">
229
+ <circle cx="12" cy="5" r="2" fill="#555"></circle>
230
+ <circle cx="12" cy="12" r="2" fill="#555"></circle>
231
+ <circle cx="12" cy="19" r="2" fill="#555"></circle>
232
+ </svg>
233
+ </div>
234
+ </div>
235
+
236
+ <!-- Grey filler -->
237
+ <div class="filler"></div>
238
+
239
+ <!-- Bottom recorder sheet -->
240
+ <div class="sheet">
241
+ <!-- Chevron up -->
242
+ <div class="chevron">
243
+ <svg width="44" height="44" viewBox="0 0 24 24">
244
+ <path d="M6 14l6-6 6 6" stroke="#555" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"></path>
245
+ </svg>
246
+ </div>
247
+
248
+ <!-- Timer -->
249
+ <div class="timer">00:12.81</div>
250
+
251
+ <!-- Waveform -->
252
+ <div class="wave"></div>
253
+
254
+ <!-- Controls -->
255
+ <div class="controls">
256
+ <!-- Discard -->
257
+ <div class="ctrl">
258
+ <div class="circle-btn">
259
+ <svg width="64" height="64" viewBox="0 0 24 24">
260
+ <line x1="5" y1="5" x2="19" y2="19" stroke="#333" stroke-width="2"></line>
261
+ <line x1="19" y1="5" x2="5" y2="19" stroke="#333" stroke-width="2"></line>
262
+ </svg>
263
+ </div>
264
+ <div>Discard</div>
265
+ </div>
266
+
267
+ <!-- Resume -->
268
+ <div class="pill-btn">
269
+ <svg width="36" height="36" viewBox="0 0 24 24">
270
+ <circle cx="12" cy="12" r="8" fill="#e53935"></circle>
271
+ </svg>
272
+ <span>Resume</span>
273
+ </div>
274
+
275
+ <!-- Save -->
276
+ <div class="ctrl">
277
+ <div class="circle-btn">
278
+ <svg width="64" height="64" viewBox="0 0 24 24">
279
+ <path d="M6 12l4 4 8-8" stroke="#333" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"></path>
280
+ </svg>
281
+ </div>
282
+ <div>Save</div>
283
+ </div>
284
+ </div>
285
+ </div>
286
+
287
+ <!-- Gesture bar -->
288
+ <div class="gesture"><div class="bar"></div></div>
289
+
290
+ </div>
291
+ </body>
292
+ </html>
code/8920/8920_0.html ADDED
@@ -0,0 +1,277 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Reminder UI</title>
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: #d3d9e4;
15
+ }
16
+
17
+ /* Top area */
18
+ .top-area {
19
+ position: absolute;
20
+ top: 0;
21
+ left: 0;
22
+ width: 1080px;
23
+ height: 520px;
24
+ background: #3e566f;
25
+ color: #fff;
26
+ }
27
+ .status-bar {
28
+ height: 90px;
29
+ padding: 20px 36px 0 36px;
30
+ display: flex;
31
+ align-items: center;
32
+ justify-content: space-between;
33
+ font-size: 34px;
34
+ opacity: 0.9;
35
+ }
36
+ .status-left { display: flex; align-items: center; gap: 18px; }
37
+ .status-right { display: flex; align-items: center; gap: 26px; }
38
+ .app-bar {
39
+ height: 160px;
40
+ padding: 0 36px;
41
+ display: flex;
42
+ align-items: center;
43
+ justify-content: space-between;
44
+ }
45
+ .title-wrap {
46
+ display: flex;
47
+ align-items: center;
48
+ gap: 28px;
49
+ }
50
+ .title {
51
+ font-size: 60px;
52
+ font-weight: 700;
53
+ letter-spacing: 0.5px;
54
+ }
55
+ .actions {
56
+ display: flex;
57
+ align-items: center;
58
+ gap: 42px;
59
+ }
60
+
61
+ .chips {
62
+ padding: 16px 36px 0 36px;
63
+ display: flex;
64
+ gap: 22px;
65
+ }
66
+ .chip {
67
+ height: 92px;
68
+ padding: 0 40px;
69
+ border-radius: 46px;
70
+ border: 2px solid #5a6f82;
71
+ background: #2f455b;
72
+ color: #e9eef5;
73
+ display: flex;
74
+ align-items: center;
75
+ font-size: 36px;
76
+ box-shadow: inset 0 0 0 0 rgba(0,0,0,0);
77
+ }
78
+ .chip.active {
79
+ border-color: #f0d75a;
80
+ color: #fff;
81
+ background: #2f455b;
82
+ }
83
+
84
+ /* Content area */
85
+ .content {
86
+ position: absolute;
87
+ top: 520px;
88
+ left: 0;
89
+ right: 0;
90
+ bottom: 0;
91
+ padding: 24px 60px 0 60px;
92
+ }
93
+
94
+ .ad {
95
+ width: 960px;
96
+ height: 150px;
97
+ margin: 6px auto 30px auto;
98
+ background: #E0E0E0;
99
+ border: 1px solid #BDBDBD;
100
+ display: flex;
101
+ align-items: center;
102
+ justify-content: center;
103
+ color: #757575;
104
+ font-size: 34px;
105
+ }
106
+
107
+ .card {
108
+ padding: 30px 0 40px 0;
109
+ border-bottom: 1px solid rgba(0,0,0,0.15);
110
+ }
111
+ .card-title {
112
+ font-size: 58px;
113
+ color: #2b3138;
114
+ margin-bottom: 14px;
115
+ }
116
+ .card-sub {
117
+ font-size: 36px;
118
+ color: #6f7782;
119
+ margin-bottom: 10px;
120
+ }
121
+ .card-right {
122
+ position: absolute;
123
+ right: 60px;
124
+ margin-top: -110px;
125
+ font-size: 36px;
126
+ color: #6f7782;
127
+ }
128
+
129
+ /* FAB */
130
+ .fab {
131
+ position: absolute;
132
+ bottom: 320px;
133
+ right: 80px;
134
+ width: 150px;
135
+ height: 150px;
136
+ background: #2f4b68;
137
+ border-radius: 50%;
138
+ box-shadow: 0 12px 22px rgba(0,0,0,0.28);
139
+ display: flex;
140
+ align-items: center;
141
+ justify-content: center;
142
+ }
143
+
144
+ /* Bottom tabs */
145
+ .bottom-tabs {
146
+ position: absolute;
147
+ bottom: 140px;
148
+ left: 60px;
149
+ right: 60px;
150
+ display: flex;
151
+ justify-content: space-between;
152
+ align-items: center;
153
+ color: #2f3236;
154
+ font-size: 40px;
155
+ letter-spacing: 0.5px;
156
+ }
157
+ .bottom-tabs .active {
158
+ font-weight: 700;
159
+ text-decoration: underline;
160
+ }
161
+
162
+ /* Home indicator */
163
+ .home-indicator {
164
+ position: absolute;
165
+ bottom: 60px;
166
+ left: 50%;
167
+ transform: translateX(-50%);
168
+ width: 420px;
169
+ height: 12px;
170
+ background: #8c8f94;
171
+ border-radius: 6px;
172
+ opacity: 0.9;
173
+ }
174
+
175
+ /* Icon styles - simple white stroke/fill */
176
+ .icon { width: 56px; height: 56px; }
177
+ .icon.small { width: 44px; height: 44px; }
178
+ .icon.battery { width: 54px; height: 28px; }
179
+ .plus {
180
+ width: 70px; height: 70px;
181
+ }
182
+ </style>
183
+ </head>
184
+ <body>
185
+ <div id="render-target">
186
+
187
+ <!-- Top dark area -->
188
+ <div class="top-area">
189
+ <!-- Status bar -->
190
+ <div class="status-bar">
191
+ <div class="status-left">
192
+ <div>8:33</div>
193
+ <!-- small play triangle -->
194
+ <svg class="icon small" viewBox="0 0 24 24">
195
+ <polygon points="6,4 20,12 6,20" fill="#ffffff" />
196
+ </svg>
197
+ </div>
198
+ <div class="status-right">
199
+ <!-- Wifi -->
200
+ <svg class="icon small" viewBox="0 0 24 24">
201
+ <path d="M2 8c5-4 15-4 20 0" stroke="#ffffff" stroke-width="2" fill="none" />
202
+ <path d="M5 12c4-3 10-3 14 0" stroke="#ffffff" stroke-width="2" fill="none" />
203
+ <path d="M9 16c2-2 4-2 6 0" stroke="#ffffff" stroke-width="2" fill="none" />
204
+ <circle cx="12" cy="19.5" r="1.5" fill="#ffffff"/>
205
+ </svg>
206
+ <!-- Battery -->
207
+ <svg class="icon battery" viewBox="0 0 28 14">
208
+ <rect x="1" y="2" width="22" height="10" rx="2" ry="2" fill="none" stroke="#ffffff" stroke-width="2"/>
209
+ <rect x="3" y="4" width="14" height="6" fill="#ffffff"/>
210
+ <rect x="23" y="5" width="4" height="4" fill="#ffffff"/>
211
+ </svg>
212
+ </div>
213
+ </div>
214
+
215
+ <!-- App bar -->
216
+ <div class="app-bar">
217
+ <div class="title-wrap">
218
+ <!-- Hamburger -->
219
+ <svg class="icon" viewBox="0 0 24 24">
220
+ <path d="M3 5h18M3 12h18M3 19h18" stroke="#ffffff" stroke-width="2" stroke-linecap="round" fill="none"/>
221
+ </svg>
222
+ <div class="title">Reminder</div>
223
+ </div>
224
+ <div class="actions">
225
+ <!-- Search -->
226
+ <svg class="icon" viewBox="0 0 24 24">
227
+ <circle cx="10" cy="10" r="6" stroke="#ffffff" stroke-width="2" fill="none"/>
228
+ <path d="M16 16l6 6" stroke="#ffffff" stroke-width="2" stroke-linecap="round" />
229
+ </svg>
230
+ <!-- Filter -->
231
+ <svg class="icon" viewBox="0 0 24 24">
232
+ <path d="M3 5h18M6 10h12M9 15h6" stroke="#ffffff" stroke-width="2" stroke-linecap="round" fill="none"/>
233
+ </svg>
234
+ </div>
235
+ </div>
236
+
237
+ <!-- Chips -->
238
+ <div class="chips">
239
+ <div class="chip active">All</div>
240
+ <div class="chip">Default</div>
241
+ <div class="chip">Critical</div>
242
+ <div class="chip">Important</div>
243
+ <div class="chip">Favorites</div>
244
+ </div>
245
+ </div>
246
+
247
+ <!-- Content area -->
248
+ <div class="content">
249
+ <div class="ad">[IMG: Banner Ad - Luxury Decorative Lighting]</div>
250
+
251
+ <div class="card">
252
+ <div class="card-title">Birthday</div>
253
+ <div class="card-sub">06/16/2023 &nbsp; 1:44 PM</div>
254
+ <div class="card-sub">Every Friday</div>
255
+ <div class="card-right">in 3 days</div>
256
+ </div>
257
+ </div>
258
+
259
+ <!-- Floating Action Button -->
260
+ <div class="fab">
261
+ <svg class="plus" viewBox="0 0 24 24">
262
+ <path d="M12 5v14M5 12h14" stroke="#ffffff" stroke-width="3" stroke-linecap="round" fill="none"/>
263
+ </svg>
264
+ </div>
265
+
266
+ <!-- Bottom tabs -->
267
+ <div class="bottom-tabs">
268
+ <div class="active">ACTIVE</div>
269
+ <div>COMPLETED</div>
270
+ </div>
271
+
272
+ <!-- Home indicator -->
273
+ <div class="home-indicator"></div>
274
+
275
+ </div>
276
+ </body>
277
+ </html>
code/8920/8920_1.html ADDED
@@ -0,0 +1,225 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <title>UI Render</title>
6
+ <style>
7
+ body { margin:0; padding:0; background:transparent; font-family: Roboto, Arial, sans-serif; }
8
+ #render-target {
9
+ width:1080px; height:2400px; position:relative; overflow:hidden;
10
+ background:#3f4650;
11
+ }
12
+ /* Right dimmed app area */
13
+ .overlay {
14
+ position:absolute; right:0; top:0; width:340px; height:100%;
15
+ background:rgba(0,0,0,0.35);
16
+ }
17
+ /* Drawer */
18
+ .drawer {
19
+ position:absolute; left:0; top:0; width:740px; height:100%;
20
+ background:#d6dbe6;
21
+ box-shadow: 8px 0 24px rgba(0,0,0,0.35);
22
+ }
23
+ .drawer-header {
24
+ background:#2f4c6b;
25
+ height:520px;
26
+ color:#ffffff;
27
+ padding:44px 60px 32px 60px;
28
+ position:relative;
29
+ }
30
+ .status-bar {
31
+ position:absolute; left:60px; top:24px; right:60px; height:48px; color:#cfe0f1;
32
+ display:flex; align-items:center; justify-content:space-between;
33
+ font-size:40px; letter-spacing:0.5px;
34
+ }
35
+ .status-icons { display:flex; align-items:center; gap:28px; }
36
+ .avatar-tile {
37
+ width:110px; height:110px; background:#3b5a79; border-radius:12px;
38
+ display:flex; align-items:center; justify-content:center; margin-top:80px;
39
+ }
40
+ .header-text { margin-top:28px; }
41
+ .header-text .title { font-size:56px; font-weight:500; margin-bottom:10px; }
42
+ .header-text .subtitle { font-size:36px; opacity:0.9; }
43
+ /* Menu list */
44
+ .menu { padding:30px 30px 0 30px; }
45
+ .menu-section { padding:0 30px; }
46
+ .menu-item {
47
+ display:flex; align-items:center;
48
+ padding:30px 0;
49
+ border-bottom:1px solid rgba(0,0,0,0.08);
50
+ }
51
+ .menu-item:last-child { border-bottom:none; }
52
+ .icon-wrap {
53
+ width:92px; height:92px; background:#c7ccd7; border-radius:12px;
54
+ display:flex; align-items:center; justify-content:center; margin-right:34px;
55
+ }
56
+ .menu-text {
57
+ font-size:44px; color:#2b2f36; font-weight:500;
58
+ }
59
+ .divider {
60
+ height:2px; background:#bfc5d1; margin:26px 0 10px 0;
61
+ }
62
+ /* Bottom share bar */
63
+ .share-bar {
64
+ position:absolute; left:0; bottom:120px; width:740px; height:120px;
65
+ background:rgba(215,220,233,0.9);
66
+ display:flex; align-items:center; padding:0 40px; color:#2b2f36;
67
+ border-top:1px solid rgba(0,0,0,0.07);
68
+ font-size:40px; gap:26px;
69
+ }
70
+ /* Android nav pill */
71
+ .nav-pill {
72
+ position:absolute; left:0; bottom:40px; width:1080px; height:18px;
73
+ display:flex; justify-content:center;
74
+ }
75
+ .nav-pill div {
76
+ width:300px; height:12px; background:#6b6f75; border-radius:8px;
77
+ }
78
+
79
+ /* Utility */
80
+ svg { display:block; }
81
+ </style>
82
+ </head>
83
+ <body>
84
+ <div id="render-target">
85
+
86
+ <div class="drawer">
87
+ <div class="drawer-header">
88
+ <div class="status-bar">
89
+ <div>8:35</div>
90
+ <div class="status-icons">
91
+ <!-- small triangle (play-store like) -->
92
+ <svg width="40" height="40" viewBox="0 0 40 40">
93
+ <polygon points="8,6 32,20 8,34" fill="#cfe0f1"></polygon>
94
+ </svg>
95
+ <!-- wifi icon -->
96
+ <svg width="46" height="46" viewBox="0 0 46 46">
97
+ <path d="M6 18c8-8 26-8 34 0" stroke="#cfe0f1" stroke-width="4" fill="none" stroke-linecap="round"/>
98
+ <path d="M12 24c6-6 16-6 22 0" stroke="#cfe0f1" stroke-width="4" fill="none" stroke-linecap="round"/>
99
+ <circle cx="23" cy="30" r="3.5" fill="#cfe0f1"/>
100
+ </svg>
101
+ <!-- battery -->
102
+ <svg width="60" height="40" viewBox="0 0 60 40">
103
+ <rect x="2" y="8" width="48" height="24" rx="4" fill="none" stroke="#cfe0f1" stroke-width="4"/>
104
+ <rect x="52" y="14" width="6" height="12" rx="2" fill="#cfe0f1"/>
105
+ <rect x="6" y="12" width="36" height="16" rx="2" fill="#cfe0f1"/>
106
+ </svg>
107
+ </div>
108
+ </div>
109
+
110
+ <div class="avatar-tile">
111
+ <!-- user avatar icon -->
112
+ <svg width="72" height="72" viewBox="0 0 72 72">
113
+ <circle cx="36" cy="24" r="12" fill="#e6eef7"/>
114
+ <path d="M16 58c6-12 34-12 40 0" fill="#e6eef7"/>
115
+ </svg>
116
+ </div>
117
+
118
+ <div class="header-text">
119
+ <div class="title">Reminder</div>
120
+ <div class="subtitle">madeeasy.apps@outlook.com</div>
121
+ </div>
122
+ </div>
123
+
124
+ <div class="menu">
125
+ <div class="menu-section">
126
+ <div class="menu-item">
127
+ <div class="icon-wrap">
128
+ <!-- gear -->
129
+ <svg width="54" height="54" viewBox="0 0 54 54">
130
+ <circle cx="27" cy="27" r="8" fill="#5e6673"/>
131
+ <path d="M27 6v8M27 40v8M6 27h8M40 27h8M12 12l6 6M36 36l6 6M12 42l6-6M42 12l-6 6"
132
+ stroke="#5e6673" stroke-width="4" stroke-linecap="round"/>
133
+ </svg>
134
+ </div>
135
+ <div class="menu-text">Settings</div>
136
+ </div>
137
+
138
+ <div class="menu-item">
139
+ <div class="icon-wrap">
140
+ <!-- database -->
141
+ <svg width="54" height="54" viewBox="0 0 54 54">
142
+ <ellipse cx="27" cy="12" rx="18" ry="6" fill="#5e6673"/>
143
+ <path d="M9 12v22c0 3 8 6 18 6s18-3 18-6V12" fill="none" stroke="#5e6673" stroke-width="4"/>
144
+ <ellipse cx="27" cy="34" rx="18" ry="6" fill="#5e6673" opacity="0.6"/>
145
+ </svg>
146
+ </div>
147
+ <div class="menu-text">Backup & Restore</div>
148
+ </div>
149
+
150
+ <div class="menu-item">
151
+ <div class="icon-wrap">
152
+ <!-- clipboard -->
153
+ <svg width="54" height="54" viewBox="0 0 54 54">
154
+ <rect x="12" y="12" width="30" height="34" rx="4" fill="#5e6673"/>
155
+ <rect x="18" y="8" width="18" height="8" rx="3" fill="#8991a0"/>
156
+ <path d="M18 24h18M18 30h18M18 36h14" stroke="#d6dbe6" stroke-width="3"/>
157
+ </svg>
158
+ </div>
159
+ <div class="menu-text">Daily Summary Reminder</div>
160
+ </div>
161
+
162
+ <div class="menu-item">
163
+ <div class="icon-wrap">
164
+ <!-- question diamond -->
165
+ <svg width="54" height="54" viewBox="0 0 54 54">
166
+ <polygon points="27,6 46,27 27,48 8,27" fill="#5e6673"/>
167
+ <circle cx="27" cy="38" r="3" fill="#d6dbe6"/>
168
+ <path d="M21 24c0-4 4-6 6-6s6 2 6 6c0 4-6 5-6 8"
169
+ stroke="#d6dbe6" stroke-width="3" fill="none" stroke-linecap="round"/>
170
+ </svg>
171
+ </div>
172
+ <div class="menu-text">Questions & Answers</div>
173
+ </div>
174
+
175
+ <div class="divider"></div>
176
+
177
+ <div class="menu-item">
178
+ <div class="icon-wrap">
179
+ <!-- facebook 'f' simple -->
180
+ <svg width="54" height="54" viewBox="0 0 54 54">
181
+ <rect x="6" y="6" width="42" height="42" rx="8" fill="#5e6673"/>
182
+ <path d="M28 40v-12h6l1-6h-7v-4c0-2 1-3 3-3h4v-6h-5c-6 0-9 3-9 9v4h-5v6h5v12h7z"
183
+ fill="#d6dbe6"/>
184
+ </svg>
185
+ </div>
186
+ <div class="menu-text">Follow us</div>
187
+ </div>
188
+
189
+ <div class="menu-item">
190
+ <div class="icon-wrap">
191
+ <!-- no ads -->
192
+ <svg width="54" height="54" viewBox="0 0 54 54">
193
+ <circle cx="27" cy="27" r="20" fill="none" stroke="#5e6673" stroke-width="4"/>
194
+ <text x="18" y="32" font-size="16" fill="#5e6673" font-weight="700">AD</text>
195
+ <path d="M12 42L42 12" stroke="#5e6673" stroke-width="4"/>
196
+ </svg>
197
+ </div>
198
+ <div class="menu-text">Ad-free Version</div>
199
+ </div>
200
+ </div>
201
+ </div>
202
+
203
+ <div class="share-bar">
204
+ <svg width="48" height="48" viewBox="0 0 48 48">
205
+ <circle cx="10" cy="24" r="5" fill="#5e6673"/>
206
+ <circle cx="36" cy="12" r="5" fill="#5e6673"/>
207
+ <circle cx="36" cy="36" r="5" fill="#5e6673"/>
208
+ <path d="M14 24l18-10M14 24l18 10" stroke="#5e6673" stroke-width="4" fill="none" stroke-linecap="round"/>
209
+ </svg>
210
+ <div style="font-size:42px;">Share this app</div>
211
+ </div>
212
+ </div>
213
+
214
+ <!-- Right dim area showing underlying app -->
215
+ <div class="overlay">
216
+ <div style="position:absolute; top:160px; right:40px; width:200px; height:70px; background:#1f2b3b; border-radius:36px; display:flex; align-items:center; justify-content:center; color:#dfe4ea; font-size:34px;">
217
+ [Search & Filters]
218
+ </div>
219
+ <div style="position:absolute; bottom:380px; right:60px; width:140px; height:140px; background:#1f2b3b; border-radius:70px; box-shadow:0 10px 18px rgba(0,0,0,0.35); display:flex; align-items:center; justify-content:center; color:#fff; font-size:70px;">+</div>
220
+ </div>
221
+
222
+ <div class="nav-pill"><div></div></div>
223
+ </div>
224
+ </body>
225
+ </html>
code/8920/8920_2.html ADDED
@@ -0,0 +1,216 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Backup & Restore</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: #d7dde8;
15
+ font-family: "Roboto", "Segoe UI", Arial, sans-serif;
16
+ color: #23364b;
17
+ }
18
+
19
+ /* Top bar (status + app bar) */
20
+ .top-area {
21
+ position: absolute;
22
+ top: 0;
23
+ left: 0;
24
+ width: 1080px;
25
+ height: 300px;
26
+ background: #2e4a68;
27
+ }
28
+ .status-bar {
29
+ height: 90px;
30
+ padding: 0 36px;
31
+ display: flex;
32
+ align-items: center;
33
+ justify-content: space-between;
34
+ color: #ffffff;
35
+ font-size: 34px;
36
+ letter-spacing: 0.5px;
37
+ }
38
+ .status-right {
39
+ display: flex;
40
+ align-items: center;
41
+ gap: 28px;
42
+ }
43
+ .app-bar {
44
+ height: 210px;
45
+ padding: 0 36px;
46
+ display: flex;
47
+ align-items: center;
48
+ }
49
+ .back-icon {
50
+ width: 64px;
51
+ height: 64px;
52
+ margin-right: 24px;
53
+ }
54
+ .title-wrap {
55
+ display: flex;
56
+ flex-direction: column;
57
+ }
58
+ .title {
59
+ color: #ffffff;
60
+ font-weight: 700;
61
+ font-size: 64px;
62
+ line-height: 1.1;
63
+ margin-bottom: 10px;
64
+ }
65
+ .subtitle {
66
+ color: #c5cfda;
67
+ font-size: 32px;
68
+ }
69
+
70
+ /* Content */
71
+ .content {
72
+ position: absolute;
73
+ top: 300px;
74
+ left: 0;
75
+ right: 0;
76
+ bottom: 0;
77
+ padding: 44px 40px 120px 40px;
78
+ }
79
+
80
+ .section-title {
81
+ color: #355273;
82
+ font-weight: 700;
83
+ font-size: 40px;
84
+ margin: 18px 0 18px 0;
85
+ }
86
+ .paragraph {
87
+ font-size: 36px;
88
+ line-height: 1.6;
89
+ color: #23364b;
90
+ margin: 0 0 32px 0;
91
+ }
92
+ .option-title {
93
+ font-size: 34px;
94
+ font-weight: 700;
95
+ color: #3a5777;
96
+ margin: 26px 0 16px 0;
97
+ }
98
+
99
+ .pill-btn {
100
+ width: 980px;
101
+ height: 150px;
102
+ border-radius: 90px;
103
+ border: 3px solid #9aa4ac;
104
+ background: linear-gradient(#c8d2d6, #bfc9cd);
105
+ box-shadow: inset 0 2px 0 rgba(255,255,255,0.6), 0 2px 3px rgba(0,0,0,0.08);
106
+ display: flex;
107
+ align-items: center;
108
+ justify-content: center;
109
+ color: #2a3a4a;
110
+ font-weight: 700;
111
+ font-size: 44px;
112
+ letter-spacing: 0.3px;
113
+ margin: 26px auto 40px auto;
114
+ }
115
+
116
+ .link-row {
117
+ margin-top: 30px;
118
+ display: flex;
119
+ justify-content: flex-end;
120
+ align-items: center;
121
+ gap: 12px;
122
+ color: #6b7682;
123
+ font-size: 38px;
124
+ }
125
+ .chev {
126
+ width: 40px;
127
+ height: 40px;
128
+ }
129
+
130
+ /* Bottom home indicator */
131
+ .home-indicator {
132
+ position: absolute;
133
+ bottom: 34px;
134
+ left: 50%;
135
+ transform: translateX(-50%);
136
+ width: 360px;
137
+ height: 12px;
138
+ background: #5e6166;
139
+ border-radius: 8px;
140
+ opacity: 0.9;
141
+ }
142
+
143
+ /* Simple icon colors */
144
+ .icon-light { fill: none; stroke: #ffffff; stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; }
145
+ .icon-solid { fill: #ffffff; }
146
+ </style>
147
+ </head>
148
+ <body>
149
+ <div id="render-target">
150
+
151
+ <!-- Top area -->
152
+ <div class="top-area">
153
+ <div class="status-bar">
154
+ <div>8:36</div>
155
+ <div class="status-right">
156
+ <!-- simple play-like triangle icon -->
157
+ <svg width="34" height="34" viewBox="0 0 24 24">
158
+ <polygon class="icon-solid" points="6,4 20,12 6,20"></polygon>
159
+ </svg>
160
+ <!-- wifi icon -->
161
+ <svg width="42" height="42" viewBox="0 0 24 24">
162
+ <path class="icon-light" d="M2 9 Q12 3 22 9"></path>
163
+ <path class="icon-light" d="M5 12 Q12 7 19 12"></path>
164
+ <path class="icon-light" d="M8 15 Q12 12 16 15"></path>
165
+ <circle class="icon-solid" cx="12" cy="18" r="2"></circle>
166
+ </svg>
167
+ <!-- battery icon -->
168
+ <svg width="44" height="44" viewBox="0 0 24 24">
169
+ <rect x="3" y="6" width="16" height="12" rx="2" ry="2" fill="none" stroke="#ffffff" stroke-width="2"></rect>
170
+ <rect x="20" y="9" width="2" height="6" class="icon-solid"></rect>
171
+ <rect x="5" y="8" width="12" height="8" fill="#ffffff"></rect>
172
+ </svg>
173
+ </div>
174
+ </div>
175
+ <div class="app-bar">
176
+ <svg class="back-icon" viewBox="0 0 24 24">
177
+ <path class="icon-light" d="M15 5 L7 12 L15 19"></path>
178
+ </svg>
179
+ <div class="title-wrap">
180
+ <div class="title">Backup &amp; Restore</div>
181
+ <div class="subtitle">Manual</div>
182
+ </div>
183
+ </div>
184
+ </div>
185
+
186
+ <!-- Content -->
187
+ <div class="content">
188
+ <div class="section-title">Backup:</div>
189
+ <p class="paragraph">You can take backup and move the file anywhere you want, but do not modify it.</p>
190
+
191
+ <div class="pill-btn">Take Backup</div>
192
+
193
+ <div class="section-title">Restore:</div>
194
+ <p class="paragraph">If you take a backup in the email, website etc.., then download backup file to your mobile.</p>
195
+
196
+ <div class="option-title">Option 1:</div>
197
+ <p class="paragraph">Go to backup file in your mobile storage, then select the file and click "Send" (or) "Share", you will see the option to import.</p>
198
+
199
+ <div class="option-title">Option 2:</div>
200
+ <p class="paragraph">Click below "Restore from Backup" button and select the backup file to import/restore.</p>
201
+
202
+ <div class="pill-btn">Restore from Backup</div>
203
+
204
+ <div class="link-row">
205
+ <span>Auto Backup</span>
206
+ <svg class="chev" viewBox="0 0 24 24">
207
+ <path d="M8 5 L16 12 L8 19" fill="none" stroke="#6b7682" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"></path>
208
+ </svg>
209
+ </div>
210
+ </div>
211
+
212
+ <!-- Home indicator -->
213
+ <div class="home-indicator"></div>
214
+ </div>
215
+ </body>
216
+ </html>