yhzheng1031 commited on
Commit
98687c3
·
verified ·
1 Parent(s): 9de0012

Add files using upload-large-folder tool

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. androidcontrol_data_load.py +107 -0
  2. code/1000/1000_0.html +444 -0
  3. code/1000/1000_1.html +352 -0
  4. code/1000/1000_2.html +401 -0
  5. code/1000/1000_3.html +352 -0
  6. code/10000/10000_0.html +298 -0
  7. code/10000/10000_1.html +333 -0
  8. code/10000/10000_2.html +316 -0
  9. code/10000/10000_3.html +231 -0
  10. code/10000/10000_4.html +259 -0
  11. code/10000/10000_5.html +404 -0
  12. code/10000/10000_6.html +334 -0
  13. code/10000/10000_7.html +171 -0
  14. code/10001/10001_0.html +247 -0
  15. code/10001/10001_1.html +381 -0
  16. code/10002/10002_0.html +355 -0
  17. code/10002/10002_1.html +286 -0
  18. code/10002/10002_2.html +262 -0
  19. code/10002/10002_4.html +199 -0
  20. code/10002/10002_5.html +221 -0
  21. code/10002/10002_6.html +243 -0
  22. code/10002/10002_7.html +400 -0
  23. code/10003/10003_0.html +495 -0
  24. code/10003/10003_1.html +347 -0
  25. code/10003/10003_2.html +182 -0
  26. code/10003/10003_3.html +328 -0
  27. code/10003/10003_4.html +345 -0
  28. code/10003/10003_5.html +394 -0
  29. code/10003/10003_6.html +320 -0
  30. code/10004/10004_0.html +362 -0
  31. code/10004/10004_1.html +343 -0
  32. code/10004/10004_2.html +259 -0
  33. code/10004/10004_3.html +228 -0
  34. code/10004/10004_4.html +152 -0
  35. code/10006/10006_0.html +114 -0
  36. code/10006/10006_1.html +235 -0
  37. code/10006/10006_10.html +187 -0
  38. code/10006/10006_11.html +244 -0
  39. code/10006/10006_12.html +264 -0
  40. code/10006/10006_13.html +272 -0
  41. code/10006/10006_14.html +189 -0
  42. code/10006/10006_15.html +294 -0
  43. code/10006/10006_16.html +205 -0
  44. code/10006/10006_17.html +206 -0
  45. code/10006/10006_18.html +162 -0
  46. code/10006/10006_19.html +220 -0
  47. code/10006/10006_2.html +135 -0
  48. code/10006/10006_20.html +266 -0
  49. code/10006/10006_21.html +236 -0
  50. code/10006/10006_22.html +130 -0
androidcontrol_data_load.py ADDED
@@ -0,0 +1,107 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import requests
3
+ from requests.adapters import HTTPAdapter
4
+ from urllib3.util.retry import Retry
5
+ from tqdm import tqdm
6
+
7
+ # ================= 配置区域 =================
8
+ # 【非常重要】请确认这里的 URL 是文件的“直链”
9
+ # 如果你在浏览器里点击这个链接能直接开始下载文件,那就是对的。
10
+ BASE_URL = "https://storage.googleapis.com/gresearch/android_control/"
11
+
12
+ SAVE_DIR = "./downloads"
13
+ # ===========================================
14
+
15
+ if not os.path.exists(SAVE_DIR):
16
+ os.makedirs(SAVE_DIR)
17
+
18
+ # --- 构建下载文件清单 ---
19
+ # 1. 加入 20 个数据分片文件
20
+ files_to_download = [f"android_control-{i:05d}-of-00020" for i in range(20)]
21
+
22
+ # 2. 加入额外的 JSON 配置文件
23
+ files_to_download.extend([
24
+ "splits.json",
25
+ "test_subsplits.json"
26
+ ])
27
+ # -----------------------
28
+
29
+ # 设置网络请求 session
30
+ session = requests.Session()
31
+ headers = {
32
+ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36"
33
+ }
34
+ # 设置自动重试防止网络波动
35
+ retries = Retry(total=5, backoff_factor=1, status_forcelist=[500, 502, 503, 504])
36
+ session.mount('http://', HTTPAdapter(max_retries=retries))
37
+ session.mount('https://', HTTPAdapter(max_retries=retries))
38
+
39
+ print(f"开始下载任务,共 {len(files_to_download)} 个文件")
40
+ print(f"保存路径: {SAVE_DIR}\n")
41
+
42
+ for file_name in files_to_download:
43
+ # 构造完整 URL
44
+ url = f"{BASE_URL.rstrip('/')}/{file_name}"
45
+ save_path = os.path.join(SAVE_DIR, file_name)
46
+
47
+ try:
48
+ # 1. 发送 HEAD 请求获取文件大小
49
+ # 注意:如果是 JSON 小文件,服务器响应会很快
50
+ head_resp = session.head(url, headers=headers, timeout=10)
51
+
52
+ # 某些服务器对小文件可能不返回 content-length,默认为 0
53
+ total_size = int(head_resp.headers.get('content-length', 0))
54
+
55
+ # 2. 检查本地文件状态(断点续传逻辑)
56
+ first_byte = 0
57
+ if os.path.exists(save_path):
58
+ local_size = os.path.getsize(save_path)
59
+
60
+ # 如果本地大小等于服务器大小(且服务器返回了有效大小),则跳过
61
+ if total_size > 0 and local_size == total_size:
62
+ print(f"✅ {file_name} 已存在且完整,跳过。")
63
+ continue
64
+ elif total_size > 0 and local_size < total_size:
65
+ print(f"⚠️ {file_name} 不完整,尝试续传 ({local_size}/{total_size})...")
66
+ first_byte = local_size
67
+ else:
68
+ # 如果本地文件比服务器大,或者服务器没给大小(通常不会),或者想强制覆盖
69
+ # 这里简单处理:如果大小不对劲就重下,或者如果是第一次下载
70
+ if total_size > 0 and local_size > total_size:
71
+ print(f"❌ {file_name} 本地文件异常,重新下载。")
72
+ first_byte = 0
73
+
74
+ # 3. 构造请求头 (Range)
75
+ resume_header = headers.copy()
76
+ if first_byte > 0:
77
+ resume_header['Range'] = f"bytes={first_byte}-"
78
+
79
+ # 4. 下载内容
80
+ response = session.get(url, stream=True, headers=resume_header, timeout=30)
81
+ response.raise_for_status() # 检查 404 等错误
82
+
83
+ # 写入模式
84
+ mode = 'ab' if first_byte > 0 else 'wb'
85
+
86
+ # 进度条
87
+ with tqdm(
88
+ total=total_size,
89
+ initial=first_byte,
90
+ unit='B',
91
+ unit_scale=True,
92
+ unit_divisor=1024,
93
+ desc=file_name,
94
+ ascii=False
95
+ ) as bar:
96
+ with open(save_path, mode) as f:
97
+ for chunk in response.iter_content(chunk_size=8192):
98
+ if chunk:
99
+ f.write(chunk)
100
+ bar.update(len(chunk))
101
+
102
+ except Exception as e:
103
+ print(f"\n❌ 下载 {file_name} 失败: {e}")
104
+ if "404" in str(e):
105
+ print(" (请检查该文件是否存在于服务器上)")
106
+
107
+ print("\n所有任务处理完毕。")
code/1000/1000_0.html ADDED
@@ -0,0 +1,444 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>Mobile UI Mock</title>
6
+ <style>
7
+ body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; }
8
+ #render-target {
9
+ width: 1080px;
10
+ height: 2400px;
11
+ position: relative;
12
+ overflow: hidden;
13
+ background: #FFFFFF;
14
+ }
15
+ /* Status bar */
16
+ .status-bar {
17
+ height: 110px;
18
+ padding: 0 36px;
19
+ display: flex;
20
+ align-items: center;
21
+ justify-content: space-between;
22
+ color: #616161;
23
+ font-size: 42px;
24
+ letter-spacing: 1px;
25
+ }
26
+ .status-icons {
27
+ display: flex;
28
+ gap: 26px;
29
+ align-items: center;
30
+ }
31
+ .icon-dot {
32
+ width: 22px;
33
+ height: 22px;
34
+ background: #9E9E9E;
35
+ border-radius: 50%;
36
+ display: inline-block;
37
+ }
38
+ /* Top toolbar */
39
+ .toolbar {
40
+ height: 120px;
41
+ padding: 0 24px;
42
+ display: flex;
43
+ align-items: center;
44
+ gap: 36px;
45
+ color: #2E2E2E;
46
+ }
47
+ .toolbar .spacer { flex: 1; }
48
+ .icon-btn {
49
+ width: 96px;
50
+ height: 96px;
51
+ display: inline-flex;
52
+ align-items: center;
53
+ justify-content: center;
54
+ border-radius: 16px;
55
+ color: #212121;
56
+ }
57
+ .icon-btn svg { width: 48px; height: 48px; stroke: currentColor; fill: none; stroke-width: 3; }
58
+ /* Canvas area */
59
+ .canvas-area {
60
+ height: 950px;
61
+ background: #F5F5F5;
62
+ position: relative;
63
+ overflow: hidden;
64
+ }
65
+ .band {
66
+ position: absolute;
67
+ top: 110px;
68
+ left: 0;
69
+ right: 0;
70
+ height: 280px;
71
+ background: #2E3A35;
72
+ }
73
+ .video-wrap {
74
+ position: absolute;
75
+ top: 140px;
76
+ left: 90px;
77
+ width: 900px;
78
+ height: 510px;
79
+ border: 6px solid #58A6FF;
80
+ border-radius: 16px;
81
+ overflow: hidden;
82
+ box-shadow: 0 12px 28px rgba(0,0,0,0.25);
83
+ }
84
+ .video-placeholder {
85
+ width: 100%;
86
+ height: 100%;
87
+ background: #E0E0E0;
88
+ border-top: 1px solid #BDBDBD;
89
+ border-bottom: 1px solid #BDBDBD;
90
+ display: flex;
91
+ align-items: center;
92
+ justify-content: center;
93
+ color: #616161;
94
+ font-size: 44px;
95
+ letter-spacing: 1px;
96
+ }
97
+ .resize-dot {
98
+ width: 26px;
99
+ height: 26px;
100
+ background: #FFFFFF;
101
+ border: 3px solid #58A6FF;
102
+ border-radius: 50%;
103
+ position: absolute;
104
+ }
105
+ .dot-tl { top: -13px; left: -13px; }
106
+ .dot-tr { top: -13px; right: -13px; }
107
+ .dot-bl { bottom: -13px; left: -13px; }
108
+ .dot-br { bottom: -13px; right: -13px; }
109
+ .play-overlay {
110
+ position: absolute;
111
+ top: 50%;
112
+ left: 50%;
113
+ width: 120px;
114
+ height: 120px;
115
+ margin-left: -60px;
116
+ margin-top: -60px;
117
+ background: rgba(0,0,0,0.55);
118
+ border-radius: 50%;
119
+ display: flex;
120
+ align-items: center;
121
+ justify-content: center;
122
+ }
123
+ .play-overlay svg { width: 60px; height: 60px; fill: #FFFFFF; }
124
+ .timeline {
125
+ position: absolute;
126
+ bottom: 18px;
127
+ left: 26px;
128
+ right: 26px;
129
+ display: flex;
130
+ align-items: center;
131
+ color: #FFFFFF;
132
+ font-size: 36px;
133
+ text-shadow: 0 2px 4px rgba(0,0,0,0.6);
134
+ gap: 20px;
135
+ }
136
+ .progress {
137
+ height: 8px;
138
+ background: rgba(255,255,255,0.6);
139
+ border-radius: 4px;
140
+ flex: 1;
141
+ position: relative;
142
+ }
143
+ .progress:before {
144
+ content: "";
145
+ position: absolute;
146
+ height: 100%;
147
+ width: 15%;
148
+ background: #FFFFFF;
149
+ border-radius: 4px;
150
+ }
151
+ .rotate {
152
+ position: absolute;
153
+ top: 700px;
154
+ left: 50%;
155
+ transform: translateX(-50%);
156
+ width: 76px;
157
+ height: 76px;
158
+ background: #FFFFFF;
159
+ border-radius: 50%;
160
+ box-shadow: 0 6px 16px rgba(0,0,0,0.15);
161
+ display: flex;
162
+ align-items: center;
163
+ justify-content: center;
164
+ color: #333;
165
+ }
166
+ .rotate svg { width: 40px; height: 40px; stroke: #333; stroke-width: 3; fill: none; }
167
+ /* Bottom sheet */
168
+ .sheet {
169
+ position: absolute;
170
+ left: 0;
171
+ right: 0;
172
+ bottom: 36px;
173
+ height: 980px;
174
+ background: #FFFFFF;
175
+ border-top-left-radius: 28px;
176
+ border-top-right-radius: 28px;
177
+ box-shadow: 0 -8px 24px rgba(0,0,0,0.12);
178
+ display: flex;
179
+ flex-direction: column;
180
+ }
181
+ .sheet-header {
182
+ padding: 28px 36px;
183
+ display: flex;
184
+ align-items: center;
185
+ gap: 16px;
186
+ }
187
+ .sheet-header .title {
188
+ font-size: 56px;
189
+ font-weight: 700;
190
+ color: #1E1E1E;
191
+ flex: 1;
192
+ }
193
+ .sheet-close {
194
+ width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; color: #6B6B6B;
195
+ }
196
+ .sheet-close svg { width: 40px; height: 40px; }
197
+ .sheet-content {
198
+ padding: 8px 36px 12px 36px;
199
+ overflow: hidden;
200
+ }
201
+ .check-row {
202
+ display: flex;
203
+ align-items: center;
204
+ gap: 20px;
205
+ margin: 28px 0;
206
+ color: #303030;
207
+ font-size: 42px;
208
+ }
209
+ .checkbox {
210
+ width: 44px;
211
+ height: 44px;
212
+ border: 3px solid #AAAAAA;
213
+ border-radius: 10px;
214
+ background: #FFFFFF;
215
+ }
216
+ .options-row {
217
+ margin-top: 28px;
218
+ display: flex;
219
+ gap: 24px;
220
+ overflow: hidden;
221
+ }
222
+ .option-btn {
223
+ padding: 24px 36px;
224
+ border: 3px solid #D4D4D4;
225
+ border-radius: 18px;
226
+ font-size: 40px;
227
+ color: #2E2E2E;
228
+ background: #FFFFFF;
229
+ white-space: nowrap;
230
+ }
231
+ .option-btn.secondary {
232
+ color: #616161;
233
+ }
234
+ .option-btn.selected {
235
+ border-color: #7C4DFF;
236
+ box-shadow: 0 0 0 4px rgba(124,77,255,0.12) inset;
237
+ }
238
+ /* Bottom navigation in sheet */
239
+ .sheet-nav {
240
+ margin-top: auto;
241
+ padding: 22px 80px 30px 80px;
242
+ display: flex;
243
+ justify-content: space-between;
244
+ border-top: 1px solid #EEEEEE;
245
+ }
246
+ .nav-item {
247
+ display: flex;
248
+ flex-direction: column;
249
+ align-items: center;
250
+ gap: 14px;
251
+ color: #606060;
252
+ font-size: 34px;
253
+ }
254
+ .nav-item svg { width: 44px; height: 44px; }
255
+ .nav-item.active { color: #6E56FF; }
256
+ /* Gesture bar */
257
+ .gesture-bar {
258
+ position: absolute;
259
+ bottom: 8px;
260
+ left: 50%;
261
+ transform: translateX(-50%);
262
+ width: 360px;
263
+ height: 10px;
264
+ border-radius: 10px;
265
+ background: #000000;
266
+ opacity: 0.7;
267
+ }
268
+ </style>
269
+ </head>
270
+ <body>
271
+ <div id="render-target">
272
+
273
+ <!-- Status bar -->
274
+ <div class="status-bar">
275
+ <div class="time">6:05</div>
276
+ <div class="status-icons">
277
+ <span class="icon-dot"></span>
278
+ <span class="icon-dot" style="opacity:0.7;"></span>
279
+ <span class="icon-dot" style="opacity:0.5;"></span>
280
+ <span class="icon-dot" style="opacity:0.4;"></span>
281
+ <!-- simple battery icon -->
282
+ <svg width="46" height="24" viewBox="0 0 46 24">
283
+ <rect x="2" y="4" width="36" height="16" rx="3" fill="none" stroke="#616161" stroke-width="3"></rect>
284
+ <rect x="6" y="8" width="24" height="8" fill="#616161"></rect>
285
+ <rect x="40" y="8" width="4" height="8" rx="1" fill="#616161"></rect>
286
+ </svg>
287
+ </div>
288
+ </div>
289
+
290
+ <!-- Toolbar -->
291
+ <div class="toolbar">
292
+ <!-- Back -->
293
+ <div class="icon-btn" title="Back">
294
+ <svg viewBox="0 0 24 24">
295
+ <path d="M15 4 L7 12 L15 20" stroke-linecap="round" stroke-linejoin="round"></path>
296
+ </svg>
297
+ </div>
298
+ <!-- Preview (dashed play circle) -->
299
+ <div class="icon-btn" title="Preview">
300
+ <svg viewBox="0 0 24 24">
301
+ <circle cx="12" cy="12" r="9" stroke-dasharray="3 3"></circle>
302
+ <polygon points="10,8 16,12 10,16" fill="currentColor" stroke="none"></polygon>
303
+ </svg>
304
+ </div>
305
+ <!-- Layers -->
306
+ <div class="icon-btn" title="Layers">
307
+ <svg viewBox="0 0 24 24">
308
+ <path d="M4 12 L12 7 L20 12 L12 17 Z"></path>
309
+ <path d="M4 16 L12 11 L20 16" opacity="0.8"></path>
310
+ <path d="M4 8 L12 3 L20 8" opacity="0.8"></path>
311
+ </svg>
312
+ </div>
313
+ <!-- Undo -->
314
+ <div class="icon-btn" title="Undo">
315
+ <svg viewBox="0 0 24 24">
316
+ <path d="M9 7 L5 11 L9 15" stroke-linecap="round" stroke-linejoin="round"></path>
317
+ <path d="M6 11 H13 A6 6 0 1 1 7 17" stroke-linecap="round"></path>
318
+ </svg>
319
+ </div>
320
+ <div class="spacer"></div>
321
+ <!-- More -->
322
+ <div class="icon-btn" title="More">
323
+ <svg viewBox="0 0 24 24">
324
+ <circle cx="12" cy="5" r="2" fill="currentColor"></circle>
325
+ <circle cx="12" cy="12" r="2" fill="currentColor"></circle>
326
+ <circle cx="12" cy="19" r="2" fill="currentColor"></circle>
327
+ </svg>
328
+ </div>
329
+ <!-- Download -->
330
+ <div class="icon-btn" title="Download">
331
+ <svg viewBox="0 0 24 24">
332
+ <path d="M12 4 V14"></path>
333
+ <path d="M7 9 L12 14 L17 9" stroke-linecap="round" stroke-linejoin="round"></path>
334
+ <rect x="4" y="16" width="16" height="4" rx="2"></rect>
335
+ </svg>
336
+ </div>
337
+ <!-- Share -->
338
+ <div class="icon-btn" title="Share">
339
+ <svg viewBox="0 0 24 24">
340
+ <path d="M16 8 L8 12 L16 16"></path>
341
+ <circle cx="18" cy="7" r="3"></circle>
342
+ <circle cx="6" cy="12" r="3"></circle>
343
+ <circle cx="18" cy="17" r="3"></circle>
344
+ </svg>
345
+ </div>
346
+ </div>
347
+
348
+ <!-- Canvas area with video -->
349
+ <div class="canvas-area">
350
+ <div class="band"></div>
351
+
352
+ <div class="video-wrap">
353
+ <div class="video-placeholder">[IMG: Video Frame]</div>
354
+
355
+ <div class="play-overlay">
356
+ <svg viewBox="0 0 24 24"><polygon points="8,5 19,12 8,19"></polygon></svg>
357
+ </div>
358
+
359
+ <div class="timeline">
360
+ <div>00:00</div>
361
+ <div class="progress"></div>
362
+ <div>00:15</div>
363
+ </div>
364
+
365
+ <div class="resize-dot dot-tl"></div>
366
+ <div class="resize-dot dot-tr"></div>
367
+ <div class="resize-dot dot-bl"></div>
368
+ <div class="resize-dot dot-br"></div>
369
+ </div>
370
+
371
+ <div class="rotate" title="Rotate">
372
+ <svg viewBox="0 0 24 24">
373
+ <path d="M12 5 A7 7 0 1 0 19 12" stroke-linecap="round"></path>
374
+ <path d="M19 7 L19 12 L14 12" stroke-linecap="round"></path>
375
+ </svg>
376
+ </div>
377
+ </div>
378
+
379
+ <!-- Bottom sheet -->
380
+ <div class="sheet">
381
+ <div class="sheet-header">
382
+ <!-- Collapse/expand arrow -->
383
+ <svg width="40" height="40" viewBox="0 0 24 24" style="color:#6B6B6B">
384
+ <path d="M6 10 L12 16 L18 10" stroke="currentColor" stroke-width="3" fill="none" stroke-linecap="round" stroke-linejoin="round"></path>
385
+ </svg>
386
+ <div class="title">Element Animations</div>
387
+ <div class="sheet-close" title="Close">
388
+ <svg viewBox="0 0 24 24">
389
+ <path d="M6 6 L18 18 M18 6 L6 18" stroke="currentColor" stroke-width="3" stroke-linecap="round"></path>
390
+ </svg>
391
+ </div>
392
+ </div>
393
+
394
+ <div class="sheet-content">
395
+ <div class="check-row">
396
+ <div class="checkbox"></div>
397
+ <div>Apply same animation to all pages</div>
398
+ </div>
399
+ <div class="check-row" style="margin-top: 18px;">
400
+ <div class="checkbox"></div>
401
+ <div>Animate elements together</div>
402
+ </div>
403
+
404
+ <div class="options-row">
405
+ <div class="option-btn secondary">(None)</div>
406
+ <div class="option-btn">None</div>
407
+ <div class="option-btn">Bounce In</div>
408
+ <div class="option-btn selected" style="color:#6E56FF;">Swing In</div>
409
+ <div class="option-btn">Fade</div>
410
+ </div>
411
+ </div>
412
+
413
+ <div class="sheet-nav">
414
+ <div class="nav-item active">
415
+ <svg viewBox="0 0 24 24">
416
+ <circle cx="12" cy="12" r="9" fill="none" stroke="#6E56FF" stroke-width="3"></circle>
417
+ <circle cx="12" cy="12" r="2" fill="#6E56FF"></circle>
418
+ </svg>
419
+ <div>Animations</div>
420
+ </div>
421
+ <div class="nav-item">
422
+ <svg viewBox="0 0 24 24">
423
+ <circle cx="12" cy="12" r="9" fill="none" stroke="#606060" stroke-width="3"></circle>
424
+ <path d="M12 8 V12 L15 14" stroke="#606060" stroke-width="3" stroke-linecap="round"></path>
425
+ </svg>
426
+ <div>Duration</div>
427
+ </div>
428
+ <div class="nav-item">
429
+ <svg viewBox="0 0 24 24">
430
+ <rect x="4" y="4" width="6" height="6" fill="#606060"></rect>
431
+ <rect x="14" y="4" width="6" height="6" fill="#606060"></rect>
432
+ <rect x="4" y="14" width="6" height="6" fill="#606060"></rect>
433
+ <rect x="14" y="14" width="6" height="6" fill="#606060"></rect>
434
+ </svg>
435
+ <div>Manage pages</div>
436
+ </div>
437
+ </div>
438
+ </div>
439
+
440
+ <!-- Gesture bar -->
441
+ <div class="gesture-bar"></div>
442
+ </div>
443
+ </body>
444
+ </html>
code/1000/1000_1.html ADDED
@@ -0,0 +1,352 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Mobile UI - Element Animations</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; }
9
+ #render-target {
10
+ width: 1080px;
11
+ height: 2400px;
12
+ position: relative;
13
+ overflow: hidden;
14
+ background: #FFFFFF;
15
+ color: #1f1f1f;
16
+ }
17
+
18
+ /* Status bar */
19
+ .statusbar {
20
+ height: 120px;
21
+ padding: 0 36px;
22
+ display: flex;
23
+ align-items: center;
24
+ justify-content: space-between;
25
+ color: #5f6368;
26
+ font-size: 42px;
27
+ box-sizing: border-box;
28
+ }
29
+ .status-right {
30
+ display: flex;
31
+ align-items: center;
32
+ gap: 26px;
33
+ }
34
+ .dot { width: 12px; height: 12px; background: #9aa0a6; border-radius: 50%; display: inline-block; }
35
+ .status-icon { width: 46px; height: 46px; }
36
+
37
+ /* Top app bar */
38
+ .toolbar {
39
+ height: 130px;
40
+ border-top: 1px solid #eee;
41
+ border-bottom: 1px solid #eee;
42
+ display: flex;
43
+ align-items: center;
44
+ justify-content: space-between;
45
+ padding: 0 28px;
46
+ box-sizing: border-box;
47
+ }
48
+ .left-actions, .right-actions {
49
+ display: flex;
50
+ align-items: center;
51
+ gap: 36px;
52
+ }
53
+ .icon-btn {
54
+ width: 66px; height: 66px; display: inline-flex; align-items: center; justify-content: center;
55
+ }
56
+ .icon {
57
+ width: 54px; height: 54px; fill: none; stroke: #2b2b2b; stroke-width: 3;
58
+ }
59
+
60
+ /* Canvas/content area */
61
+ .canvas {
62
+ position: relative;
63
+ height: 1240px;
64
+ background: #f6f7f8;
65
+ }
66
+ /* Decorative bands to mimic the editor page under the video */
67
+ .band-dark {
68
+ position: absolute; left: 0; right: 0; top: 210px; height: 170px; background: #25322E;
69
+ }
70
+ .band-yellow {
71
+ position: absolute; left: 0; right: 0; top: 380px; height: 120px; background: #FFF2B5;
72
+ }
73
+
74
+ /* Video frame */
75
+ .video-frame {
76
+ position: absolute;
77
+ left: 60px;
78
+ right: 60px;
79
+ top: 430px;
80
+ height: 520px;
81
+ border-radius: 22px;
82
+ overflow: hidden;
83
+ box-shadow: 0 10px 30px rgba(0,0,0,0.25);
84
+ }
85
+ .img-ph {
86
+ width: 100%; height: 100%;
87
+ background: #E0E0E0;
88
+ border: 1px solid #BDBDBD;
89
+ display: flex; align-items: center; justify-content: center;
90
+ color: #757575; font-size: 42px; letter-spacing: 0.5px;
91
+ }
92
+ /* Selection handles (white circles at corners/sides) */
93
+ .handle {
94
+ position: absolute; width: 32px; height: 32px; background: #ffffff;
95
+ border: 2px solid #D0D0D0; border-radius: 50%;
96
+ }
97
+ .h-tl { top: -16px; left: -16px; }
98
+ .h-tr { top: -16px; right: -16px; }
99
+ .h-bl { bottom: -16px; left: -16px; }
100
+ .h-br { bottom: -16px; right: -16px; }
101
+ .h-ml { top: 50%; left: -16px; transform: translateY(-50%); }
102
+ .h-mr { top: 50%; right: -16px; transform: translateY(-50%); }
103
+ .h-tm { left: 50%; top: -16px; transform: translateX(-50%); }
104
+ .h-bm { left: 50%; bottom: -16px; transform: translateX(-50%); }
105
+
106
+ /* Play overlay and scrub bar inside video */
107
+ .play-overlay {
108
+ position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
109
+ }
110
+ .play-circle {
111
+ width: 120px; height: 120px;
112
+ background: rgba(0,0,0,0.55);
113
+ border-radius: 50%;
114
+ display: flex; align-items: center; justify-content: center;
115
+ }
116
+ .play-triangle {
117
+ width: 0; height: 0; border-left: 42px solid #fff; border-top: 28px solid transparent; border-bottom: 28px solid transparent; margin-left: 8px;
118
+ }
119
+ .scrub {
120
+ position: absolute; left: 28px; right: 28px; bottom: 24px; height: 58px; display: flex; align-items: center; gap: 22px; color: #fff; font-size: 34px;
121
+ }
122
+ .scrub .line {
123
+ flex: 1; height: 6px; background: rgba(255,255,255,0.55); border-radius: 4px;
124
+ position: relative;
125
+ }
126
+ .scrub .progress {
127
+ position: absolute; left: 0; top: 0; bottom: 0; width: 0%;
128
+ background: #fff; border-radius: 4px;
129
+ }
130
+
131
+ /* Rotate button under video */
132
+ .rotate {
133
+ position: absolute; left: 50%; top: 990px; transform: translateX(-50%);
134
+ width: 82px; height: 82px; background: #ffffff; border: 2px solid #D9D9D9; border-radius: 50%;
135
+ display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 14px rgba(0,0,0,0.08);
136
+ }
137
+ .rotate svg { width: 46px; height: 46px; stroke: #6b6b6b; stroke-width: 3; fill: none; }
138
+
139
+ /* Bottom sheet */
140
+ .sheet {
141
+ position: absolute; left: 0; right: 0; bottom: 0; height: 900px; background: #ffffff;
142
+ border-top-left-radius: 36px; border-top-right-radius: 36px;
143
+ box-shadow: 0 -12px 32px rgba(0,0,0,0.12);
144
+ padding: 28px 36px 24px;
145
+ box-sizing: border-box;
146
+ }
147
+ .sheet-header {
148
+ display: flex; align-items: center; justify-content: space-between; padding: 18px 6px 12px;
149
+ }
150
+ .sheet-title {
151
+ font-size: 52px; font-weight: 700; letter-spacing: 0.3px;
152
+ }
153
+ .close-btn { width: 72px; height: 72px; display: flex; align-items: center; justify-content: center; }
154
+ .close-btn svg { width: 44px; height: 44px; stroke: #222; stroke-width: 3; fill: none; }
155
+
156
+ .checkbox-row { display: flex; align-items: center; gap: 22px; margin: 26px 6px; font-size: 40px; color: #2b2b2b; }
157
+ .cbx {
158
+ width: 46px; height: 46px; border: 3px solid #CFCFCF; border-radius: 8px; box-sizing: border-box; background: #fff;
159
+ }
160
+
161
+ .pill-row {
162
+ margin-top: 28px; display: flex; gap: 22px; overflow: hidden; flex-wrap: wrap;
163
+ }
164
+ .pill {
165
+ padding: 26px 34px; border: 2px solid #E2E2E9; border-radius: 22px; font-size: 38px; color: #222; background: #fff;
166
+ }
167
+ .pill.active { border-color: #7B61FF; color: #7B61FF; background: #FBF9FF; }
168
+
169
+ /* Bottom nav within sheet */
170
+ .sheet-nav {
171
+ position: absolute; left: 0; right: 0; bottom: 90px; display: flex; justify-content: space-around; text-align: center;
172
+ }
173
+ .nav-item { color: #8a88a6; font-size: 32px; }
174
+ .nav-item.active { color: #7B61FF; }
175
+ .nav-ico { width: 70px; height: 70px; margin: 0 auto 12px; }
176
+
177
+ /* Home indicator bar */
178
+ .home-indicator {
179
+ position: absolute; left: 50%; transform: translateX(-50%); bottom: 22px;
180
+ width: 360px; height: 10px; background: #000; border-radius: 8px; opacity: 0.7;
181
+ }
182
+ </style>
183
+ </head>
184
+ <body>
185
+ <div id="render-target">
186
+
187
+ <!-- Status Bar -->
188
+ <div class="statusbar">
189
+ <div>6:06</div>
190
+ <div class="status-right">
191
+ <span class="dot"></span><span class="dot"></span><span class="dot"></span>
192
+ <svg class="status-icon" viewBox="0 0 24 24" stroke="#8a8a8a" fill="none" stroke-width="2">
193
+ <circle cx="12" cy="12" r="9"></circle>
194
+ <path d="M12 7v5l4 2"></path>
195
+ </svg>
196
+ <svg class="status-icon" viewBox="0 0 24 24" stroke="#8a8a8a" fill="none" stroke-width="2">
197
+ <path d="M2 18l8-8 5 5 7-7"></path>
198
+ </svg>
199
+ <svg class="status-icon" viewBox="0 0 24 24" stroke="#8a8a8a" fill="none" stroke-width="2">
200
+ <rect x="5" y="6" width="14" height="12" rx="2"></rect>
201
+ <path d="M9 6v-1a3 3 0 0 1 6 0v1"></path>
202
+ </svg>
203
+ </div>
204
+ </div>
205
+
206
+ <!-- Top App Bar -->
207
+ <div class="toolbar">
208
+ <div class="left-actions">
209
+ <div class="icon-btn">
210
+ <svg class="icon" viewBox="0 0 24 24">
211
+ <path d="M15 18l-6-6 6-6" stroke-linecap="round" stroke-linejoin="round"></path>
212
+ </svg>
213
+ </div>
214
+ <div class="icon-btn" title="Preview">
215
+ <svg class="icon" viewBox="0 0 24 24" stroke-dasharray="3 3">
216
+ <circle cx="12" cy="12" r="9"></circle>
217
+ <path d="M10 8l6 4-6 4z" fill="#2b2b2b" stroke="none"></path>
218
+ </svg>
219
+ </div>
220
+ <div class="icon-btn" title="Layers">
221
+ <svg class="icon" viewBox="0 0 24 24">
222
+ <path d="M12 3l9 5-9 5-9-5 9-5z"></path>
223
+ <path d="M3 12l9 5 9-5" opacity="0.8"></path>
224
+ </svg>
225
+ </div>
226
+ <div class="icon-btn" title="Undo">
227
+ <svg class="icon" viewBox="0 0 24 24">
228
+ <path d="M9 10H4l5-5"></path>
229
+ <path d="M20 19a8 8 0 0 0-11-9"></path>
230
+ </svg>
231
+ </div>
232
+ </div>
233
+ <div class="right-actions">
234
+ <div class="icon-btn" title="More">
235
+ <svg class="icon" viewBox="0 0 24 24">
236
+ <circle cx="12" cy="5" r="1.5" fill="#2b2b2b" stroke="none"></circle>
237
+ <circle cx="12" cy="12" r="1.5" fill="#2b2b2b" stroke="none"></circle>
238
+ <circle cx="12" cy="19" r="1.5" fill="#2b2b2b" stroke="none"></circle>
239
+ </svg>
240
+ </div>
241
+ <div class="icon-btn" title="Download">
242
+ <svg class="icon" viewBox="0 0 24 24">
243
+ <path d="M12 3v12"></path>
244
+ <path d="M7 11l5 5 5-5"></path>
245
+ <path d="M5 21h14"></path>
246
+ </svg>
247
+ </div>
248
+ <div class="icon-btn" title="Share">
249
+ <svg class="icon" viewBox="0 0 24 24">
250
+ <path d="M4 12v7a2 2 0 0 0 2 2h12"></path>
251
+ <path d="M12 16l8-8"></path>
252
+ <path d="M15 4h5v5"></path>
253
+ </svg>
254
+ </div>
255
+ </div>
256
+ </div>
257
+
258
+ <!-- Canvas / Page content preview -->
259
+ <div class="canvas">
260
+ <div class="band-dark"></div>
261
+ <div class="band-yellow"></div>
262
+
263
+ <div class="video-frame">
264
+ <div class="img-ph">[IMG: Video Preview]</div>
265
+
266
+ <div class="play-overlay">
267
+ <div class="play-circle"><div class="play-triangle"></div></div>
268
+ </div>
269
+
270
+ <div class="scrub">
271
+ <span>00:00</span>
272
+ <div class="line"><div class="progress" style="width:0%"></div></div>
273
+ <span>00:15</span>
274
+ </div>
275
+
276
+ <div class="handle h-tl"></div>
277
+ <div class="handle h-tr"></div>
278
+ <div class="handle h-bl"></div>
279
+ <div class="handle h-br"></div>
280
+ <div class="handle h-ml"></div>
281
+ <div class="handle h-mr"></div>
282
+ <div class="handle h-tm"></div>
283
+ <div class="handle h-bm"></div>
284
+ </div>
285
+
286
+ <div class="rotate">
287
+ <svg viewBox="0 0 24 24">
288
+ <path d="M3 12a9 9 0 1 0 9-9" stroke-linecap="round"></path>
289
+ <path d="M3 6v6h6" stroke-linecap="round"></path>
290
+ </svg>
291
+ </div>
292
+ </div>
293
+
294
+ <!-- Bottom Sheet: Element Animations -->
295
+ <div class="sheet">
296
+ <div class="sheet-header">
297
+ <div class="sheet-title">Element Animations</div>
298
+ <div class="close-btn">
299
+ <svg viewBox="0 0 24 24">
300
+ <path d="M5 5l14 14"></path>
301
+ <path d="M19 5L5 19"></path>
302
+ </svg>
303
+ </div>
304
+ </div>
305
+
306
+ <div class="checkbox-row">
307
+ <div class="cbx"></div>
308
+ <div>Apply same animation to all pages</div>
309
+ </div>
310
+ <div class="checkbox-row" style="margin-top: 12px;">
311
+ <div class="cbx"></div>
312
+ <div>Animate elements together</div>
313
+ </div>
314
+
315
+ <div class="pill-row">
316
+ <div class="pill active">Swing In</div>
317
+ <div class="pill">Fade In</div>
318
+ <div class="pill">Rotate in from left</div>
319
+ <div class="pill">Rotate in from screen</div>
320
+ <div class="pill">Zoom In</div>
321
+ <div class="pill">Slide Up</div>
322
+ </div>
323
+
324
+ <div class="sheet-nav">
325
+ <div class="nav-item active">
326
+ <svg class="nav-ico" viewBox="0 0 24 24" fill="none" stroke="#7B61FF" stroke-width="2">
327
+ <circle cx="12" cy="12" r="8"></circle>
328
+ <circle cx="12" cy="12" r="2" fill="#7B61FF" stroke="none"></circle>
329
+ </svg>
330
+ Animations
331
+ </div>
332
+ <div class="nav-item">
333
+ <svg class="nav-ico" viewBox="0 0 24 24" fill="none" stroke="#8a88a6" stroke-width="2">
334
+ <circle cx="12" cy="12" r="9"></circle>
335
+ <path d="M12 7v5l3 2"></path>
336
+ </svg>
337
+ Duration
338
+ </div>
339
+ <div class="nav-item">
340
+ <svg class="nav-ico" viewBox="0 0 24 24" fill="none" stroke="#8a88a6" stroke-width="2">
341
+ <rect x="4" y="4" width="16" height="16" rx="3"></rect>
342
+ <text x="8" y="16" font-size="8" fill="#8a88a6" stroke="none">9+</text>
343
+ </svg>
344
+ Manage pages
345
+ </div>
346
+ </div>
347
+ </div>
348
+
349
+ <div class="home-indicator"></div>
350
+ </div>
351
+ </body>
352
+ </html>
code/1000/1000_2.html ADDED
@@ -0,0 +1,401 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 Mock - Element Animations</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: #1f1f1f;
17
+ }
18
+
19
+ /* Status bar */
20
+ .status-bar {
21
+ height: 110px;
22
+ padding: 0 36px;
23
+ display: flex;
24
+ align-items: center;
25
+ justify-content: space-between;
26
+ color: #2d2d2d;
27
+ font-weight: 600;
28
+ font-size: 44px;
29
+ }
30
+ .status-left { display: flex; align-items: center; gap: 22px; }
31
+ .status-dots { display: flex; gap: 20px; align-items: center; }
32
+ .dot {
33
+ width: 24px; height: 24px; background: #707070; border-radius: 50%;
34
+ opacity: 0.65;
35
+ }
36
+ .status-right { display: flex; align-items: center; gap: 26px; }
37
+ .icon-mini { width: 46px; height: 46px; }
38
+
39
+ /* App toolbar */
40
+ .app-bar {
41
+ height: 124px;
42
+ border-bottom: 1px solid #eee;
43
+ display: flex;
44
+ align-items: center;
45
+ padding: 0 34px;
46
+ gap: 46px;
47
+ }
48
+ .icon-btn {
49
+ width: 88px; height: 88px;
50
+ border-radius: 16px;
51
+ display: flex; align-items: center; justify-content: center;
52
+ color: #1f1f1f;
53
+ }
54
+ .app-bar .spacer { flex: 1; }
55
+
56
+ /* Canvas / editor area */
57
+ .canvas-area {
58
+ background: #f1f1f1;
59
+ height: 1080px;
60
+ position: relative;
61
+ }
62
+ .band-dark {
63
+ position: absolute;
64
+ top: 200px;
65
+ left: 0;
66
+ right: 0;
67
+ height: 210px;
68
+ background: #26342f;
69
+ }
70
+ .band-accent {
71
+ position: absolute;
72
+ top: 300px;
73
+ left: -40px;
74
+ right: -40px;
75
+ height: 160px;
76
+ background: #f6eea7;
77
+ }
78
+
79
+ .video-wrapper {
80
+ position: absolute;
81
+ top: 270px;
82
+ left: 60px;
83
+ width: 960px;
84
+ height: 540px;
85
+ border: 3px solid #42a5f5;
86
+ border-radius: 18px;
87
+ overflow: hidden;
88
+ box-shadow: 0 8px 18px rgba(0,0,0,0.25);
89
+ background: #E0E0E0;
90
+ }
91
+ .video-placeholder {
92
+ position: absolute;
93
+ inset: 0;
94
+ display: flex;
95
+ align-items: center;
96
+ justify-content: center;
97
+ color: #757575;
98
+ font-size: 44px;
99
+ letter-spacing: .5px;
100
+ border: 1px solid #BDBDBD;
101
+ background: linear-gradient(0deg, rgba(0,0,0,0.08), rgba(0,0,0,0.08)), #E0E0E0;
102
+ }
103
+ .play-overlay {
104
+ position: absolute;
105
+ top: 50%; left: 50%;
106
+ transform: translate(-50%, -50%);
107
+ width: 132px; height: 132px;
108
+ border-radius: 50%;
109
+ background: rgba(0,0,0,0.45);
110
+ display: flex; align-items: center; justify-content: center;
111
+ }
112
+ .progress-area {
113
+ position: absolute;
114
+ left: 28px; right: 28px; bottom: 24px;
115
+ height: 54px; color: #fff;
116
+ display: flex; align-items: center; gap: 18px;
117
+ font-size: 34px; font-weight: 600;
118
+ text-shadow: 0 1px 2px rgba(0,0,0,0.4);
119
+ }
120
+ .progress-track {
121
+ flex: 1; height: 8px;
122
+ background: rgba(255,255,255,0.55);
123
+ border-radius: 6px; position: relative;
124
+ }
125
+ .progress-track::before {
126
+ content: ""; position: absolute; left: 0; top: 0;
127
+ width: 18%; height: 100%; background: #ffffff; border-radius: 6px;
128
+ }
129
+
130
+ /* Selection handles around video */
131
+ .handle {
132
+ width: 26px; height: 26px; border-radius: 50%;
133
+ background: #ffffff; border: 3px solid #42a5f5;
134
+ position: absolute;
135
+ }
136
+ .h-tl { top: -14px; left: -14px; }
137
+ .h-tr { top: -14px; right: -14px; }
138
+ .h-bl { bottom: -14px; left: -14px; }
139
+ .h-br { bottom: -14px; right: -14px; }
140
+ .h-ml { top: 50%; left: -14px; transform: translateY(-50%); }
141
+ .h-mr { top: 50%; right: -14px; transform: translateY(-50%); }
142
+ .h-tm { top: -14px; left: 50%; transform: translateX(-50%); }
143
+ .h-bm { bottom: -14px; left: 50%; transform: translateX(-50%); }
144
+
145
+ .rotate-handle {
146
+ position: absolute;
147
+ top: 840px;
148
+ left: 50%;
149
+ transform: translateX(-50%);
150
+ width: 74px; height: 74px;
151
+ border-radius: 50%;
152
+ border: 1px solid #CFCFCF;
153
+ background: #ffffff;
154
+ display: flex; align-items: center; justify-content: center;
155
+ box-shadow: 0 2px 6px rgba(0,0,0,0.1);
156
+ }
157
+
158
+ /* Bottom sheet */
159
+ .sheet {
160
+ position: absolute;
161
+ left: 0; right: 0; bottom: 0;
162
+ height: 980px;
163
+ background: #ffffff;
164
+ border-top-left-radius: 28px;
165
+ border-top-right-radius: 28px;
166
+ box-shadow: 0 -12px 24px rgba(0,0,0,0.08);
167
+ overflow: hidden;
168
+ }
169
+ .sheet-inner { padding: 28px 34px 0 34px; }
170
+ .sheet-header {
171
+ display: flex; align-items: center; justify-content: space-between;
172
+ padding: 12px 4px 20px;
173
+ }
174
+ .sheet-title {
175
+ display: flex; align-items: center; gap: 18px;
176
+ font-size: 54px; font-weight: 700;
177
+ }
178
+ .caret { transform: rotate(180deg); }
179
+ .close-btn {
180
+ width: 70px; height: 70px; border-radius: 50%;
181
+ display: flex; align-items: center; justify-content: center;
182
+ }
183
+ .option {
184
+ display: flex; align-items: center; gap: 22px;
185
+ font-size: 40px; margin: 26px 6px;
186
+ }
187
+ .checkbox {
188
+ width: 44px; height: 44px; border: 2px solid #9e9e9e;
189
+ border-radius: 8px; background: #fff;
190
+ }
191
+ .chip-row {
192
+ display: flex; gap: 22px; margin: 28px 0 34px; flex-wrap: nowrap;
193
+ }
194
+ .chip {
195
+ padding: 24px 34px; border: 2px solid #d7d7d7;
196
+ border-radius: 18px; font-size: 36px; white-space: nowrap;
197
+ background: #fafafa;
198
+ }
199
+
200
+ /* Bottom tabs */
201
+ .bottom-tabs {
202
+ position: absolute; left: 0; right: 0; bottom: 64px;
203
+ display: flex; justify-content: space-around; align-items: center;
204
+ }
205
+ .tab-item {
206
+ display: flex; flex-direction: column; align-items: center; gap: 14px;
207
+ color: #1f1f1f; font-size: 30px;
208
+ }
209
+ .tab-item.active { color: #5b53ff; }
210
+ .badge {
211
+ position: absolute; top: -8px; right: -18px;
212
+ background: #efefef; color: #111; border-radius: 12px;
213
+ font-size: 22px; padding: 4px 8px; border: 1px solid #d0d0d0;
214
+ }
215
+
216
+ /* Gesture bar */
217
+ .gesture {
218
+ position: absolute; left: 50%; transform: translateX(-50%);
219
+ bottom: 18px; width: 300px; height: 10px; background: #0f0f0f; border-radius: 8px;
220
+ opacity: 0.85;
221
+ }
222
+ </style>
223
+ </head>
224
+ <body>
225
+ <div id="render-target">
226
+
227
+ <!-- Status bar -->
228
+ <div class="status-bar">
229
+ <div class="status-left">
230
+ <div>6:06</div>
231
+ <div class="status-dots">
232
+ <div class="dot"></div>
233
+ <div class="dot"></div>
234
+ <div class="dot"></div>
235
+ <div style="width:14px;height:14px;background:#707070;border-radius:50%;opacity:.7;"></div>
236
+ </div>
237
+ </div>
238
+ <div class="status-right">
239
+ <!-- Signal/WiFi -->
240
+ <svg class="icon-mini" viewBox="0 0 24 24" fill="#5a5a5a">
241
+ <path d="M12 20c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zM4 8l2 2c3.9-3.9 10.2-3.9 14.1 0L22 8C17-0.7 7-0.7 2 8zm4 4l2 2c2.8-2.8 7.2-2.8 10 0l2-2c-3.9-3.9-10.1-3.9-14 0z"/>
242
+ </svg>
243
+ <!-- Battery -->
244
+ <svg class="icon-mini" viewBox="0 0 24 24" fill="#5a5a5a">
245
+ <path d="M16 6h1a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-1v1h-2v-1H8a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h8zM8 8v8h8V8H8z"/>
246
+ </svg>
247
+ </div>
248
+ </div>
249
+
250
+ <!-- App toolbar -->
251
+ <div class="app-bar">
252
+ <!-- Back -->
253
+ <div class="icon-btn">
254
+ <svg width="54" height="54" viewBox="0 0 24 24" fill="#1f1f1f">
255
+ <path d="M15.5 19l-7-7 7-7 1.5 1.5L11.5 12l5.5 5.5z"/>
256
+ </svg>
257
+ </div>
258
+ <!-- Preview (dashed circle with play) -->
259
+ <div class="icon-btn">
260
+ <svg width="64" height="64" viewBox="0 0 24 24">
261
+ <circle cx="12" cy="12" r="9" fill="none" stroke="#1f1f1f" stroke-width="2" stroke-dasharray="2 2"/>
262
+ <path d="M10 8l6 4-6 4z" fill="#1f1f1f"/>
263
+ </svg>
264
+ </div>
265
+ <!-- Layers -->
266
+ <div class="icon-btn">
267
+ <svg width="60" height="60" viewBox="0 0 24 24" fill="#1f1f1f">
268
+ <path d="M12 2L1 7l11 5 11-5-11-5zm0 9L1 6v3l11 5 11-5V6l-11 5zm0 4L1 11v3l11 5 11-5v-3l-11 4z"/>
269
+ </svg>
270
+ </div>
271
+ <!-- Undo -->
272
+ <div class="icon-btn">
273
+ <svg width="56" height="56" viewBox="0 0 24 24" fill="#1f1f1f">
274
+ <path d="M12 5V1L7 6l5 5V7c3.3 0 6 2.7 6 6 0 1.1-.3 2.1-.8 3l1.8 1C20.7 15.9 21 14.5 21 13c0-4.4-3.6-8-8-8z"/>
275
+ </svg>
276
+ </div>
277
+ <div class="spacer"></div>
278
+ <!-- More -->
279
+ <div class="icon-btn">
280
+ <svg width="50" height="50" viewBox="0 0 24 24" fill="#1f1f1f">
281
+ <circle cx="5" cy="12" r="2"/><circle cx="12" cy="12" r="2"/><circle cx="19" cy="12" r="2"/>
282
+ </svg>
283
+ </div>
284
+ <!-- Download -->
285
+ <div class="icon-btn">
286
+ <svg width="58" height="58" viewBox="0 0 24 24" fill="#1f1f1f">
287
+ <path d="M5 20h14v-2H5v2zm7-18l-5 5h3v6h4V7h3l-5-5z"/>
288
+ </svg>
289
+ </div>
290
+ <!-- Share/Export -->
291
+ <div class="icon-btn">
292
+ <svg width="60" height="60" viewBox="0 0 24 24" fill="#1f1f1f">
293
+ <path d="M18 16.1c-.7 0-1.3.3-1.8.7L8.9 12c.1-.3.1-.7 0-1l7.2-4.7c.5.4 1.1.7 1.8.7 1.7 0 3-1.3 3-3s-1.3-3-3-3-3 1.3-3 3c0 .2 0 .4.1.6L8.8 9.6c-.5-.4-1.1-.6-1.8-.6-1.7 0-3 1.3-3 3s1.3 3 3 3c.7 0 1.3-.2 1.8-.6l6.3 4.2c-.1.2-.1.5-.1.7 0 1.7 1.3 3 3 3s3-1.3 3-3-1.3-3-3-3z"/>
294
+ </svg>
295
+ </div>
296
+ </div>
297
+
298
+ <!-- Canvas/Editor preview -->
299
+ <div class="canvas-area">
300
+ <div class="band-dark"></div>
301
+ <div class="band-accent"></div>
302
+
303
+ <div class="video-wrapper">
304
+ <div class="video-placeholder">[VIDEO PLACEHOLDER]</div>
305
+
306
+ <div class="play-overlay">
307
+ <svg width="60" height="60" viewBox="0 0 24 24">
308
+ <path d="M8 5v14l11-7z" fill="#ffffff"/>
309
+ </svg>
310
+ </div>
311
+
312
+ <!-- selection handles -->
313
+ <div class="handle h-tl"></div>
314
+ <div class="handle h-tr"></div>
315
+ <div class="handle h-bl"></div>
316
+ <div class="handle h-br"></div>
317
+ <div class="handle h-ml"></div>
318
+ <div class="handle h-mr"></div>
319
+ <div class="handle h-tm"></div>
320
+ <div class="handle h-bm"></div>
321
+
322
+ <!-- progress -->
323
+ <div class="progress-area">
324
+ <div style="min-width:120px; text-align:left;">00:00</div>
325
+ <div class="progress-track"></div>
326
+ <div style="min-width:120px; text-align:right;">00:15</div>
327
+ </div>
328
+ </div>
329
+
330
+ <!-- rotate handle under the video -->
331
+ <div class="rotate-handle" title="Rotate">
332
+ <svg width="32" height="32" viewBox="0 0 24 24" fill="#5a5a5a">
333
+ <path d="M12 6V3L8 7l4 4V8c2.2 0 4 1.8 4 4a4 4 0 1 1-7.5-2.1l-1.8-1A6 6 0 1 0 12 6z"/>
334
+ </svg>
335
+ </div>
336
+ </div>
337
+
338
+ <!-- Bottom Sheet: Element Animations -->
339
+ <div class="sheet">
340
+ <div class="sheet-inner">
341
+ <div class="sheet-header">
342
+ <div class="sheet-title">
343
+ <svg class="caret" width="36" height="36" viewBox="0 0 24 24" fill="#1f1f1f">
344
+ <path d="M7 14l5-5 5 5z"/>
345
+ </svg>
346
+ <span>Element Animations</span>
347
+ </div>
348
+ <div class="close-btn">
349
+ <svg width="44" height="44" viewBox="0 0 24 24" fill="#1f1f1f">
350
+ <path d="M18.3 5.7L12 12l6.3 6.3-1.3 1.4L10.6 13.4 4.3 19.7 3 18.3 9.3 12 3 5.7 4.3 4.3l6.3 6.3 6.3-6.3z"/>
351
+ </svg>
352
+ </div>
353
+ </div>
354
+
355
+ <div class="option">
356
+ <div class="checkbox"></div>
357
+ <div>Apply same animation to all pages</div>
358
+ </div>
359
+ <div class="option">
360
+ <div class="checkbox"></div>
361
+ <div>Animate elements together</div>
362
+ </div>
363
+
364
+ <div class="chip-row">
365
+ <div class="chip">Rotate in from screen</div>
366
+ <div class="chip">Zoom In</div>
367
+ <div class="chip">Zoom Out</div>
368
+ <div class="chip">Light Speed In</div>
369
+ </div>
370
+ </div>
371
+
372
+ <!-- Bottom tabs -->
373
+ <div class="bottom-tabs">
374
+ <div class="tab-item active">
375
+ <svg width="56" height="56" viewBox="0 0 24 24" fill="#5b53ff">
376
+ <circle cx="12" cy="12" r="9" fill="none" stroke="#5b53ff" stroke-width="2"/>
377
+ <circle cx="12" cy="12" r="2.5" fill="#5b53ff"/>
378
+ </svg>
379
+ <div>Animations</div>
380
+ </div>
381
+ <div class="tab-item">
382
+ <svg width="56" height="56" viewBox="0 0 24 24" fill="#1f1f1f">
383
+ <path d="M7 4h2v16H7V4zm8 0h2v16h-2V4zM11 8h2v8h-2V8z"/>
384
+ </svg>
385
+ <div>Duration</div>
386
+ </div>
387
+ <div class="tab-item" style="position:relative;">
388
+ <svg width="56" height="56" viewBox="0 0 24 24" fill="#1f1f1f">
389
+ <path d="M3 4h18v2H3V4zm0 4h12v12H3V8zm14 4h4v8h-4v-8z"/>
390
+ </svg>
391
+ <div>Manage pages</div>
392
+ <span class="badge">9+</span>
393
+ </div>
394
+ </div>
395
+
396
+ <div class="gesture"></div>
397
+ </div>
398
+
399
+ </div>
400
+ </body>
401
+ </html>
code/1000/1000_3.html ADDED
@@ -0,0 +1,352 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Editor - Element Animations</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
9
+ #render-target {
10
+ position: relative;
11
+ width: 1080px;
12
+ height: 2400px;
13
+ overflow: hidden;
14
+ background: #ffffff;
15
+ border-radius: 0;
16
+ }
17
+
18
+ /* Status bar */
19
+ .status-bar {
20
+ height: 80px;
21
+ padding: 0 28px;
22
+ display: flex;
23
+ align-items: center;
24
+ justify-content: space-between;
25
+ color: #1f1f1f;
26
+ font-size: 36px;
27
+ }
28
+ .status-left { display: flex; align-items: center; gap: 12px; }
29
+ .status-right { display: flex; align-items: center; gap: 22px; }
30
+ .dot { width: 18px; height: 18px; background:#6b6b6b; border-radius: 50%; display:inline-block; opacity:.9; }
31
+
32
+ /* App toolbar */
33
+ .toolbar {
34
+ height: 120px;
35
+ padding: 0 28px;
36
+ display: flex;
37
+ align-items: center;
38
+ justify-content: space-between;
39
+ }
40
+ .toolbar .left-actions,
41
+ .toolbar .right-actions {
42
+ display: flex; align-items: center; gap: 34px;
43
+ }
44
+ .icon-btn {
45
+ width: 72px; height: 72px; display: inline-flex; align-items: center; justify-content: center;
46
+ color: #222;
47
+ }
48
+ .icon-btn svg { width: 48px; height: 48px; }
49
+
50
+ /* Canvas workspace */
51
+ .canvas {
52
+ position: relative;
53
+ height: 1220px;
54
+ background: #f3f3f3;
55
+ overflow: hidden;
56
+ }
57
+ /* Decorative bands behind the video */
58
+ .band-dark {
59
+ position: absolute; left: 0; right: 0; top: 140px; height: 180px; background: #25322d;
60
+ }
61
+ .band-yellow {
62
+ position: absolute; left: 60px; right: 60px; top: 260px; height: 140px; background: #fff1b0;
63
+ }
64
+ .collage {
65
+ position: absolute; left: 0; right: 0; bottom: 180px; height: 240px;
66
+ background: #E0E0E0; border-top: 1px solid #BDBDBD; border-bottom: 1px solid #BDBDBD;
67
+ display: flex; align-items: center; justify-content: center; color:#757575; font-size: 36px;
68
+ }
69
+
70
+ /* Video element (selected) */
71
+ .video-wrap {
72
+ position: absolute;
73
+ left: 90px; right: 90px; top: 320px; height: 540px;
74
+ border: 4px solid #4a9dfc;
75
+ border-radius: 20px;
76
+ overflow: hidden;
77
+ background: #E0E0E0;
78
+ display: flex; align-items: center; justify-content: center; color:#757575; font-size: 40px;
79
+ }
80
+ .handle {
81
+ position: absolute; width: 28px; height: 28px; background:#ffffff; border: 3px solid #4a9dfc; border-radius: 50%;
82
+ }
83
+ .h-tl { left:-14px; top:-14px; }
84
+ .h-tr { right:-14px; top:-14px; }
85
+ .h-bl { left:-14px; bottom:-14px; }
86
+ .h-br { right:-14px; bottom:-14px; }
87
+ .h-ml { left:-14px; top:50%; transform:translateY(-50%); }
88
+ .h-mr { right:-14px; top:50%; transform:translateY(-50%); }
89
+ .h-tm { top:-14px; left:50%; transform:translateX(-50%); }
90
+ .h-bm { bottom:-14px; left:50%; transform:translateX(-50%); }
91
+
92
+ .play-overlay {
93
+ position: absolute; width: 140px; height: 140px; border-radius: 50%;
94
+ background: rgba(0,0,0,0.35); display:flex; align-items:center; justify-content:center;
95
+ }
96
+ .play-overlay svg { width: 70px; height: 70px; }
97
+
98
+ /* Timeline overlay inside video */
99
+ .timeline {
100
+ position: absolute; left: 28px; right: 28px; bottom: 24px; color: #fff;
101
+ display: flex; align-items: center; gap: 22px;
102
+ }
103
+ .timeline .time { font-size: 32px; text-shadow: 0 1px 2px rgba(0,0,0,0.35); width: 110px; }
104
+ .progress {
105
+ flex: 1; height: 8px; background: rgba(255,255,255,0.45); border-radius: 6px; position: relative;
106
+ }
107
+ .progress .bar { position: absolute; left: 0; top: 0; bottom: 0; width: 20%; background:#ffffff; border-radius: 6px; }
108
+
109
+ /* Rotate icon below video */
110
+ .rotate-btn {
111
+ position: absolute; left: 50%; transform: translateX(-50%);
112
+ bottom: 110px; width: 72px; height: 72px; border-radius: 50%;
113
+ background:#ffffff; border: 2px solid #DADADA; display:flex; align-items:center; justify-content:center;
114
+ box-shadow: 0 2px 6px rgba(0,0,0,0.08);
115
+ }
116
+ .rotate-btn svg { width: 42px; height: 42px; }
117
+
118
+ /* Bottom sheet */
119
+ .sheet {
120
+ position: absolute; left: 0; right: 0; bottom: 96px; height: 840px; background: #ffffff;
121
+ border-top-left-radius: 26px; border-top-right-radius: 26px;
122
+ box-shadow: 0 -6px 16px rgba(0,0,0,0.08);
123
+ padding: 22px 32px 20px 32px;
124
+ }
125
+ .sheet-head {
126
+ display: flex; align-items: center; justify-content: space-between; padding: 18px 6px 8px;
127
+ }
128
+ .sheet-title { font-size: 52px; font-weight: 700; color:#111; }
129
+ .sheet-close { width: 70px; height: 70px; display:flex; align-items:center; justify-content:center; }
130
+ .sheet-close svg { width: 42px; height: 42px; }
131
+
132
+ .option-row { display: flex; align-items: center; gap: 18px; font-size: 36px; color:#2a2a2a; margin: 28px 6px; }
133
+ .checkbox {
134
+ width: 44px; height: 44px; border: 3px solid #B6B6B6; border-radius: 8px; background:#fff;
135
+ }
136
+
137
+ .chip-row {
138
+ display: flex; align-items: center; gap: 22px; margin: 36px 0 28px 0; padding: 0 4px; overflow: hidden;
139
+ }
140
+ .chip {
141
+ padding: 22px 34px; border: 2px solid #D7D7D7; border-radius: 18px; font-size: 36px; color:#232323; background:#fff;
142
+ white-space: nowrap;
143
+ }
144
+ .chip.active {
145
+ border-color: #7a5af8; color: #4b36c4; box-shadow: inset 0 0 0 1px rgba(122,90,248,0.15);
146
+ }
147
+
148
+ .sheet-footer {
149
+ position: absolute; left:0; right:0; bottom: 22px; display: flex; justify-content: space-around; align-items: center;
150
+ }
151
+ .foot-item { display:flex; flex-direction: column; align-items:center; gap: 8px; color:#5c5c5c; font-size: 30px; }
152
+ .foot-item.active { color:#6f51ff; }
153
+ .foot-icon { width: 60px; height: 60px; display:flex; align-items:center; justify-content:center; border-radius: 18px; }
154
+ .foot-item.active .foot-icon { color:#6f51ff; }
155
+
156
+ /* Android navigation bar gesture pill */
157
+ .nav-pill {
158
+ position: absolute; left: 50%; transform: translateX(-50%);
159
+ bottom: 24px; width: 260px; height: 10px; background: #1a1a1a; border-radius: 8px;
160
+ opacity: .95;
161
+ }
162
+ </style>
163
+ </head>
164
+ <body>
165
+ <div id="render-target">
166
+
167
+ <!-- Status bar -->
168
+ <div class="status-bar">
169
+ <div class="status-left">
170
+ <div style="font-weight:600;">6:07</div>
171
+ <span class="dot"></span>
172
+ <span class="dot" style="opacity:.6;"></span>
173
+ <span class="dot" style="opacity:.35;"></span>
174
+ <span class="dot" style="width:10px;height:10px;opacity:.6;"></span>
175
+ </div>
176
+ <div class="status-right">
177
+ <svg width="44" height="44" viewBox="0 0 24 24" fill="#6b6b6b" xmlns="http://www.w3.org/2000/svg">
178
+ <path d="M3 18h18l-4-6-5 7-4-5-5 4z"/>
179
+ </svg>
180
+ <svg width="44" height="44" viewBox="0 0 24 24" fill="#6b6b6b" xmlns="http://www.w3.org/2000/svg">
181
+ <path d="M20 8V6a2 2 0 0 0-2-2H6C4.9 4 4 4.9 4 6v2h16zM4 10v8c0 1.1.9 2 2 2h12a2 2 0 0 0 2-2v-8H4z"/>
182
+ </svg>
183
+ <svg width="44" height="44" viewBox="0 0 24 24" fill="#6b6b6b" xmlns="http://www.w3.org/2000/svg">
184
+ <path d="M16 4h-1V2h-2v2H9c-1.7 0-3 1.3-3 3v11c0 1.6 1.3 3 3 3h7c1.6 0 3-1.4 3-3V7c0-1.7-1.4-3-3-3z"/>
185
+ </svg>
186
+ </div>
187
+ </div>
188
+
189
+ <!-- Toolbar -->
190
+ <div class="toolbar">
191
+ <div class="left-actions">
192
+ <div class="icon-btn" title="Back">
193
+ <svg viewBox="0 0 24 24" fill="none" stroke="#222" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
194
+ <path d="M15 18l-6-6 6-6"/>
195
+ </svg>
196
+ </div>
197
+ <div class="icon-btn" title="Preview">
198
+ <svg viewBox="0 0 24 24" fill="none" stroke="#222" stroke-width="1.8">
199
+ <circle cx="12" cy="12" r="9" stroke-dasharray="2 3"/>
200
+ <path d="M10 8l6 4-6 4" fill="#222" stroke="none"/>
201
+ </svg>
202
+ </div>
203
+ <div class="icon-btn" title="Layers">
204
+ <svg viewBox="0 0 24 24" fill="none" stroke="#222" stroke-width="2" stroke-linejoin="round">
205
+ <path d="M12 3l8 4-8 4-8-4 8-4z"/>
206
+ <path d="M4 12l8 4 8-4"/>
207
+ <path d="M4 16l8 4 8-4"/>
208
+ </svg>
209
+ </div>
210
+ </div>
211
+ <div class="right-actions">
212
+ <div class="icon-btn" title="Undo">
213
+ <svg viewBox="0 0 24 24" fill="none" stroke="#222" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
214
+ <path d="M9 14H5v-4"/>
215
+ <path d="M20 20a8 8 0 0 0-11-11L5 10"/>
216
+ </svg>
217
+ </div>
218
+ <div class="icon-btn" title="More">
219
+ <svg viewBox="0 0 24 24" fill="#222">
220
+ <circle cx="12" cy="5" r="2"/>
221
+ <circle cx="12" cy="12" r="2"/>
222
+ <circle cx="12" cy="19" r="2"/>
223
+ </svg>
224
+ </div>
225
+ <div class="icon-btn" title="Download">
226
+ <svg viewBox="0 0 24 24" fill="none" stroke="#222" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
227
+ <path d="M12 3v12"/>
228
+ <path d="M7 10l5 5 5-5"/>
229
+ <path d="M4 20h16"/>
230
+ </svg>
231
+ </div>
232
+ <div class="icon-btn" title="Share">
233
+ <svg viewBox="0 0 24 24" fill="none" stroke="#222" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
234
+ <circle cx="18" cy="5" r="3"/>
235
+ <circle cx="6" cy="12" r="3"/>
236
+ <circle cx="18" cy="19" r="3"/>
237
+ <path d="M8.7 13.3l6.6 3.4M15.3 7.3L8.7 10.7"/>
238
+ </svg>
239
+ </div>
240
+ </div>
241
+ </div>
242
+
243
+ <!-- Canvas area -->
244
+ <div class="canvas">
245
+ <div class="band-dark"></div>
246
+ <div class="band-yellow"></div>
247
+
248
+ <div class="video-wrap">
249
+ [IMG: Video Frame]
250
+ <div class="play-overlay">
251
+ <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
252
+ <path d="M8 5l12 7-12 7z" fill="#ffffff"/>
253
+ </svg>
254
+ </div>
255
+
256
+ <!-- resize handles -->
257
+ <div class="handle h-tl"></div>
258
+ <div class="handle h-tr"></div>
259
+ <div class="handle h-bl"></div>
260
+ <div class="handle h-br"></div>
261
+ <div class="handle h-ml"></div>
262
+ <div class="handle h-mr"></div>
263
+ <div class="handle h-tm"></div>
264
+ <div class="handle h-bm"></div>
265
+
266
+ <!-- timeline -->
267
+ <div class="timeline">
268
+ <div class="time">00:00</div>
269
+ <div class="progress"><div class="bar"></div></div>
270
+ <div class="time" style="text-align:right;">00:15</div>
271
+ </div>
272
+ </div>
273
+
274
+ <div class="collage">[IMG: Office Team Collage]</div>
275
+
276
+ <div class="rotate-btn" title="Rotate">
277
+ <svg viewBox="0 0 24 24" fill="none" stroke="#333" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
278
+ <path d="M4 11a8 8 0 1 1 2 5.5"/>
279
+ <path d="M4 15v-4h4"/>
280
+ </svg>
281
+ </div>
282
+ </div>
283
+
284
+ <!-- Bottom sheet -->
285
+ <div class="sheet">
286
+ <div class="sheet-head">
287
+ <div style="display:flex; align-items:center; gap:12px;">
288
+ <svg width="34" height="34" viewBox="0 0 24 24" fill="none" stroke="#111" stroke-width="2">
289
+ <path d="M6 9l-3 3 3 3"/>
290
+ <path d="M3 12h18"/>
291
+ </svg>
292
+ <span style="color:#6f6f6f; font-size:30px;">Expand</span>
293
+ </div>
294
+ <div class="sheet-title">Element Animations</div>
295
+ <div class="sheet-close">
296
+ <svg viewBox="0 0 24 24" fill="none" stroke="#111" stroke-width="2" stroke-linecap="round">
297
+ <path d="M6 6l12 12M18 6l-12 12"/>
298
+ </svg>
299
+ </div>
300
+ </div>
301
+
302
+ <div class="option-row">
303
+ <div class="checkbox"></div>
304
+ <div>Apply same animation to all pages</div>
305
+ </div>
306
+ <div class="option-row">
307
+ <div class="checkbox"></div>
308
+ <div>Animate elements together</div>
309
+ </div>
310
+
311
+ <div class="chip-row">
312
+ <div class="chip">Rotate in from screen</div>
313
+ <div class="chip active">Zoom In</div>
314
+ <div class="chip">Zoom Out</div>
315
+ <div class="chip">Light Speed In</div>
316
+ </div>
317
+
318
+ <div class="sheet-footer">
319
+ <div class="foot-item active">
320
+ <div class="foot-icon">
321
+ <svg viewBox="0 0 24 24" fill="none" stroke="#6f51ff" stroke-width="2">
322
+ <circle cx="12" cy="12" r="8"/>
323
+ <circle cx="9" cy="10" r="1.2" fill="#6f51ff" stroke="none"/>
324
+ <circle cx="15" cy="10" r="1.2" fill="#6f51ff" stroke="none"/>
325
+ <path d="M8 15c2.5 2 5.5 2 8 0"/>
326
+ </svg>
327
+ </div>
328
+ <div>Animations</div>
329
+ </div>
330
+ <div class="foot-item">
331
+ <div class="foot-icon">
332
+ <svg viewBox="0 0 24 24" fill="none" stroke="#5c5c5c" stroke-width="2" stroke-linecap="round">
333
+ <circle cx="12" cy="12" r="8"/>
334
+ <path d="M12 7v5l3 2"/>
335
+ </svg>
336
+ </div>
337
+ <div>Duration</div>
338
+ </div>
339
+ <div class="foot-item">
340
+ <div class="foot-icon" style="border:2px solid #5c5c5c; width:60px; height:60px;">
341
+ <span style="font-size:26px; color:#5c5c5c;">9+</span>
342
+ </div>
343
+ <div>Manage pages</div>
344
+ </div>
345
+ </div>
346
+ </div>
347
+
348
+ <!-- Android navigation gesture pill -->
349
+ <div class="nav-pill"></div>
350
+ </div>
351
+ </body>
352
+ </html>
code/10000/10000_0.html ADDED
@@ -0,0 +1,298 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
5
+ <title>Nike Air Max 97 - Mobile Mock</title>
6
+ <style>
7
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
8
+ #render-target {
9
+ width: 1080px;
10
+ height: 2400px;
11
+ position: relative;
12
+ overflow: hidden;
13
+ background: #ffffff;
14
+ color: #111;
15
+ }
16
+
17
+ /* Status bar */
18
+ .status-bar {
19
+ height: 96px;
20
+ background: #000;
21
+ color: #fff;
22
+ display: flex;
23
+ align-items: center;
24
+ padding: 0 36px;
25
+ font-size: 34px;
26
+ box-sizing: border-box;
27
+ }
28
+ .status-left { display: flex; align-items: center; gap: 18px; }
29
+ .sb-icons { display: inline-flex; gap: 10px; margin-left: 16px; }
30
+ .sb-dot { width: 16px; height: 16px; background: #fff; border-radius: 50%; opacity: 0.9; }
31
+ .status-spacer { flex: 1; }
32
+ .status-right { display: flex; align-items: center; gap: 18px; }
33
+ .sb-rect { width: 28px; height: 18px; border: 2px solid #fff; border-radius: 3px; }
34
+
35
+ /* App bar */
36
+ .app-bar {
37
+ height: 140px;
38
+ display: flex;
39
+ align-items: center;
40
+ padding: 0 36px;
41
+ box-sizing: border-box;
42
+ border-bottom: 1px solid #eee;
43
+ }
44
+ .icon-btn { width: 72px; height: 72px; display: flex; align-items: center; justify-content: center; }
45
+ .title { font-size: 54px; font-weight: 700; margin-left: 8px; }
46
+ .app-right { margin-left: auto; display: flex; align-items: center; gap: 28px; }
47
+
48
+ /* Content */
49
+ .content {
50
+ position: absolute;
51
+ top: 236px; /* status + app bars */
52
+ left: 0;
53
+ right: 0;
54
+ bottom: 120px; /* bottom nav pill spacing */
55
+ overflow-y: auto;
56
+ -webkit-overflow-scrolling: touch;
57
+ padding: 24px 40px 80px 40px;
58
+ box-sizing: border-box;
59
+ }
60
+ .para {
61
+ font-size: 34px;
62
+ line-height: 48px;
63
+ color: #333;
64
+ margin: 8px 0 22px 0;
65
+ }
66
+ .bullets {
67
+ margin: 12px 0 16px 20px;
68
+ padding-left: 22px;
69
+ }
70
+ .bullets li {
71
+ font-size: 34px;
72
+ line-height: 50px;
73
+ margin: 6px 0;
74
+ }
75
+ .link {
76
+ font-size: 36px;
77
+ color: #1e73ff;
78
+ margin: 18px 0 26px 0;
79
+ }
80
+
81
+ /* Controls */
82
+ .control {
83
+ margin: 18px 0;
84
+ }
85
+ .select {
86
+ height: 136px;
87
+ border-radius: 68px;
88
+ border: 2px solid #e5e5e5;
89
+ display: flex;
90
+ align-items: center;
91
+ justify-content: space-between;
92
+ padding: 0 40px;
93
+ font-size: 42px;
94
+ font-weight: 600;
95
+ color: #111;
96
+ box-sizing: border-box;
97
+ background: #fff;
98
+ }
99
+ .select .caret {
100
+ width: 0;
101
+ height: 0;
102
+ border-left: 18px solid transparent;
103
+ border-right: 18px solid transparent;
104
+ border-top: 22px solid #111;
105
+ margin-left: 16px;
106
+ }
107
+
108
+ .btn-primary {
109
+ height: 144px;
110
+ border-radius: 76px;
111
+ background: #0f0f0f;
112
+ color: #fff;
113
+ font-size: 48px;
114
+ font-weight: 700;
115
+ border: none;
116
+ display: flex;
117
+ align-items: center;
118
+ justify-content: center;
119
+ }
120
+
121
+ .btn-outline {
122
+ height: 136px;
123
+ border-radius: 72px;
124
+ border: 2px solid #e5e5e5;
125
+ background: #fff;
126
+ color: #111;
127
+ font-size: 44px;
128
+ font-weight: 700;
129
+ display: flex;
130
+ align-items: center;
131
+ justify-content: center;
132
+ gap: 20px;
133
+ }
134
+ .heart {
135
+ width: 44px; height: 44px;
136
+ position: relative;
137
+ }
138
+ .heart:before, .heart:after {
139
+ content: "";
140
+ position: absolute;
141
+ width: 24px; height: 36px;
142
+ background: #111;
143
+ border-radius: 24px 24px 0 0;
144
+ transform: rotate(-45deg);
145
+ left: 10px; top: 8px;
146
+ }
147
+ .heart:after {
148
+ left: 18px;
149
+ transform: rotate(45deg);
150
+ }
151
+
152
+ .note {
153
+ color: #8b8b8b;
154
+ text-align: center;
155
+ font-size: 34px;
156
+ line-height: 48px;
157
+ margin: 36px 40px;
158
+ }
159
+
160
+ .row {
161
+ display: flex;
162
+ align-items: center;
163
+ justify-content: space-between;
164
+ padding: 34px 8px;
165
+ font-size: 44px;
166
+ font-weight: 700;
167
+ border-top: 1px solid #eee;
168
+ }
169
+ .row .chev {
170
+ width: 24px; height: 24px;
171
+ border-right: 4px solid #888;
172
+ border-top: 4px solid #888;
173
+ transform: rotate(45deg);
174
+ margin-left: 18px;
175
+ }
176
+ .stars { font-size: 46px; color: #111; letter-spacing: 6px; }
177
+ .star-dim { color: #cfcfcf; }
178
+
179
+ /* Bottom navigation pill */
180
+ .nav-pill {
181
+ position: absolute;
182
+ bottom: 24px;
183
+ left: 50%;
184
+ transform: translateX(-50%);
185
+ width: 340px;
186
+ height: 14px;
187
+ background: rgba(0,0,0,0.2);
188
+ border-radius: 10px;
189
+ }
190
+
191
+ /* Simple SVG icons */
192
+ svg { display: block; }
193
+ </style>
194
+ </head>
195
+ <body>
196
+ <div id="render-target">
197
+ <!-- Status bar -->
198
+ <div class="status-bar">
199
+ <div class="status-left">
200
+ <div>10:57</div>
201
+ <div class="sb-icons">
202
+ <div class="sb-dot"></div>
203
+ <div class="sb-dot"></div>
204
+ <div class="sb-dot"></div>
205
+ </div>
206
+ </div>
207
+ <div class="status-spacer"></div>
208
+ <div class="status-right">
209
+ <!-- Wi‑Fi -->
210
+ <svg width="36" height="28" viewBox="0 0 24 18" fill="none">
211
+ <path d="M2 6c5-4 15-4 20 0" stroke="#fff" stroke-width="2" fill="none"/>
212
+ <path d="M5 9c3-2 11-2 14 0" stroke="#fff" stroke-width="2" fill="none"/>
213
+ <path d="M9 13c2-1 4-1 6 0" stroke="#fff" stroke-width="2" fill="none"/>
214
+ <circle cx="12" cy="16" r="1.6" fill="#fff"/>
215
+ </svg>
216
+ <!-- Battery -->
217
+ <div style="display:flex; align-items:center; gap:6px;">
218
+ <div class="sb-rect"></div>
219
+ <div style="width:6px;height:10px;background:#fff;border-radius:2px;"></div>
220
+ </div>
221
+ </div>
222
+ </div>
223
+
224
+ <!-- App bar -->
225
+ <div class="app-bar">
226
+ <div class="icon-btn" aria-label="Back">
227
+ <svg width="40" height="40" viewBox="0 0 24 24">
228
+ <path d="M15 4L7 12l8 8" stroke="#111" stroke-width="3" fill="none" stroke-linecap="round" stroke-linejoin="round"></path>
229
+ </svg>
230
+ </div>
231
+ <div class="title">Nike Air Max 97</div>
232
+ <div class="app-right">
233
+ <div class="icon-btn" aria-label="Search">
234
+ <svg width="42" height="42" viewBox="0 0 24 24">
235
+ <circle cx="10" cy="10" r="7" stroke="#111" stroke-width="2" fill="none"></circle>
236
+ <path d="M15.5 15.5L22 22" stroke="#111" stroke-width="2"></path>
237
+ </svg>
238
+ </div>
239
+ <div class="icon-btn" aria-label="Bag">
240
+ <svg width="42" height="42" viewBox="0 0 24 24">
241
+ <path d="M6 8h12l-1 12H7L6 8z" stroke="#111" stroke-width="2" fill="none"/>
242
+ <path d="M9 8V6a3 3 0 016 0v2" stroke="#111" stroke-width="2" fill="none"/>
243
+ </svg>
244
+ </div>
245
+ </div>
246
+ </div>
247
+
248
+ <!-- Content -->
249
+ <div class="content">
250
+ <div class="para">
251
+ made for running, the 97 is now a pair of kicks you can rock anywhere, any day of the week.
252
+ </div>
253
+
254
+ <ul class="bullets">
255
+ <li>Shown: Metallic Gold/Black/White/Varsity Red</li>
256
+ <li>Style: 918890-700</li>
257
+ <li>Country/Region of Origin: Vietnam</li>
258
+ </ul>
259
+
260
+ <div class="link">View Product Details</div>
261
+
262
+ <div class="control select">
263
+ <div>Select Size</div>
264
+ <div class="caret"></div>
265
+ </div>
266
+
267
+ <div class="control btn-primary">Add to Bag</div>
268
+
269
+ <div class="control btn-outline">
270
+ <span>Favorited</span>
271
+ <span class="heart" aria-hidden="true"></span>
272
+ </div>
273
+
274
+ <div class="note">
275
+ This product is excluded from all promotions and discounts.
276
+ </div>
277
+
278
+ <div class="row">
279
+ <div>Size &amp; Fit</div>
280
+ <div class="chev"></div>
281
+ </div>
282
+
283
+ <div class="row" style="border-bottom:1px solid #eee;">
284
+ <div>Reviews (2)</div>
285
+ <div style="display:flex; align-items:center; gap:26px;">
286
+ <div class="stars">
287
+ <span>★</span><span>★</span><span>★</span><span>★</span><span class="star-dim">★</span>
288
+ </div>
289
+ <div class="chev"></div>
290
+ </div>
291
+ </div>
292
+ </div>
293
+
294
+ <!-- Bottom pill -->
295
+ <div class="nav-pill"></div>
296
+ </div>
297
+ </body>
298
+ </html>
code/10000/10000_1.html ADDED
@@ -0,0 +1,333 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Shop UI Mock</title>
5
+ <style>
6
+ body {
7
+ margin: 0;
8
+ padding: 0;
9
+ background: transparent;
10
+ font-family: "Helvetica Neue", Arial, sans-serif;
11
+ }
12
+ #render-target {
13
+ width: 1080px;
14
+ height: 2400px;
15
+ position: relative;
16
+ overflow: hidden;
17
+ background: #ffffff;
18
+ }
19
+
20
+ /* Status bar */
21
+ .status-bar {
22
+ height: 110px;
23
+ padding: 0 40px;
24
+ display: flex;
25
+ align-items: center;
26
+ justify-content: space-between;
27
+ color: #000;
28
+ font-size: 42px;
29
+ letter-spacing: 1px;
30
+ }
31
+ .status-icons {
32
+ display: flex;
33
+ align-items: center;
34
+ gap: 28px;
35
+ }
36
+ .status-icons svg {
37
+ width: 42px;
38
+ height: 42px;
39
+ }
40
+
41
+ /* Header */
42
+ .header {
43
+ position: relative;
44
+ padding: 20px 40px 10px 40px;
45
+ }
46
+ .title {
47
+ font-size: 76px;
48
+ font-weight: 800;
49
+ letter-spacing: 1px;
50
+ }
51
+ .profile-btn {
52
+ position: absolute;
53
+ right: 40px;
54
+ top: 10px;
55
+ width: 90px;
56
+ height: 90px;
57
+ border-radius: 46px;
58
+ display: flex;
59
+ align-items: center;
60
+ justify-content: center;
61
+ }
62
+
63
+ /* Search */
64
+ .search-row {
65
+ margin: 30px 40px 10px 40px;
66
+ height: 110px;
67
+ border: 2px solid #E0E0E0;
68
+ border-radius: 16px;
69
+ display: flex;
70
+ align-items: center;
71
+ padding: 0 24px;
72
+ gap: 20px;
73
+ }
74
+ .search-row svg {
75
+ width: 52px;
76
+ height: 52px;
77
+ stroke: #222;
78
+ }
79
+ .search-placeholder {
80
+ color: #B0B0B0;
81
+ font-size: 44px;
82
+ }
83
+
84
+ /* Tabs */
85
+ .tabs {
86
+ display: flex;
87
+ gap: 60px;
88
+ padding: 22px 40px 0 40px;
89
+ font-size: 40px;
90
+ font-weight: 700;
91
+ letter-spacing: 3px;
92
+ }
93
+ .tab {
94
+ padding-bottom: 20px;
95
+ color: #111;
96
+ }
97
+ .tab.active {
98
+ border-bottom: 8px solid #000;
99
+ }
100
+
101
+ /* Banner */
102
+ .banner {
103
+ margin-top: 26px;
104
+ background: #000;
105
+ color: #fff;
106
+ padding: 40px;
107
+ }
108
+ .banner h2 {
109
+ margin: 0 0 16px 0;
110
+ font-size: 46px;
111
+ font-weight: 800;
112
+ letter-spacing: 1px;
113
+ }
114
+ .banner p {
115
+ margin: 0;
116
+ font-size: 36px;
117
+ line-height: 1.4;
118
+ max-width: 900px;
119
+ color: #f0f0f0;
120
+ }
121
+ .login-btn {
122
+ margin-top: 28px;
123
+ display: inline-block;
124
+ border: 3px solid #fff;
125
+ border-radius: 4px;
126
+ padding: 18px 34px;
127
+ font-size: 40px;
128
+ font-weight: 800;
129
+ letter-spacing: 4px;
130
+ }
131
+
132
+ /* Section */
133
+ .section {
134
+ padding: 60px 40px 20px 40px;
135
+ }
136
+ .section .headline {
137
+ font-size: 40px;
138
+ font-weight: 800;
139
+ letter-spacing: 6px;
140
+ color: #111;
141
+ }
142
+ .section .sub {
143
+ margin-top: 22px;
144
+ font-size: 36px;
145
+ color: #666;
146
+ }
147
+
148
+ /* List links */
149
+ .list {
150
+ margin-top: 38px;
151
+ border-top: 1px solid #eee;
152
+ }
153
+ .list-item {
154
+ padding: 42px 40px;
155
+ font-size: 48px;
156
+ font-weight: 800;
157
+ letter-spacing: 2px;
158
+ border-bottom: 1px solid #eee;
159
+ background: #fff;
160
+ }
161
+ .only-exclusive {
162
+ display: flex;
163
+ align-items: center;
164
+ gap: 18px;
165
+ }
166
+ .exclusive-tag {
167
+ font-size: 34px;
168
+ font-weight: 900;
169
+ letter-spacing: 3px;
170
+ background: #111;
171
+ color: #fff;
172
+ padding: 8px 20px;
173
+ border-radius: 8px;
174
+ }
175
+
176
+ /* Bottom nav */
177
+ .bottom-nav {
178
+ position: absolute;
179
+ bottom: 0;
180
+ left: 0;
181
+ width: 1080px;
182
+ height: 160px;
183
+ background: #fff;
184
+ border-top: 1px solid #ddd;
185
+ display: flex;
186
+ align-items: center;
187
+ justify-content: space-around;
188
+ }
189
+ .nav-item {
190
+ width: 140px;
191
+ height: 120px;
192
+ display: flex;
193
+ flex-direction: column;
194
+ align-items: center;
195
+ justify-content: center;
196
+ color: #333;
197
+ }
198
+ .nav-item svg {
199
+ width: 70px;
200
+ height: 70px;
201
+ stroke: #111;
202
+ }
203
+
204
+ /* small helper */
205
+ .spacer {
206
+ height: 360px;
207
+ }
208
+ </style>
209
+ </head>
210
+ <body>
211
+ <div id="render-target">
212
+
213
+ <!-- Status bar -->
214
+ <div class="status-bar">
215
+ <div>10:58</div>
216
+ <div class="status-icons">
217
+ <!-- Signal icon -->
218
+ <svg viewBox="0 0 24 24">
219
+ <path d="M2 20h2v2H2zm4-4h2v6H6zm4-4h2v10h-2zm4-4h2v14h-2zm4-6h2v20h-2" fill="#666"></path>
220
+ </svg>
221
+ <!-- Wi-Fi icon -->
222
+ <svg viewBox="0 0 24 24">
223
+ <path d="M2 8c6-6 14-6 20 0" stroke="#666" stroke-width="2" fill="none"/>
224
+ <path d="M5 11c4-4 10-4 14 0" stroke="#666" stroke-width="2" fill="none"/>
225
+ <path d="M8 14c2-2 6-2 8 0" stroke="#666" stroke-width="2" fill="none"/>
226
+ <circle cx="12" cy="18" r="2" fill="#666"/>
227
+ </svg>
228
+ <!-- Battery icon -->
229
+ <svg viewBox="0 0 26 24">
230
+ <rect x="1" y="5" width="20" height="14" rx="2" ry="2" fill="none" stroke="#666" stroke-width="2"/>
231
+ <rect x="4" y="8" width="14" height="8" fill="#666"/>
232
+ <rect x="22" y="9" width="3" height="6" fill="#666"/>
233
+ </svg>
234
+ </div>
235
+ </div>
236
+
237
+ <!-- Header and profile -->
238
+ <div class="header">
239
+ <div class="title">SHOP</div>
240
+ <div class="profile-btn">
241
+ <!-- Profile icon -->
242
+ <svg viewBox="0 0 24 24">
243
+ <circle cx="12" cy="8" r="4" fill="none" stroke="#000" stroke-width="2"/>
244
+ <path d="M4 22c0-4 4-7 8-7s8 3 8 7" fill="none" stroke="#000" stroke-width="2"/>
245
+ </svg>
246
+ </div>
247
+ </div>
248
+
249
+ <!-- Search -->
250
+ <div class="search-row">
251
+ <svg viewBox="0 0 24 24" fill="none">
252
+ <circle cx="11" cy="11" r="7" stroke="#222" stroke-width="2"/>
253
+ <path d="M16 16l6 6" stroke="#222" stroke-width="2"/>
254
+ </svg>
255
+ <div class="search-placeholder">Find products...</div>
256
+ </div>
257
+
258
+ <!-- Tabs -->
259
+ <div class="tabs">
260
+ <div class="tab active">MEN</div>
261
+ <div class="tab">WOMEN</div>
262
+ <div class="tab">KIDS</div>
263
+ </div>
264
+
265
+ <!-- Banner -->
266
+ <div class="banner">
267
+ <h2>Your personal shop</h2>
268
+ <p>Act fast! Explore a selection of products available for members only. Log in and shop your favorites.</p>
269
+ <div class="login-btn">LOGIN</div>
270
+ </div>
271
+
272
+ <!-- Spacer to mimic white area -->
273
+ <div class="spacer"></div>
274
+
275
+ <!-- Section -->
276
+ <div class="section">
277
+ <div class="headline">CELEBRATE WITH SAVINGS</div>
278
+ <div class="sub">Enjoy 30% off thousands of 3-Stripes styles.</div>
279
+
280
+ <div class="list">
281
+ <div class="list-item">SHOES</div>
282
+ <div class="list-item">CLOTHING</div>
283
+ <div class="list-item">ACCESSORIES</div>
284
+ <div class="list-item">BACK TO SCHOOL</div>
285
+ <div class="list-item">NEW &amp; TRENDING</div>
286
+ <div class="list-item only-exclusive">
287
+ <span>ONLY AT ADIDAS</span>
288
+ <span class="exclusive-tag">EXCLUSIVE</span>
289
+ </div>
290
+ </div>
291
+ </div>
292
+
293
+ <!-- Bottom Navigation -->
294
+ <div class="bottom-nav">
295
+ <div class="nav-item">
296
+ <!-- Flame icon -->
297
+ <svg viewBox="0 0 24 24" fill="none">
298
+ <path d="M12 2c2 3 1 5 3 6s3 3 3 6a6 6 0 1 1-12 0c0-3 2-5 4-6s0-3 2-6z" stroke="#111" stroke-width="2"/>
299
+ </svg>
300
+ </div>
301
+ <div class="nav-item">
302
+ <!-- Search icon -->
303
+ <svg viewBox="0 0 24 24" fill="none">
304
+ <circle cx="10" cy="10" r="7" stroke="#111" stroke-width="2"/>
305
+ <path d="M15 15l7 7" stroke="#111" stroke-width="2"/>
306
+ </svg>
307
+ </div>
308
+ <div class="nav-item">
309
+ <!-- Heart icon -->
310
+ <svg viewBox="0 0 24 24" fill="none">
311
+ <path d="M12 21s-7-4.7-9-8.3C1 9 3.5 6 6.8 6c2 0 3.5 1.2 5.2 3 1.7-1.8 3.2-3 5.2-3C20.5 6 23 9 21 12.7 19 16.3 12 21 12 21z" stroke="#111" stroke-width="2" fill="none"/>
312
+ </svg>
313
+ </div>
314
+ <div class="nav-item">
315
+ <!-- Bag icon -->
316
+ <svg viewBox="0 0 24 24" fill="none">
317
+ <rect x="3" y="7" width="18" height="14" rx="2" stroke="#111" stroke-width="2"/>
318
+ <path d="M8 7a4 4 0 0 1 8 0" stroke="#111" stroke-width="2"/>
319
+ </svg>
320
+ </div>
321
+ <div class="nav-item">
322
+ <!-- Target icon -->
323
+ <svg viewBox="0 0 24 24" fill="none">
324
+ <circle cx="12" cy="12" r="9" stroke="#111" stroke-width="2"/>
325
+ <circle cx="12" cy="12" r="5" stroke="#111" stroke-width="2"/>
326
+ <circle cx="12" cy="12" r="2" fill="#111"/>
327
+ </svg>
328
+ </div>
329
+ </div>
330
+
331
+ </div>
332
+ </body>
333
+ </html>
code/10000/10000_2.html ADDED
@@ -0,0 +1,316 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Mobile UI - Search with Keyboard</title>
5
+ <style>
6
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
7
+ #render-target {
8
+ width: 1080px;
9
+ height: 2400px;
10
+ position: relative;
11
+ overflow: hidden;
12
+ background: #ffffff;
13
+ }
14
+
15
+ /* Status bar */
16
+ .status-bar {
17
+ position: absolute;
18
+ top: 0;
19
+ left: 0;
20
+ width: 1080px;
21
+ height: 120px;
22
+ padding: 0 36px;
23
+ display: flex;
24
+ align-items: center;
25
+ justify-content: space-between;
26
+ color: #222;
27
+ font-weight: 600;
28
+ font-size: 44px;
29
+ }
30
+ .status-right {
31
+ display: flex;
32
+ align-items: center;
33
+ gap: 28px;
34
+ }
35
+ .icon-small { width: 40px; height: 40px; }
36
+ .wifi-icon, .battery-icon {
37
+ width: 54px; height: 34px;
38
+ }
39
+
40
+ /* Top search header */
41
+ .search-header {
42
+ position: absolute;
43
+ top: 120px;
44
+ left: 0;
45
+ width: 1080px;
46
+ height: 150px;
47
+ display: flex;
48
+ align-items: center;
49
+ padding: 0 36px;
50
+ border-bottom: 2px solid #efefef;
51
+ box-sizing: border-box;
52
+ }
53
+ .back-btn, .camera-btn {
54
+ width: 88px;
55
+ height: 88px;
56
+ display: flex;
57
+ align-items: center;
58
+ justify-content: center;
59
+ }
60
+ .search-field {
61
+ flex: 1;
62
+ color: #9e9e9e;
63
+ font-size: 46px;
64
+ margin: 0 18px;
65
+ }
66
+
67
+ /* Content area (empty white) */
68
+ .content-area {
69
+ position: absolute;
70
+ top: 270px;
71
+ left: 0;
72
+ width: 1080px;
73
+ height: 1270px;
74
+ background: #ffffff;
75
+ }
76
+
77
+ /* Keyboard */
78
+ .keyboard {
79
+ position: absolute;
80
+ bottom: 0;
81
+ left: 0;
82
+ width: 1080px;
83
+ height: 860px;
84
+ background: #f3f3f5;
85
+ border-top: 1px solid #e5e5e7;
86
+ box-sizing: border-box;
87
+ }
88
+ .kbd-tools {
89
+ height: 110px;
90
+ display: flex;
91
+ align-items: center;
92
+ justify-content: space-between;
93
+ padding: 0 36px;
94
+ color: #3a3a3a;
95
+ font-weight: 700;
96
+ }
97
+ .tool-btn {
98
+ height: 84px;
99
+ min-width: 100px;
100
+ padding: 0 22px;
101
+ border-radius: 26px;
102
+ background: #ececec;
103
+ border: 1px solid #d9d9d9;
104
+ display: flex;
105
+ align-items: center;
106
+ justify-content: center;
107
+ font-size: 40px;
108
+ }
109
+ .tool-round {
110
+ width: 84px; height: 84px;
111
+ border-radius: 28px;
112
+ background: #ececec;
113
+ border: 1px solid #d9d9d9;
114
+ display: flex; align-items: center; justify-content: center;
115
+ }
116
+
117
+ .row {
118
+ display: flex;
119
+ gap: 16px;
120
+ padding: 0 36px;
121
+ margin-top: 22px;
122
+ }
123
+ .key {
124
+ flex: 1;
125
+ height: 120px;
126
+ background: #ffffff;
127
+ border: 1px solid #e2e2e2;
128
+ border-radius: 32px;
129
+ display: flex;
130
+ align-items: center;
131
+ justify-content: center;
132
+ color: #1c1c1c;
133
+ font-size: 56px;
134
+ box-shadow: inset 0 1px 0 #ededed;
135
+ }
136
+ .key.small { flex: 0 0 90px; }
137
+ .key.wide { flex: 2.5; }
138
+ .key.medium { flex: 1.3; }
139
+
140
+ /* Bottom utility row */
141
+ .bottom-row {
142
+ display: flex;
143
+ align-items: center;
144
+ gap: 18px;
145
+ padding: 24px 36px 28px 36px;
146
+ }
147
+ .key-circle {
148
+ width: 120px; height: 120px;
149
+ border-radius: 36px;
150
+ background: #dde2e6;
151
+ border: 1px solid #c9cdd1;
152
+ display: flex; align-items: center; justify-content: center;
153
+ font-size: 54px; color: #2a2a2a;
154
+ }
155
+ .space {
156
+ flex: 1;
157
+ height: 120px;
158
+ background: #ffffff;
159
+ border: 1px solid #e2e2e2;
160
+ border-radius: 32px;
161
+ }
162
+
163
+ /* Home indicator (very bottom) */
164
+ .home-indicator {
165
+ position: absolute;
166
+ bottom: 18px;
167
+ left: 50%;
168
+ transform: translateX(-50%);
169
+ width: 520px;
170
+ height: 12px;
171
+ background: #bdbdbd;
172
+ border-radius: 8px;
173
+ opacity: 0.6;
174
+ }
175
+ </style>
176
+ </head>
177
+ <body>
178
+ <div id="render-target">
179
+
180
+ <!-- Status Bar -->
181
+ <div class="status-bar">
182
+ <div class="status-left">10:59</div>
183
+ <div class="status-right">
184
+ <!-- simple icons -->
185
+ <svg class="icon-small" viewBox="0 0 24 24">
186
+ <circle cx="12" cy="12" r="10" fill="#7b7b7b"></circle>
187
+ </svg>
188
+ <svg class="icon-small" viewBox="0 0 24 24">
189
+ <polygon points="4,20 12,4 20,20" fill="#7b7b7b"></polygon>
190
+ </svg>
191
+ <svg class="icon-small" viewBox="0 0 24 24">
192
+ <rect x="5" y="5" width="14" height="14" fill="#7b7b7b"></rect>
193
+ </svg>
194
+ <svg class="wifi-icon" viewBox="0 0 32 20">
195
+ <path d="M2 6c8-8 20-8 28 0" stroke="#7b7b7b" stroke-width="3" fill="none"/>
196
+ <path d="M6 10c6-6 14-6 20 0" stroke="#7b7b7b" stroke-width="3" fill="none"/>
197
+ <circle cx="16" cy="16" r="3" fill="#7b7b7b"/>
198
+ </svg>
199
+ <svg class="battery-icon" viewBox="0 0 40 20">
200
+ <rect x="1" y="3" width="34" height="14" rx="3" ry="3" stroke="#7b7b7b" fill="none" stroke-width="2"/>
201
+ <rect x="4" y="6" width="28" height="8" fill="#7b7b7b"/>
202
+ <rect x="35" y="7" width="4" height="6" fill="#7b7b7b"/>
203
+ </svg>
204
+ </div>
205
+ </div>
206
+
207
+ <!-- Search Header -->
208
+ <div class="search-header">
209
+ <div class="back-btn">
210
+ <svg width="52" height="52" viewBox="0 0 24 24">
211
+ <path d="M15 5L6 12l9 7" stroke="#222" stroke-width="3" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
212
+ </svg>
213
+ </div>
214
+ <div class="search-field">Find products...</div>
215
+ <div class="camera-btn">
216
+ <svg width="64" height="64" viewBox="0 0 24 24">
217
+ <rect x="3" y="7" width="18" height="12" rx="2" ry="2" stroke="#222" stroke-width="2" fill="none"/>
218
+ <circle cx="12" cy="13" r="4" stroke="#222" stroke-width="2" fill="none"/>
219
+ <rect x="7" y="4" width="6" height="3" fill="#222"/>
220
+ </svg>
221
+ </div>
222
+ </div>
223
+
224
+ <!-- Content area (empty white space like screenshot) -->
225
+ <div class="content-area"></div>
226
+
227
+ <!-- Keyboard -->
228
+ <div class="keyboard">
229
+ <div class="kbd-tools">
230
+ <div class="tool-round">
231
+ <svg width="40" height="40" viewBox="0 0 24 24">
232
+ <rect x="4" y="4" width="16" height="16" fill="#8c8f93"/>
233
+ <path d="M8 8h8v8H8z" fill="#bfc3c7"/>
234
+ </svg>
235
+ </div>
236
+ <div class="tool-btn">🙂</div>
237
+ <div class="tool-btn">GIF</div>
238
+ <div class="tool-round">
239
+ <svg width="40" height="40" viewBox="0 0 24 24">
240
+ <circle cx="12" cy="12" r="8" stroke="#8c8f93" stroke-width="2" fill="none"/>
241
+ <path d="M12 8v4l3 3" stroke="#8c8f93" stroke-width="2" fill="none" stroke-linecap="round"/>
242
+ </svg>
243
+ </div>
244
+ <div class="tool-round">
245
+ <svg width="42" height="42" viewBox="0 0 24 24">
246
+ <rect x="4" y="4" width="16" height="16" rx="2" ry="2" stroke="#8c8f93" fill="none"/>
247
+ <text x="7" y="16" font-size="10" fill="#8c8f93">G</text>
248
+ </svg>
249
+ </div>
250
+ <div class="tool-round">
251
+ <svg width="40" height="40" viewBox="0 0 24 24">
252
+ <circle cx="12" cy="12" r="8" stroke="#8c8f93" stroke-width="2" fill="none"/>
253
+ <circle cx="10" cy="10" r="2" fill="#8c8f93"/>
254
+ <circle cx="14" cy="10" r="2" fill="#8c8f93"/>
255
+ <circle cx="12" cy="14" r="2" fill="#8c8f93"/>
256
+ </svg>
257
+ </div>
258
+ <div class="tool-round">
259
+ <svg width="40" height="40" viewBox="0 0 24 24">
260
+ <path d="M12 17c3 0 5-2 5-5s-2-5-5-5-5 2-5 5 2 5 5 5z" stroke="#8c8f93" fill="none" stroke-width="2"/>
261
+ <path d="M19 19l-3-3" stroke="#8c8f93" stroke-width="2" stroke-linecap="round"/>
262
+ </svg>
263
+ </div>
264
+ </div>
265
+
266
+ <div class="row">
267
+ <div class="key">q</div>
268
+ <div class="key">w</div>
269
+ <div class="key">e</div>
270
+ <div class="key">r</div>
271
+ <div class="key">t</div>
272
+ <div class="key">y</div>
273
+ <div class="key">u</div>
274
+ <div class="key">i</div>
275
+ <div class="key">o</div>
276
+ <div class="key">p</div>
277
+ </div>
278
+
279
+ <div class="row">
280
+ <div class="key">a</div>
281
+ <div class="key">s</div>
282
+ <div class="key">d</div>
283
+ <div class="key">f</div>
284
+ <div class="key">g</div>
285
+ <div class="key">h</div>
286
+ <div class="key">j</div>
287
+ <div class="key">k</div>
288
+ <div class="key">l</div>
289
+ </div>
290
+
291
+ <div class="row">
292
+ <div class="key medium">⌂</div>
293
+ <div class="key">z</div>
294
+ <div class="key">x</div>
295
+ <div class="key">c</div>
296
+ <div class="key">v</div>
297
+ <div class="key">b</div>
298
+ <div class="key">n</div>
299
+ <div class="key">m</div>
300
+ <div class="key medium">⌫</div>
301
+ </div>
302
+
303
+ <div class="bottom-row">
304
+ <div class="key-circle">?123</div>
305
+ <div class="key-circle">,</div>
306
+ <div class="key-circle">🙂</div>
307
+ <div class="space"></div>
308
+ <div class="key-circle">.</div>
309
+ <div class="key-circle">🔍</div>
310
+ </div>
311
+
312
+ <div class="home-indicator"></div>
313
+ </div>
314
+ </div>
315
+ </body>
316
+ </html>
code/10000/10000_3.html ADDED
@@ -0,0 +1,231 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Superstar Shoes - Mock UI</title>
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <style>
7
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; color:#111; }
8
+ #render-target {
9
+ width: 1080px; height: 2400px; position: relative; overflow: hidden;
10
+ background: #ffffff;
11
+ }
12
+ /* Status bar */
13
+ .statusbar {
14
+ height: 110px; padding: 0 34px; display:flex; align-items:center; justify-content: space-between;
15
+ background:#ffffff;
16
+ }
17
+ .status-left { font-size: 36px; letter-spacing: 1px; }
18
+ .status-right { display:flex; gap:24px; align-items:center; }
19
+ .dot { width: 18px; height: 18px; background:#6b6b6b; border-radius:50%; opacity:.8; }
20
+ /* Search header */
21
+ .search-header {
22
+ height: 140px; padding: 0 26px 0 18px; border-bottom:1px solid #ececec; display:flex; align-items:center; gap:22px;
23
+ background:#fff;
24
+ }
25
+ .icon-btn { width: 70px; height: 70px; border-radius: 35px; display:flex; align-items:center; justify-content:center; }
26
+ .search-input {
27
+ flex: 1; font-size: 46px; color:#111; outline:none; border:none; background:transparent;
28
+ }
29
+ .header-icons { display:flex; align-items:center; gap:30px; }
30
+ /* Section title */
31
+ .section-title {
32
+ padding: 30px 34px 18px; font-size: 34px; letter-spacing: 3px; color:#222; font-weight: 700;
33
+ }
34
+
35
+ /* Products row */
36
+ .products {
37
+ padding: 0 26px; display:flex; gap:26px;
38
+ }
39
+ .card {
40
+ background:#f6f6f6; flex:1; border:1px solid #e2e2e2; border-radius:10px; overflow:hidden; position:relative;
41
+ }
42
+ .card-body { padding: 18px 20px 24px; background:#f7f7f7; }
43
+ .product-img {
44
+ height: 350px; background:#E0E0E0; border-bottom:1px solid #BDBDBD;
45
+ display:flex; align-items:center; justify-content:center; color:#757575; font-size:28px;
46
+ }
47
+ .price { font-size: 36px; margin: 12px 0 6px; font-weight:700; }
48
+ .p-title { font-size: 40px; line-height: 1.2; font-weight: 800; }
49
+ .p-sub { font-size: 28px; color:#666; margin-top: 10px; }
50
+ .badge-new {
51
+ position:absolute; left:20px; top:300px;
52
+ background:#ffffff; border:1px solid #dcdcdc; font-weight:800; letter-spacing:2px;
53
+ padding:8px 16px; font-size:26px; border-radius:4px;
54
+ }
55
+ .badge-ar {
56
+ position:absolute; left:26px; top:320px; transform: translateY(40px);
57
+ background:#111; color:#fff; font-weight:800; padding:6px 14px; font-size:24px; border-radius:4px;
58
+ }
59
+ .heart {
60
+ position:absolute; right:20px; top:18px; width:58px; height:58px; display:flex; align-items:center; justify-content:center;
61
+ background:rgba(255,255,255,0.9); border-radius:10px; border:1px solid #e5e5e5;
62
+ }
63
+
64
+ /* Suggestions */
65
+ .suggestions-title {
66
+ padding: 28px 34px 8px; font-size:34px; letter-spacing:2px; font-weight:800;
67
+ }
68
+ .suggestion-item {
69
+ padding: 20px 34px; font-size:36px; color:#222;
70
+ }
71
+ .muted { color:#777; }
72
+
73
+ /* Keyboard mock */
74
+ .keyboard {
75
+ position:absolute; left:0; right:0; bottom:0; height:1080px; background:#f1f1f3; border-top:1px solid #ddd;
76
+ box-shadow: 0 -2px 6px rgba(0,0,0,0.05);
77
+ }
78
+ .kb-suggest {
79
+ height:120px; padding: 16px 26px; display:flex; align-items:center; gap:28px; background:#f8f8f9; border-bottom:1px solid #e5e5e5;
80
+ }
81
+ .chip {
82
+ padding: 14px 24px; background:#fff; border:1px solid #dcdcdc; border-radius:40px; font-size:34px;
83
+ }
84
+ .kb-rows { padding: 20px; }
85
+ .row { display:flex; justify-content:space-between; margin: 18px 8px; }
86
+ .key {
87
+ width: 92px; height: 120px; background:#ffffff; border:1px solid #d9d9d9; border-radius:18px;
88
+ display:flex; align-items:center; justify-content:center; font-size:44px; color:#222;
89
+ }
90
+ .key.wide { width: 136px; }
91
+ .key.extra-wide { width: 520px; }
92
+ .key.circle { border-radius:26px; }
93
+ .bottom-bar { display:flex; justify-content:space-between; padding: 16px 24px; }
94
+ .tiny-note { position:absolute; left:34px; top:760px; color:#bbb; font-size:46px; opacity:0; }
95
+
96
+ /* Small helpers */
97
+ .sr { font-size:0; }
98
+ </style>
99
+ </head>
100
+ <body>
101
+ <div id="render-target">
102
+
103
+ <!-- Status Bar -->
104
+ <div class="statusbar">
105
+ <div class="status-left">11:00</div>
106
+ <div class="status-right">
107
+ <div class="dot" title="signal"></div>
108
+ <div class="dot" title="wifi"></div>
109
+ <div class="dot" title="battery"></div>
110
+ <div class="dot" title="notif"></div>
111
+ </div>
112
+ </div>
113
+
114
+ <!-- Search Header -->
115
+ <div class="search-header">
116
+ <div class="icon-btn">
117
+ <svg width="46" height="46" viewBox="0 0 32 32">
118
+ <path d="M20 6 L8 16 L20 26" stroke="#111" stroke-width="3.5" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
119
+ </svg>
120
+ </div>
121
+ <input class="search-input" value="Superstar Shoes" />
122
+ <div class="header-icons">
123
+ <svg width="54" height="54" viewBox="0 0 32 32">
124
+ <path d="M8 8 L24 24 M24 8 L8 24" stroke="#111" stroke-width="3.2" stroke-linecap="round"/>
125
+ </svg>
126
+ <svg width="56" height="56" viewBox="0 0 36 36">
127
+ <rect x="6" y="10" width="24" height="16" rx="3" ry="3" stroke="#111" fill="none" stroke-width="2"/>
128
+ <circle cx="18" cy="18" r="4" stroke="#111" fill="none" stroke-width="2"/>
129
+ <rect x="14" y="6" width="8" height="4" rx="1" fill="#111"/>
130
+ </svg>
131
+ </div>
132
+ </div>
133
+
134
+ <!-- PRODUCTS -->
135
+ <div class="section-title">PRODUCTS</div>
136
+
137
+ <div class="products">
138
+
139
+ <!-- Card 1 -->
140
+ <div class="card">
141
+ <div class="product-img">[IMG: White Adidas Superstar Shoe]</div>
142
+ <div class="card-body">
143
+ <div class="p-title">Superstar Shoes</div>
144
+ </div>
145
+ </div>
146
+
147
+ <!-- Card 2 -->
148
+ <div class="card">
149
+ <div class="product-img">[IMG: Black/White Adidas Superstar XLG]</div>
150
+ <div class="heart">
151
+ <svg width="36" height="36" viewBox="0 0 32 32">
152
+ <path d="M16 27s-9-6-9-12a5 5 0 0 1 9-3 5 5 0 0 1 9 3c0 6-9 12-9 12z" fill="none" stroke="#111" stroke-width="2.2"/>
153
+ </svg>
154
+ </div>
155
+ <div class="badge-new">NEW</div>
156
+ <div class="badge-ar">AR</div>
157
+ <div class="card-body">
158
+ <div class="price">$125.00</div>
159
+ <div class="p-title">Superstar Shoes</div>
160
+ <div class="p-sub">Women's Originals +2</div>
161
+ </div>
162
+ </div>
163
+
164
+ <!-- Card 3 -->
165
+ <div class="card">
166
+ <div class="product-img">[IMG: Grey/Blue Adidas Superstar]</div>
167
+ <div class="badge-new">NEW</div>
168
+ <div class="card-body">
169
+ <div class="price">$110.00</div>
170
+ <div class="p-title">Superstar Shoes</div>
171
+ <div class="p-sub">Men's Originals</div>
172
+ </div>
173
+ </div>
174
+ </div>
175
+
176
+ <!-- Suggestions -->
177
+ <div class="suggestions-title">SUGGESTIONS</div>
178
+ <div class="suggestion-item">mens superstar shoes <span class="muted">[59]</span></div>
179
+ <div class="suggestion-item">women superstar shoes <span class="muted">[42]</span></div>
180
+
181
+ <!-- Keyboard (overlay) -->
182
+ <div class="keyboard">
183
+ <div class="kb-suggest">
184
+ <div class="chip">Shoes</div>
185
+ <div class="chip">Shows</div>
186
+ <div class="chip">👟</div>
187
+ <div style="margin-left:auto; display:flex; align-items:center; gap:30px;">
188
+ <svg width="58" height="58" viewBox="0 0 36 36">
189
+ <circle cx="16" cy="16" r="10" stroke="#111" stroke-width="2" fill="none"/>
190
+ <line x1="24" y1="24" x2="34" y2="34" stroke="#111" stroke-width="3" stroke-linecap="round"/>
191
+ </svg>
192
+ <svg width="46" height="46" viewBox="0 0 32 32">
193
+ <path d="M12 6 v10 a6 6 0 0 0 12 0 v-10" stroke="#111" stroke-width="2.6" fill="none"/>
194
+ <path d="M8 18 a8 8 0 0 0 16 0" stroke="#111" stroke-width="2" fill="none"/>
195
+ </svg>
196
+ </div>
197
+ </div>
198
+
199
+ <div class="kb-rows">
200
+ <div class="row">
201
+ <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>
202
+ <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>
203
+ </div>
204
+ <div class="row">
205
+ <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>
206
+ <div class="key">h</div><div class="key">j</div><div class="key">k</div><div class="key">l</div>
207
+ </div>
208
+ <div class="row">
209
+ <div class="key wide">⇧</div>
210
+ <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>
211
+ <div class="key">n</div><div class="key">m</div>
212
+ <div class="key wide">⌫</div>
213
+ </div>
214
+ <div class="row">
215
+ <div class="key">?123</div>
216
+ <div class="key">,</div>
217
+ <div class="key extra-wide"></div>
218
+ <div class="key">.</div>
219
+ <div class="key wide">
220
+ <svg width="34" height="34" viewBox="0 0 36 36">
221
+ <circle cx="16" cy="16" r="10" stroke="#111" stroke-width="2" fill="none"/>
222
+ <line x1="24" y1="24" x2="34" y2="34" stroke="#111" stroke-width="3" stroke-linecap="round"/>
223
+ </svg>
224
+ </div>
225
+ </div>
226
+ </div>
227
+ </div>
228
+
229
+ </div>
230
+ </body>
231
+ </html>
code/10000/10000_4.html ADDED
@@ -0,0 +1,259 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Superstar Shoes - Loading</title>
5
+ <style>
6
+ body {
7
+ margin: 0;
8
+ padding: 0;
9
+ background: transparent;
10
+ font-family: Arial, Helvetica, sans-serif;
11
+ color: #111;
12
+ }
13
+ #render-target {
14
+ width: 1080px;
15
+ height: 2400px;
16
+ position: relative;
17
+ overflow: hidden;
18
+ background: #FFFFFF;
19
+ }
20
+
21
+ /* Top status bar */
22
+ .status-bar {
23
+ height: 120px;
24
+ padding: 0 40px;
25
+ display: flex;
26
+ align-items: center;
27
+ justify-content: space-between;
28
+ color: #333;
29
+ font-size: 32px;
30
+ }
31
+ .status-left {
32
+ display: flex;
33
+ align-items: center;
34
+ gap: 16px;
35
+ font-weight: 600;
36
+ }
37
+ .status-right {
38
+ display: flex;
39
+ align-items: center;
40
+ gap: 22px;
41
+ }
42
+ .icon {
43
+ width: 44px;
44
+ height: 44px;
45
+ display: inline-block;
46
+ }
47
+ .icon svg {
48
+ width: 100%;
49
+ height: 100%;
50
+ fill: none;
51
+ stroke: #777;
52
+ stroke-width: 2.5;
53
+ }
54
+
55
+ /* App bar */
56
+ .app-bar {
57
+ height: 160px;
58
+ padding: 0 40px;
59
+ display: grid;
60
+ grid-template-columns: 100px 1fr 100px;
61
+ align-items: center;
62
+ }
63
+ .app-title {
64
+ text-align: center;
65
+ font-size: 46px;
66
+ letter-spacing: 3px;
67
+ font-weight: 700;
68
+ color: #111;
69
+ }
70
+ .divider {
71
+ height: 2px;
72
+ background: #EEEEEE;
73
+ }
74
+
75
+ /* Main Content */
76
+ .content {
77
+ position: absolute;
78
+ top: 282px; /* status(120) + appbar(160) + divider(2) */
79
+ left: 0;
80
+ right: 0;
81
+ bottom: 180px; /* bottom nav height */
82
+ display: flex;
83
+ align-items: center;
84
+ justify-content: center;
85
+ }
86
+ .loading-wrap {
87
+ text-align: center;
88
+ color: #707070;
89
+ }
90
+ .spinner {
91
+ width: 46px;
92
+ height: 46px;
93
+ margin: 0 auto 24px auto;
94
+ border-radius: 50%;
95
+ border: 6px solid #CFCFCF;
96
+ border-top-color: #9E9E9E;
97
+ animation: spin 1.1s linear infinite;
98
+ }
99
+ @keyframes spin {
100
+ to { transform: rotate(360deg); }
101
+ }
102
+ .loading-text {
103
+ font-size: 42px;
104
+ }
105
+
106
+ /* Bottom navigation */
107
+ .bottom-nav {
108
+ position: absolute;
109
+ left: 0;
110
+ right: 0;
111
+ bottom: 0;
112
+ height: 180px;
113
+ border-top: 1px solid #EAEAEA;
114
+ background: #FFFFFF;
115
+ display: flex;
116
+ align-items: center;
117
+ justify-content: space-around;
118
+ }
119
+ .nav-item {
120
+ display: flex;
121
+ flex-direction: column;
122
+ align-items: center;
123
+ gap: 14px;
124
+ color: #9E9E9E;
125
+ font-size: 26px;
126
+ }
127
+ .nav-icon {
128
+ width: 74px;
129
+ height: 74px;
130
+ }
131
+ .nav-icon svg {
132
+ stroke: #B0B0B0;
133
+ stroke-width: 2.8;
134
+ }
135
+
136
+ /* Back/Search buttons styling */
137
+ .btn-ico {
138
+ width: 72px;
139
+ height: 72px;
140
+ display: flex;
141
+ align-items: center;
142
+ justify-content: center;
143
+ }
144
+ .btn-ico svg {
145
+ stroke: #111;
146
+ stroke-width: 3.2;
147
+ }
148
+ </style>
149
+ </head>
150
+ <body>
151
+ <div id="render-target">
152
+
153
+ <!-- Status Bar -->
154
+ <div class="status-bar">
155
+ <div class="status-left">
156
+ <span>11:01</span>
157
+ </div>
158
+ <div class="status-right">
159
+ <!-- Wifi -->
160
+ <span class="icon">
161
+ <svg viewBox="0 0 24 24">
162
+ <path d="M2 8c5-4 15-4 20 0"></path>
163
+ <path d="M5 12c3-3 11-3 14 0"></path>
164
+ <path d="M8 16c2-2 6-2 8 0"></path>
165
+ <circle cx="12" cy="19" r="1.5" fill="#777"></circle>
166
+ </svg>
167
+ </span>
168
+ <!-- Battery -->
169
+ <span class="icon">
170
+ <svg viewBox="0 0 24 24">
171
+ <rect x="2" y="6" width="17" height="12" rx="2"></rect>
172
+ <rect x="19.5" y="10" width="2.5" height="4" rx="1" fill="#777"></rect>
173
+ <rect x="4" y="8" width="13" height="8" fill="#777" stroke="none"></rect>
174
+ </svg>
175
+ </span>
176
+ </div>
177
+ </div>
178
+
179
+ <!-- App Bar -->
180
+ <div class="app-bar">
181
+ <div class="btn-ico">
182
+ <!-- Back Arrow -->
183
+ <svg viewBox="0 0 24 24">
184
+ <path d="M15 5L8 12l7 7"></path>
185
+ </svg>
186
+ </div>
187
+ <div class="app-title">SUPERSTAR SHOES</div>
188
+ <div class="btn-ico" style="justify-self: end;">
189
+ <!-- Search -->
190
+ <svg viewBox="0 0 24 24">
191
+ <circle cx="11" cy="11" r="7"></circle>
192
+ <path d="M20 20l-4.5-4.5"></path>
193
+ </svg>
194
+ </div>
195
+ </div>
196
+ <div class="divider"></div>
197
+
198
+ <!-- Main Content -->
199
+ <div class="content">
200
+ <div class="loading-wrap">
201
+ <div class="spinner"></div>
202
+ <div class="loading-text">Loading products…</div>
203
+ </div>
204
+ </div>
205
+
206
+ <!-- Bottom Navigation -->
207
+ <div class="bottom-nav">
208
+ <div class="nav-item">
209
+ <div class="nav-icon">
210
+ <!-- Fire/Trending -->
211
+ <svg viewBox="0 0 24 24">
212
+ <path d="M12 3c2 3 5 3 6.5 7 1.2 3.2-.8 7.5-6.5 7.5S4.3 16.3 5.5 12C6.6 8.3 9 7 10 5.5c.4-.5.8-1 .9-1.5z"></path>
213
+ </svg>
214
+ </div>
215
+ </div>
216
+ <div class="nav-item">
217
+ <div class="nav-icon">
218
+ <!-- List/Search -->
219
+ <svg viewBox="0 0 24 24">
220
+ <path d="M3 6h12"></path>
221
+ <path d="M3 11h12"></path>
222
+ <path d="M3 16h8"></path>
223
+ <circle cx="18" cy="16" r="3.5"></circle>
224
+ <path d="M22 20l-2.5-2.5"></path>
225
+ </svg>
226
+ </div>
227
+ </div>
228
+ <div class="nav-item">
229
+ <div class="nav-icon">
230
+ <!-- Heart -->
231
+ <svg viewBox="0 0 24 24">
232
+ <path d="M12 20s-6-4.3-8.5-7C1.7 11 3 7.5 6 7.5c2 0 3.2 1.3 4 2.4.8-1.1 2-2.4 4-2.4 3 0 4.3 3.5 2.5 5.5C18 15.7 12 20 12 20z"></path>
233
+ </svg>
234
+ </div>
235
+ </div>
236
+ <div class="nav-item">
237
+ <div class="nav-icon">
238
+ <!-- Bag -->
239
+ <svg viewBox="0 0 24 24">
240
+ <path d="M6 8h12l-1 12H7L6 8z"></path>
241
+ <path d="M9 8V6a3 3 0 0 1 6 0v2"></path>
242
+ </svg>
243
+ </div>
244
+ </div>
245
+ <div class="nav-item">
246
+ <div class="nav-icon">
247
+ <!-- Target/Profile -->
248
+ <svg viewBox="0 0 24 24">
249
+ <circle cx="12" cy="12" r="9"></circle>
250
+ <circle cx="12" cy="12" r="5"></circle>
251
+ <circle cx="12" cy="12" r="2" fill="#B0B0B0" stroke="none"></circle>
252
+ </svg>
253
+ </div>
254
+ </div>
255
+ </div>
256
+
257
+ </div>
258
+ </body>
259
+ </html>
code/10000/10000_5.html ADDED
@@ -0,0 +1,404 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Superstar Shoes - UI Mock</title>
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <style>
7
+ body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
8
+ #render-target {
9
+ position: relative;
10
+ overflow: hidden;
11
+ width: 1080px;
12
+ height: 2400px;
13
+ background: #ffffff;
14
+ color: #111;
15
+ }
16
+
17
+ /* Status bar */
18
+ .status-bar {
19
+ height: 110px;
20
+ padding: 0 36px;
21
+ display: flex;
22
+ align-items: center;
23
+ font-weight: 600;
24
+ font-size: 40px;
25
+ color: #111;
26
+ }
27
+ .status-left { display: flex; align-items: center; gap: 26px; }
28
+ .status-right { margin-left: auto; display: flex; align-items: center; gap: 26px; color: #555; font-weight: 500; }
29
+
30
+ .icon {
31
+ width: 48px; height: 48px; display: inline-block;
32
+ }
33
+ .icon svg { width: 100%; height: 100%; }
34
+
35
+ /* Header */
36
+ .top-bar {
37
+ height: 140px;
38
+ padding: 0 28px;
39
+ display: flex;
40
+ align-items: center;
41
+ border-bottom: 1px solid #eee;
42
+ }
43
+ .back-btn { width: 84px; height: 84px; display: flex; align-items: center; justify-content: center; }
44
+ .page-title {
45
+ flex: 1;
46
+ text-align: center;
47
+ font-size: 44px;
48
+ font-weight: 700;
49
+ letter-spacing: 2px;
50
+ }
51
+ .search-btn { width: 84px; height: 84px; display: flex; align-items: center; justify-content: center; }
52
+
53
+ .results {
54
+ text-align: center;
55
+ font-size: 32px;
56
+ color: #777;
57
+ margin-top: 6px;
58
+ letter-spacing: 1px;
59
+ }
60
+
61
+ /* Filters */
62
+ .filters {
63
+ padding: 22px 28px 18px 28px;
64
+ display: flex;
65
+ align-items: center;
66
+ gap: 18px;
67
+ border-bottom: 1px solid #eee;
68
+ }
69
+ .chip {
70
+ padding: 22px 28px;
71
+ border: 2px solid #ddd;
72
+ border-radius: 12px;
73
+ font-size: 34px;
74
+ color: #555;
75
+ background: #fafafa;
76
+ }
77
+ .filter-btn {
78
+ width: 76px; height: 76px;
79
+ border: 2px solid #ddd; border-radius: 12px;
80
+ display: flex; align-items: center; justify-content: center;
81
+ background: #fafafa;
82
+ margin-right: 6px;
83
+ }
84
+
85
+ /* Grid */
86
+ .grid {
87
+ padding: 22px;
88
+ display: flex;
89
+ flex-wrap: wrap;
90
+ gap: 22px;
91
+ }
92
+ .card {
93
+ width: calc(50% - 11px);
94
+ background: #fff;
95
+ border-radius: 4px;
96
+ overflow: visible;
97
+ }
98
+ .img-wrap {
99
+ position: relative;
100
+ height: 520px;
101
+ background: #E0E0E0;
102
+ border: 1px solid #BDBDBD;
103
+ display: flex;
104
+ align-items: center;
105
+ justify-content: center;
106
+ color: #757575;
107
+ font-size: 32px;
108
+ text-align: center;
109
+ padding: 18px;
110
+ }
111
+ .favorite {
112
+ position: absolute;
113
+ right: 22px;
114
+ top: 22px;
115
+ width: 76px; height: 76px;
116
+ border-radius: 50%;
117
+ background: #fff;
118
+ border: 1px solid #DDD;
119
+ display: flex; align-items: center; justify-content: center;
120
+ box-shadow: 0 1px 2px rgba(0,0,0,0.08);
121
+ }
122
+ .best-seller {
123
+ display: inline-block;
124
+ margin-top: 18px;
125
+ margin-left: 18px;
126
+ padding: 14px 18px;
127
+ font-size: 30px;
128
+ font-weight: 700;
129
+ letter-spacing: 2px;
130
+ border: 2px solid #111;
131
+ }
132
+ .price-tag {
133
+ display: inline-block;
134
+ margin-top: 18px;
135
+ margin-left: 18px;
136
+ padding: 14px 18px;
137
+ font-size: 34px;
138
+ font-weight: 700;
139
+ background: #f6f6f6;
140
+ border-radius: 8px;
141
+ border: 1px solid #ddd;
142
+ }
143
+ .card-body {
144
+ padding: 22px 22px 26px 22px;
145
+ }
146
+ .product-title {
147
+ font-size: 40px;
148
+ font-weight: 800;
149
+ margin-bottom: 10px;
150
+ }
151
+ .subtitle {
152
+ font-size: 32px;
153
+ color: #666;
154
+ }
155
+ .meta-row {
156
+ display: flex;
157
+ align-items: center;
158
+ justify-content: space-between;
159
+ font-size: 34px;
160
+ color: #666;
161
+ margin-top: 14px;
162
+ }
163
+ .dots { display: inline-flex; gap: 8px; margin-left: 8px; }
164
+ .dot { width: 16px; height: 16px; border-radius: 50%; }
165
+ .dot.red { background: #e53935; }
166
+ .dot.blue { background: #1e88e5; }
167
+ .dot.yellow { background: #fbc02d; }
168
+ .dot.green { background: #43a047; }
169
+
170
+ /* Bottom navigation */
171
+ .bottom-nav {
172
+ position: absolute;
173
+ left: 0; right: 0; bottom: 0;
174
+ height: 160px;
175
+ border-top: 1px solid #e6e6e6;
176
+ background: #f7f7f7;
177
+ display: flex;
178
+ align-items: center;
179
+ justify-content: space-around;
180
+ padding: 0 40px;
181
+ }
182
+ .nav-item {
183
+ width: 100px; height: 100px;
184
+ display: flex; align-items: center; justify-content: center;
185
+ color: #222;
186
+ }
187
+
188
+ /* small helper text inside image placeholders */
189
+ .img-label-small { font-size: 28px; color: #757575; }
190
+
191
+ /* subtle divider for rows */
192
+ .soft-divider { height: 22px; }
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
+ <div>11:01</div>
203
+ <div class="icon">
204
+ <svg viewBox="0 0 24 24"><path d="M3 11h18v2H3z" fill="#888"/></svg>
205
+ </div>
206
+ <div class="icon">
207
+ <svg viewBox="0 0 24 24"><circle cx="12" cy="12" r="5" fill="#888"/></svg>
208
+ </div>
209
+ <div class="icon">
210
+ <svg viewBox="0 0 24 24"><rect x="5" y="4" width="14" height="16" rx="2" fill="#888"/></svg>
211
+ </div>
212
+ </div>
213
+ <div class="status-right">
214
+ <div class="icon">
215
+ <svg viewBox="0 0 24 24"><path d="M3 12h14l4-4v8l-4-4H3z" fill="#777"/></svg>
216
+ </div>
217
+ <div class="icon">
218
+ <svg viewBox="0 0 24 24"><rect x="6" y="3" width="12" height="18" rx="2" fill="#777"/></svg>
219
+ </div>
220
+ </div>
221
+ </div>
222
+
223
+ <!-- Top Bar -->
224
+ <div class="top-bar">
225
+ <div class="back-btn">
226
+ <svg class="icon" viewBox="0 0 24 24">
227
+ <path d="M15 5l-7 7 7 7" stroke="#111" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
228
+ </svg>
229
+ </div>
230
+ <div>
231
+ <div class="page-title">SUPERSTAR SHOES</div>
232
+ <div class="results">128 RESULTS</div>
233
+ </div>
234
+ <div class="search-btn">
235
+ <svg class="icon" viewBox="0 0 24 24">
236
+ <circle cx="10" cy="10" r="7" stroke="#111" stroke-width="2" fill="none"/>
237
+ <path d="M21 21l-5-5" stroke="#111" stroke-width="2" fill="none" stroke-linecap="round"/>
238
+ </svg>
239
+ </div>
240
+ </div>
241
+
242
+ <!-- Filters -->
243
+ <div class="filters">
244
+ <div class="filter-btn">
245
+ <svg class="icon" viewBox="0 0 24 24">
246
+ <path d="M4 6h16M7 12h10M10 18h4" stroke="#111" stroke-width="2" fill="none" stroke-linecap="round"/>
247
+ </svg>
248
+ </div>
249
+ <div class="chip">KIDS</div>
250
+ <div class="chip">MEN</div>
251
+ <div class="chip">WOMEN</div>
252
+ <div class="chip">UNISEX</div>
253
+ </div>
254
+
255
+ <!-- Grid of Products -->
256
+ <div class="grid">
257
+
258
+ <!-- Card 1 -->
259
+ <div class="card">
260
+ <div class="img-wrap">
261
+ <div class="favorite">
262
+ <svg viewBox="0 0 24 24">
263
+ <path d="M12 21s-6-4.35-8.5-7.2C1.5 11.3 2.7 8 5.6 8c1.7 0 3 1.1 3.4 2.2C9.4 9.1 10.7 8 12.4 8c2.9 0 4.1 3.3 2.1 5.8C18 16.65 12 21 12 21z" fill="none" stroke="#111" stroke-width="1.8"/>
264
+ </svg>
265
+ </div>
266
+ [IMG: White Adidas Superstar Shoe]
267
+ </div>
268
+ <div class="best-seller">BEST SELLER</div>
269
+ <div class="price-tag">$100.00</div>
270
+ <div class="card-body">
271
+ <div class="product-title">Superstar Shoes</div>
272
+ <div class="meta-row">
273
+ <div class="subtitle">Men's Originals</div>
274
+ <div>
275
+ +31
276
+ <span class="dots">
277
+ <span class="dot.blue"></span>
278
+ <span class="dot.red"></span>
279
+ </span>
280
+ </div>
281
+ </div>
282
+ </div>
283
+ </div>
284
+
285
+ <!-- Card 2 -->
286
+ <div class="card">
287
+ <div class="img-wrap">
288
+ <div class="favorite">
289
+ <svg viewBox="0 0 24 24">
290
+ <path d="M12 21s-6-4.35-8.5-7.2C1.5 11.3 2.7 8 5.6 8c1.7 0 3 1.1 3.4 2.2C9.4 9.1 10.7 8 12.4 8c2.9 0 4.1 3.3 2.1 5.8C18 16.65 12 21 12 21z" fill="none" stroke="#111" stroke-width="1.8"/>
291
+ </svg>
292
+ </div>
293
+ [IMG: Kids Group Wearing Adidas on Stage]
294
+ </div>
295
+ <div class="best-seller">BEST SELLER</div>
296
+ <div class="price-tag">$80.00</div>
297
+ <div class="card-body">
298
+ <div class="product-title">Superstar Shoes</div>
299
+ <div class="meta-row">
300
+ <div class="subtitle">Kids Unisex Originals</div>
301
+ <div>
302
+ +3
303
+ <span class="dots">
304
+ <span class="dot.yellow"></span>
305
+ <span class="dot.blue"></span>
306
+ </span>
307
+ </div>
308
+ </div>
309
+ </div>
310
+ </div>
311
+
312
+ <!-- Card 3 -->
313
+ <div class="card">
314
+ <div class="img-wrap">
315
+ <div class="favorite" style="right:22px; top:22px;">
316
+ <svg viewBox="0 0 24 24">
317
+ <path d="M12 21s-6-4.35-8.5-7.2C1.5 11.3 2.7 8 5.6 8c1.7 0 3 1.1 3.4 2.2C9.4 9.1 10.7 8 12.4 8c2.9 0 4.1 3.3 2.1 5.8C18 16.65 12 21 12 21z" fill="none" stroke="#111" stroke-width="1.8"/>
318
+ </svg>
319
+ </div>
320
+ [IMG: Black Adidas Superstar Shoe]
321
+ </div>
322
+ <div class="price-tag">$70.00</div>
323
+ <div class="card-body">
324
+ <div class="product-title">Superstar Shoes</div>
325
+ <div class="meta-row">
326
+ <div class="subtitle">Kids Unisex Originals</div>
327
+ <div>
328
+ +3
329
+ <span class="dots">
330
+ <span class="dot.red"></span>
331
+ <span class="dot.blue"></span>
332
+ </span>
333
+ </div>
334
+ </div>
335
+ </div>
336
+ </div>
337
+
338
+ <!-- Card 4 -->
339
+ <div class="card">
340
+ <div class="img-wrap">
341
+ <div class="favorite">
342
+ <svg viewBox="0 0 24 24">
343
+ <path d="M12 21s-6-4.35-8.5-7.2C1.5 11.3 2.7 8 5.6 8c1.7 0 3 1.1 3.4 2.2C9.4 9.1 10.7 8 12.4 8c2.9 0 4.1 3.3 2.1 5.8C18 16.65 12 21 12 21z" fill="none" stroke="#111" stroke-width="1.8"/>
344
+ </svg>
345
+ </div>
346
+ <div class="img-label-small">[IMG: Person wearing Adidas Superstar]</div>
347
+ </div>
348
+ <div class="price-tag">$60.00</div>
349
+ <div class="card-body">
350
+ <div class="product-title">Superstar Shoes</div>
351
+ <div class="meta-row">
352
+ <div class="subtitle">Kids Unisex Originals</div>
353
+ </div>
354
+ </div>
355
+ </div>
356
+
357
+ <!-- Partial next item (bottom row preview) -->
358
+ <div class="card" style="height: 420px;">
359
+ <div class="img-wrap" style="height: 260px;">
360
+ <div class="favorite">
361
+ <svg viewBox="0 0 24 24">
362
+ <path d="M12 21s-6-4.35-8.5-7.2C1.5 11.3 2.7 8 5.6 8c1.7 0 3 1.1 3.4 2.2C9.4 9.1 10.7 8 12.4 8c2.9 0 4.1 3.3 2.1 5.8C18 16.65 12 21 12 21z" fill="none" stroke="#111" stroke-width="1.8"/>
363
+ </svg>
364
+ </div>
365
+ [IMG: Lifestyle photo - pants closeup]
366
+ </div>
367
+ </div>
368
+
369
+ </div>
370
+
371
+ <!-- Bottom Navigation -->
372
+ <div class="bottom-nav">
373
+ <div class="nav-item">
374
+ <svg class="icon" viewBox="0 0 24 24">
375
+ <path d="M12 2l2 5-2 3-2-3 2-5zM7 14c0-3 3-5 5-5s5 2 5 5-3 6-5 6-5-3-5-6z" fill="#222"/>
376
+ </svg>
377
+ </div>
378
+ <div class="nav-item">
379
+ <svg class="icon" viewBox="0 0 24 24">
380
+ <circle cx="10" cy="10" r="7" stroke="#222" stroke-width="2" fill="none"/>
381
+ <path d="M21 21l-5-5" stroke="#222" stroke-width="2" fill="none" stroke-linecap="round"/>
382
+ </svg>
383
+ </div>
384
+ <div class="nav-item">
385
+ <svg class="icon" viewBox="0 0 24 24">
386
+ <path d="M12 21s-6-4.35-8.5-7.2C1.5 11.3 2.7 8 5.6 8c1.7 0 3 1.1 3.4 2.2C9.4 9.1 10.7 8 12.4 8c2.9 0 4.1 3.3 2.1 5.8C18 16.65 12 21 12 21z" fill="none" stroke="#222" stroke-width="1.8"/>
387
+ </svg>
388
+ </div>
389
+ <div class="nav-item">
390
+ <svg class="icon" viewBox="0 0 24 24">
391
+ <path d="M6 6h12l-2 12H8L6 6zm3 16a3 3 0 106 0" fill="#222"/>
392
+ </svg>
393
+ </div>
394
+ <div class="nav-item">
395
+ <svg class="icon" viewBox="0 0 24 24">
396
+ <circle cx="12" cy="8" r="4" fill="#222"/>
397
+ <path d="M4 22c0-4 4-7 8-7s8 3 8 7" fill="#222"/>
398
+ </svg>
399
+ </div>
400
+ </div>
401
+
402
+ </div>
403
+ </body>
404
+ </html>
code/10000/10000_6.html ADDED
@@ -0,0 +1,334 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Superstar Shoes - Mobile UI Mock</title>
5
+ <style>
6
+ body {
7
+ margin: 0;
8
+ padding: 0;
9
+ background: transparent;
10
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
11
+ }
12
+ #render-target {
13
+ width: 1080px;
14
+ height: 2400px;
15
+ position: relative;
16
+ overflow: hidden;
17
+ background: #ffffff;
18
+ }
19
+
20
+ /* Top lifestyle banner */
21
+ .hero {
22
+ position: relative;
23
+ width: 100%;
24
+ height: 500px;
25
+ background: #E0E0E0;
26
+ border-bottom: 1px solid #BDBDBD;
27
+ display: flex;
28
+ align-items: center;
29
+ justify-content: center;
30
+ color: #757575;
31
+ letter-spacing: 0.5px;
32
+ font-size: 28px;
33
+ }
34
+ .status-bar {
35
+ position: absolute;
36
+ top: 24px;
37
+ left: 24px;
38
+ right: 24px;
39
+ height: 48px;
40
+ display: flex;
41
+ align-items: center;
42
+ justify-content: space-between;
43
+ }
44
+ .status-left {
45
+ display: flex;
46
+ align-items: center;
47
+ gap: 18px;
48
+ color: #111;
49
+ font-weight: 600;
50
+ font-size: 34px;
51
+ }
52
+ .icon-small {
53
+ width: 34px;
54
+ height: 34px;
55
+ border-radius: 6px;
56
+ border: 1px solid #bbb;
57
+ background: #fff;
58
+ }
59
+ .close-btn {
60
+ position: absolute;
61
+ right: 28px;
62
+ top: 120px;
63
+ width: 72px;
64
+ height: 72px;
65
+ border: 3px solid #000;
66
+ border-radius: 12px;
67
+ display: flex;
68
+ align-items: center;
69
+ justify-content: center;
70
+ background: #fff;
71
+ }
72
+ .close-btn svg {
73
+ width: 44px;
74
+ height: 44px;
75
+ }
76
+
77
+ /* Product stage */
78
+ .stage {
79
+ width: 100%;
80
+ height: 1100px;
81
+ background: #efefef;
82
+ border-top: 1px solid #d5d5d5;
83
+ border-bottom: 1px solid #d5d5d5;
84
+ position: relative;
85
+ }
86
+ .shoe-image {
87
+ position: absolute;
88
+ left: 60px;
89
+ right: 60px;
90
+ top: 280px;
91
+ height: 420px;
92
+ background: #E0E0E0;
93
+ border: 1px solid #BDBDBD;
94
+ display: flex;
95
+ align-items: center;
96
+ justify-content: center;
97
+ color: #606060;
98
+ font-size: 28px;
99
+ }
100
+
101
+ /* Blue banner below stage */
102
+ .blue-banner {
103
+ width: 100%;
104
+ height: 220px;
105
+ background: linear-gradient(180deg, #6e8fb2, #466789);
106
+ position: relative;
107
+ }
108
+ .best-seller-tag {
109
+ position: absolute;
110
+ left: 44px;
111
+ top: 60px;
112
+ background: #ffffff;
113
+ color: #000;
114
+ font-weight: 700;
115
+ font-size: 30px;
116
+ letter-spacing: 1px;
117
+ padding: 16px 28px;
118
+ border-radius: 8px;
119
+ box-shadow: 0 2px 6px rgba(0,0,0,0.15);
120
+ }
121
+
122
+ /* Thumbnail carousel */
123
+ .thumbs {
124
+ width: 100%;
125
+ height: 240px;
126
+ background: #f6f6f6;
127
+ display: flex;
128
+ align-items: center;
129
+ padding: 0 44px;
130
+ gap: 62px;
131
+ box-sizing: border-box;
132
+ border-top: 1px solid #e1e1e1;
133
+ border-bottom: 1px solid #e1e1e1;
134
+ }
135
+ .thumb {
136
+ width: 160px;
137
+ height: 110px;
138
+ border: 1px solid #c9c9c9;
139
+ background: #E0E0E0;
140
+ display: flex;
141
+ align-items: center;
142
+ justify-content: center;
143
+ color: #666;
144
+ font-size: 22px;
145
+ border-radius: 6px;
146
+ }
147
+ .thumb.active {
148
+ outline: 6px solid #eaeaea;
149
+ }
150
+ .slider-pill {
151
+ width: 120px;
152
+ height: 12px;
153
+ background: #d9d9d9;
154
+ border-radius: 8px;
155
+ margin: 18px auto;
156
+ }
157
+
158
+ /* Product info section */
159
+ .product-info {
160
+ width: 100%;
161
+ background: #ffffff;
162
+ padding: 40px 44px 0 44px;
163
+ box-sizing: border-box;
164
+ }
165
+ .title-row {
166
+ display: flex;
167
+ align-items: center;
168
+ justify-content: space-between;
169
+ }
170
+ .product-title {
171
+ font-size: 64px;
172
+ font-weight: 800;
173
+ letter-spacing: 1px;
174
+ color: #111111;
175
+ line-height: 1.2;
176
+ }
177
+ .heart {
178
+ width: 72px;
179
+ height: 72px;
180
+ border: 2px solid #000;
181
+ border-radius: 12px;
182
+ display: flex;
183
+ align-items: center;
184
+ justify-content: center;
185
+ }
186
+ .heart svg {
187
+ width: 40px;
188
+ height: 40px;
189
+ }
190
+ .price-row {
191
+ margin-top: 30px;
192
+ display: flex;
193
+ align-items: center;
194
+ gap: 26px;
195
+ font-size: 38px;
196
+ color: #111;
197
+ }
198
+ .price {
199
+ font-weight: 800;
200
+ letter-spacing: 0.5px;
201
+ }
202
+ .category {
203
+ color: #444;
204
+ letter-spacing: 1px;
205
+ }
206
+
207
+ .cta {
208
+ margin-top: 40px;
209
+ padding-bottom: 60px;
210
+ }
211
+ .size-btn {
212
+ width: 100%;
213
+ height: 144px;
214
+ background: #000000;
215
+ color: #ffffff;
216
+ font-size: 40px;
217
+ font-weight: 800;
218
+ letter-spacing: 2px;
219
+ border-radius: 8px;
220
+ display: flex;
221
+ align-items: center;
222
+ justify-content: space-between;
223
+ padding: 0 40px;
224
+ box-sizing: border-box;
225
+ }
226
+ .size-btn svg {
227
+ width: 50px;
228
+ height: 50px;
229
+ fill: #ffffff;
230
+ }
231
+
232
+ /* Footer spacer to mimic bottom bar */
233
+ .bottom-spacer {
234
+ width: 100%;
235
+ height: 120px;
236
+ display: flex;
237
+ align-items: center;
238
+ justify-content: center;
239
+ }
240
+ .nav-pill {
241
+ width: 320px;
242
+ height: 18px;
243
+ border-radius: 12px;
244
+ background: #d9d9d9;
245
+ }
246
+ </style>
247
+ </head>
248
+ <body>
249
+ <div id="render-target">
250
+
251
+ <!-- Top lifestyle hero image -->
252
+ <div class="hero">
253
+ [IMG: Lifestyle photo with table and sneakers]
254
+ <div class="status-bar">
255
+ <div class="status-left">
256
+ <div>11:05</div>
257
+ <div class="icon-small"></div>
258
+ <div class="icon-small"></div>
259
+ <div class="icon-small"></div>
260
+ </div>
261
+ <div style="display:flex; align-items:center; gap:12px;">
262
+ <!-- simple wifi icon -->
263
+ <svg width="38" height="38" viewBox="0 0 24 24">
264
+ <path d="M12 19a2 2 0 1 0 0.001 0z" fill="#000"/>
265
+ <path d="M2.1 8.5A15 15 0 0 1 21.9 8.5l-1.6 1.6A12.8 12.8 0 0 0 3.6 10.1L2.1 8.5zM5.6 12a11 11 0 0 1 12.8 0l-1.7 1.7a8.5 8.5 0 0 0-9.4 0L5.6 12zm3.6 3.6a6 6 0 0 1 5.6 0l-1.7 1.7a3.2 3.2 0 0 0-2.2 0l-1.7-1.7z" fill="#000"/>
266
+ </svg>
267
+ <!-- battery icon -->
268
+ <svg width="46" height="46" viewBox="0 0 28 28">
269
+ <rect x="2" y="6" width="20" height="16" rx="3" ry="3" fill="none" stroke="#000" stroke-width="2"></rect>
270
+ <rect x="4" y="8" width="14" height="12" fill="#000"></rect>
271
+ <rect x="22" y="11" width="4" height="6" fill="#000"></rect>
272
+ </svg>
273
+ </div>
274
+ </div>
275
+ <div class="close-btn">
276
+ <svg viewBox="0 0 24 24">
277
+ <path d="M5 5L19 19M19 5L5 19" stroke="#000" stroke-width="2" stroke-linecap="round"/>
278
+ </svg>
279
+ </div>
280
+ </div>
281
+
282
+ <!-- Product stage with shoe image -->
283
+ <div class="stage">
284
+ <div class="shoe-image">[IMG: Superstar Shoe - side view]</div>
285
+ </div>
286
+
287
+ <!-- Blue banner with "BEST SELLER" label -->
288
+ <div class="blue-banner">
289
+ <div class="best-seller-tag">BEST SELLER</div>
290
+ </div>
291
+
292
+ <!-- Thumbnail carousel -->
293
+ <div class="thumbs">
294
+ <div class="thumb">[IMG: Black]</div>
295
+ <div class="thumb active">[IMG: White/Black]</div>
296
+ <div class="thumb">[IMG: Core Black]</div>
297
+ <div class="thumb">[IMG: Cloud White]</div>
298
+ <div class="thumb">[IMG: Navy/Stripes]</div>
299
+ <div class="thumb">[IMG: Cream/Stripes]</div>
300
+ </div>
301
+ <div class="slider-pill"></div>
302
+
303
+ <!-- Product details -->
304
+ <div class="product-info">
305
+ <div class="title-row">
306
+ <div class="product-title">SUPERSTAR SHOES</div>
307
+ <div class="heart">
308
+ <svg viewBox="0 0 24 24">
309
+ <path d="M12 21s-7-4.4-9.2-8A5.5 5.5 0 0 1 8.7 5.2c1.5 0 2.8.7 3.3 1.6.5-.9 1.8-1.6 3.3-1.6a5.5 5.5 0 0 1 5.9 7.8C19 16.6 12 21 12 21z" fill="none" stroke="#000" stroke-width="2"/>
310
+ </svg>
311
+ </div>
312
+ </div>
313
+ <div class="price-row">
314
+ <div class="price">$100.00</div>
315
+ <div class="category">MEN'S ORIGINALS</div>
316
+ </div>
317
+ <div class="cta">
318
+ <div class="size-btn">
319
+ <span>SELECT SIZE</span>
320
+ <svg viewBox="0 0 24 24">
321
+ <path d="M5 12h12M13 6l6 6-6 6" stroke="#fff" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
322
+ </svg>
323
+ </div>
324
+ </div>
325
+ </div>
326
+
327
+ <!-- Bottom navigation spacer -->
328
+ <div class="bottom-spacer">
329
+ <div class="nav-pill"></div>
330
+ </div>
331
+
332
+ </div>
333
+ </body>
334
+ </html>
code/10000/10000_7.html ADDED
@@ -0,0 +1,171 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Adidas Product 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:#ffffff; color:#111;
10
+ }
11
+ /* Status bar */
12
+ .status-bar {
13
+ position:absolute; top:20px; left:20px; right:20px; height:60px; display:flex; align-items:center; justify-content:space-between; z-index:5; color:#111;
14
+ font-weight:600; font-size:34px;
15
+ }
16
+ .status-left { display:flex; align-items:center; gap:20px; }
17
+ .status-right { display:flex; align-items:center; gap:18px; }
18
+ .icon-box { width:34px; height:34px; border:2px solid #111; border-radius:6px; }
19
+ /* Close (X) button */
20
+ .close-btn {
21
+ position:absolute; top:160px; right:40px; width:74px; height:74px; border-radius:50%;
22
+ display:flex; align-items:center; justify-content:center; z-index:6;
23
+ }
24
+ .close-btn svg { width:54px; height:54px; stroke:#111; stroke-width:10; }
25
+ /* Top lifestyle banner */
26
+ .top-banner {
27
+ position:absolute; top:0; left:0; width:100%; height:620px;
28
+ background:#E0E0E0; border-bottom:1px solid #BDBDBD;
29
+ display:flex; align-items:center; justify-content:center; color:#757575; font-size:34px; letter-spacing:1px;
30
+ }
31
+ /* Product stage */
32
+ .product-stage {
33
+ position:absolute; top:620px; left:0; width:100%; height:920px; background:#f1f2f4;
34
+ border-top:1px solid #ddd; border-bottom:1px solid #ddd;
35
+ }
36
+ .shoe-image {
37
+ width:900px; height:420px; margin:220px auto 0;
38
+ background:#E0E0E0; border:1px solid #BDBDBD; color:#757575;
39
+ display:flex; align-items:center; justify-content:center; font-size:30px;
40
+ }
41
+ /* Right side dots */
42
+ .side-dots {
43
+ position:absolute; right:22px; top:120px; display:flex; flex-direction:column; gap:38px;
44
+ }
45
+ .side-dots span {
46
+ width:10px; height:10px; background:#111; border-radius:50%;
47
+ opacity:0.7;
48
+ }
49
+ /* Blue promo strip and carousel */
50
+ .promo-strip {
51
+ position:absolute; top:1540px; left:0; width:100%; height:360px; background:#5b7ba3;
52
+ display:flex; align-items:flex-start; justify-content:flex-start; color:#fff;
53
+ }
54
+ .best-seller {
55
+ margin:40px 0 0 48px; padding:18px 26px; border:2px solid #fff; border-radius:8px;
56
+ font-weight:700; letter-spacing:2px; font-size:28px; background:rgba(255,255,255,0.08);
57
+ }
58
+ .carousel {
59
+ position:absolute; top:1720px; left:0; width:100%; height:170px; background:#efefef; display:flex; align-items:center; gap:40px; padding:0 40px; border-top:1px solid #ddd;
60
+ }
61
+ .mini-shoe {
62
+ width:140px; height:90px; background:#E0E0E0; border:1px solid #BDBDBD; color:#757575; display:flex; align-items:center; justify-content:center; font-size:22px; border-radius:8px;
63
+ flex:0 0 auto;
64
+ }
65
+ /* Product details */
66
+ .details {
67
+ position:absolute; top:1890px; left:0; width:100%; height:510px; background:#fff; padding:0 48px;
68
+ }
69
+ .title {
70
+ font-size:64px; font-weight:800; letter-spacing:1px; margin-top:34px;
71
+ }
72
+ .price-row {
73
+ display:flex; align-items:center; gap:24px; margin-top:24px; font-size:34px; font-weight:700;
74
+ }
75
+ .subtext {
76
+ font-size:34px; color:#333; letter-spacing:2px; margin-top:8px;
77
+ }
78
+ .favorite {
79
+ position:absolute; right:48px; top:40px; width:72px; height:72px; display:flex; align-items:center; justify-content:center;
80
+ }
81
+ .favorite svg { width:56px; height:56px; fill:#000; }
82
+ .cta {
83
+ margin-top:60px; width:984px; height:120px; background:#000; color:#fff; font-size:40px; font-weight:800; letter-spacing:4px; border-radius:6px;
84
+ display:flex; align-items:center; justify-content:space-between; padding:0 40px;
85
+ }
86
+ .cta svg { width:44px; height:44px; fill:#fff; }
87
+ .scroll-indicator {
88
+ position:absolute; bottom:32px; left:50%; transform:translateX(-50%);
89
+ width:420px; height:14px; background:#e5e5e5; border-radius:14px;
90
+ }
91
+ </style>
92
+ </head>
93
+ <body>
94
+ <div id="render-target">
95
+
96
+ <!-- Status bar -->
97
+ <div class="status-bar">
98
+ <div class="status-left">
99
+ <div>11:06</div>
100
+ <div class="icon-box"></div>
101
+ <div class="icon-box"></div>
102
+ <div class="icon-box"></div>
103
+ </div>
104
+ <div class="status-right">
105
+ <div class="icon-box"></div>
106
+ <div class="icon-box"></div>
107
+ </div>
108
+ </div>
109
+
110
+ <!-- Close X -->
111
+ <div class="close-btn">
112
+ <svg viewBox="0 0 64 64">
113
+ <line x1="8" y1="8" x2="56" y2="56"></line>
114
+ <line x1="56" y1="8" x2="8" y2="56"></line>
115
+ </svg>
116
+ </div>
117
+
118
+ <!-- Top banner image -->
119
+ <div class="top-banner">[IMG: Lifestyle Banner with table and shoe]</div>
120
+
121
+ <!-- Product area -->
122
+ <div class="product-stage">
123
+ <div class="shoe-image">[IMG: White Adidas Superstar Shoe]</div>
124
+
125
+ <!-- Right side dots -->
126
+ <div class="side-dots">
127
+ <span></span><span></span><span></span><span></span><span></span><span></span>
128
+ <span></span><span></span><span></span><span></span><span></span>
129
+ </div>
130
+ </div>
131
+
132
+ <!-- Blue promo strip -->
133
+ <div class="promo-strip">
134
+ <div class="best-seller">BEST SELLER</div>
135
+ </div>
136
+
137
+ <!-- Carousel thumbnails -->
138
+ <div class="carousel">
139
+ <div class="mini-shoe">[IMG]</div>
140
+ <div class="mini-shoe">[IMG]</div>
141
+ <div class="mini-shoe">[IMG]</div>
142
+ <div class="mini-shoe">[IMG]</div>
143
+ <div class="mini-shoe">[IMG]</div>
144
+ <div class="mini-shoe">[IMG]</div>
145
+ </div>
146
+
147
+ <!-- Product details -->
148
+ <div class="details">
149
+ <div class="favorite">
150
+ <svg viewBox="0 0 64 64">
151
+ <path d="M32 56s-4-3-10-8C12 41 6 35 6 26c0-8 6-14 14-14 6 0 10 4 12 7 2-3 6-7 12-7 8 0 14 6 14 14 0 9-6 15-16 22-6 5-10 8-10 8z"></path>
152
+ </svg>
153
+ </div>
154
+ <div class="title">SUPERSTAR SHOES</div>
155
+ <div class="price-row">
156
+ <div>$100.00</div>
157
+ <div class="subtext">MEN'S ORIGINALS</div>
158
+ </div>
159
+
160
+ <div class="cta">
161
+ <div>SELECT SIZE</div>
162
+ <svg viewBox="0 0 64 64">
163
+ <path d="M22 14 l20 18 -20 18" fill="none" stroke="#fff" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"></path>
164
+ </svg>
165
+ </div>
166
+ </div>
167
+
168
+ <div class="scroll-indicator"></div>
169
+ </div>
170
+ </body>
171
+ </html>
code/10001/10001_0.html ADDED
@@ -0,0 +1,247 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Product Detail - Avocado</title>
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <style>
7
+ body { margin:0; padding:0; background:transparent; }
8
+ #render-target {
9
+ width:1080px; height:2400px; position:relative; overflow:hidden;
10
+ background:#ffffff; font-family: Arial, Helvetica, sans-serif; color:#1a1a1a;
11
+ }
12
+
13
+ /* Top purple area */
14
+ .top-bar {
15
+ position:absolute; left:0; top:0; width:100%; height:210px; background:#46107f;
16
+ color:#fff;
17
+ }
18
+ .status-row {
19
+ height:90px; display:flex; align-items:center; justify-content:space-between;
20
+ padding:0 40px; font-size:40px; letter-spacing:0.5px;
21
+ }
22
+ .status-icons { display:flex; gap:26px; align-items:center; }
23
+ .dot-icon { width:22px; height:22px; background:#fff; border-radius:50%; opacity:0.8; }
24
+ .wifi-icon, .battery-icon {
25
+ width:46px; height:46px; border:2px solid #fff; border-radius:8px; opacity:0.85;
26
+ }
27
+ .nav-row {
28
+ height:120px; display:flex; align-items:center; justify-content:space-between;
29
+ padding:0 30px;
30
+ }
31
+ .icon-btn { width:110px; height:90px; display:flex; align-items:center; justify-content:center; }
32
+ .icon-btn svg { width:60px; height:60px; fill:#fff; }
33
+
34
+ /* Image block */
35
+ .hero-img {
36
+ position:absolute; left:0; top:210px; width:100%; height:780px;
37
+ display:flex; align-items:center; justify-content:center;
38
+ }
39
+ .img-placeholder {
40
+ width:900px; height:680px; background:#E0E0E0; border:1px solid #BDBDBD;
41
+ display:flex; align-items:center; justify-content:center; color:#757575;
42
+ font-size:40px; text-align:center; border-radius:8px;
43
+ }
44
+
45
+ /* Carousel dots */
46
+ .dots {
47
+ position:absolute; top:1010px; left:420px; display:flex; gap:18px;
48
+ }
49
+ .dots span {
50
+ width:26px; height:26px; border-radius:50%; background:#d9d9d9;
51
+ }
52
+ .dots span.active { background:#ff6b7a; }
53
+
54
+ /* Title section */
55
+ .content {
56
+ position:absolute; top:1060px; left:34px; right:34px;
57
+ }
58
+ .title {
59
+ font-size:56px; font-weight:700; line-height:1.25; margin-bottom:22px;
60
+ }
61
+ .link {
62
+ color:#7A30D8; font-size:40px; font-weight:600; text-decoration:none;
63
+ display:inline-block; margin-bottom:26px;
64
+ }
65
+ .link svg { width:28px; height:28px; vertical-align:middle; fill:#7A30D8; }
66
+
67
+ .price-row {
68
+ display:flex; align-items:flex-end; justify-content:space-between; margin-top:12px;
69
+ }
70
+ .piece { font-size:44px; color:#444; }
71
+ .price-info { margin-top:16px; display:flex; align-items:center; gap:18px; }
72
+ .price { font-size:64px; font-weight:800; color:#000; }
73
+ .mrp { font-size:46px; color:#8a8a8a; text-decoration:line-through; }
74
+ .off-pill {
75
+ background:#7A30D8; color:#fff; font-size:38px; padding:18px 24px; border-radius:18px;
76
+ font-weight:700;
77
+ }
78
+
79
+ .qty-stepper {
80
+ display:flex; align-items:center; gap:20px;
81
+ }
82
+ .qty-stepper .btn {
83
+ width:180px; height:100px; background:#ff6b7a; border-radius:22px;
84
+ display:flex; align-items:center; justify-content:center; color:#fff; font-size:62px; font-weight:900;
85
+ }
86
+ .qty-stepper .count {
87
+ width:180px; height:100px; background:#ffe1e6; border-radius:22px;
88
+ display:flex; align-items:center; justify-content:center; font-size:54px; font-weight:700; color:#cc3b52;
89
+ }
90
+
91
+ .divider { height:24px; background:#f1eef6; margin:40px -34px; }
92
+
93
+ /* Product info */
94
+ .section-head {
95
+ display:flex; align-items:center; justify-content:space-between;
96
+ font-size:46px; font-weight:800; margin-bottom:18px;
97
+ }
98
+ .chevron svg { width:40px; height:40px; fill:#6a6a6a; }
99
+ .bullets { font-size:42px; color:#333; line-height:1.7; }
100
+ .bullets li { margin-bottom:16px; }
101
+
102
+ /* Similar products & promo card */
103
+ .similar-title {
104
+ font-size:46px; font-weight:800; margin-top:36px; margin-bottom:24px;
105
+ }
106
+ .promo-card {
107
+ border:1px solid #e2e2e2; border-radius:28px; padding:26px 30px;
108
+ display:flex; align-items:center; justify-content:space-between; background:#fafafa;
109
+ }
110
+ .promo-left { display:flex; align-items:center; gap:28px; }
111
+ .badge {
112
+ width:120px; height:120px; background:#55c17a; border-radius:26px; display:flex;
113
+ align-items:center; justify-content:center; color:#fff; font-size:56px; font-weight:900;
114
+ }
115
+ .promo-text { font-size:44px; color:#222; }
116
+ .promo-text .bold { font-weight:900; }
117
+ .promo-right { display:flex; align-items:center; gap:40px; }
118
+ .pill { background:#7A30D8; color:#fff; padding:14px 26px; border-radius:24px; font-size:38px; font-weight:700; }
119
+ .mini-dots { display:flex; gap:12px; }
120
+ .mini-dots span { width:16px; height:16px; background:#c3b9d9; border-radius:50%; }
121
+ .mini-dots span.active { background:#7A30D8; }
122
+
123
+ /* Bottom cart bar */
124
+ .bottom-bar {
125
+ position:absolute; left:30px; right:30px; bottom:140px; height:160px;
126
+ background:#ff6b7a; border-radius:36px; display:flex; align-items:center; justify-content:space-between;
127
+ padding:0 40px; color:#fff;
128
+ box-shadow:0 8px 20px rgba(0,0,0,0.08);
129
+ }
130
+ .bottom-left { font-size:56px; font-weight:800; }
131
+ .view-cart {
132
+ background:rgba(255,255,255,0.2); border-radius:28px; padding:22px 34px;
133
+ display:flex; align-items:center; gap:24px; font-size:54px; font-weight:800;
134
+ }
135
+ .bag-icon svg { width:56px; height:56px; fill:#fff; }
136
+
137
+ /* Gesture bar */
138
+ .gesture {
139
+ position:absolute; left:50%; transform:translateX(-50%);
140
+ bottom:56px; width:640px; height:16px; background:#111; border-radius:10px;
141
+ opacity:0.85;
142
+ }
143
+ </style>
144
+ </head>
145
+ <body>
146
+ <div id="render-target">
147
+ <div class="top-bar">
148
+ <div class="status-row">
149
+ <div>8:51</div>
150
+ <div class="status-icons">
151
+ <div class="dot-icon"></div>
152
+ <div class="dot-icon"></div>
153
+ <div class="wifi-icon"></div>
154
+ <div class="battery-icon"></div>
155
+ </div>
156
+ </div>
157
+ <div class="nav-row">
158
+ <div class="icon-btn">
159
+ <svg viewBox="0 0 24 24"><path d="M15.5 4l-9 8 9 8v-4.5L9.8 12 15.5 8.5V4z"/></svg>
160
+ </div>
161
+ <div class="icon-btn">
162
+ <svg viewBox="0 0 24 24"><circle cx="10" cy="10" r="7"/><path d="M14.5 14.5L20 20" stroke="#fff" stroke-width="2" fill="none"/></svg>
163
+ </div>
164
+ </div>
165
+ </div>
166
+
167
+ <div class="hero-img">
168
+ <div class="img-placeholder">[IMG: Westfalia logo & avocado]</div>
169
+ </div>
170
+
171
+ <div class="dots">
172
+ <span class="active"></span>
173
+ <span></span>
174
+ <span></span>
175
+ <span></span>
176
+ <span></span>
177
+ </div>
178
+
179
+ <div class="content">
180
+ <div class="title">Westfalia Avocado Imported Semi Ripe</div>
181
+ <a class="link" href="#">See All Westfalia Products
182
+ <svg viewBox="0 0 24 24"><path d="M9 6l6 6-6 6" /></svg>
183
+ </a>
184
+
185
+ <div class="price-row">
186
+ <div>
187
+ <div class="piece">1 piece</div>
188
+ <div class="price-info">
189
+ <div class="price">₹89</div>
190
+ <div class="mrp">₹111</div>
191
+ <div class="off-pill">19% Off</div>
192
+ </div>
193
+ </div>
194
+ <div class="qty-stepper">
195
+ <div class="btn">−</div>
196
+ <div class="count">1</div>
197
+ <div class="btn">+</div>
198
+ </div>
199
+ </div>
200
+
201
+ <div class="divider"></div>
202
+
203
+ <div class="section-head">
204
+ <div>Product Information</div>
205
+ <div class="chevron">
206
+ <svg viewBox="0 0 24 24"><path d="M6 9l6 6 6-6"/></svg>
207
+ </div>
208
+ </div>
209
+ <ul class="bullets">
210
+ <li>Country of Origin : Tanzania</li>
211
+ <li>Shelf Life : 6 days</li>
212
+ </ul>
213
+
214
+ <div class="divider"></div>
215
+
216
+ <div class="similar-title">Similar Products</div>
217
+ <div class="promo-card">
218
+ <div class="promo-left">
219
+ <div class="badge">%</div>
220
+ <div class="promo-text">Add items worth <span class="bold">₹10</span> to get<br><span class="bold">Free Delivery</span></div>
221
+ </div>
222
+ <div class="promo-right">
223
+ <div class="pill">1/5</div>
224
+ <div class="mini-dots">
225
+ <span class="active"></span><span></span>
226
+ </div>
227
+ </div>
228
+ </div>
229
+ </div>
230
+
231
+ <div class="bottom-bar">
232
+ <div class="bottom-left">1 Item | ₹89</div>
233
+ <div class="view-cart">
234
+ <span class="bag-icon">
235
+ <svg viewBox="0 0 24 24">
236
+ <path d="M7 9h10l-1 11H8L7 9z"/>
237
+ <path d="M9 9V7a3 3 0 0 1 6 0v2" fill="none" stroke="#fff" stroke-width="2"/>
238
+ </svg>
239
+ </span>
240
+ View Cart
241
+ </div>
242
+ </div>
243
+
244
+ <div class="gesture"></div>
245
+ </div>
246
+ </body>
247
+ </html>
code/10001/10001_1.html ADDED
@@ -0,0 +1,381 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="utf-8">
4
+ <title>Cart UI</title>
5
+ <style>
6
+ :root{
7
+ --purple:#3E0066;
8
+ --purple-dark:#2A0046;
9
+ --pink:#FF3D74;
10
+ --green:#49C58A;
11
+ --text:#1d1d1f;
12
+ --muted:#6e6e73;
13
+ --bg:#ffffff;
14
+ --chip:#f3f0f8;
15
+ --border:#e4e4e7;
16
+ }
17
+ body{ margin:0; padding:0; background:transparent; }
18
+ #render-target{
19
+ width:1080px; height:2400px;
20
+ position:relative; overflow:hidden;
21
+ background:#fff;
22
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
23
+ color:var(--text);
24
+ }
25
+
26
+ /* Status bar */
27
+ .status-bar{
28
+ height:84px;
29
+ background:var(--purple-dark);
30
+ color:#fff;
31
+ display:flex; align-items:center; justify-content:space-between;
32
+ padding:0 36px;
33
+ font-weight:600; font-size:34px;
34
+ }
35
+ .status-icons{ display:flex; align-items:center; gap:18px; opacity:0.9; font-size:32px; }
36
+
37
+ /* Header */
38
+ .header{
39
+ height:140px;
40
+ background:var(--purple);
41
+ color:#fff;
42
+ display:flex; align-items:center;
43
+ position:relative;
44
+ padding:0 28px;
45
+ }
46
+ .back-btn{
47
+ width:72px; height:72px; display:flex; align-items:center; justify-content:center;
48
+ border-radius:18px;
49
+ cursor:default;
50
+ }
51
+ .back-btn svg{ width:40px; height:40px; fill:#fff; }
52
+ .header-title{
53
+ position:absolute; left:0; right:0; text-align:center;
54
+ font-weight:700; font-size:46px;
55
+ letter-spacing:0.2px;
56
+ }
57
+ .add-more{
58
+ position:absolute; right:28px;
59
+ background:#6E2AAC; color:#fff;
60
+ padding:26px 34px; border-radius:26px;
61
+ font-weight:700; font-size:34px;
62
+ }
63
+
64
+ /* Scroll content area */
65
+ .content{
66
+ position:absolute; left:0; right:0; top:224px; bottom:320px;
67
+ overflow-y:auto;
68
+ background:#fff;
69
+ }
70
+
71
+ /* Cards & rows */
72
+ .card{
73
+ margin:22px 28px;
74
+ background:#fff; border:1px solid var(--border);
75
+ border-radius:22px; padding:26px;
76
+ box-shadow:0 1px 0 rgba(0,0,0,0.02);
77
+ }
78
+ .soft-card{
79
+ margin:22px 28px;
80
+ background:#fff; border:1px solid var(--border);
81
+ border-radius:26px; padding:26px 30px;
82
+ }
83
+
84
+ /* Percent icon chip */
85
+ .chip-icon{
86
+ width:72px; height:72px; border-radius:14px;
87
+ background:#E9F8EF; color:#2D9F65; display:flex; align-items:center; justify-content:center;
88
+ border:1px solid #D7EFE2; font-weight:800; font-size:34px;
89
+ margin-right:22px;
90
+ }
91
+ .row{ display:flex; align-items:center; }
92
+ .grow{ flex:1; }
93
+
94
+ .subtext{ color:var(--muted); font-size:30px; }
95
+ .bold{ font-weight:700; }
96
+ .free-delivery strong{ color:var(--purple); }
97
+
98
+ .progress-mini{
99
+ display:flex; align-items:center; gap:16px;
100
+ }
101
+ .pill{
102
+ background:#EFE7F7; color:#5A2A8C; padding:10px 18px; border-radius:999px; font-size:28px; font-weight:700;
103
+ }
104
+ .dots{ display:flex; gap:8px; }
105
+ .dot{ width:12px; height:12px; border-radius:50%; background:#C8B7E2; }
106
+ .dot.active{ background:#6E47A8; }
107
+
108
+ /* Item row */
109
+ .item-row{ display:flex; align-items:center; gap:22px; }
110
+ .img-ph{
111
+ width:140px; height:94px; background:#E0E0E0;
112
+ border:1px solid #BDBDBD; border-radius:12px;
113
+ display:flex; align-items:center; justify-content:center;
114
+ color:#757575; font-size:26px; text-align:center; padding:6px;
115
+ }
116
+ .item-info{ flex:1; }
117
+ .item-title{ font-weight:800; font-size:36px; line-height:44px; color:#2c2c2c; }
118
+ .item-sub{ font-size:28px; color:var(--muted); margin-top:6px; }
119
+
120
+ .price-box{ text-align:right; min-width:160px; }
121
+ .price-now{ font-weight:800; font-size:40px; }
122
+ .price-old{ font-size:30px; color:#999; text-decoration:line-through; margin-top:6px; }
123
+
124
+ .qty-control{
125
+ background:var(--pink); color:#fff; border-radius:28px;
126
+ display:flex; align-items:center; gap:32px;
127
+ padding:10px 20px; height:76px; min-width:220px; justify-content:center;
128
+ }
129
+ .qty-btn{ width:48px; height:48px; border-radius:12px; background:rgba(255,255,255,0.2); display:flex; align-items:center; justify-content:center; }
130
+ .qty-btn svg{ width:28px; height:28px; fill:#fff; }
131
+ .qty-value{ font-weight:800; font-size:40px; }
132
+
133
+ /* Unlock offer */
134
+ .section-title{
135
+ display:flex; align-items:center; gap:18px; font-weight:800; font-size:40px; margin:24px 28px 8px;
136
+ }
137
+ .gear{
138
+ width:66px; height:66px; border-radius:14px; background:#EFE7F7; border:1px solid #D9CDEE;
139
+ display:flex; align-items:center; justify-content:center;
140
+ }
141
+ .gear svg{ width:36px; height:36px; fill:#6E47A8; }
142
+
143
+ .offer-box{ margin:0 28px; border:1px solid var(--border); border-radius:24px; padding:26px; }
144
+ .offer-msg{ font-size:34px; line-height:44px; }
145
+ .offer-msg strong{ font-weight:800; }
146
+ .lock-icon{
147
+ width:40px; height:40px; margin-right:12px; display:inline-flex; vertical-align:middle;
148
+ }
149
+ .progress-line{ height:16px; background:#EFE7F7; border-radius:999px; margin:24px 0; overflow:hidden; }
150
+ .progress-line .bar{ width:78%; height:100%; background:#6E47A8; }
151
+
152
+ .potato-row{ display:flex; align-items:center; gap:26px; }
153
+ .kg-info{
154
+ font-size:28px; color:var(--muted);
155
+ display:flex; align-items:center; gap:10px;
156
+ }
157
+ .info-dot{
158
+ width:28px; height:28px; border-radius:50%; background:#F6F2FA; border:1px solid #E0D7EF; color:#6E47A8;
159
+ display:flex; align-items:center; justify-content:center; font-weight:800; font-size:24px;
160
+ }
161
+ .add-btn{
162
+ margin-left:auto; background:#F2F2F4; color:#6B6B70; border-radius:22px; padding:22px 40px; font-weight:800; font-size:34px;
163
+ }
164
+ .potato-price{
165
+ margin-left:20px; text-align:right; min-width:120px;
166
+ }
167
+ .potato-price .now{ font-weight:800; font-size:36px; }
168
+ .potato-price .old{ color:#FF3D74; text-decoration:line-through; font-size:32px; }
169
+
170
+ /* Coupons row */
171
+ .coupons{
172
+ margin:22px 28px; padding:28px; border:1px solid var(--border); border-radius:22px;
173
+ display:flex; align-items:center; justify-content:space-between;
174
+ }
175
+ .coupons-left{ display:flex; align-items:center; gap:18px; font-weight:800; font-size:40px; }
176
+ .green-chip{
177
+ width:72px; height:72px; border-radius:14px; background:#E9F8EF; border:1px solid #D7EFE2; color:#2D9F65; display:flex; align-items:center; justify-content:center; font-weight:800; font-size:34px;
178
+ }
179
+ .arrow-right{
180
+ width:42px; height:42px;
181
+ }
182
+ .arrow-right svg{ width:100%; height:100%; fill:#FF3D74; }
183
+
184
+ /* Recommendations */
185
+ .section-heading{ font-weight:800; font-size:42px; margin:26px 28px; }
186
+ .cards{ display:flex; gap:22px; margin:0 28px 22px; }
187
+ .prod-card{
188
+ width:324px; border:1px solid var(--border); border-radius:22px; background:#fff; overflow:hidden;
189
+ }
190
+ .prod-img{ width:100%; height:240px; }
191
+ .prod-body{ padding:22px; }
192
+ .prod-title{ font-weight:800; font-size:34px; line-height:42px; }
193
+ .off-badge{
194
+ position:absolute; top:16px; left:16px; background:#6E47A8; color:#fff; font-weight:800; font-size:28px; padding:10px 16px; border-radius:16px;
195
+ }
196
+ .card-top{ position:relative; }
197
+
198
+ /* Bottom address bar */
199
+ .bottom-area{
200
+ position:absolute; left:0; right:0; bottom:0;
201
+ background:#fff; box-shadow:0 -4px 24px rgba(0,0,0,0.06);
202
+ padding:24px 28px 36px;
203
+ }
204
+ .address-strip{
205
+ height:120px; border:1px solid var(--border); border-radius:28px; display:flex; align-items:center; gap:24px; padding:0 28px; margin-bottom:24px;
206
+ background:#fff;
207
+ }
208
+ .loc-dot{
209
+ width:54px; height:54px; border-radius:50%; background:#FF5B6E; display:flex; align-items:center; justify-content:center;
210
+ }
211
+ .loc-dot svg{ width:30px; height:30px; fill:#fff; }
212
+ .addr-text{ font-size:38px; color:#2c2c2c; }
213
+ .cta{
214
+ width:100%; background:var(--pink); color:#fff; border-radius:32px; padding:34px; text-align:center; font-weight:800; font-size:40px;
215
+ }
216
+ </style>
217
+ </head>
218
+ <body>
219
+ <div id="render-target">
220
+
221
+ <!-- Status bar -->
222
+ <div class="status-bar">
223
+ <div>8:52</div>
224
+ <div class="status-icons">
225
+ <span>◉</span>
226
+ <span>📶</span>
227
+ <span>🔋</span>
228
+ </div>
229
+ </div>
230
+
231
+ <!-- Header -->
232
+ <div class="header">
233
+ <div class="back-btn" aria-label="Back">
234
+ <svg viewBox="0 0 24 24"><path d="M15.6 3.5L5 12l10.6 8.5c.6.5 1.4.4 1.9-.2.5-.6.4-1.4-.2-1.9L9 12l8.3-6.4c.6-.5.7-1.3.2-1.9-.5-.6-1.3-.7-1.9-.2z"/></svg>
235
+ </div>
236
+ <div class="header-title">Cart (1)</div>
237
+ <div class="add-more">Add More</div>
238
+ </div>
239
+
240
+ <!-- Scrollable content -->
241
+ <div class="content">
242
+
243
+ <!-- Free delivery card -->
244
+ <div class="card">
245
+ <div class="row">
246
+ <div class="chip-icon">%</div>
247
+ <div class="grow">
248
+ <div class="free-delivery" style="font-size:36px;">
249
+ Add items worth ₹10 to get <strong>Free Delivery</strong>
250
+ </div>
251
+ </div>
252
+ <div class="progress-mini">
253
+ <div class="pill">1/6</div>
254
+ <div class="dots">
255
+ <div class="dot active"></div>
256
+ <div class="dot"></div>
257
+ <div class="dot"></div>
258
+ </div>
259
+ </div>
260
+ </div>
261
+ </div>
262
+
263
+ <!-- Item row -->
264
+ <div class="soft-card">
265
+ <div class="item-row">
266
+ <div class="img-ph">[IMG: Avocado]</div>
267
+ <div class="item-info">
268
+ <div class="item-title">Westfalia Avocado<br>Imported Semi Ripe</div>
269
+ <div class="item-sub">1 piece</div>
270
+ </div>
271
+
272
+ <div class="qty-control">
273
+ <div class="qty-btn">
274
+ <svg viewBox="0 0 24 24"><path d="M5 12c0-.6.4-1 1-1h12c.6 0 1 .4 1 1s-.4 1-1 1H6c-.6 0-1-.4-1-1z"/></svg>
275
+ </div>
276
+ <div class="qty-value">1</div>
277
+ <div class="qty-btn">
278
+ <svg viewBox="0 0 24 24"><path d="M12 5c.6 0 1 .4 1 1v6h6c.6 0 1 .4 1 1s-.4 1-1 1h-6v6c0 .6-.4 1-1 1s-1-.4-1-1v-6H5c-.6 0-1-.4-1-1s.4-1 1-1h6V6c0-.6.4-1 1-1z"/></svg>
279
+ </div>
280
+ </div>
281
+
282
+ <div class="price-box">
283
+ <div class="price-now">₹89</div>
284
+ <div class="price-old">₹111</div>
285
+ </div>
286
+ </div>
287
+ </div>
288
+
289
+ <!-- Unlock new offer -->
290
+ <div class="section-title">
291
+ <div class="gear">
292
+ <svg viewBox="0 0 24 24"><path d="M12 8a4 4 0 100 8 4 4 0 000-8zm9 4l-2.3.9c-.2.7-.5 1.4-.9 2l1.3 2.1-2.1 2.1-2.1-1.3c-.6.4-1.3.7-2 .9L12 21l-1-.3c-.7-.2-1.4-.5-2-.9l-2.1 1.3-2.1-2.1 1.3-2.1c-.4-.6-.7-1.3-.9-2L3 12l.3-1c.2-.7.5-1.4.9-2L2.9 6.9 5 4.8l2.1 1.3c.6-.4 1.3-.7 2-.9L12 3l1 .3c.7.2 1.4.5 2 .9l2.1-1.3 2.1 2.1-1.3 2.1c.4.6.7 1.3.9 2L21 12z"/></svg>
293
+ </div>
294
+ Unlock new offer
295
+ </div>
296
+
297
+ <div class="offer-box">
298
+ <div class="offer-msg">
299
+ <span class="lock-icon">
300
+ <svg viewBox="0 0 24 24"><path d="M12 2a5 5 0 00-5 5v3H6a2 2 0 00-2 2v8a2 2 0 002 2h12a2 2 0 002-2v-8a2 2 0 00-2-2h-1V7a5 5 0 00-5-5zm-3 8V7a3 3 0 016 0v3H9z"/></svg>
301
+ </span>
302
+ Buy Fruits and Vegetables worth ₹10 to get <strong>Potato</strong> at special price.
303
+ </div>
304
+
305
+ <div class="progress-line"><div class="bar"></div></div>
306
+
307
+ <div class="potato-row">
308
+ <div class="img-ph" style="width:120px; height:90px;">[IMG: Potato]</div>
309
+ <div>
310
+ <div style="font-weight:800; font-size:36px;">Potato</div>
311
+ <div class="kg-info">1 Kg <span class="info-dot">i</span></div>
312
+ </div>
313
+
314
+ <div class="add-btn">Add</div>
315
+ <div class="potato-price">
316
+ <div class="now">₹9</div>
317
+ <div class="old">₹35</div>
318
+ </div>
319
+ </div>
320
+ </div>
321
+
322
+ <!-- Coupons row -->
323
+ <div class="coupons">
324
+ <div class="coupons-left">
325
+ <div class="green-chip">%</div>
326
+ Avail Offers / Coupons
327
+ </div>
328
+ <div class="arrow-right">
329
+ <svg viewBox="0 0 24 24"><path d="M8 4l8 8-8 8c-.6.6-1.6.6-2.2 0-.6-.6-.6-1.6 0-2.2L12.6 12 5.8 6.2c-.6-.6-.6-1.6 0-2.2.6-.6 1.6-.6 2.2 0z"/></svg>
330
+ </div>
331
+ </div>
332
+
333
+ <!-- Recommendations -->
334
+ <div class="section-heading">You Might Have Missed</div>
335
+ <div class="cards">
336
+ <div class="prod-card">
337
+ <div class="card-top">
338
+ <div class="off-badge">5% Off</div>
339
+ <div class="img-ph prod-img">[IMG: Tissue Roll Pack]</div>
340
+ </div>
341
+ <div class="prod-body">
342
+ <div class="prod-title">So Soft Tissue Roll<br>4 in1 340 Pulls</div>
343
+ </div>
344
+ </div>
345
+
346
+ <div class="prod-card">
347
+ <div class="card-top">
348
+ <div class="img-ph prod-img">[IMG: Amul Taaza Milk Pouch]</div>
349
+ </div>
350
+ <div class="prod-body">
351
+ <div class="prod-title">Amul Taaza Toned<br>Fresh Milk (Pouch)</div>
352
+ </div>
353
+ </div>
354
+
355
+ <div class="prod-card">
356
+ <div class="card-top">
357
+ <div class="off-badge">17% Off</div>
358
+ <div class="img-ph prod-img">[IMG: Cauliflower]</div>
359
+ </div>
360
+ <div class="prod-body">
361
+ <div class="prod-title">Cauliflower</div>
362
+ </div>
363
+ </div>
364
+ </div>
365
+
366
+ </div>
367
+
368
+ <!-- Bottom address area -->
369
+ <div class="bottom-area">
370
+ <div class="address-strip">
371
+ <div class="loc-dot">
372
+ <svg viewBox="0 0 24 24"><path d="M12 2a7 7 0 00-7 7c0 5.2 7 13 7 13s7-7.8 7-13a7 7 0 00-7-7zm0 9.5a2.5 2.5 0 110-5 2.5 2.5 0 010 5z"/></svg>
373
+ </div>
374
+ <div class="addr-text">Enter your delivery address</div>
375
+ </div>
376
+ <div class="cta">Add Address To Proceed</div>
377
+ </div>
378
+
379
+ </div>
380
+ </body>
381
+ </html>
code/10002/10002_0.html ADDED
@@ -0,0 +1,355 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Files UI - Mock</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
9
+ #render-target {
10
+ position: relative;
11
+ overflow: hidden;
12
+ width: 1080px;
13
+ height: 2400px;
14
+ background: #121212;
15
+ color: #ECECEC;
16
+ }
17
+ .status-bar {
18
+ height: 88px;
19
+ padding: 0 32px;
20
+ display: flex;
21
+ align-items: center;
22
+ justify-content: space-between;
23
+ color: #e7e7e7;
24
+ font-weight: 600;
25
+ letter-spacing: 0.5px;
26
+ opacity: 0.95;
27
+ }
28
+ .sb-left { display: flex; align-items: center; gap: 18px; font-size: 36px; }
29
+ .sb-right { display: flex; align-items: center; gap: 18px; }
30
+ .icon { display: inline-flex; align-items: center; justify-content: center; }
31
+ .top-search {
32
+ margin: 20px 32px 6px 32px;
33
+ }
34
+ .search-bar {
35
+ background: #1E1E1E;
36
+ border-radius: 20px;
37
+ height: 96px;
38
+ display: flex;
39
+ align-items: center;
40
+ padding: 0 24px;
41
+ gap: 20px;
42
+ color: #BFBFBF;
43
+ font-size: 36px;
44
+ }
45
+ .search-bar .placeholder { color: #BDBDBD; flex: 1; }
46
+ .chips {
47
+ display: flex;
48
+ gap: 22px;
49
+ margin: 18px 32px 10px 32px;
50
+ flex-wrap: wrap;
51
+ }
52
+ .chip {
53
+ display: inline-flex;
54
+ align-items: center;
55
+ gap: 16px;
56
+ padding: 18px 28px;
57
+ border: 1px solid #3E3E3E;
58
+ color: #DADADA;
59
+ background: #161616;
60
+ border-radius: 20px;
61
+ font-size: 34px;
62
+ }
63
+ .section-title {
64
+ margin: 24px 32px 8px 32px;
65
+ color: #B9B9B9;
66
+ font-size: 28px;
67
+ letter-spacing: 1px;
68
+ }
69
+ .apps-row {
70
+ display: flex;
71
+ justify-content: space-between;
72
+ gap: 24px;
73
+ margin: 12px 32px 14px 32px;
74
+ }
75
+ .app {
76
+ width: 160px;
77
+ display: flex;
78
+ flex-direction: column;
79
+ align-items: center;
80
+ gap: 14px;
81
+ color: #EAEAEA;
82
+ font-size: 30px;
83
+ }
84
+ .app .app-icon {
85
+ width: 108px;
86
+ height: 108px;
87
+ border-radius: 54px;
88
+ display: flex;
89
+ align-items: center;
90
+ justify-content: center;
91
+ font-weight: 700;
92
+ color: #111;
93
+ }
94
+ .app .label {
95
+ text-align: center;
96
+ color: #D8D8D8;
97
+ font-size: 30px;
98
+ }
99
+ .subheader-row {
100
+ margin: 18px 32px 8px 32px;
101
+ display: flex;
102
+ align-items: center;
103
+ justify-content: space-between;
104
+ }
105
+ .subheader-row .title {
106
+ font-size: 36px;
107
+ color: #EDEDED;
108
+ }
109
+ .grid-toggle {
110
+ width: 52px;
111
+ height: 52px;
112
+ border-radius: 10px;
113
+ border: 1px solid #3E3E3E;
114
+ display: flex;
115
+ align-items: center;
116
+ justify-content: center;
117
+ color: #BDBDBD;
118
+ }
119
+ .grid {
120
+ margin: 10px 32px 110px 32px;
121
+ display: grid;
122
+ grid-template-columns: repeat(3, 1fr);
123
+ gap: 28px;
124
+ }
125
+ .thumb {
126
+ position: relative;
127
+ width: 100%;
128
+ height: 300px;
129
+ background: #E0E0E0;
130
+ border: 1px solid #BDBDBD;
131
+ display: flex;
132
+ align-items: center;
133
+ justify-content: center;
134
+ color: #555;
135
+ font-size: 28px;
136
+ border-radius: 10px;
137
+ }
138
+ .overlay {
139
+ position: absolute;
140
+ top: 10px;
141
+ right: 10px;
142
+ background: rgba(0,0,0,0.6);
143
+ width: 56px;
144
+ height: 56px;
145
+ border-radius: 28px;
146
+ display: flex;
147
+ align-items: center;
148
+ justify-content: center;
149
+ }
150
+ .gesture-bar {
151
+ position: absolute;
152
+ left: 50%;
153
+ transform: translateX(-50%);
154
+ bottom: 28px;
155
+ width: 420px;
156
+ height: 14px;
157
+ background: #FFFFFF;
158
+ border-radius: 8px;
159
+ opacity: 0.9;
160
+ }
161
+ /* Small helper svgs color */
162
+ svg { fill: currentColor; }
163
+ </style>
164
+ </head>
165
+ <body>
166
+ <div id="render-target">
167
+ <!-- Status Bar -->
168
+ <div class="status-bar">
169
+ <div class="sb-left">
170
+ <span>8:52</span>
171
+ <span class="icon" style="opacity:.85;">
172
+ <svg width="34" height="34" viewBox="0 0 24 24"><circle cx="12" cy="12" r="3"/></svg>
173
+ </span>
174
+ <span class="icon" style="opacity:.85;">
175
+ <svg width="34" height="34" viewBox="0 0 24 24"><rect x="4" y="10" width="16" height="4" rx="2"/></svg>
176
+ </span>
177
+ <span class="icon" style="opacity:.85;">
178
+ <svg width="34" height="34" viewBox="0 0 24 24"><rect x="4" y="10" width="16" height="4" rx="2"/></svg>
179
+ </span>
180
+ <span class="icon" style="opacity:.85;">
181
+ <svg width="34" height="34" viewBox="0 0 24 24"><circle cx="12" cy="12" r="2"/></svg>
182
+ </span>
183
+ </div>
184
+ <div class="sb-right">
185
+ <span class="icon">
186
+ <svg width="40" height="40" viewBox="0 0 24 24">
187
+ <path d="M4 12c4-6 12-6 16 0" stroke="currentColor" stroke-width="2" fill="none"/>
188
+ <circle cx="12" cy="12" r="2"/>
189
+ </svg>
190
+ </span>
191
+ <span class="icon">
192
+ <svg width="40" height="40" viewBox="0 0 24 24">
193
+ <rect x="3" y="8" width="14" height="10" rx="2" stroke="currentColor" stroke-width="2" fill="none"/>
194
+ <rect x="5" y="10" width="10" height="6" fill="currentColor"/>
195
+ <rect x="18" y="10" width="3" height="6" rx="1.5" fill="currentColor"/>
196
+ </svg>
197
+ </span>
198
+ </div>
199
+ </div>
200
+
201
+ <!-- Search -->
202
+ <div class="top-search">
203
+ <div class="search-bar">
204
+ <span class="icon" style="color:#CFCFCF;">
205
+ <!-- Hamburger -->
206
+ <svg width="44" height="44" viewBox="0 0 24 24">
207
+ <rect x="3" y="6" width="18" height="2" rx="1"/><rect x="3" y="11" width="18" height="2" rx="1"/><rect x="3" y="16" width="18" height="2" rx="1"/>
208
+ </svg>
209
+ </span>
210
+ <div class="placeholder">Search this phone</div>
211
+ <span class="icon" style="color:#CFCFCF;">
212
+ <!-- Vertical more -->
213
+ <svg width="44" height="44" viewBox="0 0 24 24">
214
+ <circle cx="12" cy="6" r="2"/><circle cx="12" cy="12" r="2"/><circle cx="12" cy="18" r="2"/>
215
+ </svg>
216
+ </span>
217
+ </div>
218
+ </div>
219
+
220
+ <!-- Chips -->
221
+ <div class="chips">
222
+ <div class="chip">
223
+ <span class="icon" style="color:#CFCFCF;">
224
+ <!-- Tag icon -->
225
+ <svg width="36" height="36" viewBox="0 0 24 24">
226
+ <path d="M3 10l7-7h7v7l-7 7-7-7z" fill="none" stroke="currentColor" stroke-width="2"/>
227
+ <circle cx="15" cy="9" r="1.5"/>
228
+ </svg>
229
+ </span>
230
+ <span>Large files</span>
231
+ </div>
232
+ <div class="chip">
233
+ <span class="icon" style="color:#CFCFCF;">
234
+ <!-- Clock icon -->
235
+ <svg width="36" height="36" viewBox="0 0 24 24">
236
+ <circle cx="12" cy="12" r="8" fill="none" stroke="currentColor" stroke-width="2"/>
237
+ <path d="M12 8v5l3 2" stroke="currentColor" stroke-width="2" fill="none"/>
238
+ </svg>
239
+ </span>
240
+ <span>This week</span>
241
+ </div>
242
+ </div>
243
+
244
+ <!-- Browse files section -->
245
+ <div class="section-title">BROWSE FILES IN OTHER APPS</div>
246
+ <div class="apps-row">
247
+ <div class="app">
248
+ <div class="app-icon" style="background:#4CAF50;">D</div>
249
+ <div class="label">Drive</div>
250
+ </div>
251
+ <div class="app">
252
+ <div class="app-icon" style="background:#FFC107;">P</div>
253
+ <div class="label">Photos</div>
254
+ </div>
255
+ <div class="app">
256
+ <div class="app-icon" style="background:#757575; color:#fff;">B</div>
257
+ <div class="label">Bug reports</div>
258
+ </div>
259
+ <div class="app">
260
+ <div class="app-icon" style="background:#8BC34A;">S</div>
261
+ <div class="label">System trac...</div>
262
+ </div>
263
+ <div class="app">
264
+ <div class="app-icon" style="background:#7CB342;">Z</div>
265
+ <div class="label">ZArchiver</div>
266
+ </div>
267
+ </div>
268
+
269
+ <!-- Recent images -->
270
+ <div class="subheader-row">
271
+ <div class="title">Recent images</div>
272
+ <div class="grid-toggle">
273
+ <svg width="28" height="28" viewBox="0 0 24 24">
274
+ <rect x="3" y="4" width="7" height="7" rx="1"/>
275
+ <rect x="14" y="4" width="7" height="7" rx="1"/>
276
+ <rect x="3" y="15" width="7" height="7" rx="1"/>
277
+ <rect x="14" y="15" width="7" height="7" rx="1"/>
278
+ </svg>
279
+ </div>
280
+ </div>
281
+
282
+ <div class="grid">
283
+ <!-- Row 1 -->
284
+ <div class="thumb"><div class="overlay">
285
+ <svg width="26" height="26" viewBox="0 0 24 24" style="color:#fff">
286
+ <path d="M8 3h3v2H8v3H6V5H3V3h3V0h2v3zm8 18h-3v-2h3v-3h2v3h3v2h-3v3h-2v-3z"/>
287
+ </svg>
288
+ </div>[IMG: Desk photo]</div>
289
+ <div class="thumb"><div class="overlay">
290
+ <svg width="26" height="26" viewBox="0 0 24 24" style="color:#fff">
291
+ <path d="M8 3h3v2H8v3H6V5H3V3h3V0h2v3zm8 18h-3v-2h3v-3h2v3h3v2h-3v3h-2v-3z"/>
292
+ </svg>
293
+ </div>[IMG: Desk photo]</div>
294
+ <div class="thumb"><div class="overlay">
295
+ <svg width="26" height="26" viewBox="0 0 24 24" style="color:#fff">
296
+ <path d="M8 3h3v2H8v3H6V5H3V3h3V0h2v3zm8 18h-3v-2h3v-3h2v3h3v2h-3v3h-2v-3z"/>
297
+ </svg>
298
+ </div>[IMG: Desk photo]</div>
299
+
300
+ <!-- Row 2 -->
301
+ <div class="thumb"><div class="overlay">
302
+ <svg width="26" height="26" viewBox="0 0 24 24" style="color:#fff">
303
+ <path d="M8 3h3v2H8v3H6V5H3V3h3V0h2v3zm8 18h-3v-2h3v-3h2v3h3v2h-3v3h-2v-3z"/>
304
+ </svg>
305
+ </div>[IMG: Desk photo]</div>
306
+ <div class="thumb"><div class="overlay">
307
+ <svg width="26" height="26" viewBox="0 0 24 24" style="color:#fff">
308
+ <path d="M8 3h3v2H8v3H6V5H3V3h3V0h2v3zm8 18h-3v-2h3v-3h2v3h3v2h-3v3h-2v-3z"/>
309
+ </svg>
310
+ </div>[IMG: Desk photo]</div>
311
+ <div class="thumb"><div class="overlay">
312
+ <svg width="26" height="26" viewBox="0 0 24 24" style="color:#fff">
313
+ <path d="M8 3h3v2H8v3H6V5H3V3h3V0h2v3zm8 18h-3v-2h3v-3h2v3h3v2h-3v3h-2v-3z"/>
314
+ </svg>
315
+ </div>[IMG: Desk photo]</div>
316
+
317
+ <!-- Row 3 -->
318
+ <div class="thumb"><div class="overlay">
319
+ <svg width="26" height="26" viewBox="0 0 24 24" style="color:#fff">
320
+ <path d="M8 3h3v2H8v3H6V5H3V3h3V0h2v3zm8 18h-3v-2h3v-3h2v3h3v2h-3v3h-2v-3z"/>
321
+ </svg>
322
+ </div>[IMG: Desk photo]</div>
323
+ <div class="thumb"><div class="overlay">
324
+ <svg width="26" height="26" viewBox="0 0 24 24" style="color:#fff">
325
+ <path d="M8 3h3v2H8v3H6V5H3V3h3V0h2v3zm8 18h-3v-2h3v-3h2v3h3v2h-3v3h-2v-3z"/>
326
+ </svg>
327
+ </div>[IMG: Desk photo]</div>
328
+ <div class="thumb"><div class="overlay">
329
+ <svg width="26" height="26" viewBox="0 0 24 24" style="color:#fff">
330
+ <path d="M8 3h3v2H8v3H6V5H3V3h3V0h2v3zm8 18h-3v-2h3v-3h2v3h3v2h-3v3h-2v-3z"/>
331
+ </svg>
332
+ </div>[IMG: Desk photo]</div>
333
+
334
+ <!-- Row 4 -->
335
+ <div class="thumb"><div class="overlay">
336
+ <svg width="26" height="26" viewBox="0 0 24 24" style="color:#fff">
337
+ <path d="M8 3h3v2H8v3H6V5H3V3h3V0h2v3zm8 18h-3v-2h3v-3h2v3h3v2h-3v3h-2v-3z"/>
338
+ </svg>
339
+ </div>[IMG: Desk photo]</div>
340
+ <div class="thumb"><div class="overlay">
341
+ <svg width="26" height="26" viewBox="0 0 24 24" style="color:#fff">
342
+ <path d="M8 3h3v2H8v3H6V5H3V3h3V0h2v3zm8 18h-3v-2h3v-3h2v3h3v2h-3v3h-2v-3z"/>
343
+ </svg>
344
+ </div>[IMG: Desk photo]</div>
345
+ <div class="thumb"><div class="overlay">
346
+ <svg width="26" height="26" viewBox="0 0 24 24" style="color:#fff">
347
+ <path d="M8 3h3v2H8v3H6V5H3V3h3V0h2v3zm8 18h-3v-2h3v-3h2v3h3v2h-3v3h-2v-3z"/>
348
+ </svg>
349
+ </div>[IMG: Hands on keyboard]</div>
350
+ </div>
351
+
352
+ <div class="gesture-bar"></div>
353
+ </div>
354
+ </body>
355
+ </html>
code/10002/10002_1.html ADDED
@@ -0,0 +1,286 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Presentation Viewer Mock</title>
7
+ <style>
8
+ /* Reset and environment */
9
+ body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, Helvetica, sans-serif; color: #EDEDED; }
10
+ #render-target {
11
+ width: 1080px;
12
+ height: 2400px;
13
+ position: relative;
14
+ overflow: hidden;
15
+ background: #111213;
16
+ }
17
+
18
+ /* Status bar */
19
+ .status-bar {
20
+ height: 90px;
21
+ background: #1a1b1c;
22
+ color: #e9e9e9;
23
+ display: flex;
24
+ align-items: center;
25
+ padding: 0 28px;
26
+ box-sizing: border-box;
27
+ font-size: 36px;
28
+ letter-spacing: 1px;
29
+ }
30
+ .sb-left { display: flex; align-items: center; gap: 16px; }
31
+ .sb-center { flex: 1; display: flex; justify-content: center; gap: 18px; opacity: 0.85; }
32
+ .sb-center .pill {
33
+ width: 46px; height: 28px; border-radius: 6px; background: #2b2c2d;
34
+ display: inline-block;
35
+ }
36
+ .sb-right { display: flex; align-items: center; gap: 18px; }
37
+ .dot { width: 10px; height: 10px; border-radius: 50%; background: #bdbdbd; display: inline-block; }
38
+
39
+ /* App bar */
40
+ .app-bar {
41
+ height: 120px;
42
+ background: #1f2021;
43
+ display: flex;
44
+ align-items: center;
45
+ padding: 0 24px;
46
+ box-sizing: border-box;
47
+ border-bottom: 1px solid #0d0d0d;
48
+ }
49
+ .app-left { display: flex; align-items: center; gap: 18px; }
50
+ .app-title { font-size: 44px; font-weight: 500; color: #f4f4f4; }
51
+ .app-right { margin-left: auto; display: flex; align-items: center; gap: 26px; }
52
+
53
+ /* Slides area */
54
+ .slides-area {
55
+ background: #000;
56
+ padding-top: 6px;
57
+ box-sizing: border-box;
58
+ height: 1730px; /* space before bottom bar and home pill */
59
+ overflow: hidden;
60
+ }
61
+ .slide-wrap { padding: 10px 0; }
62
+ .divider { height: 16px; background: #0a0a0a; }
63
+
64
+ .slide {
65
+ position: relative;
66
+ width: 1040px;
67
+ height: 540px;
68
+ margin: 0 auto;
69
+ background: #23302c;
70
+ border: 2px solid #0c0c0c;
71
+ overflow: hidden;
72
+ }
73
+
74
+ /* Right green panel */
75
+ .slide .right-panel {
76
+ position: absolute;
77
+ top: 0; right: 0;
78
+ width: 170px;
79
+ height: 100%;
80
+ background: linear-gradient(180deg, #c9e9a5 0%, #a8db83 100%);
81
+ border-left: 2px solid rgba(0,0,0,0.5);
82
+ opacity: 0.95;
83
+ }
84
+
85
+ /* Subtle dark diagonals to mimic theme */
86
+ .slide::before {
87
+ content: "";
88
+ position: absolute;
89
+ inset: 0;
90
+ background: radial-gradient(150% 100% at 0% 0%, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0) 60%),
91
+ linear-gradient(135deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 50%);
92
+ pointer-events: none;
93
+ }
94
+
95
+ /* Left cyan accent strip */
96
+ .accent-strip {
97
+ position: absolute;
98
+ top: 14px;
99
+ bottom: 14px;
100
+ left: 26px;
101
+ width: 6px;
102
+ background: #8fd7d9;
103
+ box-shadow: 0 0 0 1px rgba(0,0,0,0.3) inset;
104
+ }
105
+
106
+ /* Small corner triangle accent */
107
+ .tri {
108
+ position: absolute;
109
+ width: 0; height: 0;
110
+ border-left: 16px solid transparent;
111
+ border-top: 16px solid #7ecbd1;
112
+ left: 160px; top: 120px;
113
+ opacity: 0.9;
114
+ }
115
+
116
+ .slide-title {
117
+ position: absolute;
118
+ left: 230px;
119
+ top: 210px;
120
+ font-size: 68px;
121
+ letter-spacing: 0.5px;
122
+ color: #f2f6f3;
123
+ font-weight: 400;
124
+ }
125
+
126
+ /* Spacer to emulate empty area */
127
+ .big-spacer {
128
+ height: 680px;
129
+ background: #000;
130
+ }
131
+
132
+ /* Bottom toolbar */
133
+ .bottom-bar {
134
+ position: absolute;
135
+ left: 0; right: 0;
136
+ bottom: 80px; /* leave space for home pill */
137
+ height: 160px;
138
+ background: #232425;
139
+ border-top: 1px solid #141414;
140
+ display: flex;
141
+ align-items: center;
142
+ justify-content: space-around;
143
+ box-sizing: border-box;
144
+ }
145
+ .tool {
146
+ display: flex;
147
+ flex-direction: column;
148
+ align-items: center;
149
+ gap: 14px;
150
+ color: #cfcfcf;
151
+ font-size: 30px;
152
+ }
153
+ .tool svg { width: 56px; height: 56px; stroke: #c9c9c9; fill: none; stroke-width: 2.5; }
154
+
155
+ /* Home gesture pill */
156
+ .home-pill {
157
+ position: absolute;
158
+ bottom: 22px;
159
+ left: 50%;
160
+ transform: translateX(-50%);
161
+ width: 220px;
162
+ height: 10px;
163
+ border-radius: 6px;
164
+ background: #e8e8e8;
165
+ opacity: 0.9;
166
+ }
167
+ </style>
168
+ </head>
169
+ <body>
170
+ <div id="render-target">
171
+
172
+ <!-- Status bar -->
173
+ <div class="status-bar">
174
+ <div class="sb-left">8:54</div>
175
+ <div class="sb-center" aria-label="status icons">
176
+ <span class="pill"></span>
177
+ <span class="pill"></span>
178
+ <span class="pill"></span>
179
+ <span class="pill"></span>
180
+ <span class="dot"></span>
181
+ </div>
182
+ <div class="sb-right">
183
+ <!-- simple signal and battery shapes -->
184
+ <svg width="40" height="32" viewBox="0 0 24 24" aria-label="signal">
185
+ <path d="M3 20h2v-4H3v4zm4 0h2v-7H7v7zm4 0h2v-10h-2V20zm4 0h2v-13h-2V20z" fill="#e0e0e0"></path>
186
+ </svg>
187
+ <svg width="44" height="32" viewBox="0 0 24 24" aria-label="battery">
188
+ <rect x="2" y="7" width="18" height="10" rx="2" ry="2" stroke="#e0e0e0" fill="none"></rect>
189
+ <rect x="3.8" y="8.8" width="12" height="6.4" fill="#e0e0e0"></rect>
190
+ <rect x="20" y="10" width="2" height="4" fill="#e0e0e0"></rect>
191
+ </svg>
192
+ </div>
193
+ </div>
194
+
195
+ <!-- App bar -->
196
+ <div class="app-bar">
197
+ <div class="app-left">
198
+ <svg width="48" height="48" viewBox="0 0 24 24" aria-label="back">
199
+ <path d="M15 19L8 12l7-7" stroke="#e8e8e8" stroke-width="2.5" fill="none" stroke-linecap="round" stroke-linejoin="round"></path>
200
+ </svg>
201
+ <div class="app-title">Presentation</div>
202
+ </div>
203
+ <div class="app-right">
204
+ <svg width="48" height="48" viewBox="0 0 24 24" aria-label="cloud upload">
205
+ <path d="M5 16h14a4 4 0 0 0-1.1-7.9A6 6 0 0 0 7.2 6a5 5 0 0 0-2.2 10" stroke="#e8e8e8" fill="none" stroke-width="2"></path>
206
+ <path d="M12 14V9m0 0l-3 3m3-3l3 3" stroke="#e8e8e8" fill="none" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
207
+ </svg>
208
+ <svg width="42" height="42" viewBox="0 0 24 24" aria-label="menu">
209
+ <circle cx="12" cy="5" r="2" fill="#e8e8e8"></circle>
210
+ <circle cx="12" cy="12" r="2" fill="#e8e8e8"></circle>
211
+ <circle cx="12" cy="19" r="2" fill="#e8e8e8"></circle>
212
+ </svg>
213
+ </div>
214
+ </div>
215
+
216
+ <!-- Slides / content preview -->
217
+ <div class="slides-area">
218
+ <div class="slide-wrap">
219
+ <div class="slide">
220
+ <div class="accent-strip"></div>
221
+ <div class="tri"></div>
222
+ <div class="right-panel"></div>
223
+ <div class="slide-title">The Hunter</div>
224
+ </div>
225
+ </div>
226
+
227
+ <div class="divider"></div>
228
+
229
+ <div class="slide-wrap">
230
+ <div class="slide">
231
+ <div class="accent-strip"></div>
232
+ <div class="tri" style="top: 90px;"></div>
233
+ <div class="right-panel"></div>
234
+ <!-- No title on second preview -->
235
+ </div>
236
+ </div>
237
+
238
+ <div class="big-spacer"></div>
239
+ </div>
240
+
241
+ <!-- Bottom toolbar -->
242
+ <div class="bottom-bar">
243
+ <div class="tool">
244
+ <svg viewBox="0 0 24 24" aria-label="present">
245
+ <rect x="3" y="4" width="18" height="12" rx="2" ry="2"></rect>
246
+ <path d="M12 16v4m-3 0h6" stroke="#c9c9c9"></path>
247
+ </svg>
248
+ <div>Present</div>
249
+ </div>
250
+ <div class="tool">
251
+ <svg viewBox="0 0 24 24" aria-label="notes">
252
+ <rect x="4" y="3" width="14" height="18" rx="2" ry="2"></rect>
253
+ <path d="M7 8h8M7 12h8M7 16h6"></path>
254
+ </svg>
255
+ <div>Notes</div>
256
+ </div>
257
+ <div class="tool">
258
+ <svg viewBox="0 0 24 24" aria-label="edit">
259
+ <path d="M4 20h16"></path>
260
+ <path d="M14.5 4.5l5 5L9 20H4v-5z"></path>
261
+ </svg>
262
+ <div>Edit</div>
263
+ </div>
264
+ <div class="tool">
265
+ <svg viewBox="0 0 24 24" aria-label="find">
266
+ <circle cx="11" cy="11" r="6"></circle>
267
+ <path d="M20 20l-3.5-3.5"></path>
268
+ </svg>
269
+ <div>Find</div>
270
+ </div>
271
+ <div class="tool">
272
+ <svg viewBox="0 0 24 24" aria-label="share">
273
+ <circle cx="6" cy="12" r="2"></circle>
274
+ <circle cx="18" cy="6" r="2"></circle>
275
+ <circle cx="18" cy="18" r="2"></circle>
276
+ <path d="M8 12l8-6M8 12l8 6"></path>
277
+ </svg>
278
+ <div>Share</div>
279
+ </div>
280
+ </div>
281
+
282
+ <!-- Home indicator -->
283
+ <div class="home-pill"></div>
284
+ </div>
285
+ </body>
286
+ </html>
code/10002/10002_2.html ADDED
@@ -0,0 +1,262 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Presentation Viewer Mock</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
9
+ #render-target {
10
+ position: relative;
11
+ width: 1080px;
12
+ height: 2400px;
13
+ overflow: hidden;
14
+ background: #0e0e0f;
15
+ color: #eaeaea;
16
+ }
17
+
18
+ /* Status bar */
19
+ .status-bar {
20
+ height: 120px;
21
+ background: #121212;
22
+ display: flex;
23
+ align-items: center;
24
+ padding: 0 32px;
25
+ box-sizing: border-box;
26
+ font-size: 40px;
27
+ color: #d7d7d7;
28
+ letter-spacing: 0.5px;
29
+ }
30
+ .status-left { display: flex; align-items: center; gap: 22px; }
31
+ .status-icons { display: flex; align-items: center; gap: 18px; margin-left: 20px; }
32
+ .dot {
33
+ width: 12px; height: 12px; background: #bdbdbd; border-radius: 50%;
34
+ display: inline-block;
35
+ }
36
+ .status-right {
37
+ margin-left: auto;
38
+ display: flex; align-items: center; gap: 24px;
39
+ font-size: 34px; color: #d7d7d7;
40
+ }
41
+ .tiny-bar {
42
+ width: 46px; height: 18px; border-radius: 4px; border: 2px solid #d7d7d7; position: relative;
43
+ }
44
+ .tiny-bar::after { content: ""; position: absolute; right: -8px; top: 4px; width: 6px; height: 10px; background: #d7d7d7; border-radius: 2px; }
45
+ .tiny-fill { width: 70%; height: 100%; background: #d7d7d7; }
46
+
47
+ /* App bar */
48
+ .app-bar {
49
+ height: 140px;
50
+ background: #1b1b1c;
51
+ display: flex;
52
+ align-items: center;
53
+ padding: 0 24px;
54
+ box-sizing: border-box;
55
+ border-bottom: 2px solid #2a2a2a;
56
+ }
57
+ .app-title {
58
+ font-size: 52px; font-weight: 600; color: #eaeaea; margin-left: 16px;
59
+ }
60
+ .app-actions { margin-left: auto; display: flex; align-items: center; gap: 34px; }
61
+ .icon-btn { width: 72px; height: 72px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
62
+ .icon-btn svg { width: 48px; height: 48px; fill: none; stroke: #eaeaea; stroke-width: 3; }
63
+
64
+ /* Content area */
65
+ .content {
66
+ position: absolute;
67
+ top: 260px; /* 120 + 140 */
68
+ bottom: 230px; /* leave space for bottom toolbar */
69
+ left: 0; right: 0;
70
+ overflow: hidden;
71
+ background: #000;
72
+ }
73
+ .slides-wrap {
74
+ padding: 20px 16px 0 16px;
75
+ box-sizing: border-box;
76
+ }
77
+ .slide-box {
78
+ position: relative;
79
+ width: 1048px;
80
+ height: 640px;
81
+ margin: 0 auto 18px auto;
82
+ background: #E0E0E0;
83
+ border: 2px solid #BDBDBD;
84
+ box-sizing: border-box;
85
+ display: flex; align-items: center; justify-content: center;
86
+ color: #555;
87
+ font-size: 40px;
88
+ }
89
+ .slide-box.selected {
90
+ border: 6px solid #d35400;
91
+ box-shadow: inset 0 0 0 4px #6bbec5;
92
+ }
93
+ .slide-label {
94
+ position: absolute; top: 22px; right: 22px;
95
+ background: rgba(0,0,0,0.75);
96
+ color: #fff; font-size: 36px; padding: 10px 22px; border-radius: 16px;
97
+ }
98
+ .action-chip-row {
99
+ position: absolute; bottom: 24px; left: 24px;
100
+ display: flex; gap: 12px;
101
+ }
102
+ .chip {
103
+ background: #2b2b2d;
104
+ color: #e9e9e9;
105
+ font-size: 36px;
106
+ padding: 16px 22px;
107
+ border-radius: 6px;
108
+ border: 1px solid #3c3c3e;
109
+ }
110
+
111
+ /* Separator line */
112
+ .separator {
113
+ width: 100%;
114
+ height: 6px;
115
+ background: #b04115;
116
+ margin: 4px 0 18px 0;
117
+ }
118
+
119
+ /* Bottom toolbar */
120
+ .bottom-bar {
121
+ position: absolute; left: 0; right: 0; bottom: 0;
122
+ height: 230px;
123
+ background: #1b1b1c;
124
+ border-top: 2px solid #2b2b2b;
125
+ display: flex; align-items: center; justify-content: space-around;
126
+ box-sizing: border-box;
127
+ padding-bottom: 36px;
128
+ }
129
+ .tool {
130
+ display: flex; flex-direction: column; align-items: center; gap: 10px;
131
+ color: #e0e0e0; font-size: 30px;
132
+ }
133
+ .tool svg { width: 66px; height: 66px; stroke: #e0e0e0; stroke-width: 3; fill: none; }
134
+ .home-indicator {
135
+ position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
136
+ width: 260px; height: 12px; background: #eaeaea; border-radius: 8px; opacity: 0.85;
137
+ }
138
+
139
+ /* Back arrow icon */
140
+ .back { display: flex; align-items: center; gap: 12px; color: #eaeaea; }
141
+ .back svg { width: 60px; height: 60px; stroke: #eaeaea; stroke-width: 4; }
142
+ </style>
143
+ </head>
144
+ <body>
145
+ <div id="render-target">
146
+
147
+ <!-- Status bar -->
148
+ <div class="status-bar">
149
+ <div class="status-left">
150
+ <div>8:55</div>
151
+ <div class="status-icons">
152
+ <div class="dot"></div>
153
+ <div class="dot"></div>
154
+ <div class="dot"></div>
155
+ <div class="dot"></div>
156
+ </div>
157
+ </div>
158
+ <div class="status-right">
159
+ <!-- WiFi -->
160
+ <svg viewBox="0 0 24 24">
161
+ <path d="M2 8c5-4 15-4 20 0M5 11c4-3 10-3 14 0M8 14c3-2 7-2 10 0"/>
162
+ <circle cx="12" cy="18" r="2" fill="#d7d7d7" stroke="none"></circle>
163
+ </svg>
164
+ <!-- Battery -->
165
+ <div class="tiny-bar"><div class="tiny-fill"></div></div>
166
+ </div>
167
+ </div>
168
+
169
+ <!-- App bar -->
170
+ <div class="app-bar">
171
+ <div class="back">
172
+ <svg viewBox="0 0 24 24"><path d="M15 18l-6-6 6-6" /></svg>
173
+ </div>
174
+ <div class="app-title">Presentation</div>
175
+ <div class="app-actions">
176
+ <div class="icon-btn" title="Cloud">
177
+ <svg viewBox="0 0 24 24">
178
+ <path d="M6 18h10a4 4 0 0 0 0-8 6 6 0 0 0-11.5 2.5A3.5 3.5 0 0 0 6 18z"></path>
179
+ </svg>
180
+ </div>
181
+ <div class="icon-btn" title="More">
182
+ <svg viewBox="0 0 24 24">
183
+ <circle cx="12" cy="5" r="2" fill="#eaeaea" stroke="none"></circle>
184
+ <circle cx="12" cy="12" r="2" fill="#eaeaea" stroke="none"></circle>
185
+ <circle cx="12" cy="19" r="2" fill="#eaeaea" stroke="none"></circle>
186
+ </svg>
187
+ </div>
188
+ </div>
189
+ </div>
190
+
191
+ <!-- Content area with slide previews -->
192
+ <div class="content">
193
+ <div class="slides-wrap">
194
+ <div class="slide-box">
195
+ <div class="slide-label">Slide 1 of 2</div>
196
+ <div>[IMG: Slide 1 Preview - "The Hunter"]</div>
197
+ <div class="action-chip-row">
198
+ <div class="chip">Edit</div>
199
+ <div class="chip">Copy</div>
200
+ <div class="chip">New Comment</div>
201
+ <div class="chip">Share</div>
202
+ </div>
203
+ </div>
204
+
205
+ <div class="separator"></div>
206
+
207
+ <div class="slide-box selected">
208
+ <div>[IMG: Slide 2 Preview - Empty template]</div>
209
+ </div>
210
+ </div>
211
+ </div>
212
+
213
+ <!-- Bottom action bar -->
214
+ <div class="bottom-bar">
215
+ <div class="tool">
216
+ <svg viewBox="0 0 24 24">
217
+ <rect x="3" y="4" width="18" height="12" rx="1.5"></rect>
218
+ <line x1="8" y1="20" x2="16" y2="20"></line>
219
+ <line x1="12" y1="16" x2="12" y2="20"></line>
220
+ </svg>
221
+ <div>Present</div>
222
+ </div>
223
+ <div class="tool">
224
+ <svg viewBox="0 0 24 24">
225
+ <rect x="4" y="3" width="16" height="18" rx="1.5"></rect>
226
+ <line x1="7" y1="8" x2="17" y2="8"></line>
227
+ <line x1="7" y1="12" x2="17" y2="12"></line>
228
+ <line x1="7" y1="16" x2="14" y2="16"></line>
229
+ </svg>
230
+ <div>Notes</div>
231
+ </div>
232
+ <div class="tool">
233
+ <svg viewBox="0 0 24 24">
234
+ <path d="M12 20l8-8"></path>
235
+ <path d="M15 7l2 2"></path>
236
+ <rect x="4" y="4" width="10" height="14" rx="1.5"></rect>
237
+ </svg>
238
+ <div>Edit</div>
239
+ </div>
240
+ <div class="tool">
241
+ <svg viewBox="0 0 24 24">
242
+ <circle cx="11" cy="11" r="6"></circle>
243
+ <line x1="16.5" y1="16.5" x2="21" y2="21"></line>
244
+ </svg>
245
+ <div>Find</div>
246
+ </div>
247
+ <div class="tool">
248
+ <svg viewBox="0 0 24 24">
249
+ <circle cx="6" cy="12" r="2"></circle>
250
+ <circle cx="18" cy="6" r="2"></circle>
251
+ <circle cx="18" cy="18" r="2"></circle>
252
+ <line x1="7.6" y1="11" x2="16.2" y2="7"></line>
253
+ <line x1="7.6" y1="13" x2="16.2" y2="17"></line>
254
+ </svg>
255
+ <div>Share</div>
256
+ </div>
257
+ </div>
258
+
259
+ <div class="home-indicator"></div>
260
+ </div>
261
+ </body>
262
+ </html>
code/10002/10002_4.html ADDED
@@ -0,0 +1,199 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Select images - Mock</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: Roboto, Arial, Helvetica, sans-serif; }
9
+ #render-target {
10
+ width: 1080px;
11
+ height: 2400px;
12
+ position: relative;
13
+ overflow: hidden;
14
+ background: #0b0b0b;
15
+ }
16
+
17
+ /* Status bar */
18
+ .status-bar {
19
+ position: absolute;
20
+ top: 0;
21
+ left: 0;
22
+ width: 100%;
23
+ height: 100px;
24
+ background: #000;
25
+ color: #fff;
26
+ display: flex;
27
+ align-items: center;
28
+ padding: 0 24px;
29
+ box-sizing: border-box;
30
+ }
31
+ .sb-left { font-size: 42px; font-weight: 500; }
32
+ .sb-center {
33
+ display: flex;
34
+ gap: 26px;
35
+ margin-left: 40px;
36
+ }
37
+ .sb-right {
38
+ margin-left: auto;
39
+ display: flex;
40
+ align-items: center;
41
+ gap: 24px;
42
+ }
43
+ .icon {
44
+ width: 44px;
45
+ height: 44px;
46
+ }
47
+
48
+ /* App bar */
49
+ .app-bar {
50
+ position: absolute;
51
+ top: 100px;
52
+ left: 0;
53
+ width: 100%;
54
+ height: 120px;
55
+ background: #2c2c2c;
56
+ color: #fff;
57
+ display: flex;
58
+ align-items: center;
59
+ box-sizing: border-box;
60
+ padding: 0 24px;
61
+ }
62
+ .app-title {
63
+ font-size: 52px;
64
+ font-weight: 500;
65
+ margin-left: 18px;
66
+ letter-spacing: 0.2px;
67
+ }
68
+ .app-actions {
69
+ margin-left: auto;
70
+ display: flex;
71
+ align-items: center;
72
+ gap: 24px;
73
+ }
74
+
75
+ /* Grid */
76
+ .grid {
77
+ position: absolute;
78
+ top: 220px; /* status + app bar */
79
+ left: 0;
80
+ width: 100%;
81
+ box-sizing: border-box;
82
+ padding: 16px;
83
+ display: grid;
84
+ grid-template-columns: repeat(3, 1fr);
85
+ grid-auto-rows: 330px;
86
+ gap: 12px;
87
+ }
88
+ .thumb {
89
+ background: #E0E0E0;
90
+ border: 1px solid #BDBDBD;
91
+ color: #757575;
92
+ display: flex;
93
+ justify-content: center;
94
+ align-items: center;
95
+ font-size: 32px;
96
+ text-align: center;
97
+ border-radius: 6px;
98
+ }
99
+
100
+ /* Gesture bar */
101
+ .gesture {
102
+ position: absolute;
103
+ bottom: 28px;
104
+ left: 50%;
105
+ transform: translateX(-50%);
106
+ width: 420px;
107
+ height: 12px;
108
+ background: #CFCFCF;
109
+ border-radius: 12px;
110
+ opacity: 0.86;
111
+ }
112
+ </style>
113
+ </head>
114
+ <body>
115
+ <div id="render-target">
116
+ <!-- Status Bar -->
117
+ <div class="status-bar">
118
+ <div class="sb-left">8:55</div>
119
+ <div class="sb-center">
120
+ <!-- Simple app icons -->
121
+ <svg class="icon" viewBox="0 0 24 24">
122
+ <rect x="3" y="6" width="18" height="12" fill="none" stroke="#fff" stroke-width="2"></rect>
123
+ <polygon points="10,9 16,12 10,15" fill="#fff"></polygon>
124
+ </svg>
125
+ <svg class="icon" viewBox="0 0 24 24">
126
+ <rect x="3" y="5" width="18" height="14" rx="2" ry="2" fill="none" stroke="#fff" stroke-width="2"></rect>
127
+ <polyline points="3,7 12,13 21,7" fill="none" stroke="#fff" stroke-width="2"></polyline>
128
+ </svg>
129
+ <svg class="icon" viewBox="0 0 24 24">
130
+ <circle cx="12" cy="12" r="9" fill="none" stroke="#fff" stroke-width="2"></circle>
131
+ <circle cx="12" cy="12" r="4" fill="#fff"></circle>
132
+ </svg>
133
+ <svg class="icon" viewBox="0 0 24 24">
134
+ <circle cx="12" cy="12" r="3" fill="#fff"></circle>
135
+ </svg>
136
+ </div>
137
+ <div class="sb-right">
138
+ <svg class="icon" viewBox="0 0 24 24">
139
+ <path d="M2 16c3-3 7-3 10 0" stroke="#fff" stroke-width="2" fill="none" stroke-linecap="round"></path>
140
+ <path d="M6 12c2-2 6-2 8 0" stroke="#fff" stroke-width="2" fill="none" stroke-linecap="round"></path>
141
+ <path d="M10 8c1-1 3-1 4 0" stroke="#fff" stroke-width="2" fill="none" stroke-linecap="round"></path>
142
+ </svg>
143
+ <svg class="icon" viewBox="0 0 24 24">
144
+ <rect x="2" y="7" width="18" height="10" rx="2" ry="2" fill="none" stroke="#fff" stroke-width="2"></rect>
145
+ <rect x="4" y="9" width="12" height="6" fill="#fff"></rect>
146
+ <rect x="20" y="10" width="2" height="4" fill="#fff"></rect>
147
+ </svg>
148
+ </div>
149
+ </div>
150
+
151
+ <!-- App Bar -->
152
+ <div class="app-bar">
153
+ <svg class="icon" viewBox="0 0 24 24">
154
+ <path d="M15 5 L7 12 L15 19" fill="none" stroke="#fff" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"></path>
155
+ </svg>
156
+ <div class="app-title">Select images</div>
157
+ <div class="app-actions">
158
+ <svg class="icon" viewBox="0 0 24 24">
159
+ <path d="M3 6h7l2 3h9v9H3z" fill="none" stroke="#fff" stroke-width="2" stroke-linejoin="round"></path>
160
+ </svg>
161
+ </div>
162
+ </div>
163
+
164
+ <!-- Grid of image thumbnails -->
165
+ <div class="grid">
166
+ <div class="thumb">[IMG: Office desk photo]</div>
167
+ <div class="thumb">[IMG: Office desk with cables]</div>
168
+ <div class="thumb">[IMG: Hands typing on laptop]</div>
169
+
170
+ <div class="thumb">[IMG: Office desk close-up]</div>
171
+ <div class="thumb">[IMG: Desk adapters and wires]</div>
172
+ <div class="thumb">[IMG: Laptop screen on desk]</div>
173
+
174
+ <div class="thumb">[IMG: Laptop and hands]</div>
175
+ <div class="thumb">[IMG: Card and cable on desk]</div>
176
+ <div class="thumb">[IMG: Desk with earphones]</div>
177
+
178
+ <div class="thumb">[IMG: People at office desk]</div>
179
+ <div class="thumb">[IMG: Hands near trackpad]</div>
180
+ <div class="thumb">[IMG: Cables and adapter]</div>
181
+
182
+ <div class="thumb">[IMG: Under desk - shoes]</div>
183
+ <div class="thumb">[IMG: Under desk - bag and adapter]</div>
184
+ <div class="thumb">[IMG: Under desk - shoes]</div>
185
+
186
+ <div class="thumb">[IMG: Adapter and cables on desk]</div>
187
+ <div class="thumb">[IMG: Desk cables and card]</div>
188
+ <div class="thumb">[IMG: Legs and shoes near desk]</div>
189
+
190
+ <div class="thumb">[IMG: Under desk - bag and adapter]</div>
191
+ <div class="thumb">[IMG: Desk with laptop edge]</div>
192
+ <div class="thumb">[IMG: Office desk photo]</div>
193
+ </div>
194
+
195
+ <!-- Gesture bar -->
196
+ <div class="gesture"></div>
197
+ </div>
198
+ </body>
199
+ </html>
code/10002/10002_5.html ADDED
@@ -0,0 +1,221 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Select images - Gallery</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: #000000;
15
+ color: #FFFFFF;
16
+ }
17
+
18
+ /* Status bar */
19
+ .status-bar {
20
+ height: 96px;
21
+ background: #000;
22
+ display: flex;
23
+ align-items: center;
24
+ padding: 0 24px;
25
+ box-sizing: border-box;
26
+ font-size: 36px;
27
+ letter-spacing: 0.5px;
28
+ }
29
+ .status-left { flex: 1; color: #fff; }
30
+ .status-right { display: flex; align-items: center; gap: 22px; }
31
+ .icon-mini {
32
+ width: 32px; height: 32px;
33
+ display: inline-block;
34
+ }
35
+
36
+ /* App bar */
37
+ .app-bar {
38
+ height: 140px;
39
+ background: #2b2b2b;
40
+ display: flex;
41
+ align-items: center;
42
+ padding: 0 24px;
43
+ box-sizing: border-box;
44
+ border-bottom: 1px solid #1f1f1f;
45
+ }
46
+ .app-title {
47
+ font-size: 56px;
48
+ font-weight: 600;
49
+ margin-left: 18px;
50
+ color: #ffffff;
51
+ }
52
+ .spacer { flex: 1; }
53
+
54
+ /* Gallery grid */
55
+ .gallery {
56
+ position: absolute;
57
+ top: 96px; /* status bar */
58
+ top: calc(96px + 140px);
59
+ left: 0; right: 0;
60
+ bottom: 110px; /* gesture area */
61
+ overflow: hidden;
62
+ background: #111111;
63
+ }
64
+ .grid {
65
+ height: 100%;
66
+ padding: 16px;
67
+ box-sizing: border-box;
68
+ display: grid;
69
+ grid-template-columns: repeat(3, 1fr);
70
+ grid-auto-rows: 344px;
71
+ gap: 12px;
72
+ }
73
+ .tile {
74
+ position: relative;
75
+ background: #E0E0E0;
76
+ border: 1px solid #BDBDBD;
77
+ color: #757575;
78
+ display: flex;
79
+ align-items: center;
80
+ justify-content: center;
81
+ text-align: center;
82
+ font-size: 28px;
83
+ border-radius: 4px;
84
+ user-select: none;
85
+ }
86
+ .badge {
87
+ position: absolute;
88
+ top: 12px;
89
+ right: 12px;
90
+ width: 56px;
91
+ height: 56px;
92
+ background: rgba(0,0,0,0.75);
93
+ color: #fff;
94
+ border-radius: 50%;
95
+ font-size: 32px;
96
+ display: flex;
97
+ align-items: center;
98
+ justify-content: center;
99
+ border: 2px solid #111;
100
+ }
101
+
102
+ /* Floating action button */
103
+ .fab {
104
+ position: absolute;
105
+ right: 34px;
106
+ bottom: 190px;
107
+ width: 132px;
108
+ height: 132px;
109
+ background: #1e88e5;
110
+ color: #fff;
111
+ border-radius: 50%;
112
+ box-shadow: 0 8px 24px rgba(0,0,0,0.5);
113
+ display: flex;
114
+ align-items: center;
115
+ justify-content: center;
116
+ }
117
+ .fab-badge {
118
+ position: absolute;
119
+ top: -4px;
120
+ right: -4px;
121
+ width: 56px;
122
+ height: 56px;
123
+ background: rgba(0,0,0,0.85);
124
+ color: #fff;
125
+ border-radius: 50%;
126
+ font-size: 30px;
127
+ display: flex;
128
+ align-items: center;
129
+ justify-content: center;
130
+ border: 2px solid #1e88e5;
131
+ }
132
+
133
+ /* Gesture bar */
134
+ .gesture {
135
+ position: absolute;
136
+ bottom: 28px;
137
+ left: 50%;
138
+ transform: translateX(-50%);
139
+ width: 400px;
140
+ height: 12px;
141
+ background: #6b6b6b;
142
+ border-radius: 10px;
143
+ opacity: 0.8;
144
+ }
145
+ </style>
146
+ </head>
147
+ <body>
148
+ <div id="render-target">
149
+ <!-- Status bar -->
150
+ <div class="status-bar">
151
+ <div class="status-left">8:56</div>
152
+ <div class="status-right">
153
+ <!-- simple status icons -->
154
+ <svg class="icon-mini" viewBox="0 0 24 24" fill="#fff">
155
+ <path d="M3 12l7-7v4h11v6H10v4z"></path>
156
+ </svg>
157
+ <svg class="icon-mini" viewBox="0 0 24 24" fill="none" stroke="#fff" stroke-width="2">
158
+ <path d="M2 10a10 10 0 0 1 20 0"></path>
159
+ <path d="M6 10a6 6 0 0 1 12 0"></path>
160
+ <circle cx="12" cy="16" r="1.6" fill="#fff"></circle>
161
+ </svg>
162
+ <svg class="icon-mini" viewBox="0 0 24 24" fill="none" stroke="#fff" stroke-width="2">
163
+ <rect x="3" y="6" width="18" height="12" rx="2"></rect>
164
+ <rect x="19" y="10" width="2" height="4" fill="#fff" stroke="none"></rect>
165
+ </svg>
166
+ </div>
167
+ </div>
168
+
169
+ <!-- App bar -->
170
+ <div class="app-bar">
171
+ <svg width="52" height="52" viewBox="0 0 24 24">
172
+ <path d="M15 4L7 12l8 8" fill="none" stroke="#fff" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"></path>
173
+ </svg>
174
+ <div class="app-title">Select images</div>
175
+ <div class="spacer"></div>
176
+ <svg width="56" height="56" viewBox="0 0 24 24">
177
+ <path d="M3 7h8l2 2h8v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V7z" fill="#bdbdbd"></path>
178
+ <rect x="3" y="5" width="8" height="4" fill="#d0d0d0"></rect>
179
+ </svg>
180
+ </div>
181
+
182
+ <!-- Gallery -->
183
+ <div class="gallery">
184
+ <div class="grid">
185
+ <div class="tile">
186
+ [IMG: Office desk photo]
187
+ <div class="badge">1</div>
188
+ </div>
189
+ <div class="tile">[IMG: Office desk photo]</div>
190
+ <div class="tile">[IMG: Hands on laptop]</div>
191
+ <div class="tile">[IMG: Desk cables close-up]</div>
192
+ <div class="tile">[IMG: Laptop and cables]</div>
193
+ <div class="tile">[IMG: Desk with earphones]</div>
194
+ <div class="tile">[IMG: Spreadsheet on laptop]</div>
195
+ <div class="tile">[IMG: Typing on laptop]</div>
196
+ <div class="tile">[IMG: Cable and card on desk]</div>
197
+ <div class="tile">[IMG: Legs and shoes under desk]</div>
198
+ <div class="tile">[IMG: Bag and cables under table]</div>
199
+ <div class="tile">[IMG: Shoes and chair wheels]</div>
200
+ <div class="tile">[IMG: Under-desk bag and power]</div>
201
+ <div class="tile">[IMG: Desk cables close-up]</div>
202
+ <div class="tile">[IMG: Feet and floor near desk]</div>
203
+ <div class="tile">[IMG: Under-desk power]</div>
204
+ <div class="tile">[IMG: Earphones on white desk]</div>
205
+ <div class="tile">[IMG: Laptop with spreadsheet]</div>
206
+ </div>
207
+ </div>
208
+
209
+ <!-- Floating action button with count -->
210
+ <div class="fab">
211
+ <svg width="72" height="72" viewBox="0 0 24 24">
212
+ <path d="M8 4l8 8-8 8" fill="none" stroke="#fff" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"></path>
213
+ </svg>
214
+ <div class="fab-badge">1</div>
215
+ </div>
216
+
217
+ <!-- Gesture bar -->
218
+ <div class="gesture"></div>
219
+ </div>
220
+ </body>
221
+ </html>
code/10002/10002_6.html ADDED
@@ -0,0 +1,243 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Photo Editor UI 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: #000000;
19
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
20
+ color: #FFFFFF;
21
+ }
22
+
23
+ /* Top nav */
24
+ .top-bar {
25
+ position: absolute;
26
+ top: 0;
27
+ left: 0;
28
+ right: 0;
29
+ height: 140px;
30
+ display: flex;
31
+ align-items: center;
32
+ padding: 0 32px;
33
+ }
34
+ .back-btn {
35
+ width: 72px;
36
+ height: 72px;
37
+ display: flex;
38
+ align-items: center;
39
+ justify-content: center;
40
+ cursor: default;
41
+ }
42
+ .counter-pill {
43
+ position: absolute;
44
+ top: 158px;
45
+ left: 50%;
46
+ transform: translateX(-50%);
47
+ background: rgba(255,255,255,0.12);
48
+ color: #FFFFFF;
49
+ padding: 10px 22px;
50
+ border-radius: 18px;
51
+ font-size: 30px;
52
+ letter-spacing: 0.4px;
53
+ }
54
+
55
+ /* Image area */
56
+ .image-stage {
57
+ position: absolute;
58
+ left: 50%;
59
+ transform: translateX(-50%);
60
+ top: 470px;
61
+ width: 940px;
62
+ height: 1320px;
63
+ background: #E0E0E0;
64
+ border: 1px solid #BDBDBD;
65
+ display: flex;
66
+ align-items: center;
67
+ justify-content: center;
68
+ color: #757575;
69
+ text-align: center;
70
+ font-size: 30px;
71
+ line-height: 1.4;
72
+ }
73
+
74
+ /* Bottom controls */
75
+ .bottom-panel {
76
+ position: absolute;
77
+ left: 0;
78
+ right: 0;
79
+ bottom: 140px;
80
+ height: 220px;
81
+ padding: 0 32px;
82
+ display: flex;
83
+ align-items: center;
84
+ gap: 24px;
85
+ }
86
+ .actions {
87
+ display: grid;
88
+ grid-auto-flow: column;
89
+ grid-auto-columns: 1fr;
90
+ align-items: center;
91
+ width: calc(100% - 340px);
92
+ height: 100%;
93
+ }
94
+ .action {
95
+ display: flex;
96
+ flex-direction: column;
97
+ align-items: center;
98
+ gap: 18px;
99
+ color: #E0E0E0;
100
+ }
101
+ .action svg {
102
+ width: 72px;
103
+ height: 72px;
104
+ fill: none;
105
+ stroke: #FFFFFF;
106
+ stroke-width: 4;
107
+ stroke-linecap: round;
108
+ stroke-linejoin: round;
109
+ }
110
+ .action span {
111
+ font-size: 30px;
112
+ color: #E0E0E0;
113
+ }
114
+ .done-btn {
115
+ margin-left: auto;
116
+ background: #1E88E5;
117
+ color: #FFFFFF;
118
+ height: 120px;
119
+ width: 280px;
120
+ border-radius: 32px;
121
+ display: flex;
122
+ align-items: center;
123
+ justify-content: center;
124
+ gap: 18px;
125
+ font-size: 38px;
126
+ font-weight: 600;
127
+ }
128
+ .done-btn svg {
129
+ width: 40px;
130
+ height: 40px;
131
+ fill: #FFFFFF;
132
+ stroke: none;
133
+ }
134
+
135
+ /* Red indicator near "More" */
136
+ .indicator {
137
+ position: absolute;
138
+ top: 8px;
139
+ right: 170px;
140
+ width: 18px;
141
+ height: 18px;
142
+ background: #E53935;
143
+ border-radius: 50%;
144
+ }
145
+
146
+ /* Gesture bar */
147
+ .gesture {
148
+ position: absolute;
149
+ bottom: 48px;
150
+ left: 50%;
151
+ transform: translateX(-50%);
152
+ width: 360px;
153
+ height: 12px;
154
+ background: rgba(255,255,255,0.75);
155
+ border-radius: 8px;
156
+ }
157
+ </style>
158
+ </head>
159
+ <body>
160
+ <div id="render-target">
161
+
162
+ <!-- Top Navigation -->
163
+ <div class="top-bar">
164
+ <div class="back-btn" aria-label="Back">
165
+ <svg viewBox="0 0 24 24">
166
+ <path d="M15 4 L7 12 L15 20" stroke="#FFFFFF" stroke-width="3.2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
167
+ </svg>
168
+ </div>
169
+ </div>
170
+ <div class="counter-pill">1/1</div>
171
+
172
+ <!-- Main Image Placeholder -->
173
+ <div class="image-stage">[IMG: Office desk with laptop, cables, and workspace]</div>
174
+
175
+ <!-- Bottom Controls -->
176
+ <div class="bottom-panel">
177
+ <div class="actions">
178
+ <!-- Add -->
179
+ <div class="action">
180
+ <svg viewBox="0 0 24 24" aria-hidden="true">
181
+ <rect x="3.5" y="6" width="17" height="12" rx="2"></rect>
182
+ <path d="M12 9.5v5M9.5 12h5"></path>
183
+ <path d="M8 6l1.5-2h5L16 6"></path>
184
+ </svg>
185
+ <span>Add</span>
186
+ </div>
187
+ <!-- Filters -->
188
+ <div class="action">
189
+ <svg viewBox="0 0 24 24" aria-hidden="true">
190
+ <path d="M4 7h10"></path>
191
+ <circle cx="16" cy="7" r="2" fill="#FFFFFF" stroke="none"></circle>
192
+ <path d="M4 12h8"></path>
193
+ <circle cx="10" cy="12" r="2" fill="#FFFFFF" stroke="none"></circle>
194
+ <path d="M4 17h13"></path>
195
+ <circle cx="8" cy="17" r="2" fill="#FFFFFF" stroke="none"></circle>
196
+ </svg>
197
+ <span>Filters</span>
198
+ </div>
199
+ <!-- Crop -->
200
+ <div class="action">
201
+ <svg viewBox="0 0 24 24" aria-hidden="true">
202
+ <path d="M7 3v14a2 2 0 0 0 2 2h14"></path>
203
+ <path d="M21 7H7"></path>
204
+ <path d="M17 21V7a2 2 0 0 0-2-2H3"></path>
205
+ </svg>
206
+ <span>Crop</span>
207
+ </div>
208
+ <!-- Rotate -->
209
+ <div class="action">
210
+ <svg viewBox="0 0 24 24" aria-hidden="true">
211
+ <path d="M12 6a6 6 0 1 1-4.24 10.24"></path>
212
+ <path d="M12 2v4H8"></path>
213
+ </svg>
214
+ <span>Rotate</span>
215
+ </div>
216
+ <!-- More -->
217
+ <div class="action" style="position: relative;">
218
+ <svg viewBox="0 0 24 24" aria-hidden="true">
219
+ <circle cx="12" cy="5" r="2" fill="#FFFFFF" stroke="none"></circle>
220
+ <circle cx="12" cy="12" r="2" fill="#FFFFFF" stroke="none"></circle>
221
+ <circle cx="12" cy="19" r="2" fill="#FFFFFF" stroke="none"></circle>
222
+ </svg>
223
+ <span>More</span>
224
+ </div>
225
+ </div>
226
+
227
+ <div class="done-btn">
228
+ <span>Done</span>
229
+ <svg viewBox="0 0 24 24" aria-hidden="true">
230
+ <path d="M9 18l6-6-6-6" />
231
+ </svg>
232
+ </div>
233
+
234
+ <!-- Small red notification dot near More -->
235
+ <div class="indicator" aria-hidden="true"></div>
236
+ </div>
237
+
238
+ <!-- Gesture Bar -->
239
+ <div class="gesture" aria-hidden="true"></div>
240
+
241
+ </div>
242
+ </body>
243
+ </html>
code/10002/10002_7.html ADDED
@@ -0,0 +1,400 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Mobile Presentation Editor Mock</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; }
9
+ #render-target {
10
+ width: 1080px;
11
+ height: 2400px;
12
+ position: relative;
13
+ overflow: hidden;
14
+ background: #121212;
15
+ color: #EDEDED;
16
+ }
17
+
18
+ /* Generic helpers */
19
+ .row { display: flex; align-items: center; }
20
+ .space-between { justify-content: space-between; }
21
+ .center { justify-content: center; }
22
+ .muted { color: #B5B5B5; }
23
+ .tiny { font-size: 22px; letter-spacing: 0.5px; }
24
+ .pill { width: 200px; height: 8px; background: #FFFFFF; opacity: 0.9; border-radius: 8px; margin: 0 auto; }
25
+
26
+ /* Status bar */
27
+ .status-bar {
28
+ height: 110px;
29
+ padding: 0 36px;
30
+ font-size: 42px;
31
+ color: #EDEDED;
32
+ }
33
+ .status-left, .status-right { gap: 22px; }
34
+ .icon-sq { width: 30px; height: 20px; border-radius: 3px; background: #EDEDED22; border: 1px solid #999; }
35
+ .dot { width: 10px; height: 10px; background: #EDEDED88; border-radius: 50%; }
36
+
37
+ /* Title and top toolbar */
38
+ .title-area {
39
+ height: 90px;
40
+ display: flex;
41
+ align-items: center;
42
+ justify-content: center;
43
+ color: #D47C3A;
44
+ font-size: 44px;
45
+ font-weight: 600;
46
+ }
47
+ .top-tools {
48
+ height: 120px;
49
+ padding: 0 40px;
50
+ gap: 44px;
51
+ display: flex;
52
+ align-items: center;
53
+ justify-content: center;
54
+ }
55
+ .tool-btn { width: 96px; height: 96px; display: flex; align-items: center; justify-content: center; border-radius: 16px; color: #EDEDED; }
56
+ .tool-btn svg { width: 54px; height: 54px; stroke: #EDEDED; fill: none; stroke-width: 3; }
57
+
58
+ /* Workspace */
59
+ .workspace {
60
+ height: 1560px; /* computed to fit full 2400 total height */
61
+ position: relative;
62
+ background: #0E0E0E;
63
+ }
64
+
65
+ /* Slide canvas shown near bottom of workspace */
66
+ .slide-wrap {
67
+ position: absolute;
68
+ left: 50%;
69
+ transform: translateX(-50%);
70
+ bottom: 40px;
71
+ width: 1000px;
72
+ height: 562px; /* 16:9 ratio */
73
+ background: #2A2A2A;
74
+ border: 1px solid #5A5A5A;
75
+ }
76
+ .slide {
77
+ position: relative;
78
+ width: 100%;
79
+ height: 100%;
80
+ background: linear-gradient(90deg, #21342D 0%, #21342D 82%, #BFE5B9 100%);
81
+ box-shadow: inset 0 0 0 2px #2F4A41;
82
+ }
83
+ .slide .left-accent {
84
+ position: absolute;
85
+ left: 28px;
86
+ top: 20px;
87
+ bottom: 20px;
88
+ width: 6px;
89
+ background: #58B3A5;
90
+ opacity: 0.9;
91
+ border-radius: 3px;
92
+ }
93
+ .slide .tiny-triangle {
94
+ position: absolute;
95
+ left: 20px;
96
+ top: 54px;
97
+ width: 0; height: 0;
98
+ border-left: 10px solid transparent;
99
+ border-right: 10px solid transparent;
100
+ border-bottom: 10px solid #58B3A5;
101
+ transform: rotate(-90deg);
102
+ opacity: 0.9;
103
+ }
104
+ .title-placeholder {
105
+ position: absolute;
106
+ left: 160px;
107
+ top: 70px;
108
+ right: 160px;
109
+ height: 86px;
110
+ border: 2px dashed #9FB1A8;
111
+ color: #FFFFFF;
112
+ display: flex; align-items: center; padding-left: 18px;
113
+ font-size: 40px;
114
+ opacity: 0.9;
115
+ }
116
+
117
+ /* Image placeholder with resize handles */
118
+ .img-holder {
119
+ position: absolute;
120
+ left: 360px;
121
+ top: 140px;
122
+ width: 280px;
123
+ height: 420px;
124
+ background: #E0E0E0;
125
+ border: 1px solid #BDBDBD;
126
+ color: #666;
127
+ display: flex; align-items: center; justify-content: center;
128
+ text-align: center;
129
+ font-size: 24px;
130
+ }
131
+ .handle {
132
+ position: absolute; width: 22px; height: 22px;
133
+ background: #FFFFFF; border: 3px solid #9FA3A7; border-radius: 50%;
134
+ }
135
+ .h-tl { top: -12px; left: -12px; }
136
+ .h-tm { top: -12px; left: 50%; transform: translateX(-50%); }
137
+ .h-tr { top: -12px; right: -12px; }
138
+ .h-ml { top: 50%; left: -12px; transform: translateY(-50%); }
139
+ .h-mr { top: 50%; right: -12px; transform: translateY(-50%); }
140
+ .h-bl { bottom: -12px; left: -12px; }
141
+ .h-bm { bottom: -12px; left: 50%; transform: translateX(-50%); }
142
+ .h-br { bottom: -12px; right: -12px; }
143
+
144
+ /* Notes / Comments header */
145
+ .meta-row {
146
+ height: 80px;
147
+ padding: 0 40px;
148
+ display: flex; align-items: center; justify-content: flex-end;
149
+ gap: 40px;
150
+ background: #121212;
151
+ border-top: 1px solid #1F1F1F;
152
+ }
153
+ .meta-btn {
154
+ display: inline-flex; align-items: center; gap: 10px; color: #D7D7D7; font-size: 34px;
155
+ }
156
+ .meta-btn svg { width: 34px; height: 34px; stroke: #D7D7D7; fill: none; stroke-width: 3; }
157
+
158
+ /* Filmstrip */
159
+ .filmstrip {
160
+ height: 240px;
161
+ display: flex; align-items: center;
162
+ gap: 26px; padding: 0 28px;
163
+ background: #101010;
164
+ border-top: 1px solid #1E1E1E;
165
+ }
166
+ .thumb {
167
+ width: 300px; height: 180px; background: #2B3B36; position: relative; border: 1px solid #7BA392;
168
+ }
169
+ .thumb .slide-mini {
170
+ width: 100%; height: 100%;
171
+ background: linear-gradient(90deg, #21342D 0%, #21342D 82%, #BFE5B9 100%);
172
+ }
173
+ .thumb .label {
174
+ position: absolute; left: 10px; bottom: 10px; color: #EAEAEA; font-size: 22px;
175
+ }
176
+ .thumb.active { outline: 6px solid #C76828; }
177
+ .thumb.active::after {
178
+ content: "";
179
+ position: absolute; left: 0; right: 0; bottom: -16px; height: 16px; background: #C76828;
180
+ }
181
+
182
+ /* Bottom toolbar */
183
+ .bottom-bar {
184
+ height: 180px;
185
+ background: #161616;
186
+ border-top: 1px solid #222;
187
+ display: flex; align-items: center; justify-content: center; gap: 40px;
188
+ }
189
+ .bottom-btn {
190
+ width: 120px; height: 120px; display: flex; align-items: center; justify-content: center;
191
+ border-radius: 14px; color: #EDEDED;
192
+ }
193
+ .bottom-btn svg { width: 60px; height: 60px; stroke: #EDEDED; fill: none; stroke-width: 3; }
194
+
195
+ /* Gesture bar */
196
+ .gesture {
197
+ height: 20px; display: flex; align-items: center; justify-content: center; background: #121212;
198
+ }
199
+ </style>
200
+ </head>
201
+ <body>
202
+ <div id="render-target">
203
+
204
+ <!-- STATUS BAR -->
205
+ <div class="status-bar row space-between">
206
+ <div class="status-left row">
207
+ <div>8:57</div>
208
+ <div class="icon-sq"></div>
209
+ <div class="icon-sq"></div>
210
+ <div class="icon-sq"></div>
211
+ <div class="dot"></div>
212
+ </div>
213
+ <div class="status-right row">
214
+ <!-- Wi‑Fi -->
215
+ <svg width="38" height="38" viewBox="0 0 24 24" stroke="#EDEDED" fill="none" stroke-width="2">
216
+ <path d="M2 8c5-4 15-4 20 0"></path>
217
+ <path d="M5 12c4-3 10-3 14 0"></path>
218
+ <path d="M8 16c3-2 5-2 8 0"></path>
219
+ <circle cx="12" cy="19" r="1.5" fill="#EDEDED"></circle>
220
+ </svg>
221
+ <!-- Battery -->
222
+ <svg width="46" height="38" viewBox="0 0 28 18" stroke="#EDEDED" fill="none" stroke-width="2">
223
+ <rect x="1" y="3" width="22" height="12" rx="2"></rect>
224
+ <rect x="3" y="5" width="14" height="8" fill="#EDEDED"></rect>
225
+ <rect x="23" y="7" width="3" height="6" fill="#EDEDED"></rect>
226
+ </svg>
227
+ </div>
228
+ </div>
229
+
230
+ <!-- TITLE -->
231
+ <div class="title-area">Presentation</div>
232
+
233
+ <!-- TOP TOOLS -->
234
+ <div class="top-tools">
235
+ <!-- Check -->
236
+ <div class="tool-btn" title="Done">
237
+ <svg viewBox="0 0 24 24">
238
+ <path d="M4 12l5 5 11-11"></path>
239
+ </svg>
240
+ </div>
241
+ <!-- Pencil/Text -->
242
+ <div class="tool-btn" title="Edit">
243
+ <svg viewBox="0 0 24 24">
244
+ <path d="M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25z"></path>
245
+ <path d="M14.06 4.69l3.75 3.75"></path>
246
+ </svg>
247
+ </div>
248
+ <!-- Cloud Upload -->
249
+ <div class="tool-btn" title="Sync">
250
+ <svg viewBox="0 0 24 24">
251
+ <path d="M7 18H6a4 4 0 010-8 5 5 0 019.9-1.5A4 4 0 1118 18h-1"></path>
252
+ <path d="M12 13v6"></path>
253
+ <path d="M9.5 15.5L12 13l2.5 2.5"></path>
254
+ </svg>
255
+ </div>
256
+ <!-- Search -->
257
+ <div class="tool-btn" title="Search">
258
+ <svg viewBox="0 0 24 24">
259
+ <circle cx="11" cy="11" r="7"></circle>
260
+ <path d="M21 21l-4.3-4.3"></path>
261
+ </svg>
262
+ </div>
263
+ <!-- Slideshow -->
264
+ <div class="tool-btn" title="Slideshow">
265
+ <svg viewBox="0 0 24 24">
266
+ <rect x="3" y="4" width="18" height="12" rx="2"></rect>
267
+ <path d="M10 9l5 3-5 3z" fill="#EDEDED"></path>
268
+ </svg>
269
+ </div>
270
+ <!-- Undo -->
271
+ <div class="tool-btn" title="Undo">
272
+ <svg viewBox="0 0 24 24">
273
+ <path d="M7 7l-4 4 4 4"></path>
274
+ <path d="M3 11h9a5 5 0 110 10"></path>
275
+ </svg>
276
+ </div>
277
+ <!-- More (vertical dots) -->
278
+ <div class="tool-btn" title="More">
279
+ <svg viewBox="0 0 24 24">
280
+ <circle cx="12" cy="5" r="2" fill="#EDEDED"></circle>
281
+ <circle cx="12" cy="12" r="2" fill="#EDEDED"></circle>
282
+ <circle cx="12" cy="19" r="2" fill="#EDEDED"></circle>
283
+ </svg>
284
+ </div>
285
+ </div>
286
+
287
+ <!-- WORKSPACE -->
288
+ <div class="workspace">
289
+ <div class="slide-wrap">
290
+ <div class="slide">
291
+ <div class="left-accent"></div>
292
+ <div class="tiny-triangle"></div>
293
+ <div class="title-placeholder">Double tap to add title</div>
294
+
295
+ <div class="img-holder">
296
+ [IMG: Office desk photo]
297
+ <div class="handle h-tl"></div>
298
+ <div class="handle h-tm"></div>
299
+ <div class="handle h-tr"></div>
300
+ <div class="handle h-ml"></div>
301
+ <div class="handle h-mr"></div>
302
+ <div class="handle h-bl"></div>
303
+ <div class="handle h-bm"></div>
304
+ <div class="handle h-br"></div>
305
+ </div>
306
+ </div>
307
+ </div>
308
+ </div>
309
+
310
+ <!-- NOTES / COMMENTS -->
311
+ <div class="meta-row">
312
+ <div class="meta-btn">
313
+ <svg viewBox="0 0 24 24">
314
+ <rect x="3" y="4" width="18" height="14" rx="2"></rect>
315
+ <line x1="7" y1="9" x2="17" y2="9"></line>
316
+ <line x1="7" y1="13" x2="14" y2="13"></line>
317
+ </svg>
318
+ <span>Notes</span>
319
+ </div>
320
+ <div class="meta-btn">
321
+ <svg viewBox="0 0 24 24">
322
+ <path d="M21 15a4 4 0 01-4 4H8l-5 3V7a4 4 0 014-4h10a4 4 0 014 4z"></path>
323
+ </svg>
324
+ <span>Comments</span>
325
+ </div>
326
+ </div>
327
+
328
+ <!-- FILMSTRIP -->
329
+ <div class="filmstrip">
330
+ <div class="thumb">
331
+ <div class="slide-mini"></div>
332
+ <div class="label">1</div>
333
+ </div>
334
+ <div class="thumb active">
335
+ <div class="slide-mini"></div>
336
+ <div class="label">2</div>
337
+ </div>
338
+ <div class="thumb">
339
+ <div class="slide-mini"></div>
340
+ <div class="label">+</div>
341
+ </div>
342
+ </div>
343
+
344
+ <!-- BOTTOM TOOLBAR -->
345
+ <div class="bottom-bar">
346
+ <!-- Crop -->
347
+ <div class="bottom-btn" title="Crop">
348
+ <svg viewBox="0 0 24 24">
349
+ <path d="M6 3v12a3 3 0 003 3h12"></path>
350
+ <path d="M18 21V9a3 3 0 00-3-3H3"></path>
351
+ </svg>
352
+ </div>
353
+ <!-- Brush -->
354
+ <div class="bottom-btn" title="Draw">
355
+ <svg viewBox="0 0 24 24">
356
+ <path d="M3 17v4h4l11-11-4-4L3 17z"></path>
357
+ <path d="M14 6l4 4"></path>
358
+ </svg>
359
+ </div>
360
+ <!-- Image -->
361
+ <div class="bottom-btn" title="Pictures">
362
+ <svg viewBox="0 0 24 24">
363
+ <rect x="3" y="5" width="18" height="14" rx="2"></rect>
364
+ <circle cx="9" cy="11" r="2"></circle>
365
+ <path d="M21 16l-5-5-6 6"></path>
366
+ </svg>
367
+ </div>
368
+ <!-- Layout -->
369
+ <div class="bottom-btn" title="Layouts">
370
+ <svg viewBox="0 0 24 24">
371
+ <rect x="3" y="4" width="18" height="16" rx="2"></rect>
372
+ <line x1="12" y1="4" x2="12" y2="20"></line>
373
+ <line x1="3" y1="12" x2="21" y2="12"></line>
374
+ </svg>
375
+ </div>
376
+ <!-- Add -->
377
+ <div class="bottom-btn" title="Add">
378
+ <svg viewBox="0 0 24 24">
379
+ <circle cx="12" cy="12" r="9"></circle>
380
+ <line x1="12" y1="8" x2="12" y2="16"></line>
381
+ <line x1="8" y1="12" x2="16" y2="12"></line>
382
+ </svg>
383
+ </div>
384
+ <!-- Undo -->
385
+ <div class="bottom-btn" title="Undo">
386
+ <svg viewBox="0 0 24 24">
387
+ <path d="M7 7l-4 4 4 4"></path>
388
+ <path d="M3 11h10a5 5 0 110 10"></path>
389
+ </svg>
390
+ </div>
391
+ </div>
392
+
393
+ <!-- GESTURE BAR -->
394
+ <div class="gesture">
395
+ <div class="pill"></div>
396
+ </div>
397
+
398
+ </div>
399
+ </body>
400
+ </html>
code/10003/10003_0.html ADDED
@@ -0,0 +1,495 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>App Grid UI Mock</title>
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <style>
7
+ body{
8
+ margin:0;
9
+ padding:0;
10
+ background:transparent;
11
+ font-family: "Roboto", Arial, sans-serif;
12
+ }
13
+ #render-target{
14
+ width:1080px;
15
+ height:2400px;
16
+ position:relative;
17
+ overflow:hidden;
18
+ background:#0e1116;
19
+ color:#fff;
20
+ }
21
+
22
+ /* Status bar */
23
+ .status-bar{
24
+ position:absolute;
25
+ top:0;
26
+ left:0;
27
+ width:100%;
28
+ height:110px;
29
+ padding:0 40px;
30
+ display:flex;
31
+ align-items:center;
32
+ justify-content:space-between;
33
+ box-sizing:border-box;
34
+ color:#dfe6ee;
35
+ font-size:40px;
36
+ letter-spacing:0.5px;
37
+ }
38
+ .status-right{
39
+ display:flex;
40
+ align-items:center;
41
+ gap:26px;
42
+ }
43
+ .icon-status{
44
+ display:inline-block;
45
+ width:48px;
46
+ height:48px;
47
+ }
48
+
49
+ /* Main content */
50
+ .content{
51
+ position:absolute;
52
+ top:140px;
53
+ left:0;
54
+ width:100%;
55
+ box-sizing:border-box;
56
+ padding:0 46px;
57
+ }
58
+ .app-grid{
59
+ display:grid;
60
+ grid-template-columns: repeat(4, 1fr);
61
+ gap:54px 44px;
62
+ }
63
+ .app-item{
64
+ text-align:center;
65
+ }
66
+ .app-icon{
67
+ width:160px;
68
+ height:160px;
69
+ border-radius:50%;
70
+ margin:0 auto 20px auto;
71
+ display:flex;
72
+ align-items:center;
73
+ justify-content:center;
74
+ box-shadow: 0 8px 18px rgba(0,0,0,0.5);
75
+ }
76
+ .app-label{
77
+ font-size:34px;
78
+ color:#e7ecf2;
79
+ line-height:1.2;
80
+ letter-spacing:0.2px;
81
+ }
82
+
83
+ /* Dock row */
84
+ .dock{
85
+ position:absolute;
86
+ bottom:240px;
87
+ left:0;
88
+ width:100%;
89
+ display:flex;
90
+ justify-content:center;
91
+ gap:110px;
92
+ }
93
+ .dock .dock-icon{
94
+ width:160px;
95
+ height:160px;
96
+ border-radius:50%;
97
+ background:#f5f7fb;
98
+ display:flex;
99
+ align-items:center;
100
+ justify-content:center;
101
+ box-shadow:0 10px 20px rgba(0,0,0,0.45);
102
+ }
103
+
104
+ /* Google search pill */
105
+ .search-pill{
106
+ position:absolute;
107
+ bottom:120px;
108
+ left:50%;
109
+ transform:translateX(-50%);
110
+ width:920px;
111
+ height:120px;
112
+ background:#2b2f36;
113
+ border-radius:60px;
114
+ display:flex;
115
+ align-items:center;
116
+ justify-content:space-between;
117
+ padding:0 36px;
118
+ box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 10px 28px rgba(0,0,0,0.5);
119
+ }
120
+ .search-left{
121
+ display:flex;
122
+ align-items:center;
123
+ gap:20px;
124
+ color:#cbd1d8;
125
+ font-size:40px;
126
+ }
127
+ .google-g{
128
+ width:70px;
129
+ height:70px;
130
+ border-radius:50%;
131
+ background:#ffffff;
132
+ display:flex;
133
+ align-items:center;
134
+ justify-content:center;
135
+ font-weight:700;
136
+ color:#4285F4;
137
+ }
138
+ .search-right{
139
+ display:flex;
140
+ align-items:center;
141
+ gap:28px;
142
+ }
143
+ .pill-icon{
144
+ width:64px;
145
+ height:64px;
146
+ }
147
+
148
+ /* Bottom navigation bar */
149
+ .nav-bar{
150
+ position:absolute;
151
+ bottom:40px;
152
+ left:50%;
153
+ transform:translateX(-50%);
154
+ width:220px;
155
+ height:12px;
156
+ background:#eaeaea;
157
+ border-radius:6px;
158
+ opacity:0.8;
159
+ }
160
+
161
+ /* Helper color circles for app icons */
162
+ .c-teal{ background:#48c3c6; }
163
+ .c-orange{ background:#ff9e3e; }
164
+ .c-red{ background:#d84a4a; }
165
+ .c-yellow{ background:#f4cf4c; }
166
+ .c-mint{ background:#38d1b9; }
167
+ .c-green{ background:#7cd241; }
168
+ .c-blue{ background:#1e4aa8; }
169
+ .c-pink{ background:#f08086; }
170
+ .c-kayak{ background:#ff7f34; }
171
+ .c-expedia{ background:#ffd24b; }
172
+ .c-white{ background:#ffffff; }
173
+ .c-redfin{ background:#b73737; }
174
+ .c-rentberry{ background:#ffffff; }
175
+ .c-trovit{ background:#4e86ff; }
176
+ .c-trainline{ background:#4bb6a3; }
177
+ .c-citymapper{ background:#58b548; }
178
+ .c-omio{ background:#192e68; }
179
+ .c-sbb{ background:#d95147; }
180
+
181
+ .label-small{
182
+ font-size:32px;
183
+ }
184
+
185
+ /* Simple SVGs default size */
186
+ svg{ display:block; }
187
+
188
+ </style>
189
+ </head>
190
+ <body>
191
+ <div id="render-target">
192
+
193
+ <!-- Status Bar -->
194
+ <div class="status-bar">
195
+ <div>10:35</div>
196
+ <div class="status-right">
197
+ <!-- Signal -->
198
+ <svg class="icon-status" viewBox="0 0 24 24">
199
+ <rect x="2" y="16" width="3" height="6" fill="#cfd8dc"></rect>
200
+ <rect x="7" y="12" width="3" height="10" fill="#cfd8dc"></rect>
201
+ <rect x="12" y="8" width="3" height="14" fill="#cfd8dc"></rect>
202
+ <rect x="17" y="4" width="3" height="18" fill="#cfd8dc"></rect>
203
+ </svg>
204
+ <!-- Wifi -->
205
+ <svg class="icon-status" viewBox="0 0 24 24">
206
+ <path d="M2 8c5-4 15-4 20 0" stroke="#cfd8dc" stroke-width="2" fill="none"/>
207
+ <path d="M5 12c3-3 11-3 14 0" stroke="#cfd8dc" stroke-width="2" fill="none"/>
208
+ <path d="M9 16c2-2 4-2 6 0" stroke="#cfd8dc" stroke-width="2" fill="none"/>
209
+ <circle cx="12" cy="19" r="2" fill="#cfd8dc"></circle>
210
+ </svg>
211
+ <!-- Battery -->
212
+ <svg class="icon-status" viewBox="0 0 28 24">
213
+ <rect x="1" y="5" width="22" height="14" rx="2" ry="2" stroke="#cfd8dc" stroke-width="2" fill="none"></rect>
214
+ <rect x="3" y="7" width="16" height="10" fill="#cfd8dc"></rect>
215
+ <rect x="24" y="9" width="3" height="6" fill="#cfd8dc"></rect>
216
+ </svg>
217
+ </div>
218
+ </div>
219
+
220
+ <!-- Content Grid -->
221
+ <div class="content">
222
+ <div class="app-grid">
223
+
224
+ <!-- Row 1 -->
225
+ <div class="app-item">
226
+ <div class="app-icon c-teal">
227
+ <!-- Reminder icon: person shape -->
228
+ <svg width="90" height="90" viewBox="0 0 24 24">
229
+ <circle cx="12" cy="6" r="3" fill="#093b4a"></circle>
230
+ <rect x="6" y="10" width="12" height="4" rx="2" fill="#093b4a"></rect>
231
+ <rect x="10" y="14" width="4" height="8" rx="2" fill="#093b4a"></rect>
232
+ </svg>
233
+ </div>
234
+ <div class="app-label">Reminder</div>
235
+ </div>
236
+
237
+ <div class="app-item">
238
+ <div class="app-icon c-orange">
239
+ <!-- All Recipes: fork & spoon -->
240
+ <svg width="90" height="90" viewBox="0 0 24 24">
241
+ <rect x="7" y="4" width="2" height="16" fill="#fff"></rect>
242
+ <circle cx="16" cy="8" r="3" fill="#fff"></circle>
243
+ <rect x="15" y="11" width="2" height="9" fill="#fff"></rect>
244
+ </svg>
245
+ </div>
246
+ <div class="app-label">All Recipes …</div>
247
+ </div>
248
+
249
+ <div class="app-item">
250
+ <div class="app-icon c-red">
251
+ <!-- OpenTable: white dot and ring -->
252
+ <svg width="90" height="90" viewBox="0 0 24 24">
253
+ <circle cx="8" cy="12" r="2.4" fill="#fff"></circle>
254
+ <circle cx="16" cy="12" r="5.5" stroke="#fff" stroke-width="2.2" fill="none"></circle>
255
+ </svg>
256
+ </div>
257
+ <div class="app-label">OpenTable</div>
258
+ </div>
259
+
260
+ <div class="app-item">
261
+ <div class="app-icon c-yellow">
262
+ <!-- Kitchen Stories: wavy lines -->
263
+ <svg width="100" height="100" viewBox="0 0 24 24">
264
+ <path d="M4 8c2 2 4 2 6 0s4-2 6 0" stroke="#fff" stroke-width="2" fill="none"/>
265
+ <path d="M4 12c2 2 4 2 6 0s4-2 6 0" stroke="#fff" stroke-width="2" fill="none"/>
266
+ <path d="M4 16c2 2 4 2 6 0s4-2 6 0" stroke="#fff" stroke-width="2" fill="none"/>
267
+ </svg>
268
+ </div>
269
+ <div class="app-label">Kitchen Sto…</div>
270
+ </div>
271
+
272
+ <!-- Row 2 -->
273
+ <div class="app-item">
274
+ <div class="app-icon c-mint">
275
+ <!-- Deliveroo: simple kangaroo mark -->
276
+ <svg width="90" height="90" viewBox="0 0 24 24">
277
+ <rect x="7" y="5" width="8" height="8" rx="2" fill="#fff"></rect>
278
+ <rect x="5" y="14" width="12" height="4" rx="2" fill="#fff"></rect>
279
+ </svg>
280
+ </div>
281
+ <div class="app-label">Deliveroo</div>
282
+ </div>
283
+
284
+ <div class="app-item">
285
+ <div class="app-icon c-green">
286
+ <!-- Duolingo: owl eyes -->
287
+ <svg width="90" height="90" viewBox="0 0 24 24">
288
+ <circle cx="8" cy="12" r="4" fill="#fff"></circle>
289
+ <circle cx="16" cy="12" r="4" fill="#fff"></circle>
290
+ <circle cx="8" cy="12" r="1.8" fill="#2f5a10"></circle>
291
+ <circle cx="16" cy="12" r="1.8" fill="#2f5a10"></circle>
292
+ </svg>
293
+ </div>
294
+ <div class="app-label">Duolingo</div>
295
+ </div>
296
+
297
+ <div class="app-item">
298
+ <div class="app-icon c-blue">
299
+ <!-- Booking.com -->
300
+ <svg width="90" height="90" viewBox="0 0 24 24">
301
+ <text x="6" y="17" font-size="14" fill="#fff" font-weight="700">B</text>
302
+ </svg>
303
+ </div>
304
+ <div class="app-label">Booking.com</div>
305
+ </div>
306
+
307
+ <div class="app-item">
308
+ <div class="app-icon c-pink">
309
+ <!-- Airbnb loop -->
310
+ <svg width="96" height="96" viewBox="0 0 24 24">
311
+ <path d="M12 5c-3 6-6 9-6 11a6 6 0 0 0 12 0c0-2-3-5-6-11z" stroke="#fff" stroke-width="2.2" fill="none"/>
312
+ </svg>
313
+ </div>
314
+ <div class="app-label">Airbnb</div>
315
+ </div>
316
+
317
+ <!-- Row 3 -->
318
+ <div class="app-item">
319
+ <div class="app-icon c-kayak">
320
+ <svg width="90" height="90" viewBox="0 0 24 24">
321
+ <text x="5" y="17" font-size="14" fill="#fff" font-weight="700">K</text>
322
+ </svg>
323
+ </div>
324
+ <div class="app-label">KAYAK</div>
325
+ </div>
326
+
327
+ <div class="app-item">
328
+ <div class="app-icon c-expedia">
329
+ <!-- Arrow -->
330
+ <svg width="100" height="100" viewBox="0 0 24 24">
331
+ <path d="M4 16l9-6 0 5 7-5" stroke="#1b1b1b" stroke-width="2.2" fill="none"/>
332
+ <circle cx="12" cy="12" r="10" stroke="#1b1b1b" stroke-width="1.2" fill="none"/>
333
+ </svg>
334
+ </div>
335
+ <div class="app-label">Expedia</div>
336
+ </div>
337
+
338
+ <div class="app-item">
339
+ <div class="app-icon c-white">
340
+ <!-- H&M -->
341
+ <svg width="90" height="90" viewBox="0 0 24 24">
342
+ <text x="4" y="16" font-size="12" fill="#c62828" font-weight="700">H&amp;M</text>
343
+ </svg>
344
+ </div>
345
+ <div class="app-label">H&amp;M</div>
346
+ </div>
347
+
348
+ <div class="app-item">
349
+ <div class="app-icon c-redfin">
350
+ <svg width="90" height="90" viewBox="0 0 24 24">
351
+ <text x="3" y="16" font-size="12" fill="#fff" font-weight="700">REDFIN</text>
352
+ </svg>
353
+ </div>
354
+ <div class="app-label">Redfin</div>
355
+ </div>
356
+
357
+ <!-- Row 4 -->
358
+ <div class="app-item">
359
+ <div class="app-icon c-rentberry">
360
+ <!-- Rentberry house -->
361
+ <svg width="90" height="90" viewBox="0 0 24 24">
362
+ <path d="M4 12l8-6 8 6v8H4z" fill="#4a8ff0"></path>
363
+ <rect x="10" y="14" width="4" height="6" fill="#f3d04d"></rect>
364
+ </svg>
365
+ </div>
366
+ <div class="app-label">Rentberry</div>
367
+ </div>
368
+
369
+ <div class="app-item">
370
+ <div class="app-icon c-trovit">
371
+ <!-- Home outline -->
372
+ <svg width="90" height="90" viewBox="0 0 24 24">
373
+ <path d="M4 12l8-6 8 6v8H4z" stroke="#fff" stroke-width="2" fill="none"></path>
374
+ <rect x="10" y="14" width="4" height="4" fill="#fff"></rect>
375
+ <circle cx="18" cy="8" r="3" fill="#d7a7ff"></circle>
376
+ </svg>
377
+ </div>
378
+ <div class="app-label">Trovit Homes</div>
379
+ </div>
380
+
381
+ <div class="app-item">
382
+ <div class="app-icon c-trainline">
383
+ <!-- 'train' word -->
384
+ <svg width="100" height="100" viewBox="0 0 24 24">
385
+ <text x="4" y="14" font-size="9" fill="#fff" font-weight="700">train</text>
386
+ </svg>
387
+ </div>
388
+ <div class="app-label">Trainline</div>
389
+ </div>
390
+
391
+ <div class="app-item">
392
+ <div class="app-icon c-citymapper">
393
+ <!-- two dots and arrow -->
394
+ <svg width="96" height="96" viewBox="0 0 24 24">
395
+ <circle cx="6" cy="12" r="2.2" fill="#fff"></circle>
396
+ <circle cx="12" cy="12" r="2.2" fill="#fff"></circle>
397
+ <path d="M15 12h6l-3-3m3 3l-3 3" stroke="#fff" stroke-width="2" fill="none" stroke-linecap="round"/>
398
+ </svg>
399
+ </div>
400
+ <div class="app-label">Citymapper</div>
401
+ </div>
402
+
403
+ <!-- Row 5 -->
404
+ <div class="app-item">
405
+ <div class="app-icon c-omio">
406
+ <!-- Omio mark -->
407
+ <svg width="96" height="96" viewBox="0 0 24 24">
408
+ <circle cx="6" cy="8" r="2.4" fill="#ff6d6d"></circle>
409
+ <path d="M8 16c6 0 6 4 10 4" stroke="#fff" stroke-width="3" fill="none" stroke-linecap="round"/>
410
+ <path d="M10 16a6 6 0 0 1 4-4" stroke="#fff" stroke-width="3" fill="none" stroke-linecap="round"/>
411
+ </svg>
412
+ </div>
413
+ <div class="app-label label-small">Omio</div>
414
+ </div>
415
+
416
+ <div class="app-item">
417
+ <div class="app-icon c-sbb">
418
+ <!-- SBB double arrow -->
419
+ <svg width="96" height="96" viewBox="0 0 24 24">
420
+ <path d="M3 12h8l-3-3m3 3l-3 3" stroke="#fff" stroke-width="2.5" fill="none" stroke-linecap="round"/>
421
+ <path d="M13 12h8l-3-3m3 3l-3 3" stroke="#fff" stroke-width="2.5" fill="none" stroke-linecap="round"/>
422
+ </svg>
423
+ </div>
424
+ <div class="app-label label-small">SBB Mobile</div>
425
+ </div>
426
+
427
+ <!-- Empty placeholders to keep grid spacing similar to screenshot -->
428
+ <div></div>
429
+ <div></div>
430
+
431
+ </div>
432
+ </div>
433
+
434
+ <!-- Dock Icons -->
435
+ <div class="dock">
436
+ <!-- Phone -->
437
+ <div class="dock-icon">
438
+ <svg width="84" height="84" viewBox="0 0 24 24">
439
+ <path d="M5 4c4 4 4 8 0 12 3 3 7 3 10 0l2 2c-4 4-11 4-15 0 0 0 0-1 0-1 4-4 4-8 0-12l3-1z" fill="#2a7ef0"></path>
440
+ </svg>
441
+ </div>
442
+ <!-- Messages -->
443
+ <div class="dock-icon">
444
+ <svg width="84" height="84" viewBox="0 0 24 24">
445
+ <rect x="3" y="4" width="18" height="14" rx="3" fill="#4e86ff"></rect>
446
+ <polygon points="9,18 11,14 15,14" fill="#4e86ff"></polygon>
447
+ </svg>
448
+ </div>
449
+ <!-- Chrome -->
450
+ <div class="dock-icon">
451
+ <svg width="84" height="84" viewBox="0 0 24 24">
452
+ <circle cx="12" cy="12" r="10" fill="#f4c20d"></circle>
453
+ <path d="M12 2a10 10 0 0 1 8 5H12" fill="#db4437"></path>
454
+ <path d="M20 7a10 10 0 0 1-3 11l-5-8" fill="#0f9d58"></path>
455
+ <circle cx="12" cy="12" r="4.5" fill="#4285f4"></circle>
456
+ </svg>
457
+ </div>
458
+ <!-- Camera -->
459
+ <div class="dock-icon">
460
+ <svg width="84" height="84" viewBox="0 0 24 24">
461
+ <rect x="3" y="6" width="18" height="12" rx="2" fill="#4a4a4a"></rect>
462
+ <rect x="8" y="4" width="8" height="3" rx="1" fill="#4a4a4a"></rect>
463
+ <circle cx="12" cy="12" r="4" fill="#90caf9"></circle>
464
+ </svg>
465
+ </div>
466
+ </div>
467
+
468
+ <!-- Google Search Pill -->
469
+ <div class="search-pill">
470
+ <div class="search-left">
471
+ <div class="google-g">G</div>
472
+ <div>Search</div>
473
+ </div>
474
+ <div class="search-right">
475
+ <!-- Microphone -->
476
+ <svg class="pill-icon" viewBox="0 0 24 24">
477
+ <rect x="9" y="4" width="6" height="10" rx="3" fill="#8ab4f8"></rect>
478
+ <path d="M6 10a6 6 0 0 0 12 0" stroke="#cbd1d8" stroke-width="2" fill="none"/>
479
+ <rect x="11" y="16" width="2" height="4" fill="#cbd1d8"></rect>
480
+ <rect x="9" y="20" width="6" height="2" rx="1" fill="#cbd1d8"></rect>
481
+ </svg>
482
+ <!-- Google Lens style square -->
483
+ <svg class="pill-icon" viewBox="0 0 24 24">
484
+ <rect x="4" y="4" width="16" height="16" rx="4" fill="#a3e0a3"></rect>
485
+ <circle cx="12" cy="12" r="4" fill="#2b2f36"></circle>
486
+ </svg>
487
+ </div>
488
+ </div>
489
+
490
+ <!-- Bottom navigation bar -->
491
+ <div class="nav-bar"></div>
492
+
493
+ </div>
494
+ </body>
495
+ </html>
code/10003/10003_1.html ADDED
@@ -0,0 +1,347 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
5
+ <title>Mobile UI - Plan</title>
6
+ <style>
7
+ body {
8
+ margin: 0;
9
+ padding: 0;
10
+ background: transparent;
11
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
12
+ color: #fff;
13
+ }
14
+ #render-target {
15
+ width: 1080px;
16
+ height: 2400px;
17
+ position: relative;
18
+ overflow: hidden;
19
+ background: #000;
20
+ }
21
+
22
+ /* Top red header area */
23
+ .topbar {
24
+ position: absolute;
25
+ top: 0;
26
+ left: 0;
27
+ width: 1080px;
28
+ height: 380px;
29
+ background: linear-gradient(#b31616, #c61d1d);
30
+ }
31
+ .status-row {
32
+ position: absolute;
33
+ top: 22px;
34
+ left: 36px;
35
+ right: 36px;
36
+ display: flex;
37
+ align-items: center;
38
+ justify-content: space-between;
39
+ color: #fff;
40
+ font-weight: 600;
41
+ font-size: 38px;
42
+ opacity: 0.95;
43
+ }
44
+ .status-icons {
45
+ display: flex;
46
+ gap: 24px;
47
+ align-items: center;
48
+ }
49
+ .status-dot {
50
+ width: 10px;
51
+ height: 10px;
52
+ background: #fff;
53
+ border-radius: 50%;
54
+ opacity: 0.85;
55
+ }
56
+ .icon-wifi, .icon-battery {
57
+ width: 42px;
58
+ height: 28px;
59
+ }
60
+ .icon-battery rect { fill: none; stroke: #fff; stroke-width: 3; }
61
+ .icon-battery line { stroke: #fff; stroke-width: 3; }
62
+ .icon-wifi path { fill: none; stroke: #fff; stroke-width: 3; }
63
+
64
+ .header-row {
65
+ position: absolute;
66
+ top: 110px;
67
+ left: 0;
68
+ width: 100%;
69
+ text-align: center;
70
+ font-size: 64px;
71
+ font-weight: 600;
72
+ color: #fff;
73
+ letter-spacing: 0.5px;
74
+ }
75
+ .swap-btn {
76
+ position: absolute;
77
+ top: 108px;
78
+ right: 38px;
79
+ width: 90px;
80
+ height: 66px;
81
+ display: flex;
82
+ align-items: center;
83
+ justify-content: center;
84
+ }
85
+ .swap-btn svg path { stroke: #fff; stroke-width: 6; fill: none; }
86
+
87
+ /* Tabs */
88
+ .tabs {
89
+ position: absolute;
90
+ top: 180px;
91
+ left: 36px;
92
+ right: 36px;
93
+ display: flex;
94
+ gap: 28px;
95
+ }
96
+ .tab {
97
+ flex: 1;
98
+ height: 120px;
99
+ border-radius: 60px;
100
+ display: flex;
101
+ align-items: center;
102
+ justify-content: center;
103
+ font-size: 48px;
104
+ font-weight: 600;
105
+ color: #fff;
106
+ background: rgba(255,255,255,0.12);
107
+ }
108
+ .tab.active {
109
+ background: rgba(255,255,255,0.22);
110
+ }
111
+
112
+ /* Search card */
113
+ .search-card {
114
+ position: absolute;
115
+ top: 340px;
116
+ left: 36px;
117
+ width: 1008px;
118
+ height: 330px;
119
+ background: #1c1c1c;
120
+ border-radius: 44px;
121
+ box-shadow: 0 14px 30px rgba(0,0,0,0.35);
122
+ padding: 40px 48px;
123
+ }
124
+ .route-rail {
125
+ position: absolute;
126
+ left: 40px;
127
+ top: 44px;
128
+ width: 18px;
129
+ height: 250px;
130
+ }
131
+ .route-rail .line {
132
+ position: absolute;
133
+ left: 8px;
134
+ top: 40px;
135
+ bottom: 40px;
136
+ width: 2px;
137
+ background: #e6e6e6;
138
+ opacity: 0.6;
139
+ }
140
+ .route-rail .dot {
141
+ position: absolute;
142
+ left: 0;
143
+ width: 18px;
144
+ height: 18px;
145
+ border-radius: 50%;
146
+ border: 3px solid #e6e6e6;
147
+ }
148
+ .route-rail .dot.start { top: 0; }
149
+ .route-rail .dot.end { bottom: 0; }
150
+
151
+ .input-row {
152
+ margin-left: 56px;
153
+ height: 120px;
154
+ border-bottom: 2px solid #303030;
155
+ display: flex;
156
+ align-items: center;
157
+ font-size: 46px;
158
+ color: #bfbfbf;
159
+ }
160
+ .input-row:last-child {
161
+ border-bottom: none;
162
+ color: #9f9f9f;
163
+ }
164
+
165
+ /* Main dark body area */
166
+ .content-area {
167
+ position: absolute;
168
+ top: 700px;
169
+ left: 0;
170
+ right: 0;
171
+ bottom: 180px;
172
+ background: #000;
173
+ }
174
+
175
+ /* Floating action button (list + plus) */
176
+ .fab {
177
+ position: absolute;
178
+ right: 42px;
179
+ bottom: 280px;
180
+ width: 152px;
181
+ height: 152px;
182
+ border-radius: 50%;
183
+ background: #262626;
184
+ box-shadow: 0 10px 24px rgba(0,0,0,0.45);
185
+ display: flex;
186
+ align-items: center;
187
+ justify-content: center;
188
+ }
189
+ .fab svg { width: 86px; height: 86px; }
190
+ .fab svg path, .fab svg rect, .fab svg line { stroke: #e6e6e6; stroke-width: 8; fill: none; }
191
+
192
+ /* Bottom navigation */
193
+ .bottom-nav {
194
+ position: absolute;
195
+ left: 0;
196
+ right: 0;
197
+ bottom: 0;
198
+ height: 180px;
199
+ background: #1a1a1a;
200
+ display: flex;
201
+ align-items: center;
202
+ justify-content: space-around;
203
+ padding: 0 24px;
204
+ }
205
+ .nav-item {
206
+ width: 160px;
207
+ height: 140px;
208
+ display: flex;
209
+ flex-direction: column;
210
+ align-items: center;
211
+ justify-content: center;
212
+ color: #bfbfbf;
213
+ font-size: 34px;
214
+ gap: 12px;
215
+ }
216
+ .nav-item.active {
217
+ color: #ffffff;
218
+ }
219
+ .nav-icon {
220
+ width: 88px;
221
+ height: 88px;
222
+ }
223
+ .nav-icon path, .nav-icon rect, .nav-icon line, .nav-icon circle {
224
+ stroke: currentColor;
225
+ stroke-width: 6;
226
+ fill: none;
227
+ }
228
+ </style>
229
+ </head>
230
+ <body>
231
+ <div id="render-target">
232
+
233
+ <!-- Top red bar -->
234
+ <div class="topbar">
235
+ <div class="status-row">
236
+ <div>10:36</div>
237
+ <div class="status-icons">
238
+ <!-- simple icons for status bar -->
239
+ <svg class="icon-wifi" viewBox="0 0 24 24">
240
+ <path d="M2 7c5-4 15-4 20 0"/>
241
+ <path d="M5 11c3-3 11-3 14 0"/>
242
+ <path d="M9 15c2-2 6-2 8 0"/>
243
+ <circle cx="12" cy="18" r="1.5" fill="#fff"></circle>
244
+ </svg>
245
+ <svg class="icon-battery" viewBox="0 0 28 18">
246
+ <rect x="1.5" y="1.5" width="20" height="15" rx="2"></rect>
247
+ <line x1="23" y1="6" x2="26" y2="6"></line>
248
+ <line x1="23" y1="12" x2="26" y2="12"></line>
249
+ <rect x="4" y="4" width="14" height="10" fill="#fff" stroke="none"></rect>
250
+ </svg>
251
+ </div>
252
+ </div>
253
+
254
+ <div class="header-row">Plan</div>
255
+
256
+ <div class="swap-btn">
257
+ <svg viewBox="0 0 80 60">
258
+ <path d="M10 45h45"></path>
259
+ <path d="M40 15h30"></path>
260
+ <path d="M55 33l10 12-10 12"></path>
261
+ <path d="M25 27L15 15 25 3"></path>
262
+ </svg>
263
+ </div>
264
+
265
+ <div class="tabs">
266
+ <div class="tab active">Timetable</div>
267
+ <div class="tab">Touch timetable</div>
268
+ <div class="tab">Map</div>
269
+ </div>
270
+ </div>
271
+
272
+ <!-- Search card -->
273
+ <div class="search-card">
274
+ <div class="route-rail">
275
+ <div class="dot start"></div>
276
+ <div class="line"></div>
277
+ <div class="dot end"></div>
278
+ </div>
279
+ <div class="input-row">From</div>
280
+ <div class="input-row">To</div>
281
+ </div>
282
+
283
+ <!-- Main black content area -->
284
+ <div class="content-area"></div>
285
+
286
+ <!-- Floating Action Button -->
287
+ <div class="fab">
288
+ <svg viewBox="0 0 100 100">
289
+ <!-- list icon -->
290
+ <line x1="14" y1="28" x2="70" y2="28"></line>
291
+ <line x1="14" y1="48" x2="70" y2="48"></line>
292
+ <line x1="14" y1="68" x2="70" y2="68"></line>
293
+ <!-- plus -->
294
+ <line x1="72" y1="40" x2="92" y2="40"></line>
295
+ <line x1="82" y1="30" x2="82" y2="50"></line>
296
+ </svg>
297
+ </div>
298
+
299
+ <!-- Bottom navigation -->
300
+ <div class="bottom-nav">
301
+ <div class="nav-item active">
302
+ <svg class="nav-icon" viewBox="0 0 48 48">
303
+ <line x1="8" y1="12" x2="40" y2="12"></line>
304
+ <line x1="8" y1="22" x2="30" y2="22"></line>
305
+ <circle cx="36" cy="22" r="6"></circle>
306
+ </svg>
307
+ <div>Plan</div>
308
+ </div>
309
+ <div class="nav-item">
310
+ <svg class="nav-icon" viewBox="0 0 48 48">
311
+ <rect x="8" y="16" width="32" height="16" rx="3"></rect>
312
+ <line x1="12" y1="32" x2="36" y2="32"></line>
313
+ <circle cx="16" cy="36" r="3"></circle>
314
+ </svg>
315
+ </div>
316
+ <div class="nav-item">
317
+ <svg class="nav-icon" viewBox="0 0 48 48">
318
+ <rect x="10" y="20" width="28" height="8" rx="4"></rect>
319
+ <circle cx="12" cy="24" r="3"></circle>
320
+ <circle cx="36" cy="24" r="3"></circle>
321
+ </svg>
322
+ </div>
323
+ <div class="nav-item">
324
+ <svg class="nav-icon" viewBox="0 0 48 48">
325
+ <rect x="10" y="10" width="28" height="28" rx="4"></rect>
326
+ <line x1="18" y1="18" x2="30" y2="18"></line>
327
+ <line x1="18" y1="24" x2="30" y2="24"></line>
328
+ <line x1="18" y1="30" x2="30" y2="30"></line>
329
+ </svg>
330
+ </div>
331
+ <div class="nav-item">
332
+ <svg class="nav-icon" viewBox="0 0 48 48">
333
+ <rect x="10" y="14" width="28" height="20" rx="4"></rect>
334
+ <path d="M10 14l8-8h12l8 8" stroke-linejoin="round"></path>
335
+ </svg>
336
+ </div>
337
+ <div class="nav-item">
338
+ <svg class="nav-icon" viewBox="0 0 48 48">
339
+ <circle cx="24" cy="18" r="8"></circle>
340
+ <path d="M8 40c4-8 28-8 32 0" stroke-linecap="round"></path>
341
+ </svg>
342
+ </div>
343
+ </div>
344
+
345
+ </div>
346
+ </body>
347
+ </html>
code/10003/10003_2.html ADDED
@@ -0,0 +1,182 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Generated 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 { width:1080px; height:2400px; position:relative; overflow:hidden; background:#1f1f1f; color:#ffffff; }
8
+
9
+ /* Header */
10
+ .header { position:absolute; top:0; left:0; width:100%; height:230px; background:#c62828; }
11
+ .status { position:absolute; top:30px; left:30px; right:30px; height:60px; display:flex; align-items:center; justify-content:space-between; color:#fff; opacity:0.9; }
12
+ .status .right-icons { display:flex; gap:18px; }
13
+ .status .right-icons .icon { width:38px; height:38px; border-radius:50%; background:rgba(255,255,255,0.3); display:flex; align-items:center; justify-content:center; font-size:18px; }
14
+
15
+ .titlebar { position:absolute; top:110px; left:0; right:0; height:90px; display:flex; align-items:center; justify-content:center; }
16
+ .titlebar .back { position:absolute; left:30px; width:70px; height:70px; display:flex; align-items:center; justify-content:center; }
17
+ .titlebar .actions { position:absolute; right:30px; width:90px; height:70px; display:flex; align-items:center; justify-content:center; }
18
+ .titlebar .title { font-size:60px; font-weight:600; }
19
+
20
+ /* Main card */
21
+ .card { position:absolute; top:230px; left:30px; width:1020px; background:#212121; border-radius:26px; box-shadow:0 10px 18px rgba(0,0,0,0.35); }
22
+ .card-inner { padding:40px 40px 20px 40px; position:relative; }
23
+ .close { position:absolute; top:24px; right:24px; width:70px; height:70px; opacity:0.8; display:flex; align-items:center; justify-content:center; }
24
+
25
+ .row { margin-bottom:46px; position:relative; }
26
+ .line { position:absolute; left:0; top:6px; width:40px; height:190px; }
27
+ .line .dot { width:20px; height:20px; border:4px solid #cfcfcf; border-radius:50%; background:#111; position:absolute; left:8px; top:0; }
28
+ .line .dot.bottom { bottom:0; top:auto; }
29
+ .line .vertical { position:absolute; left:15px; top:18px; bottom:18px; width:4px; background:#3a3a3a; border-radius:2px; }
30
+
31
+ .input-area { margin-left:60px; }
32
+ .input-label { font-size:42px; color:#bbbbbb; display:flex; align-items:center; gap:12px; }
33
+ .input-caret { width:4px; height:48px; background:#e53935; display:inline-block; }
34
+ .input-field { margin-top:14px; height:64px; border-bottom:2px solid #333333; }
35
+
36
+ .list { margin-top:16px; border-top:1px solid #2c2c2c; }
37
+ .item { display:flex; align-items:center; justify-content:space-between; padding:34px 40px; border-bottom:1px solid #2c2c2c; }
38
+ .item-left { display:flex; align-items:center; gap:26px; }
39
+ .item-title { font-size:44px; color:#eeeeee; }
40
+ .item-sub { font-size:40px; color:#cfcfcf; }
41
+ .circle-icon { width:52px; height:52px; border-radius:50%; background:#2d2d2d; display:flex; align-items:center; justify-content:center; }
42
+ .star { width:60px; height:60px; border:3px solid #bbbbbb; border-radius:14px; }
43
+
44
+ /* Keyboard */
45
+ .keyboard { position:absolute; left:0; bottom:0; width:100%; height:860px; background:#111111; border-top-left-radius:36px; border-top-right-radius:36px; box-shadow:0 -6px 18px rgba(0,0,0,0.4); }
46
+ .kb-row { display:flex; justify-content:space-between; padding:32px 40px; }
47
+ .key { width:86px; height:120px; background:#2d2d2d; border-radius:24px; color:#ffffff; font-size:48px; display:flex; align-items:center; justify-content:center; }
48
+ .key.wide { width:140px; }
49
+ .key.space { flex:1; height:120px; margin:0 20px; background:#2d2d2d; border-radius:24px; }
50
+ .key.action { width:160px; background:#3a3a3a; }
51
+ .bottom-bar { position:absolute; left:340px; bottom:24px; width:400px; height:14px; background:#bdbdbd; border-radius:8px; opacity:0.7; }
52
+ </style>
53
+ </head>
54
+ <body>
55
+ <div id="render-target">
56
+
57
+ <!-- Header -->
58
+ <div class="header">
59
+ <div class="status">
60
+ <div style="font-size:36px;">10:38</div>
61
+ <div class="right-icons">
62
+ <div class="icon">•</div>
63
+ <div class="icon">•</div>
64
+ <div class="icon">•</div>
65
+ </div>
66
+ </div>
67
+ <div class="titlebar">
68
+ <div class="back">
69
+ <svg width="56" height="56" viewBox="0 0 24 24" fill="#ffffff"><path d="M15.4 3.4L6.8 12l8.6 8.6-2.2 2.2L2.4 12 13.2 1.2z"/></svg>
70
+ </div>
71
+ <div class="title">Plan</div>
72
+ <div class="actions">
73
+ <svg width="80" height="50" viewBox="0 0 24 24" fill="#ffffff"><path d="M9 6l6 6-6 6V6zm-6 0l6 6-6 6V6z"/></svg>
74
+ </div>
75
+ </div>
76
+ </div>
77
+
78
+ <!-- Main Card -->
79
+ <div class="card" style="height:980px;">
80
+ <div class="card-inner">
81
+ <div class="close">
82
+ <svg width="46" height="46" viewBox="0 0 24 24" stroke="#ffffff" stroke-width="2" fill="none"><path d="M6 6l12 12M18 6L6 18"/></svg>
83
+ </div>
84
+
85
+ <div class="row">
86
+ <div class="line">
87
+ <div class="dot"></div>
88
+ <div class="vertical"></div>
89
+ <div class="dot bottom"></div>
90
+ </div>
91
+ <div class="input-area">
92
+ <div class="input-label">From <span class="input-caret"></span></div>
93
+ <div class="input-field"></div>
94
+ </div>
95
+ </div>
96
+
97
+ <div class="row" style="margin-bottom:18px;">
98
+ <div class="input-area">
99
+ <div class="input-label">To</div>
100
+ <div class="input-field"></div>
101
+ </div>
102
+ </div>
103
+
104
+ <div class="list">
105
+ <div class="item">
106
+ <div class="item-left">
107
+ <div class="circle-icon">
108
+ <!-- Eye-off icon -->
109
+ <svg width="36" height="36" viewBox="0 0 24 24" fill="#bbbbbb">
110
+ <path d="M12 5c-7 0-10 7-10 7s3 7 10 7 10-7 10-7-3-7-10-7zm0 12a5 5 0 110-10 5 5 0 010 10z"></path>
111
+ <path d="M3 3l18 18" stroke="#bbbbbb" stroke-width="2"></path>
112
+ </svg>
113
+ </div>
114
+ <div class="item-sub">Location access not given</div>
115
+ </div>
116
+ </div>
117
+
118
+ <div class="item">
119
+ <div class="item-left">
120
+ <div class="circle-icon">
121
+ <!-- Clock icon -->
122
+ <svg width="34" height="34" viewBox="0 0 24 24" fill="#bbbbbb">
123
+ <circle cx="12" cy="12" r="9"></circle>
124
+ <path d="M12 7v6l4 2" stroke="#1f1f1f" stroke-width="2"></path>
125
+ </svg>
126
+ </div>
127
+ <div class="item-title">Guildford</div>
128
+ </div>
129
+ <div class="star"></div>
130
+ </div>
131
+
132
+ <div class="item">
133
+ <div class="item-left">
134
+ <div class="circle-icon">
135
+ <!-- Clock icon -->
136
+ <svg width="34" height="34" viewBox="0 0 24 24" fill="#bbbbbb">
137
+ <circle cx="12" cy="12" r="9"></circle>
138
+ <path d="M12 7v6l4 2" stroke="#1f1f1f" stroke-width="2"></path>
139
+ </svg>
140
+ </div>
141
+ <div class="item-title">Dundee</div>
142
+ </div>
143
+ <div class="star"></div>
144
+ </div>
145
+ </div>
146
+ </div>
147
+ </div>
148
+
149
+ <!-- Keyboard -->
150
+ <div class="keyboard">
151
+ <div class="kb-row" style="padding-top:40px;">
152
+ <div class="key action">&#x25A6;</div>
153
+ <div class="key action">🙂</div>
154
+ <div class="key action">GIF</div>
155
+ <div class="key action">⚙️</div>
156
+ <div class="key action">G</div>
157
+ <div class="key action">🎨</div>
158
+ <div class="key action">🎤</div>
159
+ </div>
160
+ <div class="kb-row">
161
+ <div class="key">q</div><div class="key">w</div><div class="key">e</div><div class="key">r</div><div class="key">t</div><div class="key">y</div><div class="key">u</div><div class="key">i</div><div class="key">o</div><div class="key">p</div>
162
+ </div>
163
+ <div class="kb-row">
164
+ <div class="key">a</div><div class="key">s</div><div class="key">d</div><div class="key">f</div><div class="key">g</div><div class="key">h</div><div class="key">j</div><div class="key">k</div><div class="key">l</div>
165
+ </div>
166
+ <div class="kb-row">
167
+ <div class="key wide">⇧</div><div class="key">z</div><div class="key">x</div><div class="key">c</div><div class="key">v</div><div class="key">b</div><div class="key">n</div><div class="key">m</div><div class="key wide">⌫</div>
168
+ </div>
169
+ <div class="kb-row">
170
+ <div class="key action">?123</div>
171
+ <div class="key action">,</div>
172
+ <div class="key action">😊</div>
173
+ <div class="key space"></div>
174
+ <div class="key action">.</div>
175
+ <div class="key action">↗</div>
176
+ </div>
177
+ <div class="bottom-bar"></div>
178
+ </div>
179
+
180
+ </div>
181
+ </body>
182
+ </html>
code/10003/10003_3.html ADDED
@@ -0,0 +1,328 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Mobile UI - Plan</title>
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <style>
7
+ body { margin:0; padding:0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
8
+ #render-target {
9
+ position: relative;
10
+ width: 1080px;
11
+ height: 2400px;
12
+ overflow: hidden;
13
+ background: #121212;
14
+ color: #fff;
15
+ }
16
+ /* Header */
17
+ .header {
18
+ position: absolute;
19
+ left: 0;
20
+ top: 0;
21
+ width: 1080px;
22
+ height: 350px;
23
+ background: #D32F2F;
24
+ }
25
+ .status {
26
+ position: absolute;
27
+ top: 24px;
28
+ left: 0;
29
+ width: 100%;
30
+ height: 72px;
31
+ padding: 0 36px;
32
+ display: flex;
33
+ align-items: center;
34
+ justify-content: space-between;
35
+ color: #fff;
36
+ font-size: 34px;
37
+ opacity: 0.95;
38
+ }
39
+ .titlebar {
40
+ position: absolute;
41
+ top: 98px;
42
+ left: 0;
43
+ width: 100%;
44
+ height: 92px;
45
+ display: flex;
46
+ align-items: center;
47
+ padding: 0 28px;
48
+ color: #fff;
49
+ }
50
+ .titlebar .title {
51
+ flex: 1;
52
+ text-align: center;
53
+ font-weight: 600;
54
+ font-size: 44px;
55
+ letter-spacing: 0.5px;
56
+ }
57
+ .icon-btn { width: 72px; height: 72px; display:flex; align-items:center; justify-content:center; }
58
+ .icon-btn svg { width: 42px; height: 42px; fill: none; stroke: #fff; stroke-width: 4; }
59
+ /* Search Card */
60
+ .search-card {
61
+ position: absolute;
62
+ left: 24px;
63
+ right: 24px;
64
+ top: 176px;
65
+ background: #1E1E1E;
66
+ border-radius: 26px;
67
+ box-shadow: 0 8px 24px rgba(0,0,0,0.35);
68
+ padding: 24px 24px 10px 24px;
69
+ }
70
+ .search-inner {
71
+ position: relative;
72
+ padding-left: 88px;
73
+ }
74
+ .rail-line {
75
+ position: absolute;
76
+ left: 40px;
77
+ top: 18px;
78
+ bottom: 18px;
79
+ width: 2px;
80
+ background: #3A3A3A;
81
+ }
82
+ .rail-dot {
83
+ position: absolute;
84
+ left: 29px;
85
+ width: 24px; height: 24px;
86
+ border-radius: 50%;
87
+ border: 3px solid #BDBDBD;
88
+ background: transparent;
89
+ }
90
+ .rail-dot.start { top: 0; }
91
+ .rail-dot.end { bottom: 0; }
92
+ .field {
93
+ position: relative;
94
+ padding: 20px 84px 18px 0;
95
+ font-size: 44px;
96
+ color: #EDEDED;
97
+ }
98
+ .field + .field {
99
+ color: #A5A5A5;
100
+ }
101
+ .divider {
102
+ height: 2px;
103
+ background: #3A3A3A;
104
+ margin: 6px 0 6px 0;
105
+ }
106
+ .clear-btn {
107
+ position: absolute;
108
+ right: 14px;
109
+ top: 10px;
110
+ width: 60px; height: 60px;
111
+ display: flex; align-items:center; justify-content:center;
112
+ }
113
+ .clear-btn svg { width: 32px; height: 32px; stroke: #BDBDBD; stroke-width: 5; }
114
+ /* List */
115
+ .list {
116
+ position: absolute;
117
+ left: 0;
118
+ right: 0;
119
+ top: 520px;
120
+ bottom: 760px; /* leave space for keyboard */
121
+ overflow: hidden;
122
+ }
123
+ .row {
124
+ height: 140px;
125
+ padding: 0 32px;
126
+ display: flex;
127
+ align-items: center;
128
+ background: #161616;
129
+ border-top: 1px solid #232323;
130
+ }
131
+ .row:first-child { border-top: none; }
132
+ .row .label {
133
+ flex: 1;
134
+ font-size: 46px;
135
+ color: #EAEAEA;
136
+ }
137
+ .row .sub {
138
+ color: #BDBDBD;
139
+ }
140
+ .list-icon {
141
+ width: 64px; height: 64px; margin-right: 28px;
142
+ display:flex; align-items:center; justify-content:center;
143
+ }
144
+ .list-icon svg { width: 52px; height: 52px; stroke: #BDBDBD; fill: none; stroke-width: 4; }
145
+ .fav {
146
+ width: 64px; height: 64px;
147
+ display:flex; align-items:center; justify-content:center;
148
+ }
149
+ .fav svg { width: 52px; height: 52px; stroke: #BDBDBD; fill: none; stroke-width: 4; }
150
+ /* Keyboard mock */
151
+ .keyboard {
152
+ position: absolute;
153
+ left: 0; right: 0; bottom: 0;
154
+ height: 760px;
155
+ background: #0E0E0F;
156
+ border-top: 1px solid #2A2A2A;
157
+ }
158
+ .kb-suggestion {
159
+ height: 110px;
160
+ display:flex; align-items:center; justify-content:center;
161
+ color: #EDEDED;
162
+ font-size: 44px;
163
+ border-bottom: 1px solid #2A2A2A;
164
+ background: #121215;
165
+ }
166
+ .kb-rows {
167
+ padding: 22px 22px 18px;
168
+ }
169
+ .kb-row {
170
+ display: flex;
171
+ justify-content: center;
172
+ margin-bottom: 16px;
173
+ }
174
+ .key {
175
+ width: 86px; height: 104px;
176
+ margin: 8px;
177
+ border-radius: 14px;
178
+ background: #2B2B2E;
179
+ color: #E0E0E0;
180
+ font-size: 40px;
181
+ display:flex; align-items:center; justify-content:center;
182
+ }
183
+ .key.wide { width: 540px; }
184
+ .key.medium { width: 140px; }
185
+ .key.icon { background:#2B2B2E; }
186
+ /* Status right icons (wifi/battery) */
187
+ .status-icons svg { width: 40px; height: 40px; stroke:#fff; stroke-width:4; fill:none; margin-left:18px; }
188
+ </style>
189
+ </head>
190
+ <body>
191
+ <div id="render-target">
192
+
193
+ <!-- Red Header -->
194
+ <div class="header">
195
+ <div class="status">
196
+ <div>10:38</div>
197
+ <div class="status-icons" style="display:flex; align-items:center;">
198
+ <!-- wifi -->
199
+ <svg viewBox="0 0 24 24"><path d="M2 8c5-5 15-5 20 0"/><path d="M5 11c3.5-3.5 10.5-3.5 14 0"/><path d="M8 14c2-2 6-2 8 0"/><circle cx="12" cy="18" r="1.6" fill="#fff" stroke="none"/></svg>
200
+ <!-- battery -->
201
+ <svg viewBox="0 0 26 24"><rect x="2" y="6" width="18" height="12" rx="2"/><rect x="20" y="9" width="3" height="6"/></svg>
202
+ </div>
203
+ </div>
204
+
205
+ <div class="titlebar">
206
+ <div class="icon-btn">
207
+ <!-- Back arrow -->
208
+ <svg viewBox="0 0 24 24"><path d="M14 4 L6 12 L14 20"/><path d="M7 12 H20"/></svg>
209
+ </div>
210
+ <div class="title">Plan</div>
211
+ <div class="icon-btn">
212
+ <!-- swap icon -->
213
+ <svg viewBox="0 0 24 24">
214
+ <path d="M7 7 H20 L16 3"/><path d="M17 17 H4 L8 21"/>
215
+ </svg>
216
+ </div>
217
+ </div>
218
+
219
+ <!-- Search card -->
220
+ <div class="search-card">
221
+ <div class="search-inner">
222
+ <div class="rail-line"></div>
223
+ <div class="rail-dot start"></div>
224
+ <div class="rail-dot end"></div>
225
+
226
+ <div class="field">
227
+ Dundee
228
+ <div class="clear-btn">
229
+ <svg viewBox="0 0 24 24"><path d="M4 4 L20 20 M20 4 L4 20"/></svg>
230
+ </div>
231
+ </div>
232
+ <div class="divider"></div>
233
+ <div class="field" style="padding-bottom:12px;">To</div>
234
+ </div>
235
+ </div>
236
+ </div>
237
+
238
+ <!-- Results list -->
239
+ <div class="list">
240
+ <div class="row">
241
+ <div class="list-icon">
242
+ <!-- clock -->
243
+ <svg viewBox="0 0 24 24"><circle cx="12" cy="12" r="9"/><path d="M12 7 V12 L16 14"/></svg>
244
+ </div>
245
+ <div class="label">Dundee</div>
246
+ <div class="fav">
247
+ <svg viewBox="0 0 24 24"><path d="M12 3 L14.8 9.2 L21.5 9.3 L16 13.5 L17.9 20 L12 16.4 L6.1 20 L8 13.5 L2.5 9.3 L9.2 9.2 Z"/></svg>
248
+ </div>
249
+ </div>
250
+
251
+ <div class="row">
252
+ <div class="list-icon">
253
+ <svg viewBox="0 0 24 24"><circle cx="12" cy="12" r="9"/><path d="M12 7 V12 L16 14"/></svg>
254
+ </div>
255
+ <div class="label">Dunderland</div>
256
+ <div class="fav">
257
+ <svg viewBox="0 0 24 24"><path d="M12 3 L14.8 9.2 L21.5 9.3 L16 13.5 L17.9 20 L12 16.4 L6.1 20 L8 13.5 L2.5 9.3 L9.2 9.2 Z"/></svg>
258
+ </div>
259
+ </div>
260
+
261
+ <div class="row">
262
+ <div class="list-icon">
263
+ <svg viewBox="0 0 24 24"><circle cx="12" cy="12" r="9"/><path d="M12 7 V12 L16 14"/></svg>
264
+ </div>
265
+ <div class="label">Dundenheim, Rathaus</div>
266
+ <div class="fav">
267
+ <svg viewBox="0 0 24 24"><path d="M12 3 L14.8 9.2 L21.5 9.3 L16 13.5 L17.9 20 L12 16.4 L6.1 20 L8 13.5 L2.5 9.3 L9.2 9.2 Z"/></svg>
268
+ </div>
269
+ </div>
270
+
271
+ <div class="row">
272
+ <div class="list-icon">
273
+ <svg viewBox="0 0 24 24"><circle cx="12" cy="12" r="9"/><path d="M12 7 V12 L16 14"/></svg>
274
+ </div>
275
+ <div class="label">Dundenheim, Grosse Gasse</div>
276
+ <div class="fav">
277
+ <svg viewBox="0 0 24 24"><path d="M12 3 L14.8 9.2 L21.5 9.3 L16 13.5 L17.9 20 L12 16.4 L6.1 20 L8 13.5 L2.5 9.3 L9.2 9.2 Z"/></svg>
278
+ </div>
279
+ </div>
280
+
281
+ <div class="row">
282
+ <div class="list-icon">
283
+ <svg viewBox="0 0 24 24"><circle cx="12" cy="12" r="9"/><path d="M12 7 V12 L16 14"/></svg>
284
+ </div>
285
+ <div class="label">Dundenheim, Offenburger Str.</div>
286
+ <div class="fav">
287
+ <svg viewBox="0 0 24 24"><path d="M12 3 L14.8 9.2 L21.5 9.3 L16 13.5 L17.9 20 L12 16.4 L6.1 20 L8 13.5 L2.5 9.3 L9.2 9.2 Z"/></svg>
288
+ </div>
289
+ </div>
290
+
291
+ <div class="row">
292
+ <div class="list-icon">
293
+ <svg viewBox="0 0 24 24"><circle cx="12" cy="12" r="9"/><path d="M12 7 V12 L16 14"/></svg>
294
+ </div>
295
+ <div class="label">Dundalk</div>
296
+ <div class="fav">
297
+ <svg viewBox="0 0 24 24"><path d="M12 3 L14.8 9.2 L21.5 9.3 L16 13.5 L17.9 20 L12 16.4 L6.1 20 L8 13.5 L2.5 9.3 L9.2 9.2 Z"/></svg>
298
+ </div>
299
+ </div>
300
+ </div>
301
+
302
+ <!-- Keyboard mock -->
303
+ <div class="keyboard">
304
+ <div class="kb-suggestion">Dundee</div>
305
+ <div class="kb-rows">
306
+ <div class="kb-row">
307
+ <div class="key">q</div><div class="key">w</div><div class="key">e</div><div class="key">r</div><div class="key">t</div><div class="key">y</div><div class="key">u</div><div class="key">i</div><div class="key">o</div><div class="key">p</div>
308
+ </div>
309
+ <div class="kb-row" style="padding-left:40px;">
310
+ <div class="key">a</div><div class="key">s</div><div class="key">d</div><div class="key">f</div><div class="key">g</div><div class="key">h</div><div class="key">j</div><div class="key">k</div><div class="key">l</div>
311
+ </div>
312
+ <div class="kb-row" style="padding-left:100px;">
313
+ <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>
314
+ <div class="key icon">⌫</div>
315
+ </div>
316
+ <div class="kb-row" style="justify-content: space-between; padding: 0 16px;">
317
+ <div class="key icon medium">?123</div>
318
+ <div class="key icon">,</div>
319
+ <div class="key wide"></div>
320
+ <div class="key icon">.</div>
321
+ <div class="key icon medium">↵</div>
322
+ </div>
323
+ </div>
324
+ </div>
325
+
326
+ </div>
327
+ </body>
328
+ </html>
code/10003/10003_4.html ADDED
@@ -0,0 +1,345 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Plan Screen 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: #0f0f10;
13
+ }
14
+
15
+ /* Top app bar */
16
+ .app-header {
17
+ position: absolute;
18
+ top: 0;
19
+ left: 0;
20
+ width: 1080px;
21
+ height: 220px;
22
+ background: #d32f2f;
23
+ box-shadow: 0 4px 12px rgba(0,0,0,0.35);
24
+ color: #fff;
25
+ }
26
+ .header-inner {
27
+ position: absolute;
28
+ top: 40px;
29
+ left: 40px;
30
+ right: 40px;
31
+ height: 140px;
32
+ display: flex;
33
+ align-items: center;
34
+ justify-content: space-between;
35
+ }
36
+ .header-title {
37
+ font-size: 64px;
38
+ font-weight: 600;
39
+ text-align: center;
40
+ flex: 1;
41
+ color: #fff;
42
+ }
43
+ .icon-btn {
44
+ width: 96px;
45
+ height: 96px;
46
+ display: flex;
47
+ align-items: center;
48
+ justify-content: center;
49
+ }
50
+ .icon-btn svg { width: 58px; height: 58px; fill: none; stroke: #fff; stroke-width: 6; }
51
+
52
+ /* Search card */
53
+ .search-card {
54
+ position: absolute;
55
+ top: 190px;
56
+ left: 30px;
57
+ width: 1020px;
58
+ background: #111213;
59
+ border-radius: 34px;
60
+ box-shadow: 0 12px 28px rgba(0,0,0,0.55);
61
+ padding: 30px 30px 24px 120px;
62
+ color: #fff;
63
+ }
64
+ .route-indicator {
65
+ position: absolute;
66
+ left: 40px;
67
+ top: 44px;
68
+ width: 40px;
69
+ height: 180px;
70
+ }
71
+ .route-indicator .line {
72
+ position: absolute;
73
+ left: 18px;
74
+ top: 36px;
75
+ width: 4px;
76
+ height: 110px;
77
+ background: #bdbdbd;
78
+ border-radius: 2px;
79
+ }
80
+ .route-indicator .dot {
81
+ position: absolute;
82
+ left: 8px;
83
+ width: 24px;
84
+ height: 24px;
85
+ border-radius: 50%;
86
+ border: 4px solid #bdbdbd;
87
+ background: transparent;
88
+ }
89
+ .route-indicator .top { top: 0; }
90
+ .route-indicator .bottom { bottom: 0; }
91
+
92
+ .field {
93
+ position: relative;
94
+ margin-bottom: 30px;
95
+ }
96
+ .field .label {
97
+ font-size: 52px;
98
+ font-weight: 600;
99
+ }
100
+ .divider {
101
+ margin-top: 16px;
102
+ height: 2px;
103
+ background: #2a2a2a;
104
+ }
105
+ .to-line {
106
+ display: flex;
107
+ align-items: center;
108
+ margin-top: 18px;
109
+ }
110
+ .caret {
111
+ width: 6px;
112
+ height: 56px;
113
+ background: #e53935;
114
+ border-radius: 3px;
115
+ margin-right: 18px;
116
+ }
117
+ .to-text {
118
+ font-size: 52px;
119
+ color: #cccccc;
120
+ }
121
+ .clear-btn {
122
+ position: absolute;
123
+ right: 26px;
124
+ top: 112px;
125
+ width: 74px;
126
+ height: 74px;
127
+ border-radius: 38px;
128
+ display: flex;
129
+ align-items: center;
130
+ justify-content: center;
131
+ background: #1b1b1b;
132
+ }
133
+ .clear-btn svg { width: 34px; height: 34px; stroke: #9e9e9e; stroke-width: 6; }
134
+
135
+ /* Suggestion list */
136
+ .suggestions {
137
+ position: absolute;
138
+ top: 450px;
139
+ left: 30px;
140
+ width: 1020px;
141
+ border-radius: 24px;
142
+ overflow: hidden;
143
+ }
144
+ .suggest-row {
145
+ display: flex;
146
+ align-items: center;
147
+ justify-content: space-between;
148
+ background: #1b1c1d;
149
+ color: #ffffff;
150
+ height: 140px;
151
+ padding: 0 34px;
152
+ border-bottom: 1px solid #2a2a2a;
153
+ }
154
+ .suggest-left {
155
+ display: flex;
156
+ align-items: center;
157
+ gap: 28px;
158
+ }
159
+ .suggest-left .symbol {
160
+ width: 64px; height: 64px; display:flex; align-items:center; justify-content:center;
161
+ }
162
+ .suggest-left svg { width: 54px; height: 54px; stroke: #bdbdbd; stroke-width: 5; fill: none; }
163
+ .suggest-text { font-size: 46px; }
164
+ .star {
165
+ width: 60px; height: 60px; display:flex; align-items:center; justify-content:center;
166
+ }
167
+ .star svg { width: 54px; height: 54px; stroke: #bdbdbd; stroke-width: 5; fill: none; }
168
+
169
+ /* Spacer (content area) */
170
+ .content-spacer {
171
+ position: absolute;
172
+ left: 0;
173
+ right: 0;
174
+ top: 870px;
175
+ height: 980px;
176
+ background: #141415;
177
+ }
178
+
179
+ /* Keyboard mock */
180
+ .keyboard {
181
+ position: absolute;
182
+ left: 0;
183
+ bottom: 0;
184
+ width: 1080px;
185
+ height: 550px;
186
+ background: #121213;
187
+ box-shadow: 0 -8px 24px rgba(0,0,0,0.4);
188
+ padding: 24px 24px 34px;
189
+ }
190
+ .key-row {
191
+ display: flex;
192
+ gap: 18px;
193
+ margin-bottom: 26px;
194
+ justify-content: space-between;
195
+ }
196
+ .key {
197
+ height: 98px;
198
+ background: #222325;
199
+ border-radius: 22px;
200
+ color: #e5e5e5;
201
+ font-size: 40px;
202
+ display: flex;
203
+ align-items: center;
204
+ justify-content: center;
205
+ flex: 1;
206
+ box-shadow: inset 0 0 0 1px #2c2d30;
207
+ }
208
+ .key.small { flex: 0 0 118px; }
209
+ .key.wide { flex: 2; }
210
+ .key.extra-wide { flex: 4; }
211
+
212
+ </style>
213
+ </head>
214
+ <body>
215
+ <div id="render-target">
216
+
217
+ <div class="app-header">
218
+ <div class="header-inner">
219
+ <div class="icon-btn">
220
+ <!-- Back Arrow -->
221
+ <svg viewBox="0 0 24 24">
222
+ <path d="M15 5 L7 12 L15 19" stroke-linecap="round" stroke-linejoin="round"></path>
223
+ </svg>
224
+ </div>
225
+ <div class="header-title">Plan</div>
226
+ <div class="icon-btn">
227
+ <!-- Double rail chevrons -->
228
+ <svg viewBox="0 0 24 24">
229
+ <path d="M4 6 L10 12 L4 18" stroke-linecap="round" stroke-linejoin="round"></path>
230
+ <path d="M14 6 L20 12 L14 18" stroke-linecap="round" stroke-linejoin="round"></path>
231
+ </svg>
232
+ </div>
233
+ </div>
234
+ </div>
235
+
236
+ <div class="search-card">
237
+ <div class="route-indicator">
238
+ <span class="dot top"></span>
239
+ <span class="line"></span>
240
+ <span class="dot bottom"></span>
241
+ </div>
242
+
243
+ <div class="field">
244
+ <div class="label">Dundee</div>
245
+ <div class="divider"></div>
246
+ <div class="to-line">
247
+ <div class="caret"></div>
248
+ <div class="to-text">To</div>
249
+ </div>
250
+ <div class="clear-btn">
251
+ <!-- X icon -->
252
+ <svg viewBox="0 0 24 24">
253
+ <path d="M6 6 L18 18 M18 6 L6 18" stroke-linecap="round"></path>
254
+ </svg>
255
+ </div>
256
+ </div>
257
+ </div>
258
+
259
+ <div class="suggestions">
260
+ <div class="suggest-row">
261
+ <div class="suggest-left">
262
+ <div class="symbol">
263
+ <!-- Eye with slash -->
264
+ <svg viewBox="0 0 24 24">
265
+ <path d="M2 12 C5 6 19 6 22 12 C19 18 5 18 2 12" stroke-linecap="round"></path>
266
+ <path d="M3 3 L21 21" stroke-linecap="round"></path>
267
+ </svg>
268
+ </div>
269
+ <div class="suggest-text" style="color:#dcdcdc;">Location access not given</div>
270
+ </div>
271
+ </div>
272
+
273
+ <div class="suggest-row">
274
+ <div class="suggest-left">
275
+ <div class="symbol">
276
+ <!-- Clock -->
277
+ <svg viewBox="0 0 24 24">
278
+ <circle cx="12" cy="12" r="8"></circle>
279
+ <path d="M12 7 L12 12 L16 14" stroke-linecap="round"></path>
280
+ </svg>
281
+ </div>
282
+ <div class="suggest-text">Dundee</div>
283
+ </div>
284
+ <div class="star">
285
+ <!-- Star outline -->
286
+ <svg viewBox="0 0 24 24">
287
+ <path d="M12 4 L14.8 9.5 L20.8 10.2 L16.2 14.2 L17.6 20 L12 17 L6.4 20 L7.8 14.2 L3.2 10.2 L9.2 9.5 Z" stroke-linejoin="round"></path>
288
+ </svg>
289
+ </div>
290
+ </div>
291
+
292
+ <div class="suggest-row" style="border-bottom: none;">
293
+ <div class="suggest-left">
294
+ <div class="symbol">
295
+ <!-- Clock -->
296
+ <svg viewBox="0 0 24 24">
297
+ <circle cx="12" cy="12" r="8"></circle>
298
+ <path d="M12 7 L12 12 L16 14" stroke-linecap="round"></path>
299
+ </svg>
300
+ </div>
301
+ <div class="suggest-text">Guildford</div>
302
+ </div>
303
+ <div class="star">
304
+ <!-- Star outline -->
305
+ <svg viewBox="0 0 24 24">
306
+ <path d="M12 4 L14.8 9.5 L20.8 10.2 L16.2 14.2 L17.6 20 L12 17 L6.4 20 L7.8 14.2 L3.2 10.2 L9.2 9.5 Z" stroke-linejoin="round"></path>
307
+ </svg>
308
+ </div>
309
+ </div>
310
+ </div>
311
+
312
+ <div class="content-spacer"></div>
313
+
314
+ <!-- Keyboard mockup -->
315
+ <div class="keyboard">
316
+ <div class="key-row">
317
+ <div class="key small">◧</div>
318
+ <div class="key small">☺</div>
319
+ <div class="key small">GIF</div>
320
+ <div class="key small">⚙</div>
321
+ <div class="key small">G↔</div>
322
+ <div class="key small">🎨</div>
323
+ <div class="key small">🎙</div>
324
+ </div>
325
+ <div class="key-row">
326
+ <div class="key">q</div><div class="key">w</div><div class="key">e</div><div class="key">r</div><div class="key">t</div><div class="key">y</div><div class="key">u</div><div class="key">i</div><div class="key">o</div><div class="key">p</div><div class="key small">0</div>
327
+ </div>
328
+ <div class="key-row">
329
+ <div class="key">a</div><div class="key">s</div><div class="key">d</div><div class="key">f</div><div class="key">g</div><div class="key">h</div><div class="key">j</div><div class="key">k</div><div class="key">l</div>
330
+ </div>
331
+ <div class="key-row">
332
+ <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><div class="key small">⌫</div>
333
+ </div>
334
+ <div class="key-row">
335
+ <div class="key wide">?123</div>
336
+ <div class="key small">,</div>
337
+ <div class="key extra-wide"></div>
338
+ <div class="key small">.</div>
339
+ <div class="key wide">✔</div>
340
+ </div>
341
+ </div>
342
+
343
+ </div>
344
+ </body>
345
+ </html>
code/10003/10003_5.html ADDED
@@ -0,0 +1,394 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Plan - UI Mock</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: #0f0f0f;
13
+ color: #fff;
14
+ }
15
+
16
+ /* Top red app bar */
17
+ .app-bar {
18
+ position: absolute;
19
+ top: 0;
20
+ left: 0;
21
+ width: 1080px;
22
+ height: 280px;
23
+ background: #c62828;
24
+ }
25
+ .status-row {
26
+ height: 70px;
27
+ display: flex;
28
+ align-items: center;
29
+ padding: 0 30px;
30
+ font-weight: 600;
31
+ font-size: 34px;
32
+ color: #fff;
33
+ opacity: 0.95;
34
+ }
35
+ .status-row .spacer { flex: 1; }
36
+ .status-icon { margin-left: 20px; opacity: 0.95; }
37
+ .title-row {
38
+ height: 210px;
39
+ display: flex;
40
+ align-items: center;
41
+ justify-content: center;
42
+ position: relative;
43
+ color: #fff;
44
+ }
45
+ .title-text {
46
+ font-size: 54px;
47
+ font-weight: 600;
48
+ letter-spacing: 0.5px;
49
+ }
50
+ .nav-btn {
51
+ position: absolute;
52
+ left: 24px;
53
+ top: 120px;
54
+ width: 100px;
55
+ height: 100px;
56
+ display: flex;
57
+ align-items: center;
58
+ justify-content: center;
59
+ }
60
+ .brand-btn {
61
+ position: absolute;
62
+ right: 24px;
63
+ top: 120px;
64
+ width: 120px;
65
+ height: 100px;
66
+ display: flex;
67
+ align-items: center;
68
+ justify-content: center;
69
+ }
70
+
71
+ /* Search card */
72
+ .search-card {
73
+ position: absolute;
74
+ top: 220px;
75
+ left: 24px;
76
+ width: 1032px;
77
+ background: #1b1b1b;
78
+ border-radius: 36px;
79
+ box-shadow: 0 16px 40px rgba(0,0,0,0.4);
80
+ padding: 36px 120px 36px 120px;
81
+ }
82
+ .search-inner {
83
+ position: relative;
84
+ min-height: 180px;
85
+ }
86
+ .route-marker {
87
+ position: absolute;
88
+ left: -70px;
89
+ top: 10px;
90
+ width: 60px;
91
+ height: 160px;
92
+ }
93
+ .route-marker:before,
94
+ .route-marker:after {
95
+ content: "";
96
+ position: absolute;
97
+ left: 20px;
98
+ width: 22px; height: 22px;
99
+ border: 4px solid #bbb;
100
+ border-radius: 50%;
101
+ background: #111;
102
+ }
103
+ .route-marker:before { top: 8px; }
104
+ .route-marker:after { bottom: 8px; }
105
+ .route-marker .line {
106
+ position: absolute;
107
+ left: 29px;
108
+ top: 30px;
109
+ width: 6px;
110
+ height: 100px;
111
+ background: #666;
112
+ border-radius: 3px;
113
+ }
114
+ .field {
115
+ color: #eaeaea;
116
+ font-size: 46px;
117
+ line-height: 64px;
118
+ margin-bottom: 24px;
119
+ }
120
+ .field.to { color: #fff; }
121
+ .thin-divider {
122
+ height: 2px;
123
+ background: #333;
124
+ margin: 6px 0 24px 0;
125
+ }
126
+ .clear-btn {
127
+ position: absolute;
128
+ right: 24px;
129
+ top: 24px;
130
+ width: 80px;
131
+ height: 80px;
132
+ display: flex;
133
+ align-items: center;
134
+ justify-content: center;
135
+ color: #ddd;
136
+ }
137
+
138
+ /* List of results */
139
+ .results {
140
+ position: absolute;
141
+ left: 0;
142
+ top: 430px;
143
+ width: 1080px;
144
+ background: #121212;
145
+ }
146
+ .result-item {
147
+ display: flex;
148
+ align-items: center;
149
+ padding: 32px 36px;
150
+ border-top: 1px solid rgba(255,255,255,0.04);
151
+ color: #fff;
152
+ }
153
+ .result-item:first-child { border-top: none; }
154
+ .result-title {
155
+ font-size: 48px;
156
+ letter-spacing: 0.2px;
157
+ }
158
+ .left-icon {
159
+ width: 72px;
160
+ height: 72px;
161
+ margin-right: 30px;
162
+ display: flex;
163
+ align-items: center;
164
+ justify-content: center;
165
+ }
166
+ .right-star {
167
+ margin-left: auto;
168
+ width: 72px; height: 72px;
169
+ display: flex; align-items: center; justify-content: center;
170
+ opacity: 0.9;
171
+ }
172
+
173
+ /* Keyboard mock */
174
+ .keyboard {
175
+ position: absolute;
176
+ left: 0;
177
+ bottom: 130px;
178
+ width: 1080px;
179
+ height: 830px;
180
+ background: #1a1a1a;
181
+ border-top: 1px solid #2a2a2a;
182
+ box-shadow: 0 -8px 24px rgba(0,0,0,0.35);
183
+ }
184
+ .kb-top-text {
185
+ height: 120px;
186
+ display: flex;
187
+ align-items: center;
188
+ justify-content: center;
189
+ font-size: 52px;
190
+ color: #e0e0e0;
191
+ }
192
+ .kb-rows {
193
+ padding: 0 24px 24px 24px;
194
+ }
195
+ .kb-row {
196
+ display: grid;
197
+ grid-template-columns: repeat(10, 1fr);
198
+ gap: 16px;
199
+ margin-bottom: 22px;
200
+ }
201
+ .key {
202
+ height: 112px;
203
+ border-radius: 18px;
204
+ background: #2b2b2b;
205
+ color: #e6e6e6;
206
+ display: flex;
207
+ align-items: center;
208
+ justify-content: center;
209
+ font-size: 42px;
210
+ }
211
+ .key.wide { grid-column: span 2; }
212
+ .key.icon { font-size: 56px; }
213
+ .kb-bottom-row {
214
+ display: grid;
215
+ grid-template-columns: 1.2fr 1fr 1fr 1fr 4fr 1fr 1.2fr;
216
+ gap: 16px;
217
+ }
218
+
219
+ /* Home indicator */
220
+ .home-indicator {
221
+ position: absolute;
222
+ bottom: 32px;
223
+ left: 50%;
224
+ transform: translateX(-50%);
225
+ width: 560px;
226
+ height: 12px;
227
+ background: #6e6e6e;
228
+ border-radius: 6px;
229
+ opacity: 0.7;
230
+ }
231
+ </style>
232
+ </head>
233
+ <body>
234
+ <div id="render-target">
235
+
236
+ <!-- Red app bar -->
237
+ <div class="app-bar">
238
+ <div class="status-row">
239
+ <div>10:40</div>
240
+ <div class="spacer"></div>
241
+ <!-- simple status icons -->
242
+ <div class="status-icon">
243
+ <!-- Wi-Fi icon -->
244
+ <svg width="48" height="48" viewBox="0 0 24 24" fill="none">
245
+ <path d="M2 8c5-4 15-4 20 0" stroke="#fff" stroke-width="2" stroke-linecap="round"/>
246
+ <path d="M5 12c3-3 11-3 14 0" stroke="#fff" stroke-width="2" stroke-linecap="round"/>
247
+ <circle cx="12" cy="16" r="2" fill="#fff"/>
248
+ </svg>
249
+ </div>
250
+ <div class="status-icon">
251
+ <!-- Battery -->
252
+ <svg width="48" height="48" viewBox="0 0 24 24" fill="none">
253
+ <rect x="3" y="7" width="16" height="10" rx="2" stroke="#fff" stroke-width="2"/>
254
+ <rect x="5" y="9" width="12" height="6" fill="#fff"/>
255
+ <rect x="19" y="10" width="2" height="4" fill="#fff"/>
256
+ </svg>
257
+ </div>
258
+ </div>
259
+
260
+ <div class="title-row">
261
+ <div class="nav-btn">
262
+ <!-- back arrow -->
263
+ <svg width="80" height="80" viewBox="0 0 24 24" fill="none">
264
+ <path d="M15 5l-8 7 8 7" stroke="#fff" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
265
+ </svg>
266
+ </div>
267
+ <div class="title-text">Plan</div>
268
+ <div class="brand-btn">
269
+ <!-- double chevrons logo -->
270
+ <svg width="100" height="80" viewBox="0 0 24 24" fill="none">
271
+ <path d="M4 5l6 7-6 7" stroke="#fff" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
272
+ <path d="M12 5l6 7-6 7" stroke="#fff" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
273
+ </svg>
274
+ </div>
275
+ </div>
276
+ </div>
277
+
278
+ <!-- Search card -->
279
+ <div class="search-card">
280
+ <div class="search-inner">
281
+ <div class="route-marker">
282
+ <div class="line"></div>
283
+ </div>
284
+ <div class="field">Dundee</div>
285
+ <div class="thin-divider"></div>
286
+ <div class="field to">Guildford</div>
287
+ <div class="clear-btn">
288
+ <!-- X icon -->
289
+ <svg width="64" height="64" viewBox="0 0 24 24" fill="none">
290
+ <path d="M5 5l14 14M19 5L5 19" stroke="#ddd" stroke-width="2.5" stroke-linecap="round"/>
291
+ </svg>
292
+ </div>
293
+ </div>
294
+ </div>
295
+
296
+ <!-- Results list -->
297
+ <div class="results">
298
+ <div class="result-item">
299
+ <div class="left-icon">
300
+ <!-- clock icon -->
301
+ <svg width="56" height="56" viewBox="0 0 24 24" fill="none">
302
+ <circle cx="12" cy="12" r="9" stroke="#ccc" stroke-width="2"/>
303
+ <path d="M12 7v6l4 2" stroke="#ccc" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
304
+ </svg>
305
+ </div>
306
+ <div class="result-title">Guildford</div>
307
+ <div class="right-star">
308
+ <!-- star outline -->
309
+ <svg width="56" height="56" viewBox="0 0 24 24" fill="none">
310
+ <path d="M12 3l3.3 6.7 7.2 1.1-5.2 5.1 1.2 7.1L12 19l-6.5 4 1.2-7.1-5.2-5.1 7.2-1.1L12 3z" stroke="#ccc" stroke-width="1.8" fill="none"/>
311
+ </svg>
312
+ </div>
313
+ </div>
314
+
315
+ <div class="result-item">
316
+ <div style="width:72px;height:72px;margin-right:30px;"></div>
317
+ <div class="result-title">Guildford London Road</div>
318
+ <div class="right-star">
319
+ <svg width="56" height="56" viewBox="0 0 24 24" fill="none">
320
+ <path d="M12 3l3.3 6.7 7.2 1.1-5.2 5.1 1.2 7.1L12 19l-6.5 4 1.2-7.1-5.2-5.1 7.2-1.1L12 3z" stroke="#ccc" stroke-width="1.8" fill="none"/>
321
+ </svg>
322
+ </div>
323
+ </div>
324
+
325
+ <div class="result-item">
326
+ <div style="width:72px;height:72px;margin-right:30px;"></div>
327
+ <div class="result-title">Guilherand-Granges Sadi Carnot</div>
328
+ <div class="right-star">
329
+ <svg width="56" height="56" viewBox="0 0 24 24" fill="none">
330
+ <path d="M12 3l3.3 6.7 7.2 1.1-5.2 5.1 1.2 7.1L12 19l-6.5 4 1.2-7.1-5.2-5.1 7.2-1.1L12 3z" stroke="#ccc" stroke-width="1.8" fill="none"/>
331
+ </svg>
332
+ </div>
333
+ </div>
334
+
335
+ <div class="result-item">
336
+ <div style="width:72px;height:72px;margin-right:30px;"></div>
337
+ <div class="result-title">Guillarei</div>
338
+ <div class="right-star">
339
+ <svg width="56" height="56" viewBox="0 0 24 24" fill="none">
340
+ <path d="M12 3l3.3 6.7 7.2 1.1-5.2 5.1 1.2 7.1L12 19l-6.5 4 1.2-7.1-5.2-5.1 7.2-1.1L12 3z" stroke="#ccc" stroke-width="1.8" fill="none"/>
341
+ </svg>
342
+ </div>
343
+ </div>
344
+
345
+ <div class="result-item">
346
+ <div style="width:72px;height:72px;margin-right:30px;"></div>
347
+ <div class="result-title">Guillerval</div>
348
+ <div class="right-star">
349
+ <svg width="56" height="56" viewBox="0 0 24 24" fill="none">
350
+ <path d="M12 3l3.3 6.7 7.2 1.1-5.2 5.1 1.2 7.1L12 19l-6.5 4 1.2-7.1-5.2-5.1 7.2-1.1L12 3z" stroke="#ccc" stroke-width="1.8" fill="none"/>
351
+ </svg>
352
+ </div>
353
+ </div>
354
+
355
+ <div class="result-item">
356
+ <div style="width:72px;height:72px;margin-right:30px;"></div>
357
+ <div class="result-title">Guilberville, Covoiturage</div>
358
+ <div class="right-star">
359
+ <svg width="56" height="56" viewBox="0 0 24 24" fill="none">
360
+ <path d="M12 3l3.3 6.7 7.2 1.1-5.2 5.1 1.2 7.1L12 19l-6.5 4 1.2-7.1-5.2-5.1 7.2-1.1L12 3z" stroke="#ccc" stroke-width="1.8" fill="none"/>
361
+ </svg>
362
+ </div>
363
+ </div>
364
+ </div>
365
+
366
+ <!-- Keyboard -->
367
+ <div class="keyboard">
368
+ <div class="kb-top-text">Guildford</div>
369
+ <div class="kb-rows">
370
+ <div class="kb-row">
371
+ <div class="key">q</div><div class="key">w</div><div class="key">e</div><div class="key">r</div><div class="key">t</div><div class="key">y</div><div class="key">u</div><div class="key">i</div><div class="key">o</div><div class="key">p</div>
372
+ </div>
373
+ <div class="kb-row">
374
+ <div class="key">a</div><div class="key">s</div><div class="key">d</div><div class="key">f</div><div class="key">g</div><div class="key">h</div><div class="key">j</div><div class="key">k</div><div class="key">l</div><div class="key icon">⌫</div>
375
+ </div>
376
+ <div class="kb-row">
377
+ <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><div class="key">,</div><div class="key">.</div><div class="key icon">✔</div>
378
+ </div>
379
+ <div class="kb-bottom-row">
380
+ <div class="key">?123</div>
381
+ <div class="key">⎋</div>
382
+ <div class="key">🙂</div>
383
+ <div class="key"></div>
384
+ <div class="key wide">space</div>
385
+ <div class="key">.</div>
386
+ <div class="key">✔</div>
387
+ </div>
388
+ </div>
389
+ </div>
390
+
391
+ <div class="home-indicator"></div>
392
+ </div>
393
+ </body>
394
+ </html>
code/10003/10003_6.html ADDED
@@ -0,0 +1,320 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Connections 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:#121212; color:#fff;
10
+ border-radius:22px;
11
+ }
12
+ /* Status bar */
13
+ .status-bar {
14
+ position:absolute; top:0; left:0; right:0; height:90px; background:#1a1a1a;
15
+ display:flex; align-items:center; justify-content:space-between; padding:0 40px; font-size:40px; color:#fff;
16
+ }
17
+ .status-icons { display:flex; align-items:center; gap:26px; }
18
+ .icon {
19
+ width:48px; height:48px; display:inline-flex; align-items:center; justify-content:center;
20
+ }
21
+ .icon svg { width:100%; height:100%; fill:#fff; }
22
+ /* App bar */
23
+ .app-bar {
24
+ position:absolute; top:90px; left:0; right:0; height:170px; background:#c62828;
25
+ display:flex; align-items:center; justify-content:center;
26
+ }
27
+ .app-bar .title { font-size:60px; font-weight:600; }
28
+ .app-bar .left, .app-bar .right {
29
+ position:absolute; top:0; height:100%; display:flex; align-items:center;
30
+ }
31
+ .app-bar .left { left:30px; }
32
+ .app-bar .right { right:30px; }
33
+ .round-btn {
34
+ width:100px; height:100px; border-radius:50%; border:2px solid rgba(255,255,255,0.35);
35
+ display:flex; align-items:center; justify-content:center;
36
+ }
37
+ /* Content area */
38
+ .content { position:absolute; top:260px; left:0; right:0; bottom:0; padding:30px; overflow-y:auto; }
39
+ .card {
40
+ background:#1f1f1f; border-radius:28px; margin-bottom:26px; padding:34px;
41
+ box-shadow:0 4px 12px rgba(0,0,0,0.4);
42
+ }
43
+ .route-summary {
44
+ position:relative; padding:20px 20px 26px 120px;
45
+ }
46
+ .route-rail {
47
+ position:absolute; left:60px; top:30px; bottom:30px; width:8px; background:#2a2a2a; border-radius:6px;
48
+ }
49
+ .stop-dot {
50
+ position:absolute; left:56px; width:16px; height:16px; background:#aaa; border-radius:50%;
51
+ }
52
+ .stop-dot.top { top:30px; }
53
+ .stop-dot.bottom { bottom:30px; }
54
+ .route-summary h3, .route-summary h4 { margin:12px 0; }
55
+ .route-summary h3 { font-size:50px; font-weight:600; }
56
+ .route-summary h4 { font-size:42px; font-weight:500; color:#ddd; }
57
+ .summary-row {
58
+ margin-top:26px; display:flex; align-items:center; gap:18px; font-size:38px; color:#cfcfcf;
59
+ }
60
+ .summary-row .chip { padding:6px 14px; border-radius:16px; background:#2a2a2a; }
61
+ .summary-actions { margin-left:auto; display:flex; align-items:center; gap:18px; }
62
+ .summary-actions .icon { width:52px; height:52px; }
63
+ .date-label { font-size:40px; color:#bdbdbd; margin:12px 12px 18px; }
64
+ /* Connection card */
65
+ .connection {
66
+ display:grid; grid-template-columns:120px 1fr 220px; align-items:center; gap:24px;
67
+ }
68
+ .train-badges { display:flex; align-items:center; gap:16px; }
69
+ .badge-train {
70
+ width:96px; height:76px; background:#2d5bd1; border-radius:12px; display:flex; align-items:center; justify-content:center;
71
+ border:1px solid #3b69dd;
72
+ }
73
+ .badge-train span { font-size:28px; }
74
+ .badge-ic {
75
+ background:#d32f2f; color:#fff; font-weight:700; font-size:34px; padding:18px 24px; border-radius:12px;
76
+ }
77
+ .dir { font-size:44px; font-weight:600; }
78
+ .times { font-size:52px; font-weight:700; }
79
+ .platform { font-size:38px; color:#cfcfcf; margin-top:12px; display:flex; align-items:center; gap:18px; }
80
+ .platform .tag { border:1px solid #777; padding:4px 10px; border-radius:8px; font-size:32px; color:#ddd; }
81
+ .route-line {
82
+ margin-top:16px; height:22px; display:flex; align-items:center; gap:36px;
83
+ }
84
+ .route-line .line {
85
+ flex:1; height:4px; background:#d8d8d8; opacity:0.9;
86
+ }
87
+ .route-line .dot {
88
+ width:18px; height:18px; background:#fff; border-radius:50%;
89
+ }
90
+ .dur { text-align:right; font-size:38px; color:#cfcfcf; margin-top:12px; }
91
+ /* Bottom sheet / nav */
92
+ .bottom-bar {
93
+ position:absolute; left:0; right:0; bottom:0; height:180px; background:#1b1b1b;
94
+ border-top-left-radius:24px; border-top-right-radius:24px;
95
+ display:flex; align-items:center; justify-content:space-around; padding:0 40px; color:#d7d7d7; font-size:34px;
96
+ }
97
+ .nav-item { display:flex; flex-direction:column; align-items:center; gap:14px; }
98
+ .nav-icon { width:92px; height:92px; background:#2a2a2a; border-radius:50%; display:flex; align-items:center; justify-content:center; }
99
+ .nav-icon svg { width:52px; height:52px; fill:#cfcfcf; }
100
+ </style>
101
+ </head>
102
+ <body>
103
+ <div id="render-target">
104
+ <!-- Status bar -->
105
+ <div class="status-bar">
106
+ <div>10:40</div>
107
+ <div class="status-icons">
108
+ <!-- simple icons -->
109
+ <div class="icon">
110
+ <svg viewBox="0 0 24 24"><path d="M12 3c3.9 0 7 3.1 7 7h-2c0-2.8-2.2-5-5-5s-5 2.2-5 5H5c0-3.9 3.1-7 7-7zm-7 11h2c0 2.8 2.2 5 5 5s5-2.2 5-5h2c0 3.9-3.1 7-7 7s-7-3.1-7-7z"/></svg>
111
+ </div>
112
+ <div class="icon">
113
+ <svg viewBox="0 0 24 24"><path d="M12 2l6 6h-4v8H10V8H6l6-6z"/></svg>
114
+ </div>
115
+ <div class="icon">
116
+ <svg viewBox="0 0 24 24"><path d="M17 3H7L3 7v10l4 4h10l4-4V7l-4-4zm-1 16H8l-3-3V8l3-3h8l3 3v8l-3 3z"/></svg>
117
+ </div>
118
+ <div class="icon">
119
+ <svg viewBox="0 0 24 24"><path d="M14 2H10v2h4V2zm4 8H6v2h12v-2zm2 8H4v2h16v-2z"/></svg>
120
+ </div>
121
+ </div>
122
+ </div>
123
+
124
+ <!-- App bar -->
125
+ <div class="app-bar">
126
+ <div class="left">
127
+ <div class="round-btn">
128
+ <svg viewBox="0 0 24 24"><path d="M15.5 19l-7-7 7-7v14z" fill="#fff"/></svg>
129
+ </div>
130
+ </div>
131
+ <div class="title">Connections</div>
132
+ <div class="right">
133
+ <div class="round-btn">
134
+ <svg viewBox="0 0 24 24"><path d="M4 12h16M13 7l7 5-7 5" stroke="#fff" stroke-width="2" fill="none"/></svg>
135
+ </div>
136
+ </div>
137
+ </div>
138
+
139
+ <!-- Content -->
140
+ <div class="content">
141
+ <!-- Route summary card -->
142
+ <div class="card route-summary">
143
+ <div class="route-rail"></div>
144
+ <div class="stop-dot top"></div>
145
+ <div class="stop-dot bottom"></div>
146
+ <h3>Dundee</h3>
147
+ <h4>Guilford London Road</h4>
148
+ <div class="summary-row">
149
+ <span class="chip">Mon 30.10.</span>
150
+ <span class="chip">06:10 Dep</span>
151
+ <div class="summary-actions">
152
+ <div class="icon">
153
+ <svg viewBox="0 0 24 24"><path d="M12 8v5l4 2M12 22a10 10 0 1 0 0-20 10 10 0 0 0 0 20z" fill="none" stroke="#fff" stroke-width="2"/></svg>
154
+ </div>
155
+ <div class="icon">
156
+ <svg viewBox="0 0 24 24"><path d="M5 5h14M9 12h10M13 19h6" stroke="#fff" stroke-width="2"/></svg>
157
+ </div>
158
+ </div>
159
+ </div>
160
+ </div>
161
+
162
+ <div class="date-label">Monday 30.10.2023</div>
163
+
164
+ <!-- Connection 1 -->
165
+ <div class="card">
166
+ <div class="connection">
167
+ <div class="train-badges">
168
+ <div class="badge-train"><span>🚉</span></div>
169
+ <div class="badge-ic">IC</div>
170
+ </div>
171
+ <div>
172
+ <div class="dir">Direction Edinburgh Waverley</div>
173
+ <div class="times">06:35<span style="margin-left:24px; font-weight:400; color:#bdbdbd;">—</span>
174
+ <span style="float:right; font-weight:700;">14:33</span>
175
+ </div>
176
+ <div class="route-line">
177
+ <div class="dot"></div>
178
+ <div class="line"></div>
179
+ <div class="dot"></div>
180
+ <div class="line"></div>
181
+ <div class="dot"></div>
182
+ <div class="line"></div>
183
+ <div class="dot"></div>
184
+ </div>
185
+ <div class="platform">
186
+ <span>Pl. 2</span>
187
+ <span class="tag">R</span>
188
+ </div>
189
+ </div>
190
+ <div class="dur">7 h 58 min</div>
191
+ </div>
192
+ </div>
193
+
194
+ <!-- Connection 2 -->
195
+ <div class="card">
196
+ <div class="connection">
197
+ <div class="train-badges">
198
+ <div class="badge-train"><span>🚉</span></div>
199
+ <div class="badge-ic">IC</div>
200
+ </div>
201
+ <div>
202
+ <div class="dir">Direction Edinburgh Waverley</div>
203
+ <div class="times">07:15<span style="margin-left:24px; font-weight:400; color:#bdbdbd;">—</span>
204
+ <span style="float:right; font-weight:700;">15:32</span>
205
+ </div>
206
+ <div class="route-line">
207
+ <div class="dot"></div>
208
+ <div class="line"></div>
209
+ <div class="dot"></div>
210
+ <div class="line"></div>
211
+ <div class="dot"></div>
212
+ <div class="line"></div>
213
+ <div class="dot"></div>
214
+ </div>
215
+ <div class="platform">
216
+ <span>Pl. 1</span>
217
+ <span class="tag">R</span>
218
+ </div>
219
+ </div>
220
+ <div class="dur">8 h 17 min</div>
221
+ </div>
222
+ </div>
223
+
224
+ <!-- Connection 3 -->
225
+ <div class="card">
226
+ <div class="connection">
227
+ <div class="train-badges">
228
+ <div class="badge-train"><span>🚉</span></div>
229
+ <div class="badge-ic">IC</div>
230
+ </div>
231
+ <div>
232
+ <div class="dir">Direction Edinburgh Waverley</div>
233
+ <div class="times">07:40<span style="margin-left:24px; font-weight:400; color:#bdbdbd;">—</span>
234
+ <span style="float:right; font-weight:700;">15:33</span>
235
+ </div>
236
+ <div class="route-line">
237
+ <div class="dot"></div>
238
+ <div class="line"></div>
239
+ <div class="dot"></div>
240
+ <div class="line"></div>
241
+ <div class="dot"></div>
242
+ <div class="line"></div>
243
+ <div class="dot"></div>
244
+ </div>
245
+ <div class="platform">
246
+ <span>Pl. 2</span>
247
+ <span class="tag">R</span>
248
+ </div>
249
+ </div>
250
+ <div class="dur">7 h 53 min</div>
251
+ </div>
252
+ </div>
253
+
254
+ <!-- Connection 4 -->
255
+ <div class="card">
256
+ <div class="connection">
257
+ <div class="train-badges">
258
+ <div class="badge-train"><span>🚉</span></div>
259
+ <div class="badge-ic">IC</div>
260
+ </div>
261
+ <div>
262
+ <div class="dir">Direction London King's Cross</div>
263
+ <div class="times">09:08<span style="margin-left:24px; font-weight:400; color:#bdbdbd;">—</span>
264
+ <span style="float:right; font-weight:700;">16:32</span>
265
+ </div>
266
+ <div class="route-line">
267
+ <div class="dot"></div>
268
+ <div class="line"></div>
269
+ <div class="dot"></div>
270
+ <div class="line"></div>
271
+ <div class="dot"></div>
272
+ <div class="line"></div>
273
+ <div class="dot"></div>
274
+ </div>
275
+ <div class="platform">
276
+ <span>Pl. 1</span>
277
+ <span class="tag">R</span>
278
+ </div>
279
+ </div>
280
+ <div class="dur">7 h 24 min</div>
281
+ </div>
282
+ </div>
283
+ </div>
284
+
285
+ <!-- Bottom nav -->
286
+ <div class="bottom-bar">
287
+ <div class="nav-item">
288
+ <div class="nav-icon">
289
+ <svg viewBox="0 0 24 24"><path d="M12 3l9 8h-3v9H6v-9H3l9-8z"/></svg>
290
+ </div>
291
+ <div>Plan</div>
292
+ </div>
293
+ <div class="nav-item">
294
+ <div class="nav-icon">
295
+ <svg viewBox="0 0 24 24"><path d="M4 17h16v2H4zm2-2h12l-1-6H7l-1 6zm5-10h2l1 2H8l1-2z"/></svg>
296
+ </div>
297
+ <div>Trains</div>
298
+ </div>
299
+ <div class="nav-item">
300
+ <div class="nav-icon">
301
+ <svg viewBox="0 0 24 24"><path d="M12 7a5 5 0 1 1 0 10 5 5 0 0 1 0-10zm0-5v4m0 12v4m-9-9h4m12 0h4"/></svg>
302
+ </div>
303
+ <div>Map</div>
304
+ </div>
305
+ <div class="nav-item">
306
+ <div class="nav-icon">
307
+ <svg viewBox="0 0 24 24"><path d="M4 4h7v7H4V4zm9 0h7v7h-7V4zM4 12h7v8H4v-8zm9 0h7v8h-7v-8z"/></svg>
308
+ </div>
309
+ <div>Tickets</div>
310
+ </div>
311
+ <div class="nav-item">
312
+ <div class="nav-icon">
313
+ <svg viewBox="0 0 24 24"><path d="M12 12a5 5 0 1 0-5-5 5 5 0 0 0 5 5zm0 2c-4.4 0-8 2.2-8 5v3h16v-3c0-2.8-3.6-5-8-5z"/></svg>
314
+ </div>
315
+ <div>Profile</div>
316
+ </div>
317
+ </div>
318
+ </div>
319
+ </body>
320
+ </html>
code/10004/10004_0.html ADDED
@@ -0,0 +1,362 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
5
+ <title>Mobile UI Render</title>
6
+ <style>
7
+ body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
8
+ #render-target {
9
+ width: 1080px;
10
+ height: 2400px;
11
+ position: relative;
12
+ overflow: hidden;
13
+ background: #F6F7F9;
14
+ border-radius: 0;
15
+ }
16
+
17
+ /* Status bar */
18
+ .status-bar {
19
+ height: 120px;
20
+ padding: 0 40px;
21
+ display: flex;
22
+ align-items: center;
23
+ justify-content: space-between;
24
+ color: #2E2E2E;
25
+ font-weight: 600;
26
+ font-size: 36px;
27
+ }
28
+ .status-left, .status-right { display: flex; align-items: center; gap: 28px; }
29
+ .dot { width: 12px; height: 12px; background:#4a4a4a; border-radius:50%; }
30
+ .wifi, .battery, .location {
31
+ width: 38px; height: 38px;
32
+ }
33
+ .wifi svg, .battery svg, .location svg { width: 100%; height: 100%; }
34
+
35
+ /* App header */
36
+ .app-header {
37
+ padding: 10px 40px 0 40px;
38
+ }
39
+ .top-row {
40
+ display: flex;
41
+ align-items: center;
42
+ justify-content: space-between;
43
+ }
44
+ .flag {
45
+ display: flex;
46
+ align-items: center;
47
+ gap: 22px;
48
+ }
49
+ .flag-badge {
50
+ width: 78px; height: 78px; border-radius: 50%;
51
+ background: #2FB344;
52
+ display:flex; align-items:center; justify-content:center;
53
+ box-shadow: 0 2px 0 rgba(0,0,0,0.08) inset;
54
+ }
55
+ .flag-badge span {
56
+ width: 52px; height: 52px; border-radius: 50%;
57
+ background: radial-gradient(circle at 30% 30%, #FFD54F 0, #FFD54F 50%, #1E88E5 50%, #1E88E5 100%);
58
+ display:block;
59
+ border: 3px solid #0F6B2C;
60
+ }
61
+ .header-icons { display:flex; align-items:center; gap: 28px; }
62
+ .shield {
63
+ width: 68px; height: 68px; border-radius: 18px; background:#1E5DFF;
64
+ display:flex; align-items:center; justify-content:center;
65
+ box-shadow: 0 10px 20px rgba(30,93,255,0.25);
66
+ }
67
+ .bell {
68
+ width: 68px; height: 68px; border-radius: 20px; border:2px solid #7EA7FF; display:flex; align-items:center; justify-content:center;
69
+ color:#1E5DFF;
70
+ }
71
+ .bell svg { width: 40px; height: 40px; }
72
+
73
+ .course-title {
74
+ margin-top: 18px;
75
+ display:flex; align-items:center; gap: 14px;
76
+ font-size: 46px; font-weight: 800; color:#1F2937;
77
+ }
78
+ .dropdown {
79
+ width: 26px; height: 26px;
80
+ }
81
+ .progress-wrap {
82
+ margin-top: 16px;
83
+ display:flex; align-items:center; gap: 20px;
84
+ }
85
+ .progress-label {
86
+ background: #E6F7EC;
87
+ color: #2FB344;
88
+ font-weight: 700;
89
+ font-size: 32px;
90
+ padding: 12px 20px;
91
+ border-radius: 28px;
92
+ }
93
+ .progress-bar {
94
+ flex: 1;
95
+ height: 26px; background:#D9DDE6; border-radius: 20px; overflow:hidden;
96
+ }
97
+ .progress-bar .fill { width: 9%; height: 100%; background:#9EA6B8; }
98
+
99
+ /* Premium banner */
100
+ .premium-banner {
101
+ margin: 22px 0;
102
+ height: 120px;
103
+ background:#4B2CF0;
104
+ border-radius: 28px;
105
+ display:flex; align-items:center; gap: 18px;
106
+ padding: 0 34px;
107
+ color:#fff; font-weight: 800; font-size: 42px;
108
+ }
109
+ .cart-icon {
110
+ width: 68px; height: 68px; border-radius: 16px; background: rgba(255,255,255,0.15);
111
+ display:flex; align-items:center; justify-content:center;
112
+ }
113
+ .cart-icon svg { width: 40px; height: 40px; fill:#fff; }
114
+
115
+ /* Chapter section */
116
+ .chapter {
117
+ padding: 0 40px;
118
+ }
119
+ .chapter h2 {
120
+ margin: 6px 0 10px 0;
121
+ font-size: 64px; font-weight: 900; color:#1F2937;
122
+ }
123
+ .chapter .summary {
124
+ font-size: 34px; color:#485062; margin-bottom: 28px;
125
+ }
126
+
127
+ /* Lessons list */
128
+ .lessons {
129
+ position: relative;
130
+ margin-left: 20px;
131
+ padding-left: 24px;
132
+ }
133
+ .lesson {
134
+ display:flex; align-items:center; justify-content:space-between;
135
+ margin-bottom: 60px;
136
+ }
137
+ .lesson-left { display:flex; align-items:center; gap: 28px; }
138
+ .ring {
139
+ width: 180px; height: 180px; border-radius: 50%;
140
+ border: 20px solid #23C45E;
141
+ display:flex; align-items:center; justify-content:center;
142
+ position: relative;
143
+ background:#fff;
144
+ }
145
+ .avatar {
146
+ width: 130px; height: 130px; background:#E0E0E0; border:1px solid #BDBDBD;
147
+ border-radius: 50%; color:#757575; font-size: 26px;
148
+ display:flex; align-items:center; justify-content:center; text-align:center; padding:8px;
149
+ }
150
+ .check {
151
+ position: absolute; right:-6px; bottom:-6px; width: 64px; height:64px; background:#23C45E; border-radius:50%;
152
+ display:flex; align-items:center; justify-content:center; box-shadow: 0 6px 12px rgba(0,0,0,0.15);
153
+ }
154
+ .check svg { width:36px; height:36px; fill:#fff; }
155
+ .lesson-title {
156
+ font-size: 50px; font-weight: 800; color:#1F2937;
157
+ }
158
+ .cloud-btn { width: 70px; height: 70px; display:flex; align-items:center; justify-content:center; }
159
+ .cloud-btn svg { width: 58px; height: 58px; stroke:#1E5DFF; fill:none; stroke-width: 6px; }
160
+
161
+ .connector {
162
+ position: absolute;
163
+ left: 102px;
164
+ top: 190px;
165
+ width: 12px; height: 180px; background:#23C45E; border-radius: 6px;
166
+ }
167
+
168
+ /* Bottom sheet modal */
169
+ .sheet {
170
+ position: absolute;
171
+ left: 0; right: 0; bottom: 200px;
172
+ margin: 0 auto;
173
+ width: 100%;
174
+ height: 700px;
175
+ background:#fff;
176
+ border-top-left-radius: 40px;
177
+ border-top-right-radius: 40px;
178
+ box-shadow: 0 -20px 40px rgba(0,0,0,0.08);
179
+ padding: 60px 50px;
180
+ }
181
+ .sheet .illustration {
182
+ width: 180px; height: 180px; border-radius: 40px; background:#EAF1FF; border: 2px dashed #BBD0FF;
183
+ display:flex; align-items:center; justify-content:center; margin: 0 auto 40px auto;
184
+ }
185
+ .sheet .illustration svg { width: 120px; height: 120px; stroke:#1E5DFF; stroke-width: 10px; fill:none; }
186
+ .sheet h3 {
187
+ text-align:center; font-size: 60px; font-weight: 900; margin: 0 0 24px 0; color:#1F2937;
188
+ }
189
+ .sheet p {
190
+ text-align:center; font-size: 36px; color:#546070; margin: 0 60px 40px 60px; line-height: 1.35;
191
+ }
192
+ .sheet .actions {
193
+ display:flex; flex-direction:column; gap: 26px; padding: 0 20px;
194
+ }
195
+ .primary-btn {
196
+ height: 120px; border-radius: 64px; background:#2E67FF; color:#fff; font-size: 44px; font-weight: 800; border:none;
197
+ box-shadow: 0 12px 24px rgba(46,103,255,0.35);
198
+ }
199
+ .ghost-btn {
200
+ height: 120px; border-radius: 64px; border: 3px solid #CBD5E1; background:#fff; color:#1F2937; font-size: 44px; font-weight: 800;
201
+ }
202
+
203
+ /* Bottom nav */
204
+ .bottom-nav {
205
+ position: absolute;
206
+ bottom: 0; left: 0; right: 0;
207
+ height: 220px;
208
+ background:#FFFFFF;
209
+ border-top-left-radius: 28px; border-top-right-radius: 28px;
210
+ box-shadow: 0 -8px 24px rgba(0,0,0,0.06);
211
+ padding-top: 26px;
212
+ }
213
+ .nav-items {
214
+ display:flex; justify-content: space-around; align-items: center;
215
+ padding: 0 40px;
216
+ }
217
+ .nav-item {
218
+ display:flex; flex-direction: column; align-items:center; gap: 12px; color:#1F2937;
219
+ }
220
+ .nav-item.active { color:#1E5DFF; }
221
+ .nav-item svg { width: 64px; height: 64px; }
222
+ .nav-label { font-size: 28px; font-weight: 700; }
223
+ .home-pill {
224
+ position: absolute; left: 50%; transform: translateX(-50%);
225
+ bottom: 20px; width: 420px; height: 16px; background:#C9CDD6; border-radius: 16px;
226
+ }
227
+ </style>
228
+ </head>
229
+ <body>
230
+ <div id="render-target">
231
+
232
+ <!-- Status Bar -->
233
+ <div class="status-bar">
234
+ <div class="status-left">
235
+ <span>6:11</span>
236
+ <svg class="location" viewBox="0 0 24 24"><path d="M12 2l6 6-6 14-6-14 6-6z" fill="#4a4a4a"/></svg>
237
+ <div class="dot"></div>
238
+ <svg class="wifi" viewBox="0 0 24 24"><path d="M2 8c5-4 15-4 20 0M5 12c3-3 11-3 14 0M8 16c2-2 6-2 8 0M12 20a2 2 0 1 0 0-4 2 2 0 0 0 0 4" stroke="#4a4a4a" stroke-width="2" fill="none" stroke-linecap="round"/></svg>
239
+ <svg class="battery" viewBox="0 0 24 24"><rect x="1" y="6" width="18" height="12" rx="2" ry="2" stroke="#4a4a4a" stroke-width="2" fill="none"/><rect x="3" y="8" width="10" height="8" fill="#4a4a4a"/><rect x="20" y="10" width="3" height="6" rx="1" fill="#4a4a4a"/></svg>
240
+ <span style="font-weight:700;">100%</span>
241
+ </div>
242
+ <div class="status-right"></div>
243
+ </div>
244
+
245
+ <!-- App Header -->
246
+ <div class="app-header">
247
+ <div class="top-row">
248
+ <div class="flag">
249
+ <div class="flag-badge"><span></span></div>
250
+ </div>
251
+ <div class="header-icons">
252
+ <div class="shield">
253
+ <svg viewBox="0 0 24 24"><path d="M12 2l8 4v6c0 5-4 8-8 10-4-2-8-5-8-10V6l8-4z" fill="#fff" opacity="0.8"/></svg>
254
+ </div>
255
+ <div class="bell">
256
+ <svg viewBox="0 0 24 24"><path d="M12 22a2 2 0 0 0 2-2H10a2 2 0 0 0 2 2zm8-6V11a8 8 0 1 0-16 0v5l-2 2h20l-2-2z" fill="#1E5DFF"/></svg>
257
+ </div>
258
+ </div>
259
+ </div>
260
+
261
+ <div class="course-title">
262
+ <span>Beginner A1</span>
263
+ <svg class="dropdown" viewBox="0 0 24 24"><path d="M6 9l6 6 6-6" stroke="#64748B" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>
264
+ </div>
265
+
266
+ <div class="progress-wrap">
267
+ <div class="progress-label">3%</div>
268
+ <div class="progress-bar"><div class="fill"></div></div>
269
+ </div>
270
+
271
+ <div class="premium-banner">
272
+ <div class="cart-icon">
273
+ <svg viewBox="0 0 24 24"><path d="M3 3h2l3 12h10l2-8H7" stroke="#fff" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>
274
+ </div>
275
+ <div>Try Premium for free</div>
276
+ </div>
277
+ </div>
278
+
279
+ <!-- Chapter -->
280
+ <div class="chapter">
281
+ <h2>Chapter 1</h2>
282
+ <div class="summary">2/6 lessons completed</div>
283
+
284
+ <div class="lessons">
285
+ <div class="lesson">
286
+ <div class="lesson-left">
287
+ <div class="ring">
288
+ <div class="avatar">[IMG: Lesson avatar]</div>
289
+ <div class="check"><svg viewBox="0 0 24 24"><path d="M20 6l-11 11-5-5" stroke="#fff" stroke-width="3" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg></div>
290
+ </div>
291
+ <div class="lesson-title">Olá!</div>
292
+ </div>
293
+ <div class="cloud-btn">
294
+ <svg viewBox="0 0 24 24">
295
+ <path d="M7 16c-3 0-4-4-1-5 1-3 6-4 8-1 3-1 6 2 5 5-1 3-4 3-7 3" stroke="#1E5DFF" fill="none" stroke-width="2" stroke-linecap="round"/>
296
+ <path d="M12 10v6m0 0l-3-3m3 3l3-3" stroke="#1E5DFF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
297
+ </svg>
298
+ </div>
299
+ </div>
300
+
301
+ <div class="connector"></div>
302
+
303
+ <div class="lesson">
304
+ <div class="lesson-left">
305
+ <div class="ring">
306
+ <div class="avatar">[IMG: Lesson avatar]</div>
307
+ <div class="check"><svg viewBox="0 0 24 24"><path d="M20 6l-11 11-5-5" stroke="#fff" stroke-width="3" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg></div>
308
+ </div>
309
+ <div class="lesson-title">Saying your name</div>
310
+ </div>
311
+ <div class="cloud-btn">
312
+ <svg viewBox="0 0 24 24">
313
+ <path d="M7 16c-3 0-4-4-1-5 1-3 6-4 8-1 3-1 6 2 5 5-1 3-4 3-7 3" stroke="#1E5DFF" fill="none" stroke-width="2" stroke-linecap="round"/>
314
+ <path d="M12 10v6m0 0l-3-3m3 3l3-3" stroke="#1E5DFF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
315
+ </svg>
316
+ </div>
317
+ </div>
318
+ </div>
319
+ </div>
320
+
321
+ <!-- Bottom Sheet Modal -->
322
+ <div class="sheet">
323
+ <div class="illustration">
324
+ <svg viewBox="0 0 24 24">
325
+ <rect x="6" y="2" width="12" height="20" rx="2"></rect>
326
+ <path d="M12 7v8m0 0l-3-3m3 3l3-3" stroke-linecap="round" stroke-linejoin="round"></path>
327
+ </svg>
328
+ </div>
329
+ <h3>Unlock Offline Mode</h3>
330
+ <p>Upgrade to Premium to download chapters and learn anywhere, anytime</p>
331
+ <div class="actions">
332
+ <button class="primary-btn">Upgrade now</button>
333
+ <button class="ghost-btn">Not now</button>
334
+ </div>
335
+ </div>
336
+
337
+ <!-- Bottom Navigation -->
338
+ <div class="bottom-nav">
339
+ <div class="nav-items">
340
+ <div class="nav-item active">
341
+ <svg viewBox="0 0 24 24"><path d="M4 20V8l8-5 8 5v12H4z" fill="#1E5DFF"/></svg>
342
+ <div class="nav-label">Learn</div>
343
+ </div>
344
+ <div class="nav-item">
345
+ <svg viewBox="0 0 24 24"><path d="M4 20h4V10H4v10zm6 0h4V6h-4v14zm6 0h4V14h-4v6z" fill="#64748B"/></svg>
346
+ <div class="nav-label">Progress</div>
347
+ </div>
348
+ <div class="nav-item">
349
+ <svg viewBox="0 0 24 24"><path d="M12 2l3 7h7l-5.5 4 2 7-6.5-4.5L6 20l2-7L2 9h7l3-7z" fill="#64748B"/></svg>
350
+ <div class="nav-label">Crown</div>
351
+ </div>
352
+ <div class="nav-item">
353
+ <svg viewBox="0 0 24 24"><path d="M3 20h18v-2a8 8 0 0 0-18 0v2zM12 10a4 4 0 1 0 0-8 4 4 0 0 0 0 8z" fill="#64748B"/></svg>
354
+ <div class="nav-label">Profile</div>
355
+ </div>
356
+ </div>
357
+ <div class="home-pill"></div>
358
+ </div>
359
+
360
+ </div>
361
+ </body>
362
+ </html>
code/10004/10004_1.html ADDED
@@ -0,0 +1,343 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="utf-8">
4
+ <title>Profile Screen Mock</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
+ width:1080px; height:2400px;
10
+ overflow:hidden;
11
+ background:#ffffff;
12
+ color:#1b1e28;
13
+ }
14
+ /* Status bar */
15
+ .statusbar {
16
+ height:90px;
17
+ padding:0 28px;
18
+ display:flex; align-items:center; justify-content:space-between;
19
+ color:#1c1c1c;
20
+ font-weight:600;
21
+ font-size:38px;
22
+ }
23
+ .status-icons { display:flex; align-items:center; gap:26px; color:#444; }
24
+ .dot { width:12px; height:12px; background:#777; border-radius:50%; }
25
+ .wifi, .cell { width:34px; height:24px; border:2px solid #555; border-radius:4px; }
26
+ .battery {
27
+ width:70px; height:30px; border:3px solid #333; border-radius:6px; position:relative;
28
+ }
29
+ .battery::after { content:""; position:absolute; right:-10px; top:8px; width:8px; height:14px; background:#333; border-radius:2px; }
30
+ .battery .level { position:absolute; left:2px; top:2px; right:2px; bottom:2px; background:#2ecc71; }
31
+ .pct { font-size:30px; color:#333; margin-left:8px; }
32
+ /* Header */
33
+ .header {
34
+ padding:18px 32px 8px 32px;
35
+ display:flex; align-items:center; justify-content:space-between;
36
+ border-bottom:1px solid #f0f0f0;
37
+ }
38
+ .title { font-size:58px; font-weight:700; }
39
+ .hdr-actions { display:flex; align-items:center; gap:34px; }
40
+ .icon-btn { width:64px; height:64px; border-radius:16px; display:flex; align-items:center; justify-content:center; color:#2f6cff; }
41
+ /* Profile area */
42
+ .profile {
43
+ padding:30px 32px 14px 32px;
44
+ display:flex; gap:28px; align-items:center;
45
+ }
46
+ .avatar {
47
+ width:190px; height:190px; border-radius:100px; background:#5b443c;
48
+ display:flex; align-items:center; justify-content:center;
49
+ color:#fff; font-size:90px; font-weight:700;
50
+ }
51
+ .name-wrap { flex:1; }
52
+ .name { font-size:58px; font-weight:700; margin-bottom:10px; }
53
+ .pin { display:inline-flex; align-items:center; gap:10px; color:#9aa3ad; font-size:32px; }
54
+ /* Friends */
55
+ .friends {
56
+ padding:16px 32px;
57
+ }
58
+ .friends h3 { margin:0 0 16px 0; font-size:42px; font-weight:700; }
59
+ .pill {
60
+ display:inline-flex; align-items:center; justify-content:center;
61
+ padding:26px 30px;
62
+ background:#e6eaef; color:#5e6a75;
63
+ border-radius:38px; font-size:36px;
64
+ }
65
+ /* Tabs */
66
+ .tabs { display:flex; gap:48px; padding:22px 32px 0 32px; border-bottom:1px solid #e9eef6;}
67
+ .tab { padding:20px 0; font-size:38px; color:#4c6fbf; }
68
+ .tab.inactive { color:#7c8794; }
69
+ .tab.active { font-weight:700; position:relative; }
70
+ .tab.active::after {
71
+ content:""; position:absolute; left:0; right:0; bottom:-2px; height:8px; border-radius:4px; background:#3478f6;
72
+ }
73
+ /* Content section */
74
+ .section { padding:30px 32px; }
75
+ .section h2 { font-size:44px; margin:6px 0 20px 0; }
76
+ .lang-row { display:flex; align-items:center; gap:16px; color:#2b2f36; font-size:44px; }
77
+ .flag {
78
+ width:48px; height:48px; border-radius:50%;
79
+ background:linear-gradient(180deg,#1fa64a 0 50%, #1fa64a 50% 100%);
80
+ border:2px solid #0a8c36; position:relative;
81
+ }
82
+ .flag::after{ content:""; position:absolute; left:12px; top:12px; width:24px; height:24px; background:#f2c400; transform:rotate(45deg); }
83
+ /* Progress circle */
84
+ .gauge-wrap { display:flex; justify-content:center; margin:24px 0; }
85
+ .gauge {
86
+ width:610px; height:610px; border-radius:50%;
87
+ background: conic-gradient(#dce7ff 0deg, #dce7ff 350deg, #6ea1ff 350deg 360deg);
88
+ display:flex; align-items:center; justify-content:center;
89
+ padding:22px;
90
+ }
91
+ .gauge-inner {
92
+ width:100%; height:100%; border-radius:50%; background:#ffffff;
93
+ border:20px solid #edf2ff;
94
+ display:flex; align-items:center; justify-content:center; flex-direction:column;
95
+ }
96
+ .gauge-inner .percent { font-size:120px; font-weight:800; color:#222; }
97
+ .subheadline {
98
+ text-align:center; font-size:56px; font-weight:800; margin-top:18px;
99
+ }
100
+ /* Stats row */
101
+ .stats {
102
+ display:flex; justify-content:space-between; padding:22px 50px; margin-top:12px;
103
+ }
104
+ .stat {
105
+ width:48%;
106
+ border-top:1px solid #e7eef7;
107
+ padding-top:24px;
108
+ display:flex; align-items:center; justify-content:space-between;
109
+ }
110
+ .stat .label { color:#2a2f36; font-size:40px; }
111
+ .stat .count { font-size:56px; font-weight:800; display:flex; align-items:center; gap:14px; }
112
+ .green { color:#1ea94a; }
113
+ .red { color:#e55252; }
114
+ /* Days learned */
115
+ .days { padding:30px 32px 0 32px; }
116
+ .days h3 { font-size:48px; margin:0 0 24px 0; }
117
+ .circles { display:flex; gap:40px; align-items:center; }
118
+ .day {
119
+ display:flex; align-items:center; flex-direction:column; gap:10px;
120
+ width:100px;
121
+ }
122
+ .dot-circle {
123
+ width:86px; height:86px; border-radius:50%;
124
+ background:#e9eff6; border:2px solid #d5deea;
125
+ display:flex; align-items:center; justify-content:center; color:#9aa5b5; font-size:50px;
126
+ }
127
+ .dot-circle.ok {
128
+ background:#1ea94a; border-color:#188b3c; color:#fff;
129
+ }
130
+ .day span { font-size:34px; color:#677280; }
131
+ /* Bottom navigation */
132
+ .bottom-nav {
133
+ position:absolute; left:0; right:0; bottom:80px;
134
+ height:140px; border-top:1px solid #e8edf6;
135
+ display:flex; align-items:center; justify-content:space-around;
136
+ background:#ffffff;
137
+ }
138
+ .nav-item { display:flex; flex-direction:column; align-items:center; gap:10px; color:#8a96a8; font-size:30px; }
139
+ .nav-item.active { color:#2f6cff; font-weight:700; }
140
+ /* Gesture bar */
141
+ .gesture {
142
+ position:absolute; left:50%; transform:translateX(-50%);
143
+ bottom:20px; width:500px; height:12px; background:#1a1a1a; border-radius:8px;
144
+ }
145
+ /* Small helpers for SVG sizing */
146
+ svg { display:block; }
147
+ </style>
148
+ </head>
149
+ <body>
150
+ <div id="render-target">
151
+
152
+ <!-- Status bar -->
153
+ <div class="statusbar">
154
+ <div class="time">6:11</div>
155
+ <div class="status-icons">
156
+ <div class="dot"></div>
157
+ <div class="dot"></div>
158
+ <div class="wifi"></div>
159
+ <div class="cell"></div>
160
+ <div style="display:flex; align-items:center;">
161
+ <div class="battery"><div class="level"></div></div>
162
+ <div class="pct">100%</div>
163
+ </div>
164
+ </div>
165
+ </div>
166
+
167
+ <!-- Header -->
168
+ <div class="header">
169
+ <div class="title">Profile</div>
170
+ <div class="hdr-actions">
171
+ <div class="icon-btn" title="add friend">
172
+ <!-- person add icon -->
173
+ <svg width="40" height="40" viewBox="0 0 24 24" fill="none">
174
+ <path d="M15.5 8a4 4 0 1 1-8 0 4 4 0 0 1 8 0Z" stroke="#2f6cff" stroke-width="2"/>
175
+ <path d="M3 20c.5-3.5 4-6 7.5-6s7 2.5 7.5 6" stroke="#2f6cff" stroke-width="2" stroke-linecap="round"/>
176
+ <path d="M18 7v6M15 10h6" stroke="#2f6cff" stroke-width="2" stroke-linecap="round"/>
177
+ </svg>
178
+ </div>
179
+ <div class="icon-btn" title="settings">
180
+ <!-- sliders icon -->
181
+ <svg width="40" height="40" viewBox="0 0 24 24" fill="none">
182
+ <path d="M4 6h8M14 6h6M4 12h4M10 12h10M4 18h12M18 18h2" stroke="#2f6cff" stroke-width="2" stroke-linecap="round"/>
183
+ <circle cx="12" cy="6" r="2.2" stroke="#2f6cff" stroke-width="2"/>
184
+ <circle cx="8" cy="12" r="2.2" stroke="#2f6cff" stroke-width="2"/>
185
+ <circle cx="16" cy="18" r="2.2" stroke="#2f6cff" stroke-width="2"/>
186
+ </svg>
187
+ </div>
188
+ </div>
189
+ </div>
190
+
191
+ <!-- Profile info -->
192
+ <div class="profile">
193
+ <div class="avatar">F</div>
194
+ <div class="name-wrap">
195
+ <div class="name">Fabio Teixeira</div>
196
+ <div class="pin">
197
+ <!-- pin icon -->
198
+ <svg width="26" height="26" viewBox="0 0 24 24" fill="none">
199
+ <path d="M12 22s7-7.2 7-12a7 7 0 1 0-14 0c0 4.8 7 12 7 12Z" stroke="#9aa3ad" stroke-width="2"/>
200
+ <circle cx="12" cy="10" r="2.8" stroke="#9aa3ad" stroke-width="2"/>
201
+ </svg>
202
+ <span> </span>
203
+ </div>
204
+ </div>
205
+ </div>
206
+
207
+ <!-- Friends -->
208
+ <div class="friends">
209
+ <h3>Friends (0)</h3>
210
+ <div class="pill">Find Portuguese speakers</div>
211
+ </div>
212
+
213
+ <!-- Tabs -->
214
+ <div class="tabs">
215
+ <div class="tab active">PROGRESS</div>
216
+ <div class="tab inactive">EXERCISES</div>
217
+ <div class="tab inactive">CORRECTIONS</div>
218
+ </div>
219
+
220
+ <!-- Progress section -->
221
+ <div class="section">
222
+ <h2>Fluency</h2>
223
+ <div class="lang-row">
224
+ <div class="flag" aria-hidden="true"></div>
225
+ <div>Portuguese</div>
226
+ </div>
227
+
228
+ <div class="gauge-wrap">
229
+ <div class="gauge">
230
+ <div class="gauge-inner">
231
+ <div class="percent">1%</div>
232
+ </div>
233
+ </div>
234
+ </div>
235
+
236
+ <div class="subheadline">Fluent in Portuguese</div>
237
+
238
+ <div class="stats">
239
+ <div class="stat">
240
+ <div class="label">Words learned</div>
241
+ <div class="count green">
242
+ <!-- trending icon -->
243
+ <svg width="44" height="44" viewBox="0 0 24 24" fill="none">
244
+ <path d="M3 17l6-6 4 4 7-7" stroke="#1ea94a" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
245
+ </svg>
246
+ 0
247
+ </div>
248
+ </div>
249
+ <div class="stat">
250
+ <div class="label">Certificates</div>
251
+ <div class="count red">
252
+ <!-- award badge -->
253
+ <svg width="44" height="44" viewBox="0 0 24 24" fill="none">
254
+ <path d="M12 3a6 6 0 1 1 0 12 6 6 0 0 1 0-12Z" stroke="#e55252" stroke-width="2"/>
255
+ <path d="M8 15v6l4-2 4 2v-6" stroke="#e55252" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
256
+ </svg>
257
+ 0
258
+ </div>
259
+ </div>
260
+ </div>
261
+ </div>
262
+
263
+ <!-- Days learned -->
264
+ <div class="days">
265
+ <h3>Days learned</h3>
266
+ <div class="circles">
267
+ <div class="day">
268
+ <div class="dot-circle ok">
269
+ <!-- check -->
270
+ <svg width="44" height="44" viewBox="0 0 24 24" fill="none">
271
+ <path d="M5 12l4 4 10-10" stroke="#ffffff" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
272
+ </svg>
273
+ </div>
274
+ <span>Fri</span>
275
+ </div>
276
+ <div class="day">
277
+ <div class="dot-circle"></div>
278
+ <span>Sat</span>
279
+ </div>
280
+ <div class="day">
281
+ <div class="dot-circle"></div>
282
+ <span>Sun</span>
283
+ </div>
284
+ <div class="day">
285
+ <div class="dot-circle"></div>
286
+ <span>Mon</span>
287
+ </div>
288
+ <div class="day">
289
+ <div class="dot-circle"></div>
290
+ <span>Tue</span>
291
+ </div>
292
+ <div class="day">
293
+ <div class="dot-circle"></div>
294
+ <span>Wed</span>
295
+ </div>
296
+ <div class="day">
297
+ <div class="dot-circle"></div>
298
+ <span>Thu</span>
299
+ </div>
300
+ </div>
301
+ </div>
302
+
303
+ <!-- Bottom navigation -->
304
+ <div class="bottom-nav">
305
+ <div class="nav-item">
306
+ <!-- book -->
307
+ <svg width="48" height="48" viewBox="0 0 24 24" fill="none">
308
+ <path d="M4 5h10a3 3 0 0 1 3 3v11H7a3 3 0 0 0-3 3V5Z" stroke="#8a96a8" stroke-width="2"/>
309
+ <path d="M17 7h3v12" stroke="#8a96a8" stroke-width="2"/>
310
+ </svg>
311
+ </div>
312
+ <div class="nav-item">
313
+ <!-- analytics bars -->
314
+ <svg width="48" height="48" viewBox="0 0 24 24" fill="none">
315
+ <path d="M4 20V9M10 20V4M16 20v-8M22 20V7" stroke="#8a96a8" stroke-width="2" stroke-linecap="round"/>
316
+ </svg>
317
+ </div>
318
+ <div class="nav-item">
319
+ <!-- crown -->
320
+ <svg width="48" height="48" viewBox="0 0 24 24" fill="none">
321
+ <path d="M3 18l2-8 5 4 4-6 5 10H3Z" stroke="#8a96a8" stroke-width="2" stroke-linejoin="round"/>
322
+ </svg>
323
+ </div>
324
+ <div class="nav-item">
325
+ <!-- chat -->
326
+ <svg width="48" height="48" viewBox="0 0 24 24" fill="none">
327
+ <path d="M4 5h16v10H8l-4 4V5Z" stroke="#8a96a8" stroke-width="2" stroke-linejoin="round"/>
328
+ </svg>
329
+ </div>
330
+ <div class="nav-item active">
331
+ <!-- user -->
332
+ <svg width="48" height="48" viewBox="0 0 24 24" fill="none">
333
+ <circle cx="12" cy="7" r="4" stroke="#2f6cff" stroke-width="2"/>
334
+ <path d="M4 21c1-4 4-6 8-6s7 2 8 6" stroke="#2f6cff" stroke-width="2" stroke-linecap="round"/>
335
+ </svg>
336
+ <div>Me</div>
337
+ </div>
338
+ </div>
339
+
340
+ <div class="gesture"></div>
341
+ </div>
342
+ </body>
343
+ </html>
code/10004/10004_2.html ADDED
@@ -0,0 +1,259 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Settings UI</title>
5
+ <style>
6
+ body { margin: 0; padding: 0; background: transparent; font-family: "Roboto", Arial, sans-serif; }
7
+ #render-target {
8
+ width: 1080px;
9
+ height: 2400px;
10
+ position: relative;
11
+ overflow: hidden;
12
+ background: #ffffff;
13
+ }
14
+
15
+ /* Status bar */
16
+ .status-bar {
17
+ position: absolute;
18
+ top: 0;
19
+ left: 0;
20
+ width: 1080px;
21
+ height: 110px;
22
+ padding: 0 36px;
23
+ display: flex;
24
+ align-items: center;
25
+ justify-content: space-between;
26
+ color: #202124;
27
+ font-size: 36px;
28
+ background: #ffffff;
29
+ }
30
+ .status-icons {
31
+ display: flex;
32
+ align-items: center;
33
+ gap: 28px;
34
+ color: #202124;
35
+ }
36
+ .status-icons svg { width: 40px; height: 40px; }
37
+
38
+ /* App bar */
39
+ .app-bar {
40
+ position: absolute;
41
+ top: 110px;
42
+ left: 0;
43
+ width: 1080px;
44
+ height: 140px;
45
+ display: flex;
46
+ align-items: center;
47
+ padding: 0 32px;
48
+ background: #ffffff;
49
+ box-sizing: border-box;
50
+ border-bottom: 1px solid #e6e6e6;
51
+ }
52
+ .back-btn {
53
+ width: 88px;
54
+ height: 88px;
55
+ display: flex;
56
+ align-items: center;
57
+ justify-content: center;
58
+ margin-right: 12px;
59
+ }
60
+ .app-title {
61
+ font-size: 64px;
62
+ font-weight: 600;
63
+ color: #202124;
64
+ }
65
+
66
+ /* Content area */
67
+ .content {
68
+ position: absolute;
69
+ top: 250px;
70
+ left: 0;
71
+ width: 1080px;
72
+ height: 2020px;
73
+ overflow: hidden;
74
+ background: #f7f9fc;
75
+ }
76
+ .content-inner {
77
+ width: 100%;
78
+ height: 100%;
79
+ overflow-y: auto;
80
+ box-sizing: border-box;
81
+ padding: 36px 40px 160px 40px;
82
+ }
83
+
84
+ .section-title {
85
+ font-size: 42px;
86
+ font-weight: 700;
87
+ color: #1a73e8;
88
+ margin: 22px 0 32px;
89
+ }
90
+
91
+ .row {
92
+ position: relative;
93
+ padding: 28px 0;
94
+ border-bottom: 1px solid #eef1f5;
95
+ }
96
+ .row:last-child { border-bottom: none; }
97
+
98
+ .label {
99
+ font-size: 40px;
100
+ color: #202124;
101
+ margin-bottom: 16px;
102
+ }
103
+ .value {
104
+ font-size: 38px;
105
+ color: #6b6f76;
106
+ }
107
+
108
+ .avatar {
109
+ position: absolute;
110
+ right: 36px;
111
+ top: 20px;
112
+ width: 140px;
113
+ height: 140px;
114
+ border-radius: 50%;
115
+ background: #5d4037;
116
+ color: #ffffff;
117
+ display: flex;
118
+ align-items: center;
119
+ justify-content: center;
120
+ font-size: 64px;
121
+ font-weight: 600;
122
+ letter-spacing: 1px;
123
+ }
124
+
125
+ .link-row .label {
126
+ font-size: 40px;
127
+ color: #202124;
128
+ }
129
+
130
+ .subtle {
131
+ color: #a7adb5;
132
+ }
133
+
134
+ .divider-space {
135
+ height: 24px;
136
+ background: transparent;
137
+ }
138
+
139
+ /* Gesture bar */
140
+ .gesture-bar {
141
+ position: absolute;
142
+ bottom: 24px;
143
+ left: 50%;
144
+ transform: translateX(-50%);
145
+ width: 420px;
146
+ height: 16px;
147
+ background: #9e9e9e;
148
+ border-radius: 12px;
149
+ opacity: 0.6;
150
+ }
151
+ </style>
152
+ </head>
153
+ <body>
154
+ <div id="render-target">
155
+
156
+ <!-- Status Bar -->
157
+ <div class="status-bar">
158
+ <div class="time">6:12</div>
159
+ <div class="status-icons">
160
+ <!-- Lock icon -->
161
+ <svg viewBox="0 0 24 24">
162
+ <path d="M7 10V7a5 5 0 0110 0v3h1a2 2 0 012 2v7a2 2 0 01-2 2H6a2 2 0 01-2-2v-7a2 2 0 012-2h1zm2 0h6V7a3 3 0 00-6 0v3z" fill="#202124"/>
163
+ </svg>
164
+ <!-- Dot icon -->
165
+ <svg viewBox="0 0 24 24">
166
+ <circle cx="12" cy="12" r="3" fill="#202124"/>
167
+ </svg>
168
+ <!-- Search icon -->
169
+ <svg viewBox="0 0 24 24">
170
+ <circle cx="11" cy="11" r="7" stroke="#202124" stroke-width="2" fill="none"/>
171
+ <path d="M20 20l-4-4" stroke="#202124" stroke-width="2" fill="none" stroke-linecap="round"/>
172
+ </svg>
173
+ <!-- Wifi icon -->
174
+ <svg viewBox="0 0 24 24">
175
+ <path d="M2 9a16 16 0 0120 0M5 12a12 12 0 0114 0M8 15a8 8 0 018 0" stroke="#202124" stroke-width="2" fill="none" stroke-linecap="round"/>
176
+ <circle cx="12" cy="18" r="2" fill="#202124"/>
177
+ </svg>
178
+ <!-- Battery with percentage -->
179
+ <div style="display:flex; align-items:center; gap:10px;">
180
+ <svg viewBox="0 0 28 18" width="56" height="36">
181
+ <rect x="1" y="3" width="22" height="12" rx="2" ry="2" stroke="#202124" stroke-width="2" fill="none"/>
182
+ <rect x="3" y="5" width="16" height="8" fill="#202124"/>
183
+ <rect x="23" y="6" width="4" height="6" rx="1" fill="#202124"/>
184
+ </svg>
185
+ <span style="font-size:32px;">100%</span>
186
+ </div>
187
+ </div>
188
+ </div>
189
+
190
+ <!-- App Bar -->
191
+ <div class="app-bar">
192
+ <div class="back-btn">
193
+ <svg viewBox="0 0 24 24">
194
+ <path d="M15 5l-7 7 7 7" stroke="#202124" stroke-width="2.5" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
195
+ </svg>
196
+ </div>
197
+ <div class="app-title">Settings</div>
198
+ </div>
199
+
200
+ <!-- Content -->
201
+ <div class="content">
202
+ <div class="content-inner">
203
+
204
+ <div class="section-title">Account</div>
205
+
206
+ <div class="row">
207
+ <div class="label">Name</div>
208
+ <div class="value">Fabio Teixeira</div>
209
+ </div>
210
+
211
+ <div class="row" style="min-height: 180px;">
212
+ <div class="label">Photo</div>
213
+ <div class="avatar">F</div>
214
+ </div>
215
+
216
+ <div class="row">
217
+ <div class="label">About me</div>
218
+ <div class="value subtle">Write a bit about yourself</div>
219
+ </div>
220
+
221
+ <div class="row">
222
+ <div class="label">Email</div>
223
+ <div class="value">fabioteixeira00123@gmail.com</div>
224
+ </div>
225
+
226
+ <div class="row">
227
+ <div class="label">Country/Region</div>
228
+ <div class="value">India</div>
229
+ </div>
230
+
231
+ <div class="row">
232
+ <div class="label">I speak</div>
233
+ <div class="value">English</div>
234
+ </div>
235
+
236
+ <div class="row link-row">
237
+ <div class="label">Take Portuguese Placement Test</div>
238
+ </div>
239
+
240
+ <div class="row link-row">
241
+ <div class="label">Study Plan</div>
242
+ </div>
243
+
244
+ <div class="divider-space"></div>
245
+
246
+ <div class="section-title">General</div>
247
+
248
+ <div class="row link-row">
249
+ <div class="label">Notifications</div>
250
+ </div>
251
+
252
+ </div>
253
+ </div>
254
+
255
+ <!-- Gesture bar -->
256
+ <div class="gesture-bar"></div>
257
+ </div>
258
+ </body>
259
+ </html>
code/10004/10004_3.html ADDED
@@ -0,0 +1,228 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
5
+ <title>Notifications Settings</title>
6
+ <style>
7
+ body { margin: 0; padding: 0; background: transparent; font-family: Roboto, Helvetica, Arial, sans-serif; }
8
+ #render-target {
9
+ width: 1080px;
10
+ height: 2400px;
11
+ position: relative;
12
+ overflow: hidden;
13
+ background: #F3F6FA;
14
+ color: #0f172a;
15
+ }
16
+
17
+ /* Status bar */
18
+ .status-bar {
19
+ position: absolute;
20
+ top: 0;
21
+ left: 0;
22
+ width: 1080px;
23
+ height: 90px;
24
+ padding: 0 36px;
25
+ box-sizing: border-box;
26
+ display: flex;
27
+ align-items: center;
28
+ justify-content: space-between;
29
+ color: #1f2937;
30
+ font-size: 30px;
31
+ }
32
+ .status-right {
33
+ display: flex;
34
+ align-items: center;
35
+ gap: 22px;
36
+ }
37
+ .dot { width: 10px; height: 10px; background:#1f2937; border-radius:50%; display:inline-block; opacity:.7 }
38
+
39
+ /* App bar */
40
+ .app-bar {
41
+ position: absolute;
42
+ top: 90px;
43
+ left: 0;
44
+ width: 1080px;
45
+ height: 150px;
46
+ background: #ffffff;
47
+ border-bottom: 1px solid #E6EBF2;
48
+ display: flex;
49
+ align-items: center;
50
+ padding: 0 30px;
51
+ box-sizing: border-box;
52
+ }
53
+ .back-btn {
54
+ width: 96px;
55
+ height: 96px;
56
+ display: flex;
57
+ align-items: center;
58
+ justify-content: center;
59
+ }
60
+ .title {
61
+ font-size: 56px;
62
+ font-weight: 700;
63
+ color: #121926;
64
+ margin-left: 6px;
65
+ }
66
+
67
+ /* Content */
68
+ .content {
69
+ position: absolute;
70
+ top: 240px;
71
+ left: 0;
72
+ right: 0;
73
+ bottom: 0;
74
+ overflow: hidden;
75
+ padding-bottom: 48px;
76
+ }
77
+ .section {
78
+ padding: 38px 36px 10px 36px;
79
+ }
80
+ .section-box {
81
+ background: #F3F6FA;
82
+ border-top: 1px solid #E6EBF2;
83
+ }
84
+ .section-title {
85
+ color: #2563EB;
86
+ font-size: 30px;
87
+ font-weight: 700;
88
+ letter-spacing: 1px;
89
+ margin: 18px 0 22px;
90
+ text-transform: uppercase;
91
+ }
92
+
93
+ .row {
94
+ position: relative;
95
+ padding: 30px 180px 24px 30px;
96
+ background: #F3F6FA;
97
+ border-bottom: 1px solid #E6EBF2;
98
+ }
99
+ .row h3 {
100
+ margin: 0;
101
+ font-size: 44px;
102
+ font-weight: 700;
103
+ color: #0F172A;
104
+ }
105
+ .desc {
106
+ margin-top: 16px;
107
+ font-size: 34px;
108
+ line-height: 1.35;
109
+ color: #6B7280;
110
+ max-width: 900px;
111
+ }
112
+
113
+ /* Toggle (OFF) */
114
+ .toggle {
115
+ position: absolute;
116
+ right: 36px;
117
+ top: 36px;
118
+ width: 128px;
119
+ height: 68px;
120
+ background: #E5EAF2;
121
+ border-radius: 34px;
122
+ border: 1px solid #D7DEE8;
123
+ box-sizing: border-box;
124
+ }
125
+ .toggle .knob {
126
+ position: absolute;
127
+ top: 5px;
128
+ left: 5px;
129
+ width: 58px;
130
+ height: 58px;
131
+ background: #FFFFFF;
132
+ border-radius: 50%;
133
+ border: 1px solid #D8DFEA;
134
+ box-shadow: 0 2px 4px rgba(16,24,40,0.08);
135
+ }
136
+
137
+ /* Simple icons */
138
+ svg { display: block }
139
+ </style>
140
+ </head>
141
+ <body>
142
+ <div id="render-target">
143
+ <!-- Status Bar -->
144
+ <div class="status-bar">
145
+ <div class="status-left">6:12</div>
146
+ <div class="status-right">
147
+ <!-- signal -->
148
+ <svg width="32" height="28" viewBox="0 0 24 24">
149
+ <rect x="2" y="14" width="3" height="8" fill="#111827" opacity="0.35"/>
150
+ <rect x="7" y="12" width="3" height="10" fill="#111827" opacity="0.55"/>
151
+ <rect x="12" y="9" width="3" height="13" fill="#111827" opacity="0.75"/>
152
+ <rect x="17" y="6" width="3" height="16" fill="#111827"/>
153
+ </svg>
154
+ <!-- wifi -->
155
+ <svg width="32" height="28" viewBox="0 0 24 24">
156
+ <path d="M2 8c5-4 15-4 20 0" stroke="#111827" stroke-width="2" fill="none"/>
157
+ <path d="M5 12c4-3 10-3 14 0" stroke="#111827" stroke-width="2" fill="none"/>
158
+ <path d="M8 16c3-2 5-2 8 0" stroke="#111827" stroke-width="2" fill="none"/>
159
+ <circle cx="12" cy="19" r="2" fill="#111827"/>
160
+ </svg>
161
+ <!-- battery -->
162
+ <svg width="46" height="28" viewBox="0 0 36 20">
163
+ <rect x="1" y="3" width="30" height="14" rx="3" ry="3" fill="none" stroke="#111827" stroke-width="2"/>
164
+ <rect x="3" y="5" width="22" height="10" fill="#111827"/>
165
+ <rect x="32" y="7" width="3" height="6" rx="1" fill="#111827"/>
166
+ </svg>
167
+ <span>100%</span>
168
+ </div>
169
+ </div>
170
+
171
+ <!-- App Bar -->
172
+ <div class="app-bar">
173
+ <div class="back-btn">
174
+ <svg width="50" height="50" viewBox="0 0 24 24">
175
+ <path d="M15 4L7 12l8 8" stroke="#111827" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
176
+ </svg>
177
+ </div>
178
+ <div class="title">Notifications</div>
179
+ </div>
180
+
181
+ <!-- Content -->
182
+ <div class="content">
183
+ <div class="section section-box">
184
+ <div class="section-title">Friend Requests</div>
185
+
186
+ <div class="row">
187
+ <h3>Private mode</h3>
188
+ <div class="desc">By enabling private mode, you choose not to receive friend requests from otherlearners</div>
189
+ <div class="toggle"><div class="knob"></div></div>
190
+ </div>
191
+ </div>
192
+
193
+ <div class="section section-box">
194
+ <div class="section-title">General</div>
195
+
196
+ <div class="row">
197
+ <h3>Notifications</h3>
198
+ <div class="toggle"><div class="knob"></div></div>
199
+ </div>
200
+
201
+ <div class="row">
202
+ <h3>Correction received</h3>
203
+ <div class="desc">i.e. Alexandra has corrected your exercise</div>
204
+ <div class="toggle"><div class="knob"></div></div>
205
+ </div>
206
+
207
+ <div class="row">
208
+ <h3>Correction added</h3>
209
+ <div class="desc">e.g. Alexandra added a correction</div>
210
+ <div class="toggle"><div class="knob"></div></div>
211
+ </div>
212
+
213
+ <div class="row">
214
+ <h3>Replies</h3>
215
+ <div class="desc">e.g. Alexandra has replied to your correction</div>
216
+ <div class="toggle"><div class="knob"></div></div>
217
+ </div>
218
+
219
+ <div class="row" style="border-bottom:none;">
220
+ <h3>Friend requests</h3>
221
+ <div class="desc">e.g. Alexandra has sent you a friend request</div>
222
+ <div class="toggle"><div class="knob"></div></div>
223
+ </div>
224
+ </div>
225
+ </div>
226
+ </div>
227
+ </body>
228
+ </html>
code/10004/10004_4.html ADDED
@@ -0,0 +1,152 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Notifications Settings UI</title>
5
+ <style>
6
+ body{margin:0;padding:0;background:transparent;font-family: Arial, Helvetica, sans-serif;color:#111;}
7
+ #render-target{
8
+ width:1080px;height:2400px;position:relative;overflow:hidden;
9
+ background:#F3F5F7;
10
+ }
11
+ /* Status bar */
12
+ .status-bar{
13
+ height:120px;background:#ffffff;display:flex;align-items:center;
14
+ padding:0 36px;box-shadow:0 1px 0 rgba(0,0,0,0.06);
15
+ }
16
+ .status-left{font-size:40px;color:#333;}
17
+ .status-right{margin-left:auto;display:flex;align-items:center;gap:26px;color:#444;font-size:34px;}
18
+ .battery{
19
+ width:80px;height:38px;border:2px solid #333;border-radius:8px;position:relative;
20
+ }
21
+ .battery::after{
22
+ content:"";position:absolute;right:-10px;top:10px;width:8px;height:18px;background:#333;border-radius:2px;
23
+ }
24
+ .battery .level{width:64px;height:28px;background:#333;margin:4px;border-radius:6px;}
25
+ /* App bar */
26
+ .app-bar{
27
+ height:160px;background:#ffffff;display:flex;align-items:center;
28
+ padding:0 36px;gap:24px;box-shadow:0 2px 0 rgba(0,0,0,0.06);
29
+ }
30
+ .back-icon{width:60px;height:60px;}
31
+ .title{font-size:64px;font-weight:600;color:#222;}
32
+ /* Content sections */
33
+ .content{padding:24px 0 0 0;}
34
+ .section{padding:36px 36px 20px 36px;}
35
+ .section-title{
36
+ color:#2A62D7;font-size:36px;font-weight:700;letter-spacing:1px;margin-bottom:30px;
37
+ }
38
+ .card{
39
+ background:#EEF1F5;border-radius:0; /* flat section look */
40
+ padding:36px 36px;border-top:1px solid rgba(0,0,0,0.06);
41
+ border-bottom:1px solid rgba(0,0,0,0.06);
42
+ }
43
+ .row{display:flex;align-items:center;margin-bottom:46px;}
44
+ .row:last-child{margin-bottom:0;}
45
+ .label{font-size:52px;color:#1a1a1a;}
46
+ .desc{font-size:40px;color:#6b6f74;margin-top:20px;line-height:1.35;}
47
+ .grow{flex:1;}
48
+ /* Toggle switch */
49
+ .toggle{
50
+ width:126px;height:68px;border-radius:34px;background:#e0e3e7;position:relative;box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08);
51
+ }
52
+ .toggle .thumb{
53
+ width:64px;height:64px;border-radius:32px;background:#ffffff;position:absolute;top:2px;left:2px;
54
+ box-shadow:0 1px 3px rgba(0,0,0,0.25);
55
+ }
56
+ .toggle.on{background:#5AD083;}
57
+ .toggle.on .thumb{left:60px;background:#EDEFF2;}
58
+ /* Gesture pill */
59
+ .gesture{
60
+ position:absolute;left:50%;transform:translateX(-50%);
61
+ bottom:40px;width:500px;height:18px;background:#B8BCC3;border-radius:12px;
62
+ }
63
+ </style>
64
+ </head>
65
+ <body>
66
+ <div id="render-target">
67
+ <!-- Status Bar -->
68
+ <div class="status-bar">
69
+ <div class="status-left">6:13</div>
70
+ <div class="status-right">
71
+ <span>📶</span>
72
+ <span>⟲</span>
73
+ <span>🔋 100%</span>
74
+ <div class="battery"><div class="level"></div></div>
75
+ </div>
76
+ </div>
77
+
78
+ <!-- App Bar -->
79
+ <div class="app-bar">
80
+ <svg class="back-icon" viewBox="0 0 24 24">
81
+ <path d="M15.5 19l-7-7 7-7" fill="none" stroke="#333" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
82
+ </svg>
83
+ <div class="title">Notifications</div>
84
+ </div>
85
+
86
+ <!-- Content -->
87
+ <div class="content">
88
+ <!-- FRIEND REQUESTS -->
89
+ <div class="section">
90
+ <div class="section-title">FRIEND REQUESTS</div>
91
+ <div class="card">
92
+ <div class="row">
93
+ <div class="grow">
94
+ <div class="label">Private mode</div>
95
+ <div class="desc">By enabling private mode, you choose not to receive friend requests from otherlearners</div>
96
+ </div>
97
+ <div class="toggle"><div class="thumb"></div></div>
98
+ </div>
99
+ </div>
100
+ </div>
101
+
102
+ <!-- GENERAL -->
103
+ <div class="section">
104
+ <div class="section-title">GENERAL</div>
105
+ <div class="card">
106
+ <div class="row">
107
+ <div class="grow">
108
+ <div class="label">Notifications</div>
109
+ </div>
110
+ <div class="toggle on"><div class="thumb"></div></div>
111
+ </div>
112
+
113
+ <div class="row">
114
+ <div class="grow">
115
+ <div class="label">Correction received</div>
116
+ <div class="desc">i.e. Alexandra has corrected your exercise</div>
117
+ </div>
118
+ <div class="toggle on"><div class="thumb"></div></div>
119
+ </div>
120
+
121
+ <div class="row">
122
+ <div class="grow">
123
+ <div class="label">Correction added</div>
124
+ <div class="desc">e.g. Alexandra added a correction</div>
125
+ </div>
126
+ <div class="toggle on"><div class="thumb"></div></div>
127
+ </div>
128
+
129
+ <div class="row">
130
+ <div class="grow">
131
+ <div class="label">Replies</div>
132
+ <div class="desc">e.g. Alexandra has replied to your correction</div>
133
+ </div>
134
+ <div class="toggle on"><div class="thumb"></div></div>
135
+ </div>
136
+
137
+ <div class="row">
138
+ <div class="grow">
139
+ <div class="label">Friend requests</div>
140
+ <div class="desc">e.g. Alexandra has sent you a friend request</div>
141
+ </div>
142
+ <div class="toggle on"><div class="thumb"></div></div>
143
+ </div>
144
+ </div>
145
+ </div>
146
+ </div>
147
+
148
+ <!-- Gesture pill -->
149
+ <div class="gesture"></div>
150
+ </div>
151
+ </body>
152
+ </html>
code/10006/10006_0.html ADDED
@@ -0,0 +1,114 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
5
+ <title>Fitbit Welcome</title>
6
+ <style>
7
+ body { margin:0; padding:0; background:transparent; }
8
+ #render-target{
9
+ width:1080px; height:2400px;
10
+ position:relative; overflow:hidden;
11
+ background:#52B0A7; /* teal app background */
12
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
13
+ color:#0f0f0f;
14
+ }
15
+ /* Status bar */
16
+ .statusbar{
17
+ position:absolute; left:0; top:0; width:100%; height:120px;
18
+ background:#ECECEC; border-bottom:1px solid #d6d6d6;
19
+ display:flex; align-items:center; justify-content:space-between;
20
+ padding:0 36px; box-sizing:border-box; color:#4c4c4c;
21
+ font-size:42px; letter-spacing:0.5px;
22
+ }
23
+ .status-icons{ display:flex; align-items:center; gap:26px; font-size:40px; }
24
+ /* Illustration placeholder */
25
+ .hero{
26
+ position:absolute; left:0; top:120px; width:100%; height:1180px;
27
+ background:#E0E0E0; border:1px solid #BDBDBD; box-sizing:border-box;
28
+ display:flex; align-items:center; justify-content:center; color:#757575;
29
+ font-size:44px; text-align:center; padding:20px;
30
+ }
31
+ /* Content area */
32
+ .content{
33
+ position:absolute; left:0; top:1340px; width:100%;
34
+ text-align:center; padding:0 80px; box-sizing:border-box;
35
+ }
36
+ .brand{
37
+ display:inline-flex; align-items:center; gap:16px;
38
+ color:#0f0f0f; font-weight:600; font-size:60px;
39
+ }
40
+ .fitbit-dots{ width:56px; height:56px; }
41
+ .title{
42
+ margin-top:46px; line-height:1.12;
43
+ font-size:88px; font-weight:700; color:#0e0e0e;
44
+ }
45
+ .btn{
46
+ width:960px; height:140px; margin:70px auto 0;
47
+ background:#1e1e1e; color:#fff; border-radius:90px;
48
+ display:flex; align-items:center; justify-content:center; gap:26px;
49
+ font-size:46px; box-shadow:0 10px 24px rgba(0,0,0,0.25);
50
+ cursor:pointer;
51
+ }
52
+ .google-icon{
53
+ width:74px; height:74px; border-radius:50%;
54
+ background:#fff; color:#4285F4; display:flex;
55
+ align-items:center; justify-content:center; font-weight:700; font-size:42px;
56
+ }
57
+ .secondary{
58
+ margin-top:54px; font-size:44px; color:#0f0f0f;
59
+ }
60
+ /* Bottom home indicator */
61
+ .home-indicator{
62
+ position:absolute; bottom:38px; left:50%; transform:translateX(-50%);
63
+ width:320px; height:14px; border-radius:10px; background:#cfcfcf;
64
+ }
65
+ </style>
66
+ </head>
67
+ <body>
68
+ <div id="render-target">
69
+ <!-- Status bar -->
70
+ <div class="statusbar">
71
+ <div>10:01</div>
72
+ <div class="status-icons">
73
+ <span>⚡</span>
74
+ <span>🔒</span>
75
+ <span>📶</span>
76
+ <span>🔋</span>
77
+ </div>
78
+ </div>
79
+
80
+ <!-- Illustration placeholder -->
81
+ <div class="hero">[IMG: Illustration of legs stepping up stairs]</div>
82
+
83
+ <!-- Main content -->
84
+ <div class="content">
85
+ <div class="brand">
86
+ <!-- Simple dotted Fitbit-like mark -->
87
+ <svg class="fitbit-dots" viewBox="0 0 24 24" aria-hidden="true">
88
+ <circle cx="6" cy="12" r="2.2" fill="#0f0f0f"/>
89
+ <circle cx="12" cy="6" r="2.2" fill="#0f0f0f"/>
90
+ <circle cx="12" cy="12" r="2.2" fill="#0f0f0f"/>
91
+ <circle cx="12" cy="18" r="2.2" fill="#0f0f0f"/>
92
+ <circle cx="18" cy="12" r="2.2" fill="#0f0f0f"/>
93
+ </svg>
94
+ <span>fitbit</span>
95
+ </div>
96
+
97
+ <div class="title">
98
+ Take the next step<br>
99
+ toward a healthier,<br>
100
+ more active life
101
+ </div>
102
+
103
+ <div class="btn">
104
+ <div class="google-icon">G</div>
105
+ <div>Sign in with Google</div>
106
+ </div>
107
+
108
+ <div class="secondary">Sign in with Fitbit</div>
109
+ </div>
110
+
111
+ <div class="home-indicator"></div>
112
+ </div>
113
+ </body>
114
+ </html>
code/10006/10006_1.html ADDED
@@ -0,0 +1,235 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
5
+ <title>Fitbit Login Mock</title>
6
+ <style>
7
+ body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; }
8
+ #render-target {
9
+ position: relative;
10
+ width: 1080px;
11
+ height: 2400px;
12
+ overflow: hidden;
13
+ background: #1d5a54; /* teal backdrop */
14
+ }
15
+
16
+ /* Status bar */
17
+ .status-bar {
18
+ position: absolute;
19
+ top: 0; left: 0; right: 0;
20
+ height: 120px;
21
+ background: #6c6c6c;
22
+ color: #ffffff;
23
+ display: flex;
24
+ align-items: center;
25
+ padding: 0 36px;
26
+ font-weight: 600;
27
+ }
28
+ .status-left { font-size: 44px; }
29
+ .status-center {
30
+ margin: 0 auto;
31
+ display: flex; gap: 26px; align-items: center; color: #e7e7e7; font-size: 34px; opacity: .9;
32
+ }
33
+ .status-dot { width: 12px; height: 12px; background: #e7e7e7; border-radius: 50%; display: inline-block; }
34
+ .status-right { display: flex; gap: 22px; align-items: center; }
35
+ .icon { width: 50px; height: 50px; fill: none; stroke: #fff; stroke-width: 6; }
36
+
37
+ /* Illustration placeholder */
38
+ .illustration {
39
+ position: absolute;
40
+ left: 0; right: 0;
41
+ top: 120px;
42
+ height: 1180px;
43
+ background: #164a45;
44
+ border-top: 1px solid rgba(0,0,0,0.15);
45
+ border-bottom: 1px solid rgba(0,0,0,0.15);
46
+ display: flex; justify-content: center; align-items: center;
47
+ color: #a8bdbb;
48
+ font-size: 42px;
49
+ letter-spacing: .5px;
50
+ }
51
+ .illustration-inner {
52
+ width: 85%;
53
+ height: 95%;
54
+ background: #E0E0E0;
55
+ border: 1px solid #BDBDBD;
56
+ display: flex; align-items: center; justify-content: center;
57
+ color: #555;
58
+ }
59
+
60
+ /* Center text */
61
+ .center-wrap {
62
+ position: absolute;
63
+ top: 1350px;
64
+ left: 60px;
65
+ right: 60px;
66
+ text-align: center;
67
+ color: #0e1b19;
68
+ }
69
+ .fitbit-logo {
70
+ width: 220px;
71
+ margin: 0 auto 28px;
72
+ position: relative;
73
+ height: 84px;
74
+ }
75
+ .fitbit-dots {
76
+ position: absolute; top: 14px; left: 6px;
77
+ width: 72px; height: 56px;
78
+ }
79
+ .fitbit-dots span {
80
+ position: absolute; width: 10px; height: 10px; background: #0e1b19; border-radius: 50%;
81
+ }
82
+ /* 3x3 grid of dots */
83
+ .fitbit-dots span:nth-child(1){left:0; top:0;}
84
+ .fitbit-dots span:nth-child(2){left:22px; top:0;}
85
+ .fitbit-dots span:nth-child(3){left:44px; top:0;}
86
+ .fitbit-dots span:nth-child(4){left:0; top:22px;}
87
+ .fitbit-dots span:nth-child(5){left:22px; top:22px;}
88
+ .fitbit-dots span:nth-child(6){left:44px; top:22px;}
89
+ .fitbit-dots span:nth-child(7){left:0; top:44px;}
90
+ .fitbit-dots span:nth-child(8){left:22px; top:44px;}
91
+ .fitbit-dots span:nth-child(9){left:44px; top:44px;}
92
+ .fitbit-text {
93
+ position: absolute; right: 0; top: 6px;
94
+ font-size: 56px; font-weight: 700; letter-spacing: .5px;
95
+ }
96
+ .headline {
97
+ font-size: 88px; line-height: 1.16; font-weight: 700; margin: 26px 0 0;
98
+ }
99
+ .headline .muted { display: block; font-weight: 700; }
100
+
101
+ /* Bottom sheet */
102
+ .sheet {
103
+ position: absolute; left: 0; right: 0; bottom: 0;
104
+ height: 540px;
105
+ background: #eef1f1;
106
+ border-top-left-radius: 64px;
107
+ border-top-right-radius: 64px;
108
+ box-shadow: 0 -8px 30px rgba(0,0,0,0.25) inset;
109
+ padding: 36px 40px;
110
+ }
111
+ .google-title {
112
+ text-align: center; margin-top: 18px; margin-bottom: 28px;
113
+ font-size: 54px; font-weight: 700; letter-spacing: .2px;
114
+ }
115
+ .google-title span:nth-child(1){ color:#4285F4;}
116
+ .google-title span:nth-child(2){ color:#DB4437;}
117
+ .google-title span:nth-child(3){ color:#F4B400;}
118
+ .google-title span:nth-child(4){ color:#4285F4;}
119
+ .google-title span:nth-child(5){ color:#0F9D58;}
120
+ .google-title span:nth-child(6){ color:#DB4437;}
121
+
122
+ .account-row {
123
+ display: flex; align-items: center; gap: 28px;
124
+ background: #ffffff;
125
+ border: 1px solid #dcdcdc;
126
+ border-radius: 20px;
127
+ padding: 26px;
128
+ margin: 0 16px 26px;
129
+ }
130
+ .avatar {
131
+ width: 120px; height: 120px; border-radius: 60px;
132
+ background: #596CD8; color: #fff; display: flex; align-items: center; justify-content: center;
133
+ font-size: 64px; font-weight: 700;
134
+ }
135
+ .acc-text { flex: 1; }
136
+ .acc-name { font-size: 52px; font-weight: 700; color: #1b1b1b; }
137
+ .acc-mail { font-size: 38px; color: #6a6a6a; margin-top: 8px; }
138
+
139
+ .dropdown {
140
+ width: 72px; height: 72px; border-radius: 36px; background: #f1f1f1;
141
+ display: flex; align-items: center; justify-content: center; border: 1px solid #d0d0d0;
142
+ }
143
+
144
+ .continue-btn {
145
+ margin: 20px 16px 0;
146
+ background: #1e6b57;
147
+ color: #ffffff;
148
+ border-radius: 72px;
149
+ height: 120px;
150
+ display: flex; align-items: center; justify-content: center;
151
+ font-size: 46px; font-weight: 700; letter-spacing: .3px;
152
+ }
153
+
154
+ /* Home indicator */
155
+ .home-indicator {
156
+ position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
157
+ width: 360px; height: 12px; background: #cfcfcf; border-radius: 8px;
158
+ }
159
+ </style>
160
+ </head>
161
+ <body>
162
+ <div id="render-target">
163
+
164
+ <!-- Status bar -->
165
+ <div class="status-bar">
166
+ <div class="status-left">10:01</div>
167
+ <div class="status-center">
168
+ <span>🏃</span>
169
+ <span>Calm</span>
170
+ <span class="status-dot"></span>
171
+ <span>🔒</span>
172
+ </div>
173
+ <div class="status-right">
174
+ <!-- WiFi -->
175
+ <svg class="icon" viewBox="0 0 24 24">
176
+ <path d="M2 8c5-4 15-4 20 0M5 11c3-3 11-3 14 0M8 14c2-2 6-2 8 0M12 18l0 0"/>
177
+ <circle cx="12" cy="19" r="1.5" fill="#fff" stroke="none"></circle>
178
+ </svg>
179
+ <!-- Battery -->
180
+ <svg class="icon" viewBox="0 0 28 24">
181
+ <rect x="2" y="6" width="20" height="12" rx="2" stroke="#fff" />
182
+ <rect x="4" y="8" width="12" height="8" fill="#fff" stroke="none"/>
183
+ <rect x="22" y="9" width="3" height="6" rx="1" fill="none" stroke="#fff"/>
184
+ </svg>
185
+ </div>
186
+ </div>
187
+
188
+ <!-- Illustration placeholder -->
189
+ <div class="illustration">
190
+ <div class="illustration-inner">[IMG: Fitness legs illustration / stairs graphic]</div>
191
+ </div>
192
+
193
+ <!-- Center text with Fitbit branding -->
194
+ <div class="center-wrap">
195
+ <div class="fitbit-logo">
196
+ <div class="fitbit-dots">
197
+ <span></span><span></span><span></span>
198
+ <span></span><span></span><span></span>
199
+ <span></span><span></span><span></span>
200
+ </div>
201
+ <div class="fitbit-text">fitbit</div>
202
+ </div>
203
+ <div class="headline">
204
+ Take the next step
205
+ <span class="muted">toward a healthier,</span>
206
+ <span class="muted">more active life</span>
207
+ </div>
208
+ </div>
209
+
210
+ <!-- Bottom Google sheet -->
211
+ <div class="sheet">
212
+ <div class="google-title">
213
+ <span>G</span><span>o</span><span>o</span><span>g</span><span>l</span><span>e</span>
214
+ </div>
215
+
216
+ <div class="account-row">
217
+ <div class="avatar">C</div>
218
+ <div class="acc-text">
219
+ <div class="acc-name">Cerebra Research</div>
220
+ <div class="acc-mail">dbwscratch.test.id1@gmail.com</div>
221
+ </div>
222
+ <div class="dropdown">
223
+ <svg width="36" height="36" viewBox="0 0 24 24" fill="none" stroke="#6a6a6a" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round">
224
+ <path d="M6 9l6 6 6-6"></path>
225
+ </svg>
226
+ </div>
227
+ </div>
228
+
229
+ <div class="continue-btn">Continue as Cerebra</div>
230
+ </div>
231
+
232
+ <div class="home-indicator"></div>
233
+ </div>
234
+ </body>
235
+ </html>
code/10006/10006_10.html ADDED
@@ -0,0 +1,187 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Fitbit Weight Picker Mock</title>
5
+ <style>
6
+ body { margin:0; padding:0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
7
+ #render-target {
8
+ width:1080px; height:2400px; position:relative; overflow:hidden;
9
+ background:#ffffff;
10
+ }
11
+
12
+ /* Status bar */
13
+ .status-bar{
14
+ position:absolute; top:0; left:0; right:0; height:96px;
15
+ padding:0 36px; display:flex; align-items:center; justify-content:space-between;
16
+ color:#0a0a0a; font-weight:600; font-size:40px;
17
+ }
18
+ .status-icons { display:flex; align-items:center; gap:26px; }
19
+ .icon-dot{ width:10px; height:10px; background:#0a0a0a; border-radius:50%; display:inline-block; }
20
+ .icon-wifi, .icon-battery{
21
+ width:54px; height:30px; display:inline-block; position:relative;
22
+ }
23
+ .icon-wifi:before{
24
+ content:''; position:absolute; left:0; right:0; top:6px; margin:auto;
25
+ width:44px; height:18px; border:4px solid #0a0a0a; border-top-left-radius:30px; border-top-right-radius:30px; border-bottom:none;
26
+ }
27
+ .icon-battery{
28
+ border:4px solid #0a0a0a; border-radius:6px;
29
+ }
30
+ .icon-battery:after{
31
+ content:''; position:absolute; right:-10px; top:6px; width:8px; height:14px; background:#0a0a0a; border-radius:2px;
32
+ }
33
+ .battery-fill{ position:absolute; left:4px; top:4px; bottom:4px; width:28px; background:#0a0a0a; }
34
+
35
+ /* Underlying page */
36
+ .page {
37
+ position:absolute; top:120px; left:60px; right:60px;
38
+ color:#173a32;
39
+ }
40
+ .avatar{
41
+ width:92px; height:92px; border:6px solid #134a40; border-radius:50%; display:flex; align-items:center; justify-content:center; color:#134a40; font-weight:700;
42
+ }
43
+ .title{
44
+ margin-top:36px; font-size:88px; line-height:1.1; font-weight:700; color:#112e27;
45
+ }
46
+ .subtitle{
47
+ margin-top:28px; width:880px; font-size:40px; color:#355a51; line-height:1.4;
48
+ }
49
+ .field{
50
+ margin-top:40px; width:420px; height:110px; border:2px solid #1f5b4f; border-radius:20px;
51
+ display:flex; align-items:center; padding:0 28px; color:#1f5b4f; font-size:48px; font-weight:700;
52
+ background:#ffffff;
53
+ }
54
+ .fields-row{ display:flex; gap:30px; margin-top:34px; }
55
+ .page-footer{
56
+ position:absolute; bottom:170px; left:60px; right:60px; display:flex; align-items:center; justify-content:space-between;
57
+ }
58
+ .exit{ font-size:46px; color:#123a33; }
59
+ .cta{
60
+ background:#0f4e40; color:#e9fff5; border-radius:70px; padding:34px 44px; font-size:48px; font-weight:700;
61
+ box-shadow: inset 0 0 0 0 #fff;
62
+ }
63
+
64
+ /* Overlay */
65
+ .scrim{
66
+ position:absolute; inset:0; background:rgba(0,0,0,0.45);
67
+ }
68
+
69
+ /* Modal */
70
+ .modal{
71
+ position:absolute; left:90px; top:420px; width:900px; height:1400px;
72
+ background:#f5fbf7; border-radius:60px; box-shadow:0 30px 60px rgba(0,0,0,0.25);
73
+ padding:70px 60px;
74
+ color:#12352e;
75
+ }
76
+ .modal h2{ margin:0 0 18px 0; font-size:72px; font-weight:800; }
77
+ .muted{ color:#55756b; font-size:42px; line-height:1.4; width:760px; }
78
+
79
+ .segment{
80
+ margin-top:48px; display:flex; border:2px solid #cfd8d3; border-radius:80px; overflow:hidden;
81
+ }
82
+ .seg-item{
83
+ flex:1; text-align:center; padding:28px 0; font-size:46px; color:#274c43; background:#eef2f0;
84
+ }
85
+ .seg-item + .seg-item{ border-left:2px solid #cfd8d3; }
86
+ .seg-item.selected{
87
+ background:#cfe3d8; font-weight:700;
88
+ }
89
+ .seg-item.selected .check{ margin-right:12px; color:#123e33; }
90
+ .seg-item .check{ font-weight:800; }
91
+
92
+ .wheel{
93
+ position:relative; margin:110px auto 0; width:520px; height:540px;
94
+ display:flex; align-items:center; justify-content:center; color:#2f4c44;
95
+ }
96
+ .wheel .num{
97
+ position:absolute; left:0; right:0; text-align:center; font-size:64px; color:#b8c4bf;
98
+ }
99
+ .wheel .num.n1{ top:40px; }
100
+ .wheel .num.n2{ bottom:40px; }
101
+ .wheel .current{
102
+ position:absolute; left:0; right:0; text-align:center; font-size:74px; color:#122f28; font-weight:700;
103
+ }
104
+ .wheel .line{
105
+ position:absolute; left:80px; right:80px; height:6px; background:#6a7c75; border-radius:6px;
106
+ }
107
+ .wheel .line.top{ top:170px; }
108
+ .wheel .line.bottom{ bottom:170px; }
109
+
110
+ .modal hr{
111
+ border:none; border-top:2px solid #d9e3de; margin:100px 0 26px;
112
+ }
113
+ .modal-actions{
114
+ display:flex; justify-content:flex-end; gap:140px; padding-right:40px; margin-top:10px;
115
+ }
116
+ .btn{ font-size:48px; color:#154b41; }
117
+ .btn.primary{ color:#0c5a4a; font-weight:700; }
118
+ </style>
119
+ </head>
120
+ <body>
121
+ <div id="render-target">
122
+
123
+ <!-- Status bar -->
124
+ <div class="status-bar">
125
+ <div>10:06</div>
126
+ <div class="status-icons">
127
+ <span class="icon-wifi"></span>
128
+ <span class="icon-dot"></span>
129
+ <span class="icon-dot"></span>
130
+ <span class="icon-dot"></span>
131
+ <span class="icon-battery"><span class="battery-fill"></span></span>
132
+ </div>
133
+ </div>
134
+
135
+ <!-- Underlying page content -->
136
+ <div class="page">
137
+ <div class="avatar">👤</div>
138
+ <div class="title">Add Fitbit profile info</div>
139
+ <div class="subtitle">
140
+ Your profile info helps personalize some metrics. You can change this info anytime in settings.
141
+ </div>
142
+
143
+ <div class="fields-row">
144
+ <div class="field">Height</div>
145
+ <div class="field">Sex</div>
146
+ </div>
147
+ </div>
148
+
149
+ <!-- Bottom actions on page -->
150
+ <div class="page-footer">
151
+ <div class="exit">Exit</div>
152
+ <div class="cta">Save &amp; continue</div>
153
+ </div>
154
+
155
+ <!-- Overlay -->
156
+ <div class="scrim"></div>
157
+
158
+ <!-- Modal -->
159
+ <div class="modal">
160
+ <h2>Weight</h2>
161
+ <div class="muted">Fitbit uses weight to estimate calories and calculate needs</div>
162
+
163
+ <div class="segment">
164
+ <div class="seg-item selected"><span class="check">✓</span>KG</div>
165
+ <div class="seg-item">STONE</div>
166
+ <div class="seg-item">LBS</div>
167
+ </div>
168
+
169
+ <div class="wheel">
170
+ <div class="line top"></div>
171
+ <div class="line bottom"></div>
172
+ <div class="num n1">59 kg</div>
173
+ <div class="current">60</div>
174
+ <div class="num n2">61 kg</div>
175
+ </div>
176
+
177
+ <hr>
178
+
179
+ <div class="modal-actions">
180
+ <div class="btn">Cancel</div>
181
+ <div class="btn primary">OK</div>
182
+ </div>
183
+ </div>
184
+
185
+ </div>
186
+ </body>
187
+ </html>
code/10006/10006_11.html ADDED
@@ -0,0 +1,244 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="utf-8">
4
+ <title>Weight Picker Modal - Mock</title>
5
+ <style>
6
+ body { margin:0; padding:0; background: transparent; font-family: 'Inter', Arial, Helvetica, sans-serif; }
7
+ #render-target {
8
+ position: relative;
9
+ width: 1080px;
10
+ height: 2400px;
11
+ overflow: hidden;
12
+ background: #F5F7F6;
13
+ color: #0d2b24;
14
+ }
15
+
16
+ /* Status bar */
17
+ .status-bar {
18
+ position: absolute;
19
+ top: 0;
20
+ left: 0;
21
+ width: 1080px;
22
+ height: 110px;
23
+ padding: 0 40px;
24
+ box-sizing: border-box;
25
+ display: flex;
26
+ align-items: center;
27
+ justify-content: space-between;
28
+ color: #0b2a26;
29
+ }
30
+ .status-left { font-weight: 600; font-size: 40px; letter-spacing: 1px; }
31
+ .status-right { display: flex; gap: 28px; align-items: center; }
32
+ .dot { width: 12px; height: 12px; background:#0b2a26; border-radius: 50%; opacity: .85; }
33
+ .battery {
34
+ width: 44px; height: 24px;
35
+ border: 3px solid #0b2a26; border-radius: 4px; position: relative;
36
+ }
37
+ .battery:after {
38
+ content: ""; position: absolute; right: -10px; top: 6px;
39
+ width: 6px; height: 12px; background:#0b2a26; border-radius: 2px;
40
+ }
41
+ .battery .level { position:absolute; left:2px; top:2px; bottom:2px; right:8px; background:#0b2a26; }
42
+
43
+ /* Underlying page content (faint, behind modal) */
44
+ .page {
45
+ position: absolute;
46
+ left: 0; top: 110px; right: 0; bottom: 0;
47
+ padding: 80px 60px;
48
+ box-sizing: border-box;
49
+ }
50
+ .profile-icon {
51
+ width: 130px; height: 130px; border-radius: 65px;
52
+ border: 8px solid #0f5a4a;
53
+ display:flex; align-items:center; justify-content:center;
54
+ color:#0f5a4a; font-size: 64px; font-weight: 700;
55
+ margin-bottom: 40px;
56
+ }
57
+ .title {
58
+ font-size: 84px; font-weight: 700; line-height: 1.15; color:#0b2a26;
59
+ margin-bottom: 24px;
60
+ }
61
+ .subtitle {
62
+ font-size: 36px; color:#3f5a56; max-width: 880px; line-height: 1.45;
63
+ }
64
+ .faint { opacity: 0.35; }
65
+
66
+ .save-cta {
67
+ position: absolute;
68
+ bottom: 80px; right: 60px;
69
+ background: #0d3f34; color: #d8efe9;
70
+ border-radius: 66px;
71
+ padding: 34px 44px;
72
+ font-size: 42px; font-weight: 700;
73
+ }
74
+
75
+ /* Backdrop */
76
+ .backdrop {
77
+ position: absolute;
78
+ inset: 0;
79
+ background: rgba(0,0,0,0.45);
80
+ }
81
+
82
+ /* Modal */
83
+ .modal {
84
+ position: absolute;
85
+ left: 50%;
86
+ top: 50%;
87
+ width: 900px;
88
+ height: 1280px;
89
+ transform: translate(-50%, -50%);
90
+ background: #f8fbf9;
91
+ border-radius: 64px;
92
+ box-shadow: 0 30px 80px rgba(0,0,0,0.35);
93
+ padding: 64px 56px;
94
+ box-sizing: border-box;
95
+ }
96
+ .modal h1 {
97
+ margin: 0;
98
+ font-size: 72px;
99
+ color: #0b2a26;
100
+ font-weight: 700;
101
+ }
102
+ .modal .desc {
103
+ margin-top: 22px;
104
+ font-size: 38px;
105
+ color: #476560;
106
+ line-height: 1.4;
107
+ max-width: 760px;
108
+ }
109
+
110
+ /* Segmented control */
111
+ .segmented {
112
+ margin-top: 56px;
113
+ display: flex;
114
+ border: 2px solid #cfd8d5;
115
+ border-radius: 80px;
116
+ overflow: hidden;
117
+ width: 820px;
118
+ height: 140px;
119
+ }
120
+ .segment {
121
+ flex: 1;
122
+ display: flex; align-items: center; justify-content: center;
123
+ font-size: 42px; font-weight: 600;
124
+ background: #eef3f1;
125
+ color: #1a3f37;
126
+ }
127
+ .segment + .segment { border-left: 2px solid #cfd8d5; }
128
+ .segment.inactive { background: #f9fbfa; color: #324944; }
129
+ .segment svg { margin-right: 16px; }
130
+ .check {
131
+ width: 32px; height: 32px;
132
+ }
133
+
134
+ /* Spinner picker */
135
+ .picker {
136
+ margin: 80px auto 0;
137
+ width: 620px;
138
+ height: 420px;
139
+ position: relative;
140
+ display: flex; flex-direction: column; align-items: center; justify-content: center;
141
+ }
142
+ .picker .line {
143
+ position: absolute; left: 60px; right: 60px; height: 4px; background: #2e463f;
144
+ }
145
+ .picker .line.top { top: 140px; opacity: .55; }
146
+ .picker .line.bottom { bottom: 140px; opacity: .55; }
147
+ .picker .item {
148
+ font-size: 56px; color: #9db2ad; line-height: 1.9;
149
+ }
150
+ .picker .item.center {
151
+ color: #0b2a26;
152
+ font-size: 72px;
153
+ font-weight: 700;
154
+ line-height: 1.3;
155
+ }
156
+
157
+ /* Divider near bottom (subtle like screenshot) */
158
+ .modal .divider {
159
+ margin: 70px auto 0;
160
+ width: 760px; height: 3px; background: #e4ece9;
161
+ }
162
+
163
+ /* Actions */
164
+ .actions {
165
+ position: absolute;
166
+ bottom: 40px;
167
+ left: 56px;
168
+ right: 56px;
169
+ display: flex;
170
+ justify-content: space-between;
171
+ align-items: center;
172
+ }
173
+ .btn {
174
+ font-size: 48px; font-weight: 600;
175
+ padding: 22px 28px; border-radius: 12px;
176
+ color: #1e4c43;
177
+ }
178
+ .btn.primary { color: #0b2a26; }
179
+ </style>
180
+ </head>
181
+ <body>
182
+ <div id="render-target">
183
+
184
+ <!-- Status bar -->
185
+ <div class="status-bar">
186
+ <div class="status-left">10:07</div>
187
+ <div class="status-right">
188
+ <div class="dot"></div>
189
+ <div class="dot"></div>
190
+ <div class="dot" style="width:18px;height:18px;border-radius:4px;"></div>
191
+ <div class="battery"><div class="level"></div></div>
192
+ </div>
193
+ </div>
194
+
195
+ <!-- Underlying page content (dimmed by backdrop) -->
196
+ <div class="page">
197
+ <div class="profile-icon">👤</div>
198
+ <div class="title">Add Fitbit profile info</div>
199
+ <div class="subtitle">
200
+ Your profile info helps personalize some metrics and recommendations. You can change this at
201
+ any time in settings.
202
+ </div>
203
+ <div class="save-cta faint">Save &amp; continue</div>
204
+ </div>
205
+
206
+ <!-- Backdrop -->
207
+ <div class="backdrop"></div>
208
+
209
+ <!-- Modal -->
210
+ <div class="modal">
211
+ <h1>Weight</h1>
212
+ <div class="desc">Fitbit uses weight to estimate calories and calculate needs</div>
213
+
214
+ <div class="segmented">
215
+ <div class="segment">
216
+ <!-- check icon -->
217
+ <svg class="check" viewBox="0 0 24 24">
218
+ <path fill="#1a3f37" d="M20 6l-11 11-5-5 2-2 3 3 9-9z"/>
219
+ </svg>
220
+ KG
221
+ </div>
222
+ <div class="segment inactive">STONE</div>
223
+ <div class="segment inactive">LBS</div>
224
+ </div>
225
+
226
+ <div class="picker">
227
+ <div class="line top"></div>
228
+ <div class="item">62 kg</div>
229
+ <div class="item center">63 kg</div>
230
+ <div class="item">64 kg</div>
231
+ <div class="line bottom"></div>
232
+ </div>
233
+
234
+ <div class="divider"></div>
235
+
236
+ <div class="actions">
237
+ <div class="btn">Cancel</div>
238
+ <div class="btn primary">OK</div>
239
+ </div>
240
+ </div>
241
+
242
+ </div>
243
+ </body>
244
+ </html>
code/10006/10006_12.html ADDED
@@ -0,0 +1,264 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Fitbit Weight Picker</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: #F6F7F6;
13
+ }
14
+
15
+ /* Status bar */
16
+ .status-bar {
17
+ position: absolute;
18
+ top: 0;
19
+ left: 0;
20
+ width: 1080px;
21
+ height: 120px;
22
+ padding: 0 36px;
23
+ box-sizing: border-box;
24
+ display: flex;
25
+ align-items: center;
26
+ justify-content: space-between;
27
+ color: #0b2f2a;
28
+ font-weight: 600;
29
+ font-size: 40px;
30
+ }
31
+ .status-icons { display: flex; gap: 26px; align-items: center; }
32
+ .dot { width: 10px; height: 10px; background:#0b2f2a; border-radius:50%; display:inline-block; }
33
+ .wifi {
34
+ width: 34px; height: 24px;
35
+ border: 3px solid #0b2f2a; border-top-left-radius: 20px; border-top-right-radius: 20px;
36
+ border-bottom: none; transform: rotate(0deg);
37
+ }
38
+ .battery {
39
+ width: 54px; height: 28px; border: 3px solid #0b2f2a; position: relative; border-radius: 6px;
40
+ }
41
+ .battery:after {
42
+ content: ""; position: absolute; right: -8px; top: 6px; width: 6px; height: 16px; background: #0b2f2a; border-radius: 2px;
43
+ }
44
+
45
+ /* Background page content */
46
+ .page {
47
+ position: absolute;
48
+ top: 140px;
49
+ left: 64px;
50
+ right: 64px;
51
+ color: #0c2f2a;
52
+ }
53
+ .title {
54
+ font-size: 82px;
55
+ font-weight: 700;
56
+ letter-spacing: -1px;
57
+ margin-top: 120px;
58
+ margin-bottom: 36px;
59
+ }
60
+ .desc {
61
+ width: 900px;
62
+ color: #5c6f66;
63
+ font-size: 36px;
64
+ line-height: 1.4;
65
+ }
66
+ .form-row {
67
+ margin-top: 80px;
68
+ display: flex;
69
+ gap: 40px;
70
+ }
71
+ .chip {
72
+ border: 2px solid #2e6b5a;
73
+ color: #0e3a33;
74
+ border-radius: 20px;
75
+ padding: 24px 32px;
76
+ font-size: 42px;
77
+ width: 320px;
78
+ text-align: center;
79
+ }
80
+ .save-btn {
81
+ position: absolute;
82
+ right: 64px;
83
+ bottom: 120px;
84
+ background: #0f4c3a;
85
+ color: #e8f3ef;
86
+ padding: 34px 54px;
87
+ border-radius: 60px;
88
+ font-size: 44px;
89
+ box-shadow: 0 8px 18px rgba(0,0,0,0.15);
90
+ }
91
+
92
+ /* Dark overlay */
93
+ .overlay {
94
+ position: absolute;
95
+ inset: 0;
96
+ background: rgba(0,0,0,0.45);
97
+ }
98
+
99
+ /* Modal card */
100
+ .modal {
101
+ position: absolute;
102
+ left: 100px;
103
+ top: 360px;
104
+ width: 880px;
105
+ background: #ffffff;
106
+ border-radius: 64px;
107
+ box-shadow: 0 24px 60px rgba(0,0,0,0.28);
108
+ padding: 56px;
109
+ box-sizing: border-box;
110
+ color: #0c2f2a;
111
+ }
112
+ .modal h2 {
113
+ margin: 0;
114
+ font-size: 64px;
115
+ font-weight: 700;
116
+ }
117
+ .subtext {
118
+ margin-top: 24px;
119
+ font-size: 34px;
120
+ color: #556b63;
121
+ line-height: 1.35;
122
+ }
123
+
124
+ /* Segmented control */
125
+ .segment {
126
+ margin-top: 42px;
127
+ border: 2px solid #cfd7d4;
128
+ border-radius: 80px;
129
+ height: 120px;
130
+ display: flex;
131
+ overflow: hidden;
132
+ }
133
+ .seg-item {
134
+ flex: 1;
135
+ display: flex; align-items: center; justify-content: center;
136
+ font-size: 40px;
137
+ color: #0c2f2a;
138
+ background: #f3f5f4;
139
+ }
140
+ .seg-item + .seg-item { border-left: 2px solid #e6ecea; }
141
+ .seg-item.active {
142
+ background: #d8e9e2;
143
+ position: relative;
144
+ font-weight: 600;
145
+ }
146
+ .check {
147
+ width: 26px; height: 26px; margin-right: 16px;
148
+ }
149
+
150
+ /* Number picker */
151
+ .picker {
152
+ margin-top: 80px;
153
+ width: 100%;
154
+ text-align: center;
155
+ position: relative;
156
+ }
157
+ .picker .faint {
158
+ color: #b6c1bd;
159
+ font-size: 48px;
160
+ margin: 16px 0;
161
+ }
162
+ .picker .selected {
163
+ color: #0d2f2a;
164
+ font-size: 58px;
165
+ font-weight: 700;
166
+ margin: 18px 0;
167
+ }
168
+ .picker .line {
169
+ height: 4px;
170
+ width: 320px;
171
+ background: #2d3a37;
172
+ margin: 18px auto;
173
+ border-radius: 2px;
174
+ }
175
+
176
+ .divider {
177
+ width: 100%;
178
+ height: 2px;
179
+ background: #e9eeec;
180
+ margin: 60px 0 24px 0;
181
+ }
182
+
183
+ .modal-actions {
184
+ display: flex;
185
+ justify-content: space-between;
186
+ align-items: center;
187
+ padding: 0 10px 16px 10px;
188
+ }
189
+ .action {
190
+ font-size: 44px;
191
+ color: #0c5e4b;
192
+ }
193
+ </style>
194
+ </head>
195
+ <body>
196
+ <div id="render-target">
197
+
198
+ <!-- Status Bar -->
199
+ <div class="status-bar">
200
+ <div>10:07</div>
201
+ <div class="status-icons">
202
+ <div class="dot"></div>
203
+ <div class="dot"></div>
204
+ <div class="wifi"></div>
205
+ <div class="battery"></div>
206
+ </div>
207
+ </div>
208
+
209
+ <!-- Background content (dimmed by overlay) -->
210
+ <div class="page">
211
+ <div class="title">Add Fitbit profile info</div>
212
+ <div class="desc">
213
+ Your profile info helps personalize some metrics and estimates. You can
214
+ change it later in Settings. Learn more in our Privacy Policy.
215
+ </div>
216
+
217
+ <div class="form-row">
218
+ <div class="chip">Height</div>
219
+ <div class="chip">Sex</div>
220
+ </div>
221
+
222
+ <div class="save-btn">Save &amp; continue</div>
223
+ </div>
224
+
225
+ <!-- Dim layer -->
226
+ <div class="overlay"></div>
227
+
228
+ <!-- Modal dialog -->
229
+ <div class="modal">
230
+ <h2>Weight</h2>
231
+ <div class="subtext">
232
+ Fitbit uses weight to estimate calories and calculate needs
233
+ </div>
234
+
235
+ <div class="segment">
236
+ <div class="seg-item active">
237
+ <svg class="check" viewBox="0 0 24 24">
238
+ <path d="M9 16l-4-4 1.6-1.6L9 12.8 17.4 4.4 19 6z" fill="#0c2f2a"></path>
239
+ </svg>
240
+ KG
241
+ </div>
242
+ <div class="seg-item">STONE</div>
243
+ <div class="seg-item">LBS</div>
244
+ </div>
245
+
246
+ <div class="picker">
247
+ <div class="faint">65 kg</div>
248
+ <div class="line"></div>
249
+ <div class="selected">66 kg</div>
250
+ <div class="line"></div>
251
+ <div class="faint">67 kg</div>
252
+ </div>
253
+
254
+ <div class="divider"></div>
255
+
256
+ <div class="modal-actions">
257
+ <div class="action">Cancel</div>
258
+ <div class="action">OK</div>
259
+ </div>
260
+ </div>
261
+
262
+ </div>
263
+ </body>
264
+ </html>
code/10006/10006_13.html ADDED
@@ -0,0 +1,272 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
5
+ <title>Fitbit Weight Picker</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: #f4f7f5;
14
+ color: #10201b;
15
+ }
16
+
17
+ /* Status bar */
18
+ .status-bar {
19
+ position: absolute;
20
+ top: 0;
21
+ left: 0;
22
+ width: 1080px;
23
+ height: 120px;
24
+ display: flex;
25
+ align-items: center;
26
+ justify-content: space-between;
27
+ padding: 0 36px;
28
+ color: #0e1f1a;
29
+ font-weight: 600;
30
+ font-size: 44px;
31
+ }
32
+ .status-right {
33
+ display: flex;
34
+ gap: 26px;
35
+ align-items: center;
36
+ }
37
+ .icon { width: 42px; height: 42px; }
38
+
39
+ /* Underlying page */
40
+ .page-content {
41
+ position: absolute;
42
+ top: 160px;
43
+ left: 64px;
44
+ right: 64px;
45
+ }
46
+ .avatar {
47
+ width: 120px;
48
+ height: 120px;
49
+ border-radius: 100px;
50
+ border: 8px solid #0e3c33;
51
+ margin-bottom: 40px;
52
+ }
53
+ .page-title {
54
+ font-size: 96px;
55
+ font-weight: 700;
56
+ letter-spacing: -1px;
57
+ margin: 24px 0 24px 0;
58
+ }
59
+ .page-sub {
60
+ font-size: 40px;
61
+ color: #5e6f68;
62
+ max-width: 900px;
63
+ line-height: 1.4;
64
+ }
65
+ .fake-field {
66
+ margin-top: 60px;
67
+ width: 420px;
68
+ height: 110px;
69
+ border: 2px solid #cbd7d2;
70
+ border-radius: 18px;
71
+ display: flex;
72
+ align-items: center;
73
+ padding: 0 24px;
74
+ color: #29433c;
75
+ background: #ffffff;
76
+ box-shadow: 0 2px 0 rgba(0,0,0,0.02) inset;
77
+ }
78
+
79
+ .bottom-actions {
80
+ position: absolute;
81
+ bottom: 160px;
82
+ left: 64px;
83
+ right: 64px;
84
+ display: flex;
85
+ justify-content: space-between;
86
+ align-items: center;
87
+ }
88
+ .exit-link {
89
+ color: #093a32;
90
+ font-size: 48px;
91
+ }
92
+ .cta {
93
+ background: #0b3d35;
94
+ color: #e7fff7;
95
+ height: 120px;
96
+ padding: 0 46px;
97
+ border-radius: 60px;
98
+ display: inline-flex;
99
+ align-items: center;
100
+ font-size: 44px;
101
+ font-weight: 600;
102
+ box-shadow: 0 8px 20px rgba(0,0,0,0.2);
103
+ }
104
+
105
+ /* Overlay + Modal */
106
+ .overlay {
107
+ position: absolute;
108
+ inset: 0;
109
+ background: rgba(0,0,0,0.5);
110
+ z-index: 5;
111
+ }
112
+ .modal {
113
+ position: absolute;
114
+ left: 90px;
115
+ top: 420px;
116
+ width: 900px;
117
+ height: 1320px;
118
+ background: #ffffff;
119
+ border-radius: 64px;
120
+ box-shadow: 0 30px 60px rgba(0,0,0,0.35);
121
+ padding: 56px;
122
+ }
123
+ .modal-title {
124
+ font-size: 72px;
125
+ font-weight: 700;
126
+ margin-bottom: 18px;
127
+ }
128
+ .modal-desc {
129
+ font-size: 40px;
130
+ color: #6a7a74;
131
+ line-height: 1.35;
132
+ margin-right: 40px;
133
+ }
134
+
135
+ .segmented {
136
+ margin-top: 46px;
137
+ width: 820px;
138
+ height: 130px;
139
+ border-radius: 70px;
140
+ border: 2px solid #cfdad6;
141
+ display: flex;
142
+ overflow: hidden;
143
+ }
144
+ .seg {
145
+ flex: 1;
146
+ display: flex;
147
+ align-items: center;
148
+ justify-content: center;
149
+ font-size: 44px;
150
+ color: #223b34;
151
+ background: #eef2f0;
152
+ }
153
+ .seg:nth-child(2), .seg:nth-child(3) { background: #f2f4f3; color: #2f3f3a; }
154
+ .seg.selected {
155
+ background: #d9ebe3;
156
+ color: #113a31;
157
+ font-weight: 700;
158
+ }
159
+ .seg .check {
160
+ width: 36px;
161
+ height: 36px;
162
+ margin-right: 14px;
163
+ }
164
+
165
+ .picker {
166
+ position: relative;
167
+ width: 100%;
168
+ height: 560px;
169
+ margin-top: 70px;
170
+ }
171
+ .picker-num {
172
+ position: absolute;
173
+ left: 0;
174
+ right: 0;
175
+ text-align: center;
176
+ color: #a4b0ab;
177
+ }
178
+ .picker-65 { top: 60px; font-size: 56px; opacity: 0.5; }
179
+ .picker-66 { top: 210px; font-size: 68px; color: #1c302a; font-weight: 700; }
180
+ .picker-67 { top: 380px; font-size: 56px; opacity: 0.5; }
181
+ .picker .divider {
182
+ position: absolute;
183
+ left: 300px;
184
+ width: 280px;
185
+ height: 6px;
186
+ background: #a7b4af;
187
+ }
188
+ .divider.top { top: 190px; }
189
+ .divider.bottom { top: 330px; }
190
+
191
+ .modal-footer {
192
+ position: absolute;
193
+ bottom: 40px;
194
+ left: 56px;
195
+ right: 56px;
196
+ display: flex;
197
+ justify-content: flex-end;
198
+ gap: 60px;
199
+ align-items: center;
200
+ }
201
+ .btn {
202
+ font-size: 48px;
203
+ color: #0e3a32;
204
+ }
205
+ .btn.ok {
206
+ font-weight: 700;
207
+ }
208
+ </style>
209
+ </head>
210
+ <body>
211
+ <div id="render-target">
212
+
213
+ <!-- Status bar -->
214
+ <div class="status-bar">
215
+ <div>10:07</div>
216
+ <div class="status-right">
217
+ <!-- Simple inline icons -->
218
+ <svg class="icon" viewBox="0 0 24 24"><path fill="#0e1f1a" d="M12 2C6 2 2 6 2 12h3c0-3.8 3.2-7 7-7s7 3.2 7 7h3c0-6-4-10-10-10z"/></svg>
219
+ <svg class="icon" viewBox="0 0 24 24"><path fill="#0e1f1a" d="M2 12l6-6 6 6-6 6-6-6z"/></svg>
220
+ <svg class="icon" viewBox="0 0 24 24"><rect x="3" y="7" width="14" height="10" rx="2" fill="#0e1f1a"/><rect x="18" y="9" width="3" height="6" rx="1" fill="#0e1f1a"/></svg>
221
+ </div>
222
+ </div>
223
+
224
+ <!-- Underlying page content -->
225
+ <div class="page-content">
226
+ <div class="avatar"></div>
227
+ <div class="page-title">Add Fitbit profile info</div>
228
+ <div class="page-sub">Your profile info helps personalize some metrics. Choose units and enter details to set up your profile.</div>
229
+
230
+ <div class="fake-field">Height</div>
231
+ <div class="fake-field" style="width: 520px; margin-top: 34px;">Sex</div>
232
+ </div>
233
+
234
+ <div class="bottom-actions">
235
+ <div class="exit-link">Exit</div>
236
+ <div class="cta">Save &amp; continue</div>
237
+ </div>
238
+
239
+ <!-- Overlay and Modal -->
240
+ <div class="overlay"></div>
241
+ <div class="modal">
242
+ <div class="modal-title">Weight</div>
243
+ <div class="modal-desc">Fitbit uses weight to estimate calories and calculate needs</div>
244
+
245
+ <div class="segmented">
246
+ <div class="seg selected">
247
+ <svg class="check" viewBox="0 0 24 24">
248
+ <path fill="#0b3d35" d="M9 16.2l-3.5-3.5-1.5 1.5L9 19 20 8l-1.5-1.5z"/>
249
+ </svg>
250
+ KG
251
+ </div>
252
+ <div class="seg">STONE</div>
253
+ <div class="seg">LBS</div>
254
+ </div>
255
+
256
+ <div class="picker">
257
+ <div class="picker-num picker-65">65 kg</div>
258
+ <div class="divider top"></div>
259
+ <div class="picker-num picker-66">66 kg</div>
260
+ <div class="divider bottom"></div>
261
+ <div class="picker-num picker-67">67 kg</div>
262
+ </div>
263
+
264
+ <div class="modal-footer">
265
+ <div class="btn">Cancel</div>
266
+ <div class="btn ok">OK</div>
267
+ </div>
268
+ </div>
269
+
270
+ </div>
271
+ </body>
272
+ </html>
code/10006/10006_14.html ADDED
@@ -0,0 +1,189 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Fitbit Profile - Weight Modal</title>
5
+ <style>
6
+ body { margin:0; padding:0; background:transparent; font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
7
+ #render-target {
8
+ width:1080px; height:2400px; position:relative; overflow:hidden;
9
+ background:#f5f7f6; /* app background */
10
+ border-radius:0;
11
+ }
12
+
13
+ /* Status bar */
14
+ .status-bar {
15
+ position:absolute; top:0; left:0; width:100%; height:110px;
16
+ display:flex; align-items:center; justify-content:space-between;
17
+ padding:0 40px; color:#0a302a; font-weight:600; font-size:42px;
18
+ }
19
+ .status-icons{ display:flex; align-items:center; gap:28px; color:#0a302a; }
20
+ .icon-dot { width:10px; height:10px; background:#0a302a; border-radius:50%; display:inline-block; }
21
+ .wifi {
22
+ width:44px; height:30px; position:relative; display:inline-block;
23
+ }
24
+ .wifi:before, .wifi:after {
25
+ content:""; position:absolute; left:0; right:0; border:3px solid #0a302a; border-radius:20px;
26
+ }
27
+ .wifi:before { top:2px; height:10px; opacity:0.9; }
28
+ .wifi:after { top:14px; height:6px; opacity:0.7; }
29
+ .battery {
30
+ width:58px; height:28px; border:3px solid #0a302a; border-radius:6px; position:relative; display:inline-block;
31
+ }
32
+ .battery:after {
33
+ content:""; position:absolute; right:-10px; top:8px; width:8px; height:12px; background:#0a302a; border-radius:2px;
34
+ }
35
+ .battery .level { position:absolute; left:3px; top:3px; height:20px; width:36px; background:#0a302a; border-radius:3px; }
36
+
37
+ /* Page content behind modal */
38
+ .page {
39
+ position:absolute; top:140px; left:60px; right:60px; bottom:0;
40
+ color:#163d35;
41
+ }
42
+ .avatar {
43
+ width:110px; height:110px; border:8px solid #1f5a4d; border-radius:55px; margin-bottom:30px;
44
+ }
45
+ .title {
46
+ font-size:72px; font-weight:700; margin:10px 0 20px;
47
+ }
48
+ .subtitle {
49
+ font-size:36px; color:#4f6e66; line-height:1.4; max-width:880px;
50
+ }
51
+ .form-row { margin-top:40px; display:flex; gap:34px; flex-wrap:wrap; }
52
+ .input-box {
53
+ width:430px; height:110px; border:3px solid #1f5a4d; border-radius:22px;
54
+ display:flex; align-items:center; padding:0 28px; font-size:40px; color:#1f5a4d; background:#eef6f4;
55
+ }
56
+ .long-box { width:600px; }
57
+ .bottom-actions {
58
+ position:absolute; bottom:160px; left:60px; right:60px; display:flex; align-items:center; justify-content:space-between;
59
+ }
60
+ .exit { font-size:44px; color:#1f5a4d; }
61
+ .primary-btn {
62
+ background:#103c33; color:#d9efe8; font-size:44px; padding:28px 44px; border-radius:60px;
63
+ box-shadow:0 6px 14px rgba(0,0,0,0.18);
64
+ }
65
+
66
+ /* Dim overlay */
67
+ .overlay {
68
+ position:absolute; left:0; top:0; width:100%; height:100%;
69
+ background:rgba(0,0,0,0.35);
70
+ }
71
+
72
+ /* Modal */
73
+ .modal {
74
+ position:absolute; left:50%; top:390px; transform:translateX(-50%);
75
+ width:860px; background:#ffffff; border-radius:56px;
76
+ box-shadow:0 30px 80px rgba(0,0,0,0.25);
77
+ padding:60px 60px 40px;
78
+ color:#163d35;
79
+ }
80
+ .modal h2 { margin:0; font-size:64px; font-weight:700; }
81
+ .modal .desc { font-size:36px; color:#587871; margin-top:24px; line-height:1.35; }
82
+ .segmented {
83
+ margin-top:46px; border-radius:40px; border:3px solid #c6d5d1; overflow:hidden; display:flex;
84
+ }
85
+ .segmented .item {
86
+ flex:1; padding:34px 20px; text-align:center; font-size:40px; font-weight:600; color:#3c5e55; background:#e9eeed;
87
+ border-right:3px solid #c6d5d1;
88
+ }
89
+ .segmented .item:last-child { border-right:none; }
90
+ .segmented .active {
91
+ background:#d7ebe4; color:#163d35;
92
+ display:flex; align-items:center; justify-content:center; gap:16px;
93
+ }
94
+ .check {
95
+ width:36px; height:36px; display:inline-block;
96
+ }
97
+ .check svg { width:100%; height:100%; }
98
+ .picker {
99
+ margin:50px auto 20px; width:420px; text-align:center;
100
+ }
101
+ .picker .prev, .picker .next {
102
+ font-size:46px; color:#a8b7b2; margin:22px 0;
103
+ }
104
+ .picker .current {
105
+ font-size:62px; font-weight:700; color:#163d35; position:relative; padding-bottom:28px;
106
+ }
107
+ .picker .current:after {
108
+ content:""; display:block; height:8px; width:280px; background:#163d35; margin:22px auto 0; border-radius:6px;
109
+ }
110
+ .divider { height:4px; background:#e9eeed; margin:40px 0 10px; }
111
+ .modal-actions {
112
+ display:flex; justify-content:space-between; align-items:center; padding:20px 10px 0;
113
+ }
114
+ .btn-text { font-size:44px; color:#1f5a4d; }
115
+ </style>
116
+ </head>
117
+ <body>
118
+ <div id="render-target">
119
+
120
+ <!-- Status bar -->
121
+ <div class="status-bar">
122
+ <div>10:07</div>
123
+ <div class="status-icons">
124
+ <span>✓</span>
125
+ <span>Calm</span>
126
+ <span class="icon-dot"></span>
127
+ <div class="wifi"></div>
128
+ <div class="battery"><div class="level"></div></div>
129
+ </div>
130
+ </div>
131
+
132
+ <!-- Page content behind modal -->
133
+ <div class="page">
134
+ <div class="avatar"></div>
135
+ <div class="title">Add Fitbit profile info</div>
136
+ <div class="subtitle">
137
+ Your profile info helps personalize some metrics and recommendations. You can
138
+ choose what is shared in your profile and settings. Privacy controls apply.
139
+ </div>
140
+
141
+ <div class="form-row">
142
+ <div class="input-box">Height — 168 cm</div>
143
+ <div class="input-box long-box">Sex — Prefer not to say ▼</div>
144
+ </div>
145
+
146
+ <div class="bottom-actions">
147
+ <div class="exit">Exit</div>
148
+ <div class="primary-btn">Save &amp; continue</div>
149
+ </div>
150
+ </div>
151
+
152
+ <!-- Dim background -->
153
+ <div class="overlay"></div>
154
+
155
+ <!-- Weight Modal -->
156
+ <div class="modal">
157
+ <h2>Weight</h2>
158
+ <div class="desc">Fitbit uses weight to estimate calories and calculate needs</div>
159
+
160
+ <div class="segmented">
161
+ <div class="item active">
162
+ <span class="check">
163
+ <svg viewBox="0 0 24 24">
164
+ <path d="M20 6L9 17l-5-5" fill="none" stroke="#163d35" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
165
+ </svg>
166
+ </span>
167
+ KG
168
+ </div>
169
+ <div class="item">STONE</div>
170
+ <div class="item">LBS</div>
171
+ </div>
172
+
173
+ <div class="picker">
174
+ <div class="prev">67 kg</div>
175
+ <div class="current">68 kg</div>
176
+ <div class="next">69 kg</div>
177
+ </div>
178
+
179
+ <div class="divider"></div>
180
+
181
+ <div class="modal-actions">
182
+ <div class="btn-text">Cancel</div>
183
+ <div class="btn-text">OK</div>
184
+ </div>
185
+ </div>
186
+
187
+ </div>
188
+ </body>
189
+ </html>
code/10006/10006_15.html ADDED
@@ -0,0 +1,294 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="utf-8">
4
+ <title>Fitbit Weight Modal - Mock</title>
5
+ <style>
6
+ body { margin: 0; padding: 0; background: transparent; font-family: "Segoe UI", Arial, sans-serif; }
7
+ #render-target {
8
+ width: 1080px;
9
+ height: 2400px;
10
+ position: relative;
11
+ overflow: hidden;
12
+ background: #f6f7f6;
13
+ }
14
+
15
+ /* Status bar */
16
+ .status-bar {
17
+ position: absolute;
18
+ top: 0;
19
+ left: 0;
20
+ width: 1080px;
21
+ height: 108px;
22
+ background: transparent;
23
+ color: #0b3d2f;
24
+ display: flex;
25
+ align-items: center;
26
+ padding: 0 48px;
27
+ font-weight: 600;
28
+ font-size: 42px;
29
+ }
30
+ .status-right {
31
+ margin-left: auto;
32
+ display: flex;
33
+ gap: 24px;
34
+ align-items: center;
35
+ }
36
+ .icon {
37
+ width: 44px; height: 44px;
38
+ }
39
+
40
+ /* Underlying page */
41
+ .page {
42
+ position: absolute;
43
+ top: 108px;
44
+ left: 0;
45
+ width: 1080px;
46
+ height: 2292px;
47
+ background: #ffffff;
48
+ }
49
+ .header-row {
50
+ display: flex;
51
+ align-items: center;
52
+ gap: 32px;
53
+ padding: 96px 64px 24px 64px;
54
+ }
55
+ .avatar {
56
+ width: 96px; height: 96px;
57
+ border-radius: 48px;
58
+ border: 4px solid #174f44;
59
+ display: flex; align-items: center; justify-content: center;
60
+ color: #174f44; font-weight: 700; font-size: 40px;
61
+ }
62
+ .title {
63
+ font-size: 72px;
64
+ color: #0b3d2f;
65
+ font-weight: 700;
66
+ letter-spacing: 0.5px;
67
+ }
68
+ .desc {
69
+ color: #30473f;
70
+ font-size: 36px;
71
+ line-height: 1.5;
72
+ padding: 0 64px;
73
+ max-width: 900px;
74
+ }
75
+
76
+ .form-row {
77
+ margin-top: 64px;
78
+ padding: 0 64px;
79
+ display: flex;
80
+ flex-direction: column;
81
+ gap: 36px;
82
+ }
83
+ .field {
84
+ width: 780px;
85
+ height: 120px;
86
+ border: 2px solid #1d5a4a;
87
+ border-radius: 20px;
88
+ display: flex; align-items: center; justify-content: space-between;
89
+ padding: 0 36px;
90
+ color: #1d5a4a;
91
+ font-size: 40px;
92
+ font-weight: 600;
93
+ }
94
+ .field .value {
95
+ color: #0b3d2f;
96
+ font-weight: 700;
97
+ }
98
+
99
+ .footer {
100
+ position: absolute;
101
+ bottom: 96px;
102
+ left: 64px;
103
+ right: 64px;
104
+ display: flex;
105
+ align-items: center;
106
+ justify-content: space-between;
107
+ }
108
+ .exit {
109
+ color: #174f44;
110
+ font-size: 42px;
111
+ font-weight: 600;
112
+ }
113
+ .cta {
114
+ background: #0b3d2f;
115
+ color: #ffffff;
116
+ border-radius: 64px;
117
+ padding: 34px 48px;
118
+ font-size: 42px;
119
+ font-weight: 700;
120
+ box-shadow: 0 8px 14px rgba(0,0,0,0.15);
121
+ }
122
+
123
+ /* Overlay */
124
+ .overlay {
125
+ position: absolute;
126
+ left: 0; top: 0; width: 1080px; height: 2400px;
127
+ background: rgba(0,0,0,0.35);
128
+ }
129
+
130
+ /* Modal */
131
+ .modal {
132
+ position: absolute;
133
+ left: 90px;
134
+ top: 360px;
135
+ width: 900px;
136
+ height: 1340px;
137
+ background: #ffffff;
138
+ border-radius: 64px;
139
+ box-shadow: 0 14px 60px rgba(0,0,0,0.35);
140
+ padding: 64px;
141
+ color: #0b3d2f;
142
+ }
143
+ .modal h2 {
144
+ margin: 0 0 16px 0;
145
+ font-size: 64px;
146
+ font-weight: 700;
147
+ }
148
+ .subtitle {
149
+ color: #415a52;
150
+ font-size: 34px;
151
+ line-height: 1.4;
152
+ max-width: 760px;
153
+ margin-bottom: 48px;
154
+ }
155
+
156
+ /* Segmented control */
157
+ .segmented {
158
+ width: 820px;
159
+ height: 156px;
160
+ border: 2px solid #b3c1bb;
161
+ border-radius: 78px;
162
+ display: flex;
163
+ overflow: hidden;
164
+ margin-bottom: 72px;
165
+ }
166
+ .seg-item {
167
+ flex: 1;
168
+ display: flex; align-items: center; justify-content: center;
169
+ font-size: 42px; font-weight: 700; color: #1a2e28;
170
+ position: relative;
171
+ }
172
+ .seg-item + .seg-item { border-left: 2px solid #d5ddd9; }
173
+ .seg-item.active {
174
+ background: #d6ebe1;
175
+ color: #0b3d2f;
176
+ }
177
+ .check {
178
+ position: absolute; left: 34px; top: 50%; transform: translateY(-50%);
179
+ width: 44px; height: 44px;
180
+ }
181
+
182
+ /* Spinner */
183
+ .spinner {
184
+ width: 820px;
185
+ height: 520px;
186
+ margin: 0 auto;
187
+ display: flex; align-items: center; justify-content: center;
188
+ flex-direction: column;
189
+ gap: 36px;
190
+ }
191
+ .spinner .faint {
192
+ color: #b0b7b3;
193
+ font-size: 52px;
194
+ }
195
+ .spinner .current {
196
+ color: #0b3d2f;
197
+ font-size: 68px;
198
+ font-weight: 800;
199
+ }
200
+ .spin-line {
201
+ width: 400px;
202
+ height: 8px;
203
+ background: #42564f;
204
+ border-radius: 4px;
205
+ }
206
+
207
+ .modal-footer {
208
+ position: absolute;
209
+ bottom: 64px;
210
+ left: 64px;
211
+ right: 64px;
212
+ display: flex;
213
+ justify-content: space-between;
214
+ }
215
+ .btn {
216
+ font-size: 44px;
217
+ font-weight: 700;
218
+ color: #0b3d2f;
219
+ padding: 20px 34px;
220
+ }
221
+ </style>
222
+ </head>
223
+ <body>
224
+ <div id="render-target">
225
+
226
+ <!-- Status bar -->
227
+ <div class="status-bar">
228
+ 10:08
229
+ <div class="status-right">
230
+ <!-- simple inline SVGs to simulate icons -->
231
+ <svg class="icon" viewBox="0 0 24 24"><path fill="#0b3d2f" d="M12 2l4 8-8 0 4-8zm0 20a8 8 0 1 0 0-16 8 8 0 0 0 0 16z"/></svg>
232
+ <svg class="icon" viewBox="0 0 24 24"><circle cx="12" cy="12" r="8" fill="#0b3d2f"/></svg>
233
+ <svg class="icon" viewBox="0 0 24 24"><rect x="3" y="10" width="14" height="9" rx="2" fill="#0b3d2f"/><rect x="19" y="7" width="2" height="12" fill="#0b3d2f"/></svg>
234
+ </div>
235
+ </div>
236
+
237
+ <!-- Underlying page -->
238
+ <div class="page">
239
+ <div class="header-row">
240
+ <div class="avatar">👤</div>
241
+ <div class="title">Add Fitbit profile info</div>
242
+ </div>
243
+ <div class="desc">
244
+ Your profile info helps personalize some metrics. You can choose what to share and settings later in Privacy.
245
+ </div>
246
+
247
+ <div class="form-row">
248
+ <div class="field"><span>Height</span><span class="value">169 cm</span></div>
249
+ <div class="field"><span>Sex</span><span class="value">Prefer not to say ▾</span></div>
250
+ </div>
251
+
252
+ <div class="footer">
253
+ <div class="exit">Exit</div>
254
+ <div class="cta">Save &amp; continue</div>
255
+ </div>
256
+ </div>
257
+
258
+ <!-- Overlay + Modal -->
259
+ <div class="overlay"></div>
260
+
261
+ <div class="modal">
262
+ <h2>Weight</h2>
263
+ <div class="subtitle">
264
+ Fitbit uses weight to estimate calories and calculate needs
265
+ </div>
266
+
267
+ <div class="segmented">
268
+ <div class="seg-item active">
269
+ <svg class="check" viewBox="0 0 24 24">
270
+ <path d="M20 6L9 17l-5-5" stroke="#0b3d2f" stroke-width="3" fill="none" stroke-linecap="round" stroke-linejoin="round"></path>
271
+ </svg>
272
+ KG
273
+ </div>
274
+ <div class="seg-item">STONE</div>
275
+ <div class="seg-item">LBS</div>
276
+ </div>
277
+
278
+ <div class="spinner">
279
+ <div class="faint">69 kg</div>
280
+ <div class="spin-line"></div>
281
+ <div class="current">70 kg</div>
282
+ <div class="spin-line"></div>
283
+ <div class="faint">71 kg</div>
284
+ </div>
285
+
286
+ <div class="modal-footer">
287
+ <div class="btn">Cancel</div>
288
+ <div class="btn">OK</div>
289
+ </div>
290
+ </div>
291
+
292
+ </div>
293
+ </body>
294
+ </html>
code/10006/10006_16.html ADDED
@@ -0,0 +1,205 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Fitbit Weight Picker UI</title>
5
+ <style>
6
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
7
+ #render-target {
8
+ width: 1080px; height: 2400px;
9
+ position: relative; overflow: hidden;
10
+ background: #F7F8F7;
11
+ }
12
+
13
+ /* Status bar */
14
+ .status-bar {
15
+ position: absolute; top: 0; left: 0; width: 100%; height: 120px;
16
+ padding: 0 40px;
17
+ display: flex; align-items: center; justify-content: space-between;
18
+ color: #0B2B29;
19
+ font-weight: 600; font-size: 44px;
20
+ }
21
+ .status-icons { display: flex; align-items: center; gap: 26px; }
22
+ .icon-dot { width: 16px; height: 16px; background:#0B2B29; border-radius:50%; }
23
+ .wifi {
24
+ width: 40px; height: 28px; border: 4px solid #0B2B29; border-top-left-radius: 28px; border-top-right-radius: 28px;
25
+ border-bottom: none; position: relative;
26
+ }
27
+ .battery {
28
+ width: 52px; height: 28px; border: 4px solid #0B2B29; border-radius: 6px; position: relative;
29
+ }
30
+ .battery:after { content:''; position:absolute; right:-10px; top:8px; width:8px; height:12px; background:#0B2B29; border-radius:2px; }
31
+
32
+ /* Base app content */
33
+ .page {
34
+ position: absolute; top: 160px; left: 60px; right: 60px;
35
+ color: #1D3A37;
36
+ }
37
+ .avatar {
38
+ width: 120px; height: 120px; border: 8px solid #1D3A37; border-radius: 50%;
39
+ display:flex; align-items:center; justify-content:center; color:#1D3A37; font-weight:700;
40
+ margin-bottom: 40px;
41
+ }
42
+ .title {
43
+ font-size: 72px; font-weight: 700; margin-bottom: 24px;
44
+ }
45
+ .subtitle {
46
+ font-size: 34px; color: #5E6F6B; line-height: 1.4; max-width: 860px;
47
+ }
48
+ .card {
49
+ margin-top: 40px;
50
+ width: 420px; height: 120px; border: 2px dashed #A8B7B3; border-radius: 18px;
51
+ display:flex; align-items:center; justify-content:center; color:#6D807B; font-size:36px;
52
+ }
53
+ .footer {
54
+ position: absolute; bottom: 120px; left: 60px; right: 60px;
55
+ display: flex; justify-content: space-between; align-items: center;
56
+ }
57
+ .text-btn { color: #0B2B29; font-size: 40px; }
58
+ .cta {
59
+ background:#0B3D35; color:#EAF4F2; padding: 34px 60px; border-radius: 66px; font-size: 42px; font-weight: 600;
60
+ }
61
+
62
+ /* Overlay mask */
63
+ .dim {
64
+ position: absolute; left:0; top:0; width:100%; height:100%;
65
+ background: rgba(0,0,0,0.35);
66
+ }
67
+
68
+ /* Dialog */
69
+ .dialog {
70
+ position: absolute; left: 50%; top: 50%;
71
+ transform: translate(-50%, -50%);
72
+ width: 900px; height: 1400px;
73
+ background: #F9FBF9; border-radius: 60px; box-shadow: 0 30px 80px rgba(0,0,0,0.25);
74
+ padding: 60px 60px 40px 60px;
75
+ color: #1B2F2C;
76
+ }
77
+ .dialog h2 {
78
+ margin: 0 0 20px 0; font-size: 64px; font-weight: 700;
79
+ }
80
+ .helper {
81
+ font-size: 34px; color: #6D807B; line-height: 1.5; margin-bottom: 44px;
82
+ }
83
+
84
+ /* Segmented control */
85
+ .segmented {
86
+ display: flex; gap: 12px; margin-bottom: 64px;
87
+ }
88
+ .segment {
89
+ flex: 1; height: 140px; border-radius: 70px; border: 2px solid #C9D6D2;
90
+ display: flex; align-items: center; justify-content: center;
91
+ font-size: 40px; color: #2E4A46; background: #EDEFEF;
92
+ }
93
+ .segment.selected {
94
+ background: #D6E9E0; color: #163B35; border-color: #BFD5CE; position: relative;
95
+ font-weight: 700;
96
+ }
97
+ .segment .check {
98
+ position: absolute; left: 36px;
99
+ width: 42px; height: 42px;
100
+ }
101
+ .segment .check svg { width: 100%; height: 100%; }
102
+ .segment .check path { fill: none; stroke: #163B35; stroke-width: 8; stroke-linecap: round; stroke-linejoin: round; }
103
+
104
+ /* Picker area */
105
+ .picker {
106
+ height: 520px; position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center;
107
+ margin-bottom: 80px;
108
+ }
109
+ .picker .value { font-size: 56px; color: #8FA29D; margin: 18px 0; }
110
+ .picker .value.center {
111
+ font-size: 64px; font-weight: 700; color: #1B2F2C;
112
+ }
113
+ .picker .bar {
114
+ width: 360px; height: 10px; background: #2F4D48; border-radius: 8px; margin: 14px 0;
115
+ }
116
+ .divider {
117
+ width: 100%; height: 2px; background: #DDE5E2; margin-bottom: 40px;
118
+ }
119
+
120
+ .dialog-footer {
121
+ display: flex; justify-content: space-between; align-items: center;
122
+ padding: 0 20px; margin-top: 10px;
123
+ }
124
+ .flat-btn {
125
+ font-size: 44px; color: #1D3A37;
126
+ }
127
+ .flat-btn.right { color: #1D3A37; font-weight: 700; }
128
+ </style>
129
+ </head>
130
+ <body>
131
+ <div id="render-target">
132
+
133
+ <!-- Status bar -->
134
+ <div class="status-bar">
135
+ <div>10:08</div>
136
+ <div class="status-icons">
137
+ <div class="icon-dot"></div>
138
+ <div class="icon-dot" style="width:18px;height:18px;"></div>
139
+ <div class="icon-dot" style="width:18px;height:18px;"></div>
140
+ <div class="icon-dot"></div>
141
+ <div class="wifi"></div>
142
+ <div class="battery"></div>
143
+ </div>
144
+ </div>
145
+
146
+ <!-- Base app content -->
147
+ <div class="page">
148
+ <div class="avatar">👤</div>
149
+ <div class="title">Add Fitbit profile info</div>
150
+ <div class="subtitle">
151
+ Your profile info helps personalize some metrics. Choose what to share and set preferences in Privacy settings.
152
+ </div>
153
+
154
+ <div style="display:flex; gap: 28px; margin-top: 50px;">
155
+ <div class="card">Height</div>
156
+ <div class="card">Sex</div>
157
+ <div class="card">[More Fields]</div>
158
+ </div>
159
+ </div>
160
+
161
+ <div class="footer">
162
+ <div class="text-btn">Exit</div>
163
+ <div class="cta">Save &amp; continue</div>
164
+ </div>
165
+
166
+ <!-- Overlay -->
167
+ <div class="dim"></div>
168
+
169
+ <!-- Dialog -->
170
+ <div class="dialog">
171
+ <h2>Weight</h2>
172
+ <div class="helper">Fitbit uses weight to estimate calories and calculate needs</div>
173
+
174
+ <div class="segmented">
175
+ <div class="segment selected">
176
+ <div class="check">
177
+ <svg viewBox="0 0 24 24">
178
+ <path d="M4 13 L9 18 L20 6"></path>
179
+ </svg>
180
+ </div>
181
+ KG
182
+ </div>
183
+ <div class="segment">STONE</div>
184
+ <div class="segment">LBS</div>
185
+ </div>
186
+
187
+ <div class="picker">
188
+ <div class="value">72 kg</div>
189
+ <div class="bar"></div>
190
+ <div class="value center">73 kg</div>
191
+ <div class="bar"></div>
192
+ <div class="value">74 kg</div>
193
+ </div>
194
+
195
+ <div class="divider"></div>
196
+
197
+ <div class="dialog-footer">
198
+ <div class="flat-btn">Cancel</div>
199
+ <div class="flat-btn right">OK</div>
200
+ </div>
201
+ </div>
202
+
203
+ </div>
204
+ </body>
205
+ </html>
code/10006/10006_17.html ADDED
@@ -0,0 +1,206 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Fitbit Profile Info - Weight Picker</title>
5
+ <style>
6
+ body { margin:0; padding:0; background:transparent; }
7
+ #render-target {
8
+ width:1080px; height:2400px;
9
+ position:relative; overflow:hidden;
10
+ background:#F5F6F4;
11
+ font-family: Arial, Helvetica, sans-serif;
12
+ color:#1d2e27;
13
+ }
14
+
15
+ /* Status bar */
16
+ .status-bar {
17
+ position:absolute; top:0; left:0; width:100%; height:110px;
18
+ padding:0 40px;
19
+ display:flex; align-items:center; justify-content:space-between;
20
+ color:#0f1f19; font-weight:600;
21
+ }
22
+ .sb-left { display:flex; align-items:center; gap:26px; font-size:44px; }
23
+ .sb-right { display:flex; align-items:center; gap:24px; }
24
+ .icon-battery, .icon-wifi {
25
+ width:48px; height:48px;
26
+ }
27
+ .icon-battery svg, .icon-wifi svg { width:100%; height:100%; fill:#0f1f19; }
28
+
29
+ /* Page content under modal (dimmed by overlay) */
30
+ .page {
31
+ position:absolute; top:140px; left:0; right:0;
32
+ padding:60px 72px;
33
+ }
34
+ .avatar {
35
+ width:120px; height:120px; border-radius:60px;
36
+ border:8px solid #0f4a3f; display:flex; align-items:center; justify-content:center;
37
+ color:#0f4a3f; font-weight:bold;
38
+ }
39
+ .title {
40
+ margin-top:32px; font-size:72px; font-weight:700;
41
+ letter-spacing:0.5px;
42
+ }
43
+ .subtitle {
44
+ margin-top:24px; font-size:34px; line-height:1.4; color:#51635c;
45
+ max-width:850px;
46
+ }
47
+ .field-row { display:flex; gap:36px; margin-top:48px; }
48
+ .field {
49
+ width:420px; height:120px; border:2px solid #cdd7d2; border-radius:22px;
50
+ display:flex; align-items:center; justify-content:flex-start; padding:0 24px;
51
+ color:#204a40; background:#ffffff;
52
+ }
53
+ .footer {
54
+ position:absolute; left:0; right:0; bottom:80px;
55
+ padding:0 72px; display:flex; align-items:center; justify-content:space-between;
56
+ }
57
+ .exit { font-size:42px; color:#0f4a3f; }
58
+ .cta {
59
+ background:#0c3f34; color:#eaf3ef; font-size:44px; border:none; border-radius:56px;
60
+ padding:28px 48px;
61
+ }
62
+
63
+ /* Overlay + Dialog */
64
+ .overlay {
65
+ position:absolute; top:0; left:0; width:100%; height:100%;
66
+ background:rgba(0,0,0,0.45);
67
+ }
68
+ .dialog {
69
+ position:absolute; left:100px; top:420px; width:880px;
70
+ background:#F9FBF9; border-radius:60px; box-shadow:0 30px 60px rgba(0,0,0,0.25);
71
+ padding:64px 56px;
72
+ }
73
+ .dialog h2 {
74
+ margin:0; font-size:60px; font-weight:700; color:#1d2e27;
75
+ }
76
+ .dialog .helper {
77
+ margin-top:18px; font-size:34px; color:#556760; line-height:1.4;
78
+ max-width:740px;
79
+ }
80
+
81
+ .segmented {
82
+ margin-top:42px; height:160px;
83
+ display:flex; border:2px solid #cbd9d2; border-radius:80px; overflow:hidden;
84
+ background:#eef3f0;
85
+ }
86
+ .segment {
87
+ flex:1; display:flex; align-items:center; justify-content:center; gap:16px;
88
+ font-size:42px; color:#435a53; background:#ecefee;
89
+ }
90
+ .segment + .segment { border-left:2px solid #d9e3de; }
91
+ .segment.active {
92
+ background:#d7e9e0; color:#173d34; font-weight:700;
93
+ }
94
+ .check {
95
+ width:42px; height:42px; border-radius:21px; border:3px solid #173d34;
96
+ display:flex; align-items:center; justify-content:center;
97
+ }
98
+ .check svg { width:28px; height:28px; fill:#173d34; }
99
+
100
+ .wheel {
101
+ position:relative;
102
+ margin-top:80px; padding:60px 0; text-align:center;
103
+ }
104
+ .wheel .line {
105
+ width:300px; height:6px; background:#66756f; margin:26px auto; border-radius:3px;
106
+ }
107
+ .value { font-size:54px; color:#a0aaa6; margin:26px 0; }
108
+ .value.active { font-size:64px; color:#1d2e27; font-weight:700; }
109
+ .divider {
110
+ margin-top:80px; height:2px; background:#e0e6e2;
111
+ }
112
+
113
+ .dialog-actions {
114
+ margin-top:40px; display:flex; justify-content:flex-end; gap:40px;
115
+ }
116
+ .dialog-actions .btn {
117
+ background:none; border:none; font-size:44px; color:#1a5a4d; padding:16px 6px;
118
+ }
119
+ </style>
120
+ </head>
121
+ <body>
122
+ <div id="render-target">
123
+
124
+ <!-- Status Bar -->
125
+ <div class="status-bar">
126
+ <div class="sb-left">
127
+ <div>10:08</div>
128
+ <!-- simple small dots to mimic extra icons -->
129
+ <div style="width:18px;height:18px;background:#0f1f19;border-radius:9px;"></div>
130
+ <div style="width:18px;height:18px;border:3px solid #0f1f19;border-radius:9px;"></div>
131
+ </div>
132
+ <div class="sb-right">
133
+ <div class="icon-wifi">
134
+ <svg viewBox="0 0 24 24">
135
+ <path d="M12 18c.9 0 1.6.7 1.6 1.6S12.9 21.2 12 21.2s-1.6-.7-1.6-1.6S11.1 18 12 18zm-6.7-5.1c3.7-3.2 9.6-3.2 13.3 0l-2 2c-2.9-2.2-6.4-2.2-9.3 0l-2-2zm-3.4-3.5c6-5.2 15.2-5.2 21.2 0l-2.3 2.3c-4.9-4-11.7-4-16.6 0L1.9 9.4z"/>
136
+ </svg>
137
+ </div>
138
+ <div class="icon-battery">
139
+ <svg viewBox="0 0 24 24">
140
+ <path d="M16 6h2v2h2v8h-2v2h-2V6z" opacity="0.3"/>
141
+ <path d="M2 7c0-1.1.9-2 2-2h11c1.1 0 2 .9 2 2v10c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V7zm3 1h9v8H5V8z"/>
142
+ </svg>
143
+ </div>
144
+ </div>
145
+ </div>
146
+
147
+ <!-- Underlying page -->
148
+ <div class="page">
149
+ <div class="avatar">👤</div>
150
+ <div class="title">Add Fitbit profile info</div>
151
+ <div class="subtitle">
152
+ Your profile info helps personalize some metrics. You can change these later in settings and privacy.
153
+ </div>
154
+
155
+ <div class="field-row">
156
+ <div class="field">Height: 180 cm</div>
157
+ <div class="field">Sex: Female</div>
158
+ </div>
159
+
160
+ <div class="footer">
161
+ <div class="exit">Exit</div>
162
+ <button class="cta">Save &amp; continue</button>
163
+ </div>
164
+ </div>
165
+
166
+ <!-- Overlay + Dialog -->
167
+ <div class="overlay">
168
+ <div class="dialog">
169
+ <h2>Weight</h2>
170
+ <div class="helper">
171
+ Fitbit uses weight to estimate calories and calculate needs
172
+ </div>
173
+
174
+ <div class="segmented">
175
+ <div class="segment active">
176
+ <div class="check">
177
+ <svg viewBox="0 0 24 24">
178
+ <path d="M9 16.5l-4-4 1.5-1.5L9 13.5l8.5-8.5 1.5 1.5z"/>
179
+ </svg>
180
+ </div>
181
+ <div>KG</div>
182
+ </div>
183
+ <div class="segment">STONE</div>
184
+ <div class="segment">LBS</div>
185
+ </div>
186
+
187
+ <div class="wheel">
188
+ <div class="value">73 kg</div>
189
+ <div class="line"></div>
190
+ <div class="value active">74 kg</div>
191
+ <div class="line"></div>
192
+ <div class="value">75 kg</div>
193
+ </div>
194
+
195
+ <div class="divider"></div>
196
+
197
+ <div class="dialog-actions">
198
+ <button class="btn">Cancel</button>
199
+ <button class="btn">OK</button>
200
+ </div>
201
+ </div>
202
+ </div>
203
+
204
+ </div>
205
+ </body>
206
+ </html>
code/10006/10006_18.html ADDED
@@ -0,0 +1,162 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Fitbit Profile Info</title>
5
+ <style>
6
+ body { margin:0; padding:0; background:transparent; font-family: "Helvetica Neue", Arial, sans-serif; }
7
+ #render-target {
8
+ width:1080px; height:2400px;
9
+ position:relative; overflow:hidden;
10
+ background:#EFF2EF;
11
+ color:#222;
12
+ }
13
+
14
+ /* Status bar */
15
+ .status-bar{
16
+ position:absolute; top:0; left:0; right:0;
17
+ height:100px;
18
+ padding:0 40px;
19
+ display:flex; align-items:center; justify-content:space-between;
20
+ color:#222;
21
+ font-weight:600;
22
+ letter-spacing:1px;
23
+ }
24
+ .status-left{ display:flex; align-items:center; gap:20px; }
25
+ .status-icons{ display:flex; align-items:center; gap:22px; }
26
+ .sb-dot{ width:18px; height:18px; border-radius:50%; background:#1f6d5c; opacity:.85; }
27
+ .wifi{ width:32px; height:22px; border:3px solid #222; border-radius:6px; position:relative; }
28
+ .wifi:after{ content:""; position:absolute; width:10px; height:10px; right:-16px; top:-6px; border:3px solid #222; border-top:none; border-right:none; transform:rotate(45deg); border-radius:2px; }
29
+ .battery{ width:54px; height:26px; border:3px solid #222; border-radius:4px; position:relative; }
30
+ .battery:after{ content:""; position:absolute; right:-8px; top:6px; width:6px; height:14px; background:#222; border-radius:1px; }
31
+ .battery .fill{ position:absolute; left:4px; top:4px; bottom:4px; right:18px; background:#222; border-radius:2px; }
32
+
33
+ /* Content */
34
+ .content{
35
+ position:absolute; left:60px; right:60px; top:140px; bottom:0;
36
+ overflow:hidden;
37
+ }
38
+ .avatar{
39
+ width:120px; height:120px; border-radius:50%;
40
+ border:10px solid #226e61;
41
+ display:flex; align-items:center; justify-content:center;
42
+ color:#226e61; font-weight:800; font-size:52px;
43
+ }
44
+ .title{
45
+ margin-top:30px;
46
+ font-size:74px; line-height:84px; font-weight:700;
47
+ }
48
+ .subtitle{
49
+ margin-top:36px; color:#5a6a64; font-size:34px; line-height:52px;
50
+ max-width:920px;
51
+ }
52
+ .section-title{
53
+ margin-top:70px; font-size:40px; font-weight:700; color:#22332f;
54
+ }
55
+
56
+ .form-row{
57
+ margin-top:30px;
58
+ display:flex; gap:40px; flex-wrap:wrap;
59
+ }
60
+ .field{
61
+ flex:1 1 0;
62
+ }
63
+ .label{
64
+ color:#537068; font-size:30px; margin:16px 6px;
65
+ }
66
+ .input{
67
+ background:#fff; border:2px solid #cfd8d5; border-radius:20px;
68
+ height:150px; display:flex; align-items:center; padding:0 30px;
69
+ font-size:52px; color:#1d2a28;
70
+ }
71
+ .dropdown .input{ justify-content:space-between; }
72
+ .help{
73
+ margin-top:36px; color:#6f7e79; font-size:34px; line-height:50px; max-width:930px;
74
+ }
75
+
76
+ /* Footer actions */
77
+ .footer{
78
+ position:absolute; left:0; right:0; bottom:40px;
79
+ display:flex; align-items:center; justify-content:space-between;
80
+ padding:0 60px;
81
+ }
82
+ .exit{
83
+ color:#1f6d5c; font-size:42px; font-weight:600;
84
+ }
85
+ .btn{
86
+ background:#226e61; color:#fff; font-size:44px; font-weight:700;
87
+ padding:0 56px; height:140px; border-radius:90px;
88
+ display:flex; align-items:center; justify-content:center;
89
+ min-width:620px; box-shadow:0 6px 12px rgba(0,0,0,0.08);
90
+ }
91
+
92
+ /* Simple dropdown caret */
93
+ .caret{
94
+ width:28px; height:28px; margin-left:20px;
95
+ }
96
+ .caret svg{ width:28px; height:28px; fill:#2b3a37; }
97
+ </style>
98
+ </head>
99
+ <body>
100
+ <div id="render-target">
101
+
102
+ <!-- Status Bar -->
103
+ <div class="status-bar">
104
+ <div class="status-left">
105
+ <div style="font-size:40px;">10:08</div>
106
+ <div class="status-icons">
107
+ <div class="sb-dot" title="silent"></div>
108
+ <div class="sb-dot" style="background:#9bb7ad;" title="notifications"></div>
109
+ <div class="sb-dot" style="background:#c6d6d1;" title="indicator"></div>
110
+ </div>
111
+ </div>
112
+ <div class="status-icons">
113
+ <div class="wifi"></div>
114
+ <div class="battery"><div class="fill"></div></div>
115
+ </div>
116
+ </div>
117
+
118
+ <div class="content">
119
+ <div class="avatar">👤</div>
120
+ <div class="title">Add Fitbit profile info</div>
121
+ <div class="subtitle">
122
+ Your profile info helps personalize some metrics, like stride length and speed.
123
+ To choose who sees this info, go to sharing settings in your Account > Social & Sharing > Privacy.
124
+ </div>
125
+
126
+ <div class="section-title">Your profile info</div>
127
+
128
+ <div class="form-row">
129
+ <div class="field">
130
+ <div class="label">Height</div>
131
+ <div class="input">165 cm</div>
132
+ </div>
133
+ <div class="field">
134
+ <div class="label">Weight</div>
135
+ <div class="input">74 kg</div>
136
+ </div>
137
+ </div>
138
+
139
+ <div class="field" style="margin-top:40px;">
140
+ <div class="label">Sex</div>
141
+ <div class="input dropdown">
142
+ <div>Female</div>
143
+ <div class="caret">
144
+ <svg viewBox="0 0 24 24"><path d="M7 9l5 5 5-5z"/></svg>
145
+ </div>
146
+ </div>
147
+ </div>
148
+
149
+ <div class="help">
150
+ Fitbit uses sex to calculate metrics like calories burned, and to provide reference points
151
+ you can use for comparison
152
+ </div>
153
+ </div>
154
+
155
+ <div class="footer">
156
+ <div class="exit">Exit</div>
157
+ <div class="btn">Save &amp; continue</div>
158
+ </div>
159
+
160
+ </div>
161
+ </body>
162
+ </html>
code/10006/10006_19.html ADDED
@@ -0,0 +1,220 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
5
+ <title>Fitbit Profile Info</title>
6
+ <style>
7
+ body { margin:0; padding:0; background:transparent; font-family: "Roboto", "Segoe UI", Arial, sans-serif; }
8
+ #render-target {
9
+ width:1080px;
10
+ height:2400px;
11
+ position:relative;
12
+ overflow:hidden;
13
+ background:#ffffff;
14
+ color:#1c1c1c;
15
+ }
16
+
17
+ /* Status bar */
18
+ .status-bar {
19
+ position:absolute;
20
+ left:0; top:0;
21
+ width:100%;
22
+ height:110px;
23
+ padding:0 48px;
24
+ box-sizing:border-box;
25
+ display:flex;
26
+ align-items:center;
27
+ justify-content:space-between;
28
+ color:#1f2a28;
29
+ font-size:36px;
30
+ letter-spacing:1px;
31
+ }
32
+ .status-icons {
33
+ display:flex; gap:26px; align-items:center;
34
+ }
35
+ .ic {
36
+ width:38px; height:38px;
37
+ }
38
+ .ic svg { width:100%; height:100%; fill:#2d3a37; }
39
+
40
+ /* Content */
41
+ .content {
42
+ position:absolute;
43
+ left:60px;
44
+ right:60px;
45
+ top:160px;
46
+ bottom:0;
47
+ }
48
+
49
+ .hero-icon {
50
+ width:120px; height:120px; border-radius:60px;
51
+ border:4px solid #2f766b;
52
+ display:flex; align-items:center; justify-content:center;
53
+ color:#2f766b; margin-bottom:38px;
54
+ }
55
+ .hero-icon svg { width:64px; height:64px; fill:#2f766b; }
56
+
57
+ .title {
58
+ font-size:84px; line-height:1.1; font-weight:700;
59
+ margin:8px 0 28px 0;
60
+ color:#0f1f1b;
61
+ }
62
+
63
+ .desc {
64
+ font-size:36px; line-height:52px; color:#5e6b68;
65
+ max-width:920px;
66
+ }
67
+
68
+ .section-title {
69
+ margin-top:64px;
70
+ font-size:44px; font-weight:700; color:#23302e;
71
+ }
72
+
73
+ /* Inputs */
74
+ .form {
75
+ margin-top:28px;
76
+ width:960px;
77
+ }
78
+ .row {
79
+ display:flex; gap:48px;
80
+ margin-bottom:38px;
81
+ }
82
+ .field {
83
+ flex:1;
84
+ }
85
+ .label {
86
+ font-size:30px; color:#3c6c64; margin:10px 0 12px 18px;
87
+ }
88
+ .input {
89
+ height:150px;
90
+ border:3px solid #d6ddd9;
91
+ border-radius:20px;
92
+ display:flex; align-items:center; padding:0 26px;
93
+ font-size:48px; color:#1b2a27;
94
+ box-sizing:border-box;
95
+ }
96
+ .input.active {
97
+ border-color:#1f6e63;
98
+ box-shadow:0 0 0 2px rgba(31,110,99,0.05) inset;
99
+ }
100
+
101
+ /* Sex dropdown */
102
+ .dropdown {
103
+ width:960px;
104
+ position:relative;
105
+ }
106
+ .dropdown .input {
107
+ justify-content:space-between;
108
+ }
109
+ .caret {
110
+ width:28px; height:28px; margin-left:12px;
111
+ }
112
+ .caret svg { width:100%; height:100%; fill:#24433f; transform:rotate(180deg); }
113
+
114
+ .menu {
115
+ position:absolute;
116
+ left:0;
117
+ right:0;
118
+ top:150px;
119
+ background:#e5eeec;
120
+ border:2px solid #cfd8d4;
121
+ border-radius:18px;
122
+ padding:26px 0;
123
+ box-shadow:0 10px 30px rgba(0,0,0,0.08);
124
+ }
125
+ .menu-item {
126
+ padding:34px 32px;
127
+ font-size:44px; color:#1b2b28;
128
+ }
129
+
130
+ /* Bottom actions */
131
+ .bottom {
132
+ position:absolute;
133
+ left:60px; right:60px; bottom:80px;
134
+ display:flex; align-items:center; justify-content:space-between;
135
+ }
136
+ .exit {
137
+ font-size:44px; color:#1f6e63; text-decoration:none;
138
+ }
139
+ .btn {
140
+ background:#1f6e63;
141
+ color:#fff;
142
+ font-size:44px; font-weight:600;
143
+ padding:34px 56px;
144
+ border-radius:90px;
145
+ min-width:520px;
146
+ text-align:center;
147
+ box-shadow:0 6px 14px rgba(31,110,99,0.25);
148
+ }
149
+ </style>
150
+ </head>
151
+ <body>
152
+ <div id="render-target">
153
+
154
+ <!-- Status bar -->
155
+ <div class="status-bar">
156
+ <div>10:09</div>
157
+ <div class="status-icons">
158
+ <div class="ic">
159
+ <svg viewBox="0 0 24 24"><path d="M12 3c4.97 0 9 4.03 9 9h-2c0-3.86-3.14-7-7-7s-7 3.14-7 7H3c0-4.97 4.03-9 9-9zm0 6c1.66 0 3 1.34 3 3h-2a1 1 0 10-2 0H9c0-1.66 1.34-3 3-3zm0 6a3 3 0 003-3h2c0 2.76-2.24 5-5 5v-2z"/></svg>
160
+ </div>
161
+ <div class="ic">
162
+ <svg viewBox="0 0 24 24"><path d="M2 18h2a14 14 0 0114-14V2C8.82 2 2 8.82 2 18zm4 0h2c0-6.63 5.37-12 12-12V4C10.95 4 6 8.95 6 18zm4 0h2c0-3.87 3.13-7 7-7v-2c-4.97 0-9 4.03-9 9z"/></svg>
163
+ </div>
164
+ <div class="ic">
165
+ <svg viewBox="0 0 24 24"><path d="M19 7v4h-2V9H7v12h4v2H5V7h14zM17 3h2v2h2v2h-2v2h-2V7h-2V5h2V3z"/></svg>
166
+ </div>
167
+ </div>
168
+ </div>
169
+
170
+ <div class="content">
171
+ <div class="hero-icon">
172
+ <svg viewBox="0 0 24 24"><path d="M12 12a4 4 0 100-8 4 4 0 000 8zm0 2c-4.42 0-8 2.24-8 5v1h16v-1c0-2.76-3.58-5-8-5z"/></svg>
173
+ </div>
174
+
175
+ <div class="title">Add Fitbit profile info</div>
176
+
177
+ <div class="desc">
178
+ Your profile info helps personalize some metrics, like stride length and speed. To choose who sees this info, go to sharing settings in your Account > Social &amp; Sharing > Privacy.
179
+ </div>
180
+
181
+ <div class="section-title">Your profile info</div>
182
+
183
+ <div class="form">
184
+ <div class="row">
185
+ <div class="field">
186
+ <div class="label">Height</div>
187
+ <div class="input">165 cm</div>
188
+ </div>
189
+ <div class="field">
190
+ <div class="label">Weight</div>
191
+ <div class="input">74 kg</div>
192
+ </div>
193
+ </div>
194
+
195
+ <div class="field dropdown">
196
+ <div class="label">Sex</div>
197
+ <div class="input active">
198
+ Female
199
+ <span class="caret">
200
+ <svg viewBox="0 0 24 24"><path d="M7 14l5-5 5 5H7z"/></svg>
201
+ </span>
202
+ </div>
203
+
204
+ <!-- Opened menu -->
205
+ <div class="menu">
206
+ <div class="menu-item">Male</div>
207
+ <div class="menu-item">Female</div>
208
+ </div>
209
+ </div>
210
+ </div>
211
+ </div>
212
+
213
+ <div class="bottom">
214
+ <a class="exit" href="#">Exit</a>
215
+ <div class="btn">Save &amp; continue</div>
216
+ </div>
217
+
218
+ </div>
219
+ </body>
220
+ </html>
code/10006/10006_2.html ADDED
@@ -0,0 +1,135 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Fitbit Onboarding UI</title>
5
+ <style>
6
+ body { margin:0; padding:0; background: transparent; font-family: Roboto, Arial, Helvetica, sans-serif; }
7
+ #render-target {
8
+ width:1080px; height:2400px;
9
+ position:relative; overflow:hidden;
10
+ background:#F4F5F3;
11
+ }
12
+
13
+ /* Status bar */
14
+ .status-bar {
15
+ position:absolute; top:0; left:0; width:100%; height:120px;
16
+ padding:0 40px;
17
+ display:flex; align-items:center; justify-content:space-between;
18
+ color:#2F2F2F; font-size:38px; letter-spacing:0.2px;
19
+ }
20
+ .status-left { display:flex; align-items:center; gap:18px; }
21
+ .status-right { display:flex; align-items:center; gap:28px; }
22
+
23
+ /* Content */
24
+ .content {
25
+ position:absolute; left:64px; right:64px; top:180px;
26
+ }
27
+ .logo {
28
+ width:120px; height:120px;
29
+ display:flex; align-items:center; justify-content:flex-start;
30
+ margin-bottom:40px;
31
+ }
32
+ h1 {
33
+ font-size:72px; line-height:88px; margin:0 0 40px 0;
34
+ color:#1E2A26; font-weight:700;
35
+ letter-spacing:-0.5px;
36
+ }
37
+ .para {
38
+ font-size:40px; line-height:60px; color:#6A706C;
39
+ margin-bottom:42px;
40
+ }
41
+
42
+ /* Bottom actions */
43
+ .actions {
44
+ position:absolute; left:64px; right:64px; bottom:220px;
45
+ }
46
+ .btn {
47
+ height:120px; border-radius:64px; display:flex; align-items:center; justify-content:center;
48
+ font-size:40px; font-weight:600; letter-spacing:0.2px;
49
+ }
50
+ .btn-primary {
51
+ background:#2E6F63; color:#FFFFFF; box-shadow: none;
52
+ }
53
+ .btn-outline {
54
+ margin-top:30px;
55
+ background:transparent; color:#2E6F63;
56
+ border:2px solid #9AA8A3;
57
+ }
58
+ .link {
59
+ text-align:center; margin-top:56px; color:#2E6F63; font-size:38px;
60
+ }
61
+
62
+ /* Utility small muted text style for secondary lines if needed */
63
+ .muted { color:#7A807C; }
64
+ </style>
65
+ </head>
66
+ <body>
67
+ <div id="render-target">
68
+
69
+ <!-- Status Bar -->
70
+ <div class="status-bar">
71
+ <div class="status-left">
72
+ <span>10:02</span>
73
+ </div>
74
+
75
+ <div class="status-right">
76
+ <!-- Cellular -->
77
+ <svg width="36" height="36" viewBox="0 0 24 24">
78
+ <rect x="2" y="16" width="2" height="5" fill="#2F2F2F"></rect>
79
+ <rect x="6" y="12" width="2" height="9" fill="#2F2F2F"></rect>
80
+ <rect x="10" y="8" width="2" height="13" fill="#2F2F2F"></rect>
81
+ <rect x="14" y="4" width="2" height="17" fill="#2F2F2F"></rect>
82
+ </svg>
83
+ <!-- Wi-Fi -->
84
+ <svg width="36" height="36" viewBox="0 0 24 24">
85
+ <path d="M2 8c5-4 15-4 20 0" stroke="#2F2F2F" stroke-width="2" fill="none" />
86
+ <path d="M5 12c4-3 10-3 14 0" stroke="#2F2F2F" stroke-width="2" fill="none" />
87
+ <path d="M8 16c3-2 5-2 8 0" stroke="#2F2F2F" stroke-width="2" fill="none" />
88
+ <circle cx="12" cy="19" r="2" fill="#2F2F2F"></circle>
89
+ </svg>
90
+ <!-- Do Not Disturb dot -->
91
+ <svg width="12" height="12"><circle cx="6" cy="6" r="6" fill="#2F2F2F"></circle></svg>
92
+ <!-- Battery -->
93
+ <svg width="46" height="36" viewBox="0 0 28 16">
94
+ <rect x="1" y="2" width="22" height="12" rx="2" ry="2" stroke="#2F2F2F" fill="none" stroke-width="2"></rect>
95
+ <rect x="3" y="4" width="17" height="8" fill="#2F2F2F"></rect>
96
+ <rect x="24" y="5" width="3" height="6" rx="1" fill="#2F2F2F"></rect>
97
+ </svg>
98
+ </div>
99
+ </div>
100
+
101
+ <!-- Main Content -->
102
+ <div class="content">
103
+ <!-- Fitbit dots logo -->
104
+ <div class="logo">
105
+ <svg width="120" height="120" viewBox="0 0 120 120">
106
+ <!-- cluster of teal dots approximating Fitbit logo -->
107
+ <circle cx="30" cy="50" r="9" fill="#2E6F63"></circle>
108
+ <circle cx="54" cy="32" r="9" fill="#2E6F63"></circle>
109
+ <circle cx="78" cy="20" r="9" fill="#2E6F63"></circle>
110
+ <circle cx="54" cy="68" r="9" fill="#2E6F63"></circle>
111
+ <circle cx="78" cy="56" r="9" fill="#2E6F63"></circle>
112
+ <circle cx="102" cy="44" r="9" fill="#2E6F63"></circle>
113
+ <circle cx="78" cy="92" r="9" fill="#2E6F63"></circle>
114
+ <circle cx="54" cy="104" r="9" fill="#2E6F63"></circle>
115
+ <circle cx="30" cy="86" r="9" fill="#2E6F63"></circle>
116
+ </svg>
117
+ </div>
118
+
119
+ <h1>Looks like you're new to Fitbit</h1>
120
+
121
+ <div class="para">We couldn't find a Fitbit profile associated with this Google Account.</div>
122
+
123
+ <div class="para">If you've used Fitbit before, you can sign in to move your existing Fitbit profile and information to your Google Account.</div>
124
+ </div>
125
+
126
+ <!-- Bottom actions -->
127
+ <div class="actions">
128
+ <div class="btn btn-primary">Continue as a new user</div>
129
+ <div class="btn btn-outline">Sign in with existing Fitbit account</div>
130
+ <div class="link">Go back</div>
131
+ </div>
132
+
133
+ </div>
134
+ </body>
135
+ </html>
code/10006/10006_20.html ADDED
@@ -0,0 +1,266 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="utf-8">
4
+ <title>Fitbit Profile Info - Mock</title>
5
+ <style>
6
+ body {
7
+ margin: 0;
8
+ padding: 0;
9
+ background: transparent;
10
+ font-family: "Roboto", Arial, sans-serif;
11
+ }
12
+ #render-target {
13
+ width: 1080px;
14
+ height: 2400px;
15
+ position: relative;
16
+ overflow: hidden;
17
+ background: #F3F5F4;
18
+ color: #1f2d2a;
19
+ }
20
+
21
+ /* Status bar */
22
+ .status-bar {
23
+ position: absolute;
24
+ top: 0;
25
+ left: 0;
26
+ width: 1080px;
27
+ height: 120px;
28
+ display: flex;
29
+ align-items: center;
30
+ justify-content: space-between;
31
+ padding: 0 40px;
32
+ color: #1f2d2a;
33
+ font-weight: 600;
34
+ font-size: 40px;
35
+ }
36
+ .status-left {
37
+ display: flex;
38
+ align-items: center;
39
+ gap: 22px;
40
+ }
41
+ .status-right {
42
+ display: flex;
43
+ align-items: center;
44
+ gap: 28px;
45
+ }
46
+ .icon {
47
+ width: 40px;
48
+ height: 40px;
49
+ }
50
+
51
+ /* Content */
52
+ .content {
53
+ position: absolute;
54
+ top: 160px;
55
+ left: 60px;
56
+ right: 60px;
57
+ padding-bottom: 200px;
58
+ }
59
+
60
+ .avatar-wrap {
61
+ width: 130px;
62
+ height: 130px;
63
+ border-radius: 65px;
64
+ border: 10px solid #2E7C71;
65
+ display: flex;
66
+ align-items: center;
67
+ justify-content: center;
68
+ margin-bottom: 40px;
69
+ }
70
+ .avatar-wrap svg {
71
+ width: 80px;
72
+ height: 80px;
73
+ }
74
+
75
+ h1 {
76
+ font-size: 72px;
77
+ line-height: 86px;
78
+ margin: 10px 0 30px 0;
79
+ font-weight: 700;
80
+ letter-spacing: -0.5px;
81
+ }
82
+
83
+ .desc {
84
+ font-size: 38px;
85
+ line-height: 56px;
86
+ color: #51605C;
87
+ margin-bottom: 40px;
88
+ }
89
+
90
+ .section-title {
91
+ font-size: 44px;
92
+ font-weight: 700;
93
+ margin: 40px 0 30px;
94
+ }
95
+
96
+ /* Form controls */
97
+ .form-row {
98
+ display: flex;
99
+ gap: 36px;
100
+ margin-bottom: 34px;
101
+ }
102
+ .field {
103
+ flex: 1;
104
+ }
105
+ .label {
106
+ font-size: 34px;
107
+ color: #3c4a46;
108
+ margin-bottom: 16px;
109
+ }
110
+ .input-box {
111
+ height: 160px;
112
+ border: 3px solid #BFC9C6;
113
+ border-radius: 20px;
114
+ background: #FFFFFF;
115
+ display: flex;
116
+ align-items: center;
117
+ padding: 0 36px;
118
+ font-size: 54px;
119
+ color: #1f2d2a;
120
+ box-sizing: border-box;
121
+ }
122
+
123
+ .select-full {
124
+ width: 960px;
125
+ }
126
+ .dropdown {
127
+ position: relative;
128
+ width: 960px;
129
+ }
130
+ .dropdown .input-box {
131
+ justify-content: space-between;
132
+ }
133
+ .caret {
134
+ width: 36px;
135
+ height: 36px;
136
+ }
137
+
138
+ .helper {
139
+ font-size: 34px;
140
+ color: #51605C;
141
+ margin-top: 26px;
142
+ max-width: 960px;
143
+ line-height: 50px;
144
+ }
145
+
146
+ /* Bottom actions */
147
+ .bottom-actions {
148
+ position: absolute;
149
+ bottom: 190px;
150
+ left: 60px;
151
+ right: 60px;
152
+ display: flex;
153
+ justify-content: space-between;
154
+ align-items: center;
155
+ }
156
+ .exit {
157
+ font-size: 42px;
158
+ color: #236E61;
159
+ cursor: default;
160
+ }
161
+ .cta {
162
+ background: #236E61;
163
+ color: #FFFFFF;
164
+ font-size: 46px;
165
+ padding: 34px 46px;
166
+ border-radius: 60px;
167
+ box-shadow: 0 6px 0 rgba(0,0,0,0.08);
168
+ }
169
+
170
+ /* Gesture bar */
171
+ .gesture {
172
+ position: absolute;
173
+ bottom: 72px;
174
+ left: 50%;
175
+ transform: translateX(-50%);
176
+ width: 460px;
177
+ height: 12px;
178
+ background: #9AA4A1;
179
+ border-radius: 8px;
180
+ }
181
+ </style>
182
+ </head>
183
+ <body>
184
+ <div id="render-target">
185
+ <!-- Status bar -->
186
+ <div class="status-bar">
187
+ <div class="status-left">
188
+ <div>10:10</div>
189
+ <!-- a couple minimalist status glyphs -->
190
+ <svg class="icon" viewBox="0 0 24 24">
191
+ <path d="M3 18h18M6 14h12M9 10h6M11 6h2" stroke="#465653" stroke-width="2" fill="none" stroke-linecap="round"/>
192
+ </svg>
193
+ <svg class="icon" viewBox="0 0 24 24">
194
+ <circle cx="12" cy="12" r="9" stroke="#465653" stroke-width="2" fill="none"/>
195
+ <circle cx="12" cy="12" r="2" fill="#465653"/>
196
+ </svg>
197
+ </div>
198
+ <div class="status-right">
199
+ <!-- Wi-Fi -->
200
+ <svg class="icon" viewBox="0 0 24 24">
201
+ <path d="M2 9c5-4 15-4 20 0M5 12c3-3 11-3 14 0M8 15c2-2 6-2 8 0M12 18l2 2-2 2-2-2 2-2z" stroke="#465653" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
202
+ </svg>
203
+ <!-- Battery -->
204
+ <svg class="icon" viewBox="0 0 28 24">
205
+ <rect x="2" y="6" width="20" height="12" rx="2" ry="2" stroke="#465653" stroke-width="2" fill="none"/>
206
+ <rect x="4.5" y="8.5" width="12.5" height="7" fill="#465653"/>
207
+ <rect x="22.5" y="9" width="3" height="6" rx="1" fill="#465653"/>
208
+ </svg>
209
+ </div>
210
+ </div>
211
+
212
+ <!-- Content -->
213
+ <div class="content">
214
+ <div class="avatar-wrap">
215
+ <!-- Simple outlined avatar icon -->
216
+ <svg viewBox="0 0 64 64">
217
+ <circle cx="32" cy="24" r="12" stroke="#2E7C71" stroke-width="6" fill="none"/>
218
+ <path d="M12 52c4-10 36-10 40 0" stroke="#2E7C71" stroke-width="6" fill="none" stroke-linecap="round"/>
219
+ </svg>
220
+ </div>
221
+
222
+ <h1>Add Fitbit profile info</h1>
223
+
224
+ <div class="desc">
225
+ Your profile info helps personalize some metrics, like stride length and speed. To choose who sees this info, go to sharing settings in your Account > Social &amp; Sharing > Privacy.
226
+ </div>
227
+
228
+ <div class="section-title">Your profile info</div>
229
+
230
+ <div class="form-row">
231
+ <div class="field">
232
+ <div class="label">Height</div>
233
+ <div class="input-box">165 cm</div>
234
+ </div>
235
+ <div class="field">
236
+ <div class="label">Weight</div>
237
+ <div class="input-box">74 kg</div>
238
+ </div>
239
+ </div>
240
+
241
+ <div class="label">Sex</div>
242
+ <div class="dropdown">
243
+ <div class="input-box">
244
+ <span>Male</span>
245
+ <svg class="caret" viewBox="0 0 24 24">
246
+ <path d="M6 9l6 6 6-6" stroke="#2E7C71" stroke-width="3" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
247
+ </svg>
248
+ </div>
249
+ </div>
250
+
251
+ <div class="helper">
252
+ Fitbit uses sex to calculate metrics like calories burned, and to provide reference points you can use for comparison
253
+ </div>
254
+ </div>
255
+
256
+ <!-- Bottom actions -->
257
+ <div class="bottom-actions">
258
+ <div class="exit">Exit</div>
259
+ <div class="cta">Save &amp; continue</div>
260
+ </div>
261
+
262
+ <!-- Gesture bar -->
263
+ <div class="gesture"></div>
264
+ </div>
265
+ </body>
266
+ </html>
code/10006/10006_21.html ADDED
@@ -0,0 +1,236 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Fitbit Privacy Screen</title>
5
+ <style>
6
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
7
+ #render-target {
8
+ position: relative;
9
+ width: 1080px;
10
+ height: 2400px;
11
+ overflow: hidden;
12
+ background: #FAFAFA;
13
+ color: #202124;
14
+ }
15
+
16
+ /* Status bar */
17
+ .status-bar {
18
+ position: absolute;
19
+ top: 0;
20
+ left: 0;
21
+ width: 1080px;
22
+ height: 120px;
23
+ background: #FAFAFA;
24
+ display: flex;
25
+ align-items: center;
26
+ justify-content: space-between;
27
+ padding: 0 40px;
28
+ box-sizing: border-box;
29
+ }
30
+ .status-time {
31
+ font-weight: 600;
32
+ font-size: 44px;
33
+ letter-spacing: 0.5px;
34
+ }
35
+ .status-icons {
36
+ display: flex;
37
+ align-items: center;
38
+ gap: 26px;
39
+ }
40
+ .icon {
41
+ width: 44px;
42
+ height: 44px;
43
+ }
44
+
45
+ /* Content */
46
+ .content {
47
+ position: absolute;
48
+ top: 140px;
49
+ left: 64px;
50
+ right: 64px;
51
+ bottom: 280px;
52
+ overflow: hidden;
53
+ padding-bottom: 40px;
54
+ }
55
+
56
+ .fitbit-logo {
57
+ position: relative;
58
+ width: 84px;
59
+ height: 84px;
60
+ margin-bottom: 40px;
61
+ }
62
+ .dot {
63
+ position: absolute;
64
+ width: 18px;
65
+ height: 18px;
66
+ background: #1AA37A;
67
+ border-radius: 50%;
68
+ }
69
+ /* Arrange dots roughly like Fitbit mark */
70
+ .dot.d1 { top: 8px; left: 8px; }
71
+ .dot.d2 { top: 8px; left: 34px; }
72
+ .dot.d3 { top: 8px; left: 60px; }
73
+ .dot.d4 { top: 34px; left: 8px; }
74
+ .dot.d5 { top: 34px; left: 34px; }
75
+ .dot.d6 { top: 34px; left: 60px; }
76
+ .dot.d7 { top: 60px; left: 8px; }
77
+ .dot.d8 { top: 60px; left: 34px; }
78
+ .dot.d9 { top: 60px; left: 60px; }
79
+
80
+ .title {
81
+ font-size: 74px;
82
+ line-height: 92px;
83
+ font-weight: 700;
84
+ margin: 0 0 30px 0;
85
+ }
86
+ .subtitle {
87
+ font-size: 40px;
88
+ line-height: 58px;
89
+ color: #5F6368;
90
+ margin-bottom: 70px;
91
+ }
92
+ .section-title {
93
+ font-size: 50px;
94
+ font-weight: 700;
95
+ margin: 40px 0 24px 0;
96
+ }
97
+ .para {
98
+ font-size: 38px;
99
+ line-height: 58px;
100
+ color: #3c4043;
101
+ margin: 0 0 34px 0;
102
+ }
103
+ .link {
104
+ color: #1AA37A;
105
+ text-decoration: none;
106
+ font-weight: 600;
107
+ }
108
+
109
+ .bullets {
110
+ margin-top: 10px;
111
+ }
112
+ .bullets li {
113
+ font-size: 38px;
114
+ line-height: 58px;
115
+ color: #3c4043;
116
+ margin-bottom: 30px;
117
+ }
118
+
119
+ /* Bottom sheet */
120
+ .bottom-sheet {
121
+ position: absolute;
122
+ left: 0;
123
+ bottom: 0;
124
+ width: 1080px;
125
+ height: 240px;
126
+ background: #F3F3F3;
127
+ border-top: 1px solid #E0E0E0;
128
+ display: flex;
129
+ align-items: center;
130
+ justify-content: space-between;
131
+ padding: 0 48px;
132
+ box-sizing: border-box;
133
+ }
134
+ .btn-exit {
135
+ font-size: 42px;
136
+ color: #1a73e8;
137
+ background: transparent;
138
+ }
139
+ .btn-primary {
140
+ background: #E6E6E6;
141
+ color: #6E6E6E;
142
+ font-size: 44px;
143
+ padding: 34px 70px;
144
+ border-radius: 80px;
145
+ border: none;
146
+ }
147
+
148
+ /* Home indicator */
149
+ .home-indicator {
150
+ position: absolute;
151
+ bottom: 20px;
152
+ left: 50%;
153
+ transform: translateX(-50%);
154
+ width: 360px;
155
+ height: 16px;
156
+ background: #C7C7C7;
157
+ border-radius: 12px;
158
+ }
159
+ </style>
160
+ </head>
161
+ <body>
162
+ <div id="render-target">
163
+
164
+ <!-- Status Bar -->
165
+ <div class="status-bar">
166
+ <div class="status-time">10:11</div>
167
+ <div class="status-icons">
168
+ <!-- simple icons -->
169
+ <svg class="icon" viewBox="0 0 24 24">
170
+ <path d="M2 18l8-8 6 6 6-6v8H2z" fill="#8D8D8D"/>
171
+ </svg>
172
+ <svg class="icon" viewBox="0 0 24 24">
173
+ <circle cx="12" cy="12" r="10" fill="none" stroke="#8D8D8D" stroke-width="2"/>
174
+ <circle cx="12" cy="12" r="5" fill="#8D8D8D"/>
175
+ </svg>
176
+ <svg class="icon" viewBox="0 0 24 24">
177
+ <path d="M2 8l10-6 10 6v8l-10 6-10-6V8z" fill="none" stroke="#8D8D8D" stroke-width="2"/>
178
+ </svg>
179
+ <svg class="icon" viewBox="0 0 24 24">
180
+ <path d="M3 7h15l3 3v7a2 2 0 0 1-2 2H3V7z" fill="#8D8D8D"/>
181
+ </svg>
182
+ </div>
183
+ </div>
184
+
185
+ <!-- Content -->
186
+ <div class="content">
187
+ <div class="fitbit-logo">
188
+ <div class="dot d1"></div>
189
+ <div class="dot d2"></div>
190
+ <div class="dot d3"></div>
191
+ <div class="dot d4"></div>
192
+ <div class="dot d5"></div>
193
+ <div class="dot d6"></div>
194
+ <div class="dot d7"></div>
195
+ <div class="dot d8"></div>
196
+ <div class="dot d9"></div>
197
+ </div>
198
+
199
+ <h1 class="title">Understand your privacy on Fitbit</h1>
200
+ <p class="subtitle">
201
+ Take a moment to learn what information will be collected about you, how it will be used, and the privacy controls available to you.
202
+ </p>
203
+
204
+ <div class="section-title">What data is collected</div>
205
+ <p class="para">
206
+ To set up Fitbit, some personal information is required, including your height, weight, and sex.
207
+ </p>
208
+ <p class="para">
209
+ You can also provide your health and wellness data, like your activity, exercise, sleep, and heart rate.
210
+ </p>
211
+ <p class="para">
212
+ You can add this information manually or by connecting devices, apps, or services to Fitbit. Data from connected devices depends on your <a href="#" class="link">device features</a>. Some features need your additional consent.
213
+ </p>
214
+
215
+ <div class="section-title">How Google will use this data</div>
216
+ <p class="para">Google will use your health and wellness data to:</p>
217
+ <ul class="bullets">
218
+ <li>
219
+ Provide Fitbit products and services, like <a class="link" href="#">metrics and features</a> to help you meet your goals, and let you share information with others, including information shared through Fitbit social features, or apps you connect to Fitbit
220
+ </li>
221
+ <li>
222
+ Personalize Fitbit products and services, for example recommendations and insights
223
+ </li>
224
+ </ul>
225
+ </div>
226
+
227
+ <!-- Bottom Sheet -->
228
+ <div class="bottom-sheet">
229
+ <div class="btn-exit">Exit</div>
230
+ <button class="btn-primary">Agree &amp; continue</button>
231
+ </div>
232
+
233
+ <div class="home-indicator"></div>
234
+ </div>
235
+ </body>
236
+ </html>
code/10006/10006_22.html ADDED
@@ -0,0 +1,130 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="utf-8">
4
+ <title>Fitbit Privacy - Mock</title>
5
+ <style>
6
+ body{margin:0;padding:0;background:transparent;font-family: Arial, Helvetica, sans-serif;}
7
+ #render-target{
8
+ width:1080px;height:2400px;position:relative;overflow:hidden;
9
+ background:#ffffff;box-sizing:border-box;
10
+ }
11
+
12
+ /* Status bar */
13
+ .status-bar{
14
+ height:120px;padding:0 36px;display:flex;align-items:center;justify-content:space-between;
15
+ color:#222;font-weight:600;font-size:42px;border-bottom:1px solid #eee;
16
+ }
17
+ .status-right{display:flex;align-items:center;gap:26px;color:#555;font-weight:500;}
18
+ .icon{width:40px;height:40px;display:inline-block;}
19
+ .icon svg{width:100%;height:100%;fill:#555;}
20
+ .dot{width:12px;height:12px;background:#555;border-radius:50%;display:inline-block;margin:0 8px;}
21
+
22
+ /* Content */
23
+ .content{
24
+ position:absolute;left:60px;right:60px;top:140px;
25
+ color:#444;
26
+ }
27
+ .paragraph{
28
+ font-size:36px;line-height:1.65;margin:0 0 40px 0;color:#5b5b5b;
29
+ }
30
+ .bullet-list{margin:10px 0 40px 40px;}
31
+ .bullet-list li{font-size:36px;line-height:1.65;margin:0 0 24px 0;color:#4e4e4e;}
32
+ .section-title{
33
+ font-size:52px;color:#202124;margin:40px 0 20px 0;font-weight:700;
34
+ }
35
+
36
+ /* Footer actions */
37
+ .footer{
38
+ position:absolute;left:0;right:0;bottom:170px;
39
+ border-top:1px solid #e4e4e4;background:#f8f9fa;
40
+ padding:36px 60px;display:flex;align-items:center;justify-content:space-between;
41
+ }
42
+ .exit-link{font-size:44px;color:#388e3c;}
43
+ .btn{
44
+ background:#e0e0e0;color:#8a8a8a;border:none;border-radius:80px;
45
+ padding:36px 60px;font-size:44px;font-weight:700;
46
+ box-shadow:inset 0 0 0 1px #d0d0d0;
47
+ }
48
+
49
+ /* Gesture pill */
50
+ .gesture{
51
+ position:absolute;left:50%;transform:translateX(-50%);
52
+ bottom:80px;width:320px;height:16px;background:#bdbdbd;border-radius:10px;
53
+ }
54
+ </style>
55
+ </head>
56
+ <body>
57
+ <div id="render-target">
58
+
59
+ <!-- Status bar -->
60
+ <div class="status-bar">
61
+ <div>10:12</div>
62
+ <div class="status-right">
63
+ <span class="icon">
64
+ <!-- small vibration icon -->
65
+ <svg viewBox="0 0 24 24"><path d="M16 3H8c-1.1 0-2 .9-2 2v14l6-3 6 3V5c0-1.1-.9-2-2-2z"/></svg>
66
+ </span>
67
+ <span class="icon">
68
+ <!-- upload arrow -->
69
+ <svg viewBox="0 0 24 24"><path d="M4 18h16v2H4v-2zm8-14l6 6h-4v6h-4v-6H6l6-6z"/></svg>
70
+ </span>
71
+ <span class="icon">
72
+ <!-- calm icon (simple wave) -->
73
+ <svg viewBox="0 0 24 24"><path d="M3 12s3-4 9-4 9 4 9 4-3 4-9 4-9-4-9-4z"/></svg>
74
+ </span>
75
+ <span class="icon">
76
+ <!-- lock icon -->
77
+ <svg viewBox="0 0 24 24"><path d="M12 2a5 5 0 00-5 5v3H5v12h14V10h-2V7a5 5 0 00-5-5zm-3 8V7a3 3 0 116 0v3H9z"/></svg>
78
+ </span>
79
+ <span class="dot"></span>
80
+ <span class="icon">
81
+ <!-- wifi -->
82
+ <svg viewBox="0 0 24 24"><path d="M12 18l-2 2 2 2 2-2-2-2zm-6-6l-2 2 8 8 8-8-2-2-6 6-6-6zm-4-4l-2 2 12 12 12-12-2-2L12 16 2 8z"/></svg>
83
+ </span>
84
+ <span class="icon">
85
+ <!-- battery -->
86
+ <svg viewBox="0 0 24 24"><path d="M16 4h-1V2h-6v2H8C6.9 4 6 4.9 6 6v12c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2z"/></svg>
87
+ </span>
88
+ </div>
89
+ </div>
90
+
91
+ <!-- Main content -->
92
+ <div class="content">
93
+ <ul class="bullet-list">
94
+ <li>Maintain Fitbit products and services, by fixing bugs, increasing accuracy, and improving reliability</li>
95
+ <li>Help protect the safety and security of Fitbit products and services, our users, and others</li>
96
+ </ul>
97
+
98
+ <p class="paragraph">
99
+ Your Fitbit health and wellness data won’t be used for Google Ads, and will be kept separate from Google Ads data.
100
+ </p>
101
+
102
+ <p class="paragraph">
103
+ Your name, profile photo and the date you join Fitbit will be visible to other Fitbit users in your Fitbit profile. Your step count and ‘about me’ information will be visible to your friends and other members of closed groups you choose to join. You can update your name, profile photo and ‘about me’ information, and have control over how you share other Fitbit data.
104
+ </p>
105
+
106
+ <div class="section-title">Managing your privacy</div>
107
+ <ul class="bullet-list">
108
+ <li>You can manage your privacy preferences from the Fitbit app, or in your Google Account</li>
109
+ <li>These include whether to pair devices, enable features, download or delete data, or share it with others</li>
110
+ </ul>
111
+
112
+ <div class="section-title">Google's commitment to your privacy</div>
113
+ <ul class="bullet-list">
114
+ <li>Your Fitbit health and wellness data won't be used for Google Ads, and will continue to be kept separate from Google Ads data.</li>
115
+ <li>To better understand how Google uses Fitbit data, you can read the Google Privacy Policy and these Fitbit FAQs on privacy. These include additional information on Google's lawful bases for processing personal data.</li>
116
+ </ul>
117
+ </div>
118
+
119
+ <!-- Footer actions -->
120
+ <div class="footer">
121
+ <div class="exit-link">Exit</div>
122
+ <button class="btn">Agree &amp; continue</button>
123
+ </div>
124
+
125
+ <!-- Gesture pill -->
126
+ <div class="gesture"></div>
127
+
128
+ </div>
129
+ </body>
130
+ </html>