yhzheng1031 commited on
Commit
67530d2
·
verified ·
1 Parent(s): 0a7cfaf

Add files using upload-large-folder tool

Browse files
Files changed (50) hide show
  1. androidcontrol_data_extract.py +106 -0
  2. code/10163/10163_9.html +256 -0
  3. code/10165/10165_4.html +353 -0
  4. code/10165/10165_5.html +299 -0
  5. code/10166/10166_1.html +231 -0
  6. code/10166/10166_5.html +255 -0
  7. code/10166/10166_6.html +272 -0
  8. code/10166/10166_7.html +213 -0
  9. code/10169/10169_0.html +326 -0
  10. code/10169/10169_3.html +145 -0
  11. code/10169/10169_4.html +330 -0
  12. code/1017/1017_1.html +272 -0
  13. code/1017/1017_2.html +396 -0
  14. code/1017/1017_3.html +159 -0
  15. code/1017/1017_4.html +285 -0
  16. code/1017/1017_5.html +170 -0
  17. code/1017/1017_6.html +166 -0
  18. code/1017/1017_7.html +209 -0
  19. code/10170/10170_0.html +262 -0
  20. code/10170/10170_1.html +309 -0
  21. code/10173/10173_0.html +342 -0
  22. code/10173/10173_1.html +349 -0
  23. code/10173/10173_2.html +355 -0
  24. code/10173/10173_3.html +456 -0
  25. code/10173/10173_4.html +372 -0
  26. code/10173/10173_6.html +306 -0
  27. code/10173/10173_7.html +364 -0
  28. code/10173/10173_8.html +480 -0
  29. code/10175/10175_1.html +311 -0
  30. code/10175/10175_2.html +358 -0
  31. code/10175/10175_3.html +480 -0
  32. code/10175/10175_4.html +378 -0
  33. code/10175/10175_5.html +384 -0
  34. code/10175/10175_6.html +364 -0
  35. code/10176/10176_0.html +408 -0
  36. code/10176/10176_1.html +433 -0
  37. code/10176/10176_2.html +281 -0
  38. code/10176/10176_3.html +209 -0
  39. code/10176/10176_4.html +143 -0
  40. code/10177/10177_0.html +243 -0
  41. code/10177/10177_1.html +543 -0
  42. code/10177/10177_10.html +262 -0
  43. code/10177/10177_12.html +289 -0
  44. code/10177/10177_5.html +360 -0
  45. code/10177/10177_8.html +338 -0
  46. code/10177/10177_9.html +314 -0
  47. code/10179/10179_0.html +298 -0
  48. code/10179/10179_3.html +289 -0
  49. code/10179/10179_4.html +358 -0
  50. code/1018/1018_1.html +309 -0
androidcontrol_data_extract.py ADDED
@@ -0,0 +1,106 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import tensorflow as tf
2
+ import os
3
+ import glob
4
+ from tqdm import tqdm
5
+
6
+ # ================= 配置区域 =================
7
+ INPUT_DIR = "./downloads" # 下载数据的目录
8
+ OUTPUT_DIR = "./images" # 结果保存目录
9
+
10
+ # 设置为 None 表示提取所有数据
11
+ # 设置为 具体数字(如 100)用于测试
12
+ MAX_EPISODES = None
13
+ # ===========================================
14
+
15
+ # 定义解析格式
16
+ feature_description = {
17
+ 'episode_id': tf.io.FixedLenFeature([], tf.int64),
18
+ 'screenshots': tf.io.VarLenFeature(tf.string),
19
+ }
20
+
21
+ def parse_func(example_proto):
22
+ return tf.io.parse_single_example(example_proto, feature_description)
23
+
24
+ def main():
25
+ # 屏蔽掉那些烦人的 TensorFlow 日志(只显示 Error)
26
+ os.environ['TF_CPP_MIN_LOG_LEVEL'] = '2'
27
+
28
+ try:
29
+ tf.config.set_visible_devices([], 'GPU')
30
+ except:
31
+ pass
32
+
33
+ # 1. 扫描文件
34
+ tfrecord_files = sorted(glob.glob(os.path.join(INPUT_DIR, "android_control-*-of-00020")))
35
+ if not tfrecord_files:
36
+ print("❌ 未找到数据文件。")
37
+ return
38
+
39
+ print(f"📂 找到 {len(tfrecord_files)} 个 TFRecord 文件。")
40
+ print(f"📂 图片将保存至: {OUTPUT_DIR}")
41
+
42
+ # 统计变量
43
+ total_images_extracted = 0
44
+ global_episode_count = 0
45
+
46
+ # 初始化进度条
47
+ # 如果 MAX_EPISODES 是 None,进度条只显示计数,不显示百分比(因为不知道总数)
48
+ pbar = tqdm(total=MAX_EPISODES, unit="ep", desc="提取进度")
49
+
50
+ # 2. 遍历所有文件
51
+ for file_path in tfrecord_files:
52
+ if MAX_EPISODES is not None and global_episode_count >= MAX_EPISODES:
53
+ break
54
+
55
+ # 加载数据集
56
+ raw_dataset = tf.data.TFRecordDataset(file_path, compression_type='GZIP')
57
+ parsed_dataset = raw_dataset.map(parse_func)
58
+
59
+ # 3. 遍历每一个 Episode
60
+ for features in parsed_dataset:
61
+ if MAX_EPISODES is not None and global_episode_count >= MAX_EPISODES:
62
+ break
63
+
64
+ ep_id = features['episode_id'].numpy()
65
+
66
+ # 创建文件夹
67
+ ep_dir = os.path.join(OUTPUT_DIR, str(ep_id))
68
+
69
+ # 断点续传检查
70
+ if os.path.exists(ep_dir):
71
+ # 如果跳过,是否要算在进度条里?建议算上,以免看起来像卡住了
72
+ # 但如果不读取文件,我们不知道这个跳过的 Episode 里有几张图
73
+ # 所以这里简单更新一下 episode 计数
74
+ # pbar.update(1)
75
+ continue
76
+
77
+ os.makedirs(ep_dir, exist_ok=True)
78
+
79
+ # 获取图片数据
80
+ screenshots = features['screenshots'].values.numpy()
81
+
82
+ # 4. 保存图片
83
+ for i, img_bytes in enumerate(screenshots):
84
+ img_name = f"{ep_id}_{i}.png"
85
+ save_path = os.path.join(ep_dir, img_name)
86
+ with open(save_path, "wb") as f:
87
+ f.write(img_bytes)
88
+
89
+ # --- 更新统计数据 ---
90
+ current_imgs_count = len(screenshots)
91
+ total_images_extracted += current_imgs_count
92
+ global_episode_count += 1
93
+
94
+ # 更新进度条
95
+ pbar.update(1)
96
+ # 在进度条后面实时显示总图片数
97
+ pbar.set_postfix({"Total Images": total_images_extracted})
98
+
99
+ pbar.close()
100
+ print(f"\n✅ 任务结束!")
101
+ print(f" 共处理 Episodes: {global_episode_count}")
102
+ print(f" 共提取 Images: {total_images_extracted}")
103
+
104
+
105
+ if __name__ == "__main__":
106
+ main()
code/10163/10163_9.html ADDED
@@ -0,0 +1,256 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Playlists Screen</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
9
+ #render-target {
10
+ width: 1080px; height: 2400px; position: relative; overflow: hidden;
11
+ background: #121212; color: #FFFFFF;
12
+ }
13
+
14
+ /* Status bar */
15
+ .status-bar {
16
+ position: absolute; top: 0; left: 0; width: 100%; height: 90px;
17
+ display: flex; align-items: center; justify-content: space-between;
18
+ padding: 0 36px; color: #fff; font-size: 36px; opacity: 0.9;
19
+ }
20
+ .status-icons { display: flex; gap: 24px; align-items: center; }
21
+
22
+ /* Header */
23
+ .header {
24
+ position: absolute; top: 90px; left: 0; width: 100%; height: 220px;
25
+ padding: 0 36px;
26
+ }
27
+ .header-top {
28
+ display: flex; align-items: center; justify-content: space-between;
29
+ }
30
+ .left-group { display: flex; align-items: center; gap: 24px; }
31
+ .title { font-weight: 700; font-size: 96px; line-height: 1.1; margin-top: 12px; }
32
+ .actions { display: flex; gap: 36px; align-items: center; }
33
+ .icon-btn { width: 60px; height: 60px; display: inline-flex; align-items: center; justify-content: center; }
34
+ .icon-btn svg { width: 48px; height: 48px; }
35
+
36
+ /* Filter pill */
37
+ .filter-row { margin-top: 24px; display: flex; align-items: center; gap: 24px; }
38
+ .pill {
39
+ background: #2A2A2A; border-radius: 48px; padding: 20px 28px;
40
+ display: inline-flex; align-items: center; gap: 14px; font-size: 40px;
41
+ }
42
+ .pill svg { width: 36px; height: 36px; }
43
+
44
+ /* List */
45
+ .content {
46
+ position: absolute; top: 310px; left: 0; right: 0; bottom: 400px;
47
+ padding: 0 36px; overflow-y: auto;
48
+ }
49
+ .list-row {
50
+ display: flex; gap: 28px; align-items: center;
51
+ margin-bottom: 34px;
52
+ }
53
+ .thumb {
54
+ width: 480px; height: 270px; border-radius: 28px;
55
+ background: #E0E0E0; border: 1px solid #BDBDBD;
56
+ display: flex; align-items: center; justify-content: center;
57
+ color: #757575; font-size: 34px; text-align: center; padding: 12px;
58
+ position: relative;
59
+ }
60
+ .badge {
61
+ position: absolute; bottom: 16px; right: 16px;
62
+ background: rgba(0,0,0,0.7); color: #fff; font-size: 32px;
63
+ padding: 8px 14px; border-radius: 14px;
64
+ display: flex; align-items: center; gap: 8px;
65
+ }
66
+ .row-info { flex: 1; }
67
+ .row-title { font-size: 52px; font-weight: 700; margin-bottom: 8px; }
68
+ .row-sub { font-size: 36px; color: #B0B0B0; }
69
+ .row-menu { width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; }
70
+
71
+ /* Create new playlist button */
72
+ .create-btn {
73
+ width: 100%; height: 120px; background: #2A2A2A; border-radius: 60px;
74
+ display: flex; align-items: center; justify-content: center;
75
+ font-size: 44px; font-weight: 600; margin: 24px 0 36px 0;
76
+ }
77
+
78
+ /* Toast card */
79
+ .toast {
80
+ background: #FFFFFF; color: #000; border-radius: 28px;
81
+ padding: 28px; display: flex; align-items: center; justify-content: space-between;
82
+ font-size: 42px; margin-bottom: 24px;
83
+ }
84
+ .toast .action { color: #3AB4FF; font-weight: 600; }
85
+
86
+ /* Mini player */
87
+ .mini-player {
88
+ position: absolute; left: 0; right: 0; bottom: 220px;
89
+ height: 180px; background: #1A1A1A; border-top: 1px solid #2A2A2A;
90
+ display: flex; align-items: center; padding: 0 24px; gap: 24px;
91
+ }
92
+ .mini-thumb {
93
+ width: 210px; height: 140px; border-radius: 14px;
94
+ background: #E0E0E0; border: 1px solid #BDBDBD;
95
+ display: flex; align-items: center; justify-content: center;
96
+ color: #757575; font-size: 28px;
97
+ }
98
+ .mini-info { flex: 1; min-width: 0; }
99
+ .mini-title {
100
+ font-size: 40px; color: #FFFFFF; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
101
+ }
102
+ .mini-sub { font-size: 32px; color: #B0B0B0; }
103
+ .mini-actions { display: flex; gap: 24px; }
104
+
105
+ /* Bottom navigation */
106
+ .bottom-nav {
107
+ position: absolute; left: 0; right: 0; bottom: 0;
108
+ height: 220px; background: #0F0F0F; display: flex;
109
+ align-items: center; justify-content: space-around; border-top: 1px solid #202020;
110
+ }
111
+ .nav-item { display: flex; flex-direction: column; align-items: center; gap: 12px; color: #CCCCCC; }
112
+ .nav-item .label { font-size: 30px; }
113
+ .nav-item svg { width: 56px; height: 56px; }
114
+ .nav-center {
115
+ width: 120px; height: 120px; background: #2A2A2A; border-radius: 60px;
116
+ display: flex; align-items: center; justify-content: center; margin-top: -40px;
117
+ }
118
+ .notif-dot {
119
+ position: absolute; width: 18px; height: 18px; background: #E53935; border-radius: 50%;
120
+ right: -6px; top: -6px;
121
+ }
122
+
123
+ /* Gesture bar */
124
+ .gesture {
125
+ position: absolute; left: 50%; transform: translateX(-50%);
126
+ bottom: 240px; width: 180px; height: 10px; border-radius: 5px; background: #EAEAEA; opacity: 0.8;
127
+ }
128
+
129
+ /* Simple helper */
130
+ .muted { color: #B0B0B0; }
131
+ </style>
132
+ </head>
133
+ <body>
134
+ <div id="render-target">
135
+
136
+ <!-- Status Bar -->
137
+ <div class="status-bar">
138
+ <div>8:29</div>
139
+ <div class="status-icons">
140
+ <!-- simple dots to represent status icons -->
141
+ <svg width="28" height="28"><circle cx="14" cy="14" r="6" fill="#fff"/></svg>
142
+ <svg width="28" height="28"><rect x="6" y="6" width="16" height="16" fill="#fff"/></svg>
143
+ <svg width="28" height="28"><circle cx="14" cy="14" r="12" fill="none" stroke="#fff" stroke-width="2"/></svg>
144
+ <svg width="28" height="28"><circle cx="14" cy="14" r="3" fill="#fff"/></svg>
145
+ <svg width="28" height="28"><path d="M4 22 L24 22" stroke="#fff" stroke-width="3"/></svg>
146
+ </div>
147
+ </div>
148
+
149
+ <!-- Header -->
150
+ <div class="header">
151
+ <div class="header-top">
152
+ <div class="left-group">
153
+ <div class="icon-btn" aria-label="Back">
154
+ <svg viewBox="0 0 48 48">
155
+ <path d="M30 10 L16 24 L30 38" stroke="#fff" stroke-width="4" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
156
+ </svg>
157
+ </div>
158
+ </div>
159
+ <div class="actions">
160
+ <!-- Cast -->
161
+ <div class="icon-btn" aria-label="Cast">
162
+ <svg viewBox="0 0 48 48">
163
+ <rect x="6" y="10" width="30" height="22" rx="3" ry="3" stroke="#fff" stroke-width="3" fill="none"/>
164
+ <path d="M6 34 Q12 34 16 38" stroke="#fff" stroke-width="3" fill="none"/>
165
+ <path d="M6 34 Q8 34 10 36" stroke="#fff" stroke-width="3" fill="none"/>
166
+ </svg>
167
+ </div>
168
+ <!-- Search -->
169
+ <div class="icon-btn" aria-label="Search">
170
+ <svg viewBox="0 0 48 48">
171
+ <circle cx="21" cy="21" r="12" stroke="#fff" stroke-width="3" fill="none"/>
172
+ <path d="M32 32 L42 42" stroke="#fff" stroke-width="3" stroke-linecap="round"/>
173
+ </svg>
174
+ </div>
175
+ <!-- Kebab -->
176
+ <div class="icon-btn" aria-label="More">
177
+ <svg viewBox="0 0 48 48">
178
+ <circle cx="24" cy="10" r="3" fill="#fff"/>
179
+ <circle cx="24" cy="24" r="3" fill="#fff"/>
180
+ <circle cx="24" cy="38" r="3" fill="#fff"/>
181
+ </svg>
182
+ </div>
183
+ </div>
184
+ </div>
185
+ <div class="title">Playlists</div>
186
+ <div class="filter-row">
187
+ <div class="pill">
188
+ <span>Recently added</span>
189
+ <svg viewBox="0 0 24 24">
190
+ <path d="M6 9 L12 15 L18 9" stroke="#fff" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
191
+ </svg>
192
+ </div>
193
+ </div>
194
+ </div>
195
+
196
+ <!-- Content -->
197
+ <div class="content">
198
+ <!-- Row: Watch later -->
199
+ <div class="list-row">
200
+ <div class="thumb">[IMG: Watch later tile]
201
+ <div class="badge">
202
+ <svg width="28" height="28" viewBox="0 0 24 24">
203
+ <circle cx="12" cy="12" r="9" stroke="#fff" stroke-width="2" fill="none"/>
204
+ <path d="M12 7 L12 12 L16 14" stroke="#fff" stroke-width="2" fill="none" stroke-linecap="round"/>
205
+ </svg>
206
+ <span>0</span>
207
+ </div>
208
+ </div>
209
+ <div class="row-info">
210
+ <div class="row-title">Watch later</div>
211
+ <div class="row-sub">Private</div>
212
+ </div>
213
+ </div>
214
+
215
+ <!-- Row: wedding dresses and makeup ideas -->
216
+ <div class="list-row">
217
+ <div class="thumb">[IMG: Fashion runway video]</div>
218
+ <div class="row-info">
219
+ <div class="row-title">wedding dresses and makeup ideas</div>
220
+ <div class="row-sub">Private · Playlist<span class="muted"> · Updated today</span></div>
221
+ </div>
222
+ <div class="row-menu">
223
+ <svg viewBox="0 0 48 48">
224
+ <circle cx="24" cy="12" r="4" fill="#fff"/>
225
+ <circle cx="24" cy="24" r="4" fill="#fff"/>
226
+ <circle cx="24" cy="36" r="4" fill="#fff"/>
227
+ </svg>
228
+ </div>
229
+ </div>
230
+
231
+ <!-- Row: News video playlist -->
232
+ <div class="list-row">
233
+ <div class="thumb">[IMG: News video thumbnail]
234
+ <div class="badge">
235
+ <svg width="28" height="28" viewBox="0 0 24 24">
236
+ <rect x="4" y="6" width="16" height="12" stroke="#fff" stroke-width="2" fill="none" rx="2" ry="2"/>
237
+ <path d="M10 9 L15 12 L10 15 Z" fill="#fff"/>
238
+ </svg>
239
+ <span>5</span>
240
+ </div>
241
+ </div>
242
+ <div class="row-info">
243
+ <div class="row-title">News & clips</div>
244
+ <div class="row-sub">Private</div>
245
+ </div>
246
+ </div>
247
+
248
+ <!-- Row: Scenic portrait video -->
249
+ <div class="list-row">
250
+ <div class="thumb">[IMG: Scenic portrait video]</div>
251
+ <div class="row-info">
252
+ <div class="row-title">Travel moments</div>
253
+ <div class="row-sub">Private</div>
254
+ </div>
255
+ <div class="row-menu">
256
+ <svg viewBox="0 0 48 48">
code/10165/10165_4.html ADDED
@@ -0,0 +1,353 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>PUMA Slides - Product Grid</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
+ width: 1080px; height: 2400px; position: relative; overflow: hidden;
10
+ background: #ffffff; color: #111;
11
+ }
12
+
13
+ /* Status bar */
14
+ .status-bar {
15
+ height: 92px;
16
+ padding: 0 36px;
17
+ display: flex; align-items: center; justify-content: space-between;
18
+ font-weight: 600; font-size: 32px;
19
+ }
20
+ .status-icons { display: flex; gap: 18px; }
21
+ .dot {
22
+ width: 26px; height: 26px; border-radius: 50%; background: #3A3A3A;
23
+ opacity: .7;
24
+ }
25
+ .sys-icons { display: flex; gap: 22px; align-items: center; }
26
+ .sys-icons .icon-cell { width: 28px; height: 28px; background: #1f1f1f; border-radius: 6px; opacity: .85; }
27
+
28
+ /* Top app bar */
29
+ .app-bar {
30
+ height: 100px; padding: 0 36px;
31
+ display: flex; align-items: center; justify-content: space-between;
32
+ }
33
+ .left-group, .right-group { display: flex; align-items: center; gap: 26px; }
34
+ .icon-btn {
35
+ width: 64px; height: 64px; border-radius: 14px;
36
+ display: flex; align-items: center; justify-content: center;
37
+ background: #f4f4f4; border: 1px solid #e0e0e0;
38
+ }
39
+ .icon-btn svg { width: 34px; height: 34px; stroke: #111; }
40
+ .cart-badge {
41
+ position: absolute; top: -10px; right: -10px;
42
+ background: #111; color: #fff; font-size: 28px; font-weight: 700;
43
+ width: 42px; height: 42px; border-radius: 21px; display: flex; align-items: center; justify-content: center;
44
+ }
45
+
46
+ /* Title and sort */
47
+ .title-row {
48
+ padding: 10px 36px 12px 36px;
49
+ display: flex; align-items: center; justify-content: space-between;
50
+ }
51
+ .title-row .title { font-size: 44px; font-weight: 800; letter-spacing: .5px; }
52
+ .title-row .sort { font-size: 36px; font-weight: 700; color: #111; display: flex; align-items: center; gap: 16px; }
53
+ .sort svg { width: 30px; height: 30px; stroke: #111; }
54
+
55
+ /* Product grid */
56
+ .content {
57
+ padding: 18px 36px 0 36px;
58
+ height: 1900px;
59
+ overflow: hidden;
60
+ }
61
+ .grid {
62
+ display: grid;
63
+ grid-template-columns: 1fr 1fr;
64
+ gap: 28px 28px;
65
+ }
66
+ .card {
67
+ border-radius: 18px;
68
+ overflow: visible;
69
+ }
70
+ .img-wrap {
71
+ position: relative;
72
+ width: 100%; height: 440px;
73
+ border-radius: 18px;
74
+ background: #E0E0E0; border: 1px solid #BDBDBD;
75
+ display: flex; align-items: center; justify-content: center; color: #757575; font-size: 28px; text-align: center; padding: 16px;
76
+ }
77
+ .badge-new {
78
+ position: absolute; top: 18px; left: 18px;
79
+ background: #111; color: #fff; font-weight: 800; font-size: 28px; padding: 10px 16px; border-radius: 10px;
80
+ }
81
+ .heart {
82
+ position: absolute; top: 18px; right: 18px; width: 52px; height: 52px;
83
+ border-radius: 50%; background: #fff; border: 2px solid #e5e5e5;
84
+ display: flex; align-items: center; justify-content: center;
85
+ }
86
+ .heart svg { width: 28px; height: 28px; fill: none; stroke: #111; stroke-width: 2.2; }
87
+
88
+ .colors-row {
89
+ display: flex; align-items: center; gap: 14px;
90
+ font-size: 32px; color: #222; margin-top: 22px;
91
+ }
92
+ .chev {
93
+ width: 26px; height: 26px;
94
+ }
95
+
96
+ .title-price {
97
+ margin-top: 8px;
98
+ }
99
+ .prod-title { font-size: 40px; font-weight: 800; }
100
+ .price { font-size: 40px; font-weight: 800; margin-top: 12px; }
101
+ .promo {
102
+ margin-top: 16px; font-size: 34px; line-height: 1.38; color: #8A3A27; font-weight: 700;
103
+ }
104
+
105
+ /* Bottom navigation */
106
+ .bottom-nav {
107
+ position: absolute; left: 0; bottom: 0; width: 100%;
108
+ height: 210px; background: #fff; border-top: 1px solid #e6e6e6;
109
+ display: flex; align-items: center; justify-content: space-around;
110
+ }
111
+ .nav-item {
112
+ display: flex; flex-direction: column; align-items: center; gap: 14px; color: #777; font-size: 32px; font-weight: 800;
113
+ }
114
+ .nav-item .nav-icon {
115
+ width: 64px; height: 64px; border-radius: 14px; border: 1px solid #dcdcdc; display: flex; align-items: center; justify-content: center; background: #f7f7f7;
116
+ }
117
+ .nav-item.active { color: #111; }
118
+ .nav-item.active .nav-icon { background: #111; border-color: #111; }
119
+ .nav-item.active .nav-icon svg { stroke: #fff; }
120
+ .nav-item .nav-icon svg { width: 36px; height: 36px; stroke: #111; }
121
+
122
+ /* Small helper colors for selected hearts etc */
123
+ .muted { color: #666; }
124
+ </style>
125
+ </head>
126
+ <body>
127
+ <div id="render-target">
128
+
129
+ <!-- Status bar -->
130
+ <div class="status-bar">
131
+ <div style="display:flex; align-items:center; gap:28px;">
132
+ <div>10:17</div>
133
+ <div class="status-icons">
134
+ <div class="dot"></div>
135
+ <div class="dot"></div>
136
+ <div class="dot"></div>
137
+ <div class="dot" style="opacity:.5;"></div>
138
+ </div>
139
+ </div>
140
+ <div class="sys-icons">
141
+ <div class="icon-cell"></div>
142
+ <div class="icon-cell"></div>
143
+ <div class="icon-cell"></div>
144
+ </div>
145
+ </div>
146
+
147
+ <!-- App bar -->
148
+ <div class="app-bar">
149
+ <div class="left-group">
150
+ <div class="icon-btn" title="Back">
151
+ <svg viewBox="0 0 24 24" fill="none">
152
+ <path d="M15 6l-6 6 6 6" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/>
153
+ </svg>
154
+ </div>
155
+ </div>
156
+ <div class="right-group">
157
+ <div class="icon-btn" title="Filters">
158
+ <svg viewBox="0 0 24 24" fill="none">
159
+ <path d="M4 7h16M8 12h8M10 17h4" stroke-width="2.5" stroke-linecap="round"/>
160
+ </svg>
161
+ </div>
162
+ <div class="icon-btn" style="position:relative;" title="Cart">
163
+ <div class="cart-badge">1</div>
164
+ <svg viewBox="0 0 24 24" fill="none">
165
+ <path d="M6 6h15l-2 9H7L6 6zM7 6l-2-2H3" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"/>
166
+ </svg>
167
+ </div>
168
+ <div class="icon-btn" title="Search">
169
+ <svg viewBox="0 0 24 24" fill="none">
170
+ <circle cx="11" cy="11" r="7" stroke-width="2.2"/>
171
+ <path d="M20 20l-4-4" stroke-width="2.2" stroke-linecap="round"/>
172
+ </svg>
173
+ </div>
174
+ </div>
175
+ </div>
176
+
177
+ <!-- Title and sort -->
178
+ <div class="title-row">
179
+ <div class="title">44 PRODUCTS</div>
180
+ <div class="sort">SORT
181
+ <svg viewBox="0 0 24 24" fill="none">
182
+ <path d="M10 4l-3 3 3 3M14 20l3-3-3-3" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"/>
183
+ </svg>
184
+ </div>
185
+ </div>
186
+
187
+ <!-- Content grid -->
188
+ <div class="content">
189
+ <div class="grid">
190
+
191
+ <!-- Card 1 -->
192
+ <div class="card">
193
+ <div class="img-wrap">
194
+ <div class="badge-new">NEW</div>
195
+ <div class="heart">
196
+ <svg viewBox="0 0 24 24">
197
+ <path d="M12 21s-7-5.5-7-10.1C5 7 7.1 5 9.5 5c1.6 0 2.7.8 3.5 2 .8-1.2 1.9-2 3.5-2C18.9 5 21 7 21 10.9 21 15.5 12 21 12 21z"/>
198
+ </svg>
199
+ </div>
200
+ <div>[IMG: Shibui Cat Slides - light sage foam]</div>
201
+ </div>
202
+
203
+ <div class="colors-row">
204
+ <div>3 Colors</div>
205
+ <svg class="chev" viewBox="0 0 24 24" fill="none">
206
+ <path d="M6 9l6 6 6-6" stroke="#111" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"/>
207
+ </svg>
208
+ </div>
209
+
210
+ <div class="title-price">
211
+ <div class="prod-title">Shibui Cat Slides</div>
212
+ <div class="price">$45.00</div>
213
+ <div class="promo">
214
+ TAKE 40% OFF CLOTHING WHEN YOU BUY ANY SHOES. EXCLUSIONS APPLY. PRICE REFLECTED IN CART.
215
+ </div>
216
+ </div>
217
+ </div>
218
+
219
+ <!-- Card 2 -->
220
+ <div class="card">
221
+ <div class="img-wrap">
222
+ <div class="badge-new">NEW</div>
223
+ <div class="heart">
224
+ <svg viewBox="0 0 24 24">
225
+ <path d="M12 21s-7-5.5-7-10.1C5 7 7.1 5 9.5 5c1.6 0 2.7.8 3.5 2 .8-1.2 1.9-2 3.5-2C18.9 5 21 7 21 10.9 21 15.5 12 21 12 21z"/>
226
+ </svg>
227
+ </div>
228
+ <div>[IMG: Softride Slides - white/black strap and outsole view]</div>
229
+ </div>
230
+
231
+ <div class="colors-row">
232
+ <div>3 Colors</div>
233
+ <svg class="chev" viewBox="0 0 24 24" fill="none">
234
+ <path d="M6 9l6 6 6-6" stroke="#111" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"/>
235
+ </svg>
236
+ </div>
237
+
238
+ <div class="title-price">
239
+ <div class="prod-title">Softride Slides</div>
240
+ <div class="price">$45.00</div>
241
+ <div class="promo">
242
+ TAKE 40% OFF CLOTHING WHEN YOU BUY ANY SHOES. EXCLUSIONS APPLY. PRICE REFLECTED IN CART.
243
+ </div>
244
+ </div>
245
+ </div>
246
+
247
+ <!-- Card 3 -->
248
+ <div class="card">
249
+ <div class="img-wrap">
250
+ <div class="badge-new">NEW</div>
251
+ <div class="heart">
252
+ <svg viewBox="0 0 24 24">
253
+ <path d="M12 21s-7-5.5-7-10.1C5 7 7.1 5 9.5 5c1.6 0 2.7.8 3.5 2 .8-1.2 1.9-2 3.5-2C18.9 5 21 7 21 10.9 21 15.5 12 21 12 21z"/>
254
+ </svg>
255
+ </div>
256
+ <div>[IMG: PUMA Slides - green strap with white logo, black footbed]</div>
257
+ </div>
258
+
259
+ <div class="colors-row">
260
+ <div>5 Colors</div>
261
+ <svg class="chev" viewBox="0 0 24 24" fill="none">
262
+ <path d="M6 9l6 6 6-6" stroke="#111" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"/>
263
+ </svg>
264
+ </div>
265
+
266
+ <div class="title-price">
267
+ <div class="prod-title">Leadcat 2.0</div>
268
+ <div class="price">$45.00</div>
269
+ <div class="promo">
270
+ TAKE 40% OFF CLOTHING WHEN YOU BUY ANY SHOES. EXCLUSIONS APPLY. PRICE REFLECTED IN CART.
271
+ </div>
272
+ </div>
273
+ </div>
274
+
275
+ <!-- Card 4 -->
276
+ <div class="card">
277
+ <div class="img-wrap">
278
+ <div class="heart">
279
+ <svg viewBox="0 0 24 24">
280
+ <path d="M12 21s-7-5.5-7-10.1C5 7 7.1 5 9.5 5c1.6 0 2.7.8 3.5 2 .8-1.2 1.9-2 3.5-2C18.9 5 21 7 21 10.9 21 15.5 12 21 12 21z"/>
281
+ </svg>
282
+ </div>
283
+ <div>[IMG: Shibui Cat Slides - triple black profile]</div>
284
+ </div>
285
+
286
+ <div class="colors-row">
287
+ <div>3 Colors</div>
288
+ <svg class="chev" viewBox="0 0 24 24" fill="none">
289
+ <path d="M6 9l6 6 6-6" stroke="#111" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"/>
290
+ </svg>
291
+ </div>
292
+
293
+ <div class="title-price">
294
+ <div class="prod-title">Shibui Cat Slides</div>
295
+ <div class="price">$45.00</div>
296
+ </div>
297
+ </div>
298
+
299
+ </div>
300
+ </div>
301
+
302
+ <!-- Bottom Navigation -->
303
+ <div class="bottom-nav">
304
+ <div class="nav-item">
305
+ <div class="nav-icon">
306
+ <svg viewBox="0 0 24 24" fill="none">
307
+ <path d="M3 11l9-7 9 7v9H6v-5" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"/>
308
+ </svg>
309
+ </div>
310
+ <div>HOME</div>
311
+ </div>
312
+
313
+ <div class="nav-item">
314
+ <div class="nav-icon">
315
+ <svg viewBox="0 0 24 24" fill="none">
316
+ <path d="M7 4h10v6H7zM4 14h16v6H4z" stroke-width="2.2" stroke-linejoin="round"/>
317
+ </svg>
318
+ </div>
319
+ <div>DROPS</div>
320
+ </div>
321
+
322
+ <div class="nav-item active">
323
+ <div class="nav-icon">
324
+ <svg viewBox="0 0 24 24" fill="none">
325
+ <path d="M4 6h16l-3 12H7L4 6z" stroke-width="2.2" stroke-linejoin="round"/>
326
+ </svg>
327
+ </div>
328
+ <div>SHOP</div>
329
+ </div>
330
+
331
+ <div class="nav-item">
332
+ <div class="nav-icon">
333
+ <svg viewBox="0 0 24 24" fill="none">
334
+ <path d="M6 6h15l-2 9H7L6 6zM8 21a1 1 0 100-2 1 1 0 000 2zm9 0a1 1 0 100-2 1 1 0 000 2z" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"/>
335
+ </svg>
336
+ </div>
337
+ <div>CART</div>
338
+ </div>
339
+
340
+ <div class="nav-item">
341
+ <div class="nav-icon">
342
+ <svg viewBox="0 0 24 24" fill="none">
343
+ <circle cx="12" cy="8" r="4" stroke-width="2.2"/>
344
+ <path d="M4 20c1.8-4 6.2-4 8-4s6.2 0 8 4" stroke-width="2.2" stroke-linecap="round"/>
345
+ </svg>
346
+ </div>
347
+ <div>ACCOUNT</div>
348
+ </div>
349
+ </div>
350
+
351
+ </div>
352
+ </body>
353
+ </html>
code/10165/10165_5.html ADDED
@@ -0,0 +1,299 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
5
+ <title>PUMA Slides Grid</title>
6
+ <style>
7
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
8
+ #render-target {
9
+ width: 1080px; height: 2400px;
10
+ position: relative; overflow: hidden;
11
+ background: #ffffff; color: #111;
12
+ }
13
+
14
+ /* Status bar */
15
+ .status {
16
+ position: absolute; top: 16px; left: 36px; right: 36px; height: 44px;
17
+ display: flex; align-items: center; justify-content: space-between;
18
+ font-weight: 600; font-size: 38px;
19
+ }
20
+ .status .dots { display: flex; gap: 26px; align-items: center; }
21
+ .dot {
22
+ width: 20px; height: 20px; background:#333; border-radius:50%;
23
+ display:inline-block;
24
+ }
25
+
26
+ /* Top controls */
27
+ .top-controls {
28
+ position: absolute; top: 92px; left: 20px; right: 20px; height: 72px;
29
+ display: flex; align-items: center; justify-content: space-between;
30
+ }
31
+ .back-btn {
32
+ display: flex; align-items: center; gap: 10px; padding: 12px 16px;
33
+ }
34
+ .icon-btn {
35
+ position: relative; width: 64px; height: 64px; display: inline-flex; align-items: center; justify-content: center;
36
+ }
37
+ .badge {
38
+ position: absolute; top: -6px; right: -2px;
39
+ min-width: 36px; height: 36px; padding: 0 8px;
40
+ background: #000; color:#fff; border-radius: 18px;
41
+ font-size: 24px; line-height: 36px; text-align: center;
42
+ }
43
+
44
+ /* Section header */
45
+ .section-header {
46
+ position: absolute; top: 188px; left: 48px; right: 48px; height: 80px;
47
+ display: flex; align-items: center; justify-content: space-between;
48
+ }
49
+ .section-title {
50
+ font-size: 56px; font-weight: 800; letter-spacing: 0.5px;
51
+ }
52
+ .sort {
53
+ display: flex; align-items: center; gap: 16px; font-size: 40px; font-weight: 700;
54
+ }
55
+
56
+ /* Grid */
57
+ .grid {
58
+ position: absolute; top: 280px; left: 48px; right: 48px; bottom: 180px;
59
+ }
60
+ .cards {
61
+ display: grid;
62
+ grid-template-columns: 1fr 1fr;
63
+ column-gap: 30px; row-gap: 52px;
64
+ }
65
+ .card {
66
+ position: relative; min-height: 780px;
67
+ }
68
+ .img-wrap {
69
+ position: relative; width: 100%; height: 420px; background:#E0E0E0; border:1px solid #BDBDBD;
70
+ display:flex; align-items:center; justify-content:center; color:#757575; font-size: 34px;
71
+ }
72
+ .label-new {
73
+ position: absolute; top: -22px; left: 0;
74
+ background:#0a0a0a; color:#fff; font-size: 30px; font-weight: 800;
75
+ padding: 10px 18px;
76
+ }
77
+ .heart {
78
+ position: absolute; top: -18px; right: 10px; width: 64px; height: 64px; display:flex; align-items:center; justify-content:center;
79
+ }
80
+ .colors {
81
+ margin-top: 22px; font-size: 36px; color:#333; display:flex; align-items:center; gap: 10px;
82
+ }
83
+ .title {
84
+ margin-top: 16px; font-size: 44px; font-weight: 800;
85
+ }
86
+ .price {
87
+ margin-top: 12px; font-size: 44px; font-weight: 800;
88
+ }
89
+ .promo {
90
+ margin-top: 18px; font-size: 34px; color:#8A2D13; line-height: 1.45; font-weight: 700;
91
+ }
92
+
93
+ /* Bottom nav */
94
+ .bottom-nav {
95
+ position: absolute; left: 0; right: 0; bottom: 0; height: 160px;
96
+ border-top: 1px solid #ddd; background:#fff;
97
+ display:flex; align-items:center; justify-content: space-around;
98
+ }
99
+ .tab {
100
+ display:flex; flex-direction: column; align-items:center; justify-content:center; gap: 10px;
101
+ color:#1a1a1a; font-size: 30px; font-weight: 700;
102
+ }
103
+ .tab .cart-badge {
104
+ position: absolute; top: 8px; right: 24px; background:#b79254; color:#fff; width: 44px; height: 44px; border-radius:22px; font-size:26px; display:flex; align-items:center; justify-content:center;
105
+ }
106
+
107
+ /* Small helper icons */
108
+ svg { display: block; }
109
+ </style>
110
+ </head>
111
+ <body>
112
+ <div id="render-target">
113
+
114
+ <!-- Status bar -->
115
+ <div class="status">
116
+ <div>10:17</div>
117
+ <div class="dots">
118
+ <span class="dot"></span>
119
+ <span class="dot"></span>
120
+ <span class="dot"></span>
121
+ <span class="dot"></span>
122
+ </div>
123
+ </div>
124
+
125
+ <!-- Top controls -->
126
+ <div class="top-controls">
127
+ <div class="back-btn">
128
+ <svg width="48" height="48" viewBox="0 0 24 24">
129
+ <path d="M15 19L8 12l7-7" stroke="#111" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
130
+ </svg>
131
+ </div>
132
+ <div style="display:flex; align-items:center; gap:30px;">
133
+ <div class="icon-btn">
134
+ <svg width="44" height="44" viewBox="0 0 24 24">
135
+ <circle cx="11" cy="11" r="7" stroke="#111" stroke-width="2" fill="none"/>
136
+ <path d="M21 21l-4.5-4.5" stroke="#111" stroke-width="2" fill="none" stroke-linecap="round"/>
137
+ </svg>
138
+ </div>
139
+ <div class="icon-btn">
140
+ <svg width="44" height="44" viewBox="0 0 24 24">
141
+ <path d="M6 6h15l-2 10H7L6 6z" stroke="#111" stroke-width="2" fill="none" stroke-linejoin="round"/>
142
+ <circle cx="9" cy="20" r="1.6" fill="#111"/>
143
+ <circle cx="18" cy="20" r="1.6" fill="#111"/>
144
+ </svg>
145
+ <div class="badge">1</div>
146
+ </div>
147
+ </div>
148
+ </div>
149
+
150
+ <!-- Section header -->
151
+ <div class="section-header">
152
+ <div class="section-title">44 PRODUCTS</div>
153
+ <div class="sort">
154
+ SORT
155
+ <svg width="36" height="36" viewBox="0 0 24 24">
156
+ <path d="M7 7h10M7 12h7M7 17h4" stroke="#111" stroke-width="2" fill="none" stroke-linecap="round"/>
157
+ </svg>
158
+ </div>
159
+ </div>
160
+
161
+ <!-- Product grid -->
162
+ <div class="grid">
163
+ <div class="cards">
164
+
165
+ <!-- Card 1 -->
166
+ <div class="card">
167
+ <div class="img-wrap">
168
+ <div class="label-new">NEW</div>
169
+ <div class="heart">
170
+ <svg width="44" height="44" viewBox="0 0 24 24">
171
+ <path d="M12 21s-7.5-4.6-9-8.7C1.9 8.4 4 6 6.8 6c1.7 0 3 .9 3.8 2.1C11.4 6.9 12.8 6 14.5 6c2.8 0 4.9 2.4 3.7 6.3C19.5 16.4 12 21 12 21z" stroke="#111" stroke-width="1.6" fill="none"/>
172
+ </svg>
173
+ </div>
174
+ [IMG: Light green slide sandal]
175
+ </div>
176
+ <div class="colors">3 Colors
177
+ <svg width="22" height="22" viewBox="0 0 24 24">
178
+ <path d="M6 9l6 6 6-6" stroke="#111" stroke-width="2" fill="none" stroke-linecap="round"/>
179
+ </svg>
180
+ </div>
181
+ <div class="title">Shibui Cat Slides</div>
182
+ <div class="price">$45.00</div>
183
+ <div class="promo">
184
+ TAKE 40% OFF CLOTHING WHEN YOU BUY ANY SHOES. EXCLUSIONS APPLY. PRICE REFLECTED IN CART.
185
+ </div>
186
+ </div>
187
+
188
+ <!-- Card 2 -->
189
+ <div class="card">
190
+ <div class="img-wrap">
191
+ <div class="label-new">NEW</div>
192
+ <div class="heart">
193
+ <svg width="44" height="44" viewBox="0 0 24 24">
194
+ <path d="M12 21s-7.5-4.6-9-8.7C1.9 8.4 4 6 6.8 6c1.7 0 3 .9 3.8 2.1C11.4 6.9 12.8 6 14.5 6c2.8 0 4.9 2.4 3.7 6.3C19.5 16.4 12 21 12 21z" stroke="#111" stroke-width="1.6" fill="none"/>
195
+ </svg>
196
+ </div>
197
+ [IMG: White & gray PUMA slide, top & sole]
198
+ </div>
199
+ <div class="colors">3 Colors
200
+ <svg width="22" height="22" viewBox="0 0 24 24">
201
+ <path d="M6 9l6 6 6-6" stroke="#111" stroke-width="2" fill="none" stroke-linecap="round"/>
202
+ </svg>
203
+ </div>
204
+ <div class="title">Softride Slides</div>
205
+ <div class="price">$45.00</div>
206
+ <div class="promo">
207
+ TAKE 40% OFF CLOTHING WHEN YOU BUY ANY SHOES. EXCLUSIONS APPLY. PRICE REFLECTED IN CART.
208
+ </div>
209
+ </div>
210
+
211
+ <!-- Card 3 -->
212
+ <div class="card">
213
+ <div class="img-wrap">
214
+ <div class="label-new">NEW</div>
215
+ <div class="heart">
216
+ <svg width="44" height="44" viewBox="0 0 24 24">
217
+ <path d="M12 21s-7.5-4.6-9-8.7C1.9 8.4 4 6 6.8 6c1.7 0 3 .9 3.8 2.1C11.4 6.9 12.8 6 14.5 6c2.8 0 4.9 2.4 3.7 6.3C19.5 16.4 12 21 12 21z" stroke="#111" stroke-width="1.6" fill="none"/>
218
+ </svg>
219
+ </div>
220
+ [IMG: Olive/black PUMA slide with logo]
221
+ </div>
222
+ <div class="colors">5 Colors
223
+ <svg width="22" height="22" viewBox="0 0 24 24">
224
+ <path d="M6 9l6 6 6-6" stroke="#111" stroke-width="2" fill="none" stroke-linecap="round"/>
225
+ </svg>
226
+ </div>
227
+ <div class="title">Leadcat Slides</div>
228
+ <div class="price">$35.00</div>
229
+ <div class="promo">
230
+ TAKE 40% OFF CLOTHING WHEN YOU BUY ANY SHOES. EXCLUSIONS APPLY. PRICE REFLECTED IN CART.
231
+ </div>
232
+ </div>
233
+
234
+ <!-- Card 4 -->
235
+ <div class="card">
236
+ <div class="img-wrap">
237
+ <div class="heart">
238
+ <svg width="44" height="44" viewBox="0 0 24 24">
239
+ <path d="M12 21s-7.5-4.6-9-8.7C1.9 8.4 4 6 6.8 6c1.7 0 3 .9 3.8 2.1C11.4 6.9 12.8 6 14.5 6c2.8 0 4.9 2.4 3.7 6.3C19.5 16.4 12 21 12 21z" stroke="#111" stroke-width="1.6" fill="none"/>
240
+ </svg>
241
+ </div>
242
+ [IMG: Black molded slide sandal]
243
+ </div>
244
+ <div class="colors">3 Colors
245
+ <svg width="22" height="22" viewBox="0 0 24 24">
246
+ <path d="M6 9l6 6 6-6" stroke="#111" stroke-width="2" fill="none" stroke-linecap="round"/>
247
+ </svg>
248
+ </div>
249
+ <div class="title">Shibui Cat Slides</div>
250
+ <div class="price">$45.00</div>
251
+ <div class="promo">
252
+ TAKE 40% OFF CLOTHING WHEN YOU BUY ANY SHOES. EXCLUSIONS APPLY. PRICE REFLECTED IN CART.
253
+ </div>
254
+ </div>
255
+
256
+ </div>
257
+ </div>
258
+
259
+ <!-- Bottom navigation -->
260
+ <div class="bottom-nav">
261
+ <div class="tab">
262
+ <svg width="48" height="48" viewBox="0 0 24 24">
263
+ <path d="M3 11l9-7 9 7v9H3z" stroke="#111" stroke-width="2" fill="none" stroke-linejoin="round"/>
264
+ </svg>
265
+ <div>HOME</div>
266
+ </div>
267
+ <div class="tab">
268
+ <svg width="48" height="48" viewBox="0 0 24 24">
269
+ <path d="M4 4h16v6H4zM7 14h10v6H7z" stroke="#111" stroke-width="2" fill="none"/>
270
+ </svg>
271
+ <div>DROPS</div>
272
+ </div>
273
+ <div class="tab" style="color:#000;">
274
+ <svg width="48" height="48" viewBox="0 0 24 24">
275
+ <path d="M6 6h12M6 12h12M6 18h12" stroke="#111" stroke-width="2" fill="none" stroke-linecap="round"/>
276
+ </svg>
277
+ <div>SHOP</div>
278
+ </div>
279
+ <div class="tab" style="position:relative;">
280
+ <svg width="48" height="48" viewBox="0 0 24 24">
281
+ <path d="M6 6h15l-2 10H7L6 6z" stroke="#111" stroke-width="2" fill="none"/>
282
+ <circle cx="9" cy="20" r="1.6" fill="#111"/>
283
+ <circle cx="18" cy="20" r="1.6" fill="#111"/>
284
+ </svg>
285
+ <div>CART</div>
286
+ </div>
287
+ <div class="tab" style="position:relative;">
288
+ <svg width="48" height="48" viewBox="0 0 24 24">
289
+ <circle cx="12" cy="7" r="4" stroke="#111" stroke-width="2" fill="none"/>
290
+ <path d="M4 21c0-4 4-6 8-6s8 2 8 6" stroke="#111" stroke-width="2" fill="none" stroke-linecap="round"/>
291
+ </svg>
292
+ <div>ACCOUNT</div>
293
+ <div class="cart-badge">2</div>
294
+ </div>
295
+ </div>
296
+
297
+ </div>
298
+ </body>
299
+ </html>
code/10166/10166_1.html ADDED
@@ -0,0 +1,231 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>Journal UI</title>
6
+ <style>
7
+ body { margin:0; padding:0; background:transparent; font-family: Arial, Helvetica, sans-serif; }
8
+ #render-target {
9
+ width:1080px; height:2400px; position:relative; overflow:hidden;
10
+ background:#ffffff; border-radius:0; box-shadow:none;
11
+ }
12
+ /* Status bar */
13
+ .status-bar {
14
+ position:absolute; top:20px; left:30px; right:30px; height:60px;
15
+ display:flex; align-items:center; justify-content:space-between; color:#333;
16
+ font-size:32px;
17
+ }
18
+ .status-left { display:flex; align-items:center; gap:18px; }
19
+ .status-right { display:flex; align-items:center; gap:20px; }
20
+ .icon { width:34px; height:34px; display:inline-flex; align-items:center; justify-content:center; }
21
+ .icon svg { width:100%; height:100%; }
22
+ /* Header area */
23
+ .top-actions {
24
+ position:absolute; top:160px; right:40px; display:flex; align-items:center; gap:26px;
25
+ }
26
+ .circle-btn {
27
+ width:88px; height:88px; border-radius:50%; background:#f1f3f4; display:flex; align-items:center; justify-content:center;
28
+ }
29
+ .avatar {
30
+ width:88px; height:88px; border-radius:50%; background:#cfd8dc; color:#37474f; font-weight:bold; font-size:40px;
31
+ display:flex; align-items:center; justify-content:center;
32
+ }
33
+ .title {
34
+ position:absolute; top:240px; left:60px; font-size:112px; font-weight:500; color:#202124;
35
+ }
36
+ /* Today row */
37
+ .today-row {
38
+ position:absolute; top:420px; left:60px; right:60px; display:flex; align-items:center; justify-content:space-between;
39
+ border-bottom:1px solid #e0e0e0; padding-bottom:24px;
40
+ }
41
+ .today-left { display:flex; align-items:center; gap:30px; }
42
+ .today-label { font-size:44px; color:#202124; }
43
+ .metrics { display:flex; align-items:center; gap:34px; color:#5f6368; font-size:34px; }
44
+ .metrics .blue { color:#1a73e8; }
45
+ .metrics .green { color:#14a37f; }
46
+ .ring {
47
+ width:60px; height:60px; border-radius:50%;
48
+ display:flex; align-items:center; justify-content:center;
49
+ }
50
+ /* List items */
51
+ .list { position:absolute; top:520px; left:60px; right:60px; }
52
+ .entry {
53
+ display:flex; justify-content:space-between; align-items:center; padding:38px 0; border-bottom:1px solid #eeeeee;
54
+ }
55
+ .entry:last-child { border-bottom:none; }
56
+ .entry .left { display:flex; flex-direction:column; gap:16px; }
57
+ .time-row { display:flex; align-items:center; gap:16px; color:#5f6368; font-size:32px; }
58
+ .entry-title { font-size:48px; color:#202124; }
59
+ .sub { font-size:34px; color:#5f6368; }
60
+ .entry .right .big-circle {
61
+ width:132px; height:132px; border-radius:50%; background:#e8f0fe; display:flex; align-items:center; justify-content:center;
62
+ }
63
+ /* Bottom FAB */
64
+ .fab {
65
+ position:absolute; bottom:240px; right:60px; width:128px; height:128px; border-radius:50%;
66
+ background:#ffffff; box-shadow:0 8px 18px rgba(0,0,0,0.16); display:flex; align-items:center; justify-content:center;
67
+ }
68
+ /* Bottom nav */
69
+ .bottom-nav {
70
+ position:absolute; bottom:76px; left:0; right:0; height:160px; background:#ffffff; border-top:1px solid #e0e0e0;
71
+ display:flex; align-items:center; justify-content:space-around;
72
+ }
73
+ .nav-item { display:flex; flex-direction:column; align-items:center; gap:12px; color:#5f6368; font-size:28px; }
74
+ .nav-item.active { color:#1a73e8; font-weight:600; }
75
+ .nav-icon { width:56px; height:56px; }
76
+ /* Home indicator */
77
+ .home-indicator {
78
+ position:absolute; bottom:22px; left:50%; transform:translateX(-50%);
79
+ width:400px; height:12px; background:#9e9e9e; border-radius:6px;
80
+ }
81
+ </style>
82
+ </head>
83
+ <body>
84
+ <div id="render-target">
85
+ <!-- Status bar -->
86
+ <div class="status-bar">
87
+ <div class="status-left">
88
+ <div>1:12</div>
89
+ <div class="icon">
90
+ <svg viewBox="0 0 24 24"><path d="M6 15c0-3 2.5-5.5 5.5-5.5 1.1 0 2.1.3 3 .9C15 8 16.7 7 18.5 7 21 7 23 9 23 11.5S21 16 18.5 16H7.5C6.7 16 6 15.6 6 15z" fill="#9e9e9e"/></svg>
91
+ </div>
92
+ </div>
93
+ <div class="status-right">
94
+ <div class="icon">
95
+ <svg viewBox="0 0 24 24"><path d="M2 18h20l-2.5-6.5c-.3-.8-1-1.5-1.9-1.5H6.4c-.9 0-1.7.6-2 1.5L2 18z" fill="#757575"/></svg>
96
+ </div>
97
+ <div class="icon">
98
+ <svg viewBox="0 0 24 24"><path d="M16 4v16h-2V4h2zm4 6v6h-2v-6h2zM8 10v10H6V10h2zM4 14v6H2v-6h2z" fill="#757575"/></svg>
99
+ </div>
100
+ </div>
101
+ </div>
102
+
103
+ <!-- Top actions -->
104
+ <div class="top-actions">
105
+ <div class="circle-btn">
106
+ <svg viewBox="0 0 24 24">
107
+ <path d="M12 5v4l3-3M12 19v-4l-3 3M5 12h4l-3-3M19 12h-4l3 3" stroke="#5f6368" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
108
+ </svg>
109
+ </div>
110
+ <div class="avatar">C</div>
111
+ </div>
112
+
113
+ <!-- Title -->
114
+ <div class="title">Journal</div>
115
+
116
+ <!-- Today row -->
117
+ <div class="today-row">
118
+ <div class="today-left">
119
+ <div class="today-label">Today</div>
120
+ <div class="metrics">
121
+ <span class="blue">
122
+ <svg class="icon" viewBox="0 0 24 24">
123
+ <path d="M6 18c1.2-2.8 3.2-4.5 6-5.1 1.6-.4 2.7-1.4 3.2-3 .3-1.1-.4-2.2-1.5-2.5-1.5-.4-2.9.6-3.3 2.1l-.5 1.7-2.5.8C5.7 12.5 4.5 14.3 4 16l2 .1z" fill="#1a73e8"/>
124
+ </svg>
125
+ 8,066 steps
126
+ </span>
127
+ <span class="green">
128
+ <svg class="icon" viewBox="0 0 24 24">
129
+ <path d="M12.1 21s-7.1-4.9-7.1-9.4C5 8.4 7.3 6 10.1 6c1.3 0 2.6.6 3.4 1.6C14.3 6.6 15.6 6 16.9 6c2.8 0 5.1 2.4 5.1 5.6 0 4.5-7.1 9.4-7.1 9.4-.6.4-1.2.4-1.8 0z" fill="#14a37f"/>
130
+ </svg>
131
+ 117 pts
132
+ </span>
133
+ </div>
134
+ </div>
135
+ <div class="ring">
136
+ <svg viewBox="0 0 48 48">
137
+ <circle cx="24" cy="24" r="20" stroke="#e0e0e0" stroke-width="6" fill="none"/>
138
+ <path d="M24 4a20 20 0 1 1 0 40" stroke="#1a73e8" stroke-width="6" fill="none" stroke-linecap="round"/>
139
+ </svg>
140
+ </div>
141
+ </div>
142
+
143
+ <!-- Entries list -->
144
+ <div class="list">
145
+ <!-- Entry 1 -->
146
+ <div class="entry">
147
+ <div class="left">
148
+ <div class="time-row">
149
+ <svg class="icon" viewBox="0 0 24 24">
150
+ <path d="M6 19l3-5 2 2 3-6 4 3" stroke="#757575" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
151
+ </svg>
152
+ <span>11:01 AM</span>
153
+ </div>
154
+ <div class="entry-title">Lunch dance</div>
155
+ <div class="sub">2h 11m • <span style="color:#14a37f;">117 pts</span></div>
156
+ </div>
157
+ <div class="right">
158
+ <div class="big-circle">
159
+ <svg viewBox="0 0 24 24" width="80" height="80">
160
+ <path d="M8 5c1 0 2 .8 2 1.8S9 9 8 9s-2-.8-2-1.8S7 5 8 5zm6 2l-2 3 2 1-3 4-2-1 1-3-3-1 1-2 3 1 1-2 2 0z" fill="#1a73e8"/>
161
+ </svg>
162
+ </div>
163
+ </div>
164
+ </div>
165
+ <!-- Entry 2 -->
166
+ <div class="entry">
167
+ <div class="left">
168
+ <div class="time-row">
169
+ <svg class="icon" viewBox="0 0 24 24">
170
+ <path d="M6 19l3-5 2 2 3-6 4 3" stroke="#757575" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
171
+ </svg>
172
+ <span>10:00 AM</span>
173
+ </div>
174
+ <div class="entry-title">Dancing</div>
175
+ <div class="sub">1h 1m</div>
176
+ </div>
177
+ <div class="right">
178
+ <div class="big-circle">
179
+ <svg viewBox="0 0 24 24" width="80" height="80">
180
+ <path d="M8 5c1 0 2 .8 2 1.8S9 9 8 9s-2-.8-2-1.8S7 5 8 5zm6 2l-2 3 2 1-3 4-2-1 1-3-3-1 1-2 3 1 1-2 2 0z" fill="#1a73e8"/>
181
+ </svg>
182
+ </div>
183
+ </div>
184
+ </div>
185
+ </div>
186
+
187
+ <!-- Floating action button -->
188
+ <div class="fab">
189
+ <svg viewBox="0 0 100 100" width="64" height="64">
190
+ <rect x="46" y="18" width="8" height="64" fill="#34a853"/>
191
+ <rect x="18" y="46" width="64" height="8" fill="#4285f4"/>
192
+ <rect x="46" y="18" width="8" height="24" fill="#ea4335"/>
193
+ <rect x="70" y="46" width="12" height="8" fill="#fbbc05"/>
194
+ </svg>
195
+ </div>
196
+
197
+ <!-- Bottom navigation -->
198
+ <div class="bottom-nav">
199
+ <div class="nav-item">
200
+ <svg class="nav-icon" viewBox="0 0 24 24">
201
+ <circle cx="12" cy="12" r="9" stroke="#5f6368" stroke-width="2" fill="none"/>
202
+ <path d="M12 7v6l4 2" stroke="#5f6368" stroke-width="2" fill="none" stroke-linecap="round"/>
203
+ </svg>
204
+ </div>
205
+ <div class="nav-item active">
206
+ <svg class="nav-icon" viewBox="0 0 24 24">
207
+ <rect x="6" y="4" width="12" height="16" rx="2" ry="2" fill="#1a73e8"/>
208
+ <line x1="9" y1="8" x2="15" y2="8" stroke="#ffffff" stroke-width="2"/>
209
+ <line x1="9" y1="12" x2="15" y2="12" stroke="#ffffff" stroke-width="2"/>
210
+ <line x1="9" y1="16" x2="15" y2="16" stroke="#ffffff" stroke-width="2"/>
211
+ </svg>
212
+ <div>Journal</div>
213
+ </div>
214
+ <div class="nav-item">
215
+ <svg class="nav-icon" viewBox="0 0 24 24">
216
+ <path d="M4 6h16M4 12h16M4 18h12" stroke="#5f6368" stroke-width="2" fill="none" stroke-linecap="round"/>
217
+ </svg>
218
+ </div>
219
+ <div class="nav-item">
220
+ <svg class="nav-icon" viewBox="0 0 24 24">
221
+ <circle cx="12" cy="8" r="4" fill="#5f6368"/>
222
+ <path d="M4 20c1.5-4 6-6 8-6s6.5 2 8 6" fill="none" stroke="#5f6368" stroke-width="2" stroke-linecap="round"/>
223
+ </svg>
224
+ </div>
225
+ </div>
226
+
227
+ <!-- Home indicator -->
228
+ <div class="home-indicator"></div>
229
+ </div>
230
+ </body>
231
+ </html>
code/10166/10166_5.html ADDED
@@ -0,0 +1,255 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <title>Mobile UI - Gmail Compose</title>
6
+ <style>
7
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
8
+ #render-target {
9
+ width: 1080px;
10
+ height: 2400px;
11
+ position: relative;
12
+ overflow: hidden;
13
+ background: #ffffff;
14
+ }
15
+
16
+ /* Status bar */
17
+ .status-bar {
18
+ height: 96px;
19
+ padding: 0 32px;
20
+ display: flex;
21
+ align-items: center;
22
+ justify-content: space-between;
23
+ color: #212121;
24
+ font-size: 34px;
25
+ }
26
+ .status-left { display: flex; align-items: center; gap: 16px; }
27
+ .status-right { display: flex; align-items: center; gap: 22px; }
28
+ .icon {
29
+ width: 40px; height: 40px;
30
+ }
31
+
32
+ /* Toolbar */
33
+ .toolbar {
34
+ height: 170px;
35
+ display: flex;
36
+ align-items: center;
37
+ padding: 0 24px;
38
+ border-bottom: 1px solid #e0e0e0;
39
+ }
40
+ .toolbar-left { display: flex; align-items: center; gap: 20px; }
41
+ .toolbar-title {
42
+ font-size: 56px;
43
+ color: #212121;
44
+ font-weight: 600;
45
+ letter-spacing: 0.2px;
46
+ }
47
+ .toolbar-actions {
48
+ margin-left: auto;
49
+ display: flex;
50
+ align-items: center;
51
+ gap: 28px;
52
+ }
53
+ .toolbar .icon { width: 48px; height: 48px; color: #424242; }
54
+
55
+ /* Content */
56
+ .content { padding: 24px 48px; }
57
+ .row {
58
+ display: flex;
59
+ align-items: center;
60
+ padding: 26px 0;
61
+ border-bottom: 1px solid #eeeeee;
62
+ }
63
+ .label {
64
+ color: #757575;
65
+ font-size: 34px;
66
+ min-width: 120px;
67
+ }
68
+ .value {
69
+ color: #212121;
70
+ font-size: 38px;
71
+ }
72
+ .chevron { margin-left: auto; width: 42px; height: 42px; color: #757575; }
73
+ .placeholder-text {
74
+ color: #9e9e9e;
75
+ font-size: 42px;
76
+ padding: 32px 0 16px 0;
77
+ }
78
+
79
+ /* Attachment card */
80
+ .attachment-card {
81
+ width: calc(100% - 96px);
82
+ margin: 24px auto;
83
+ border-radius: 16px;
84
+ box-shadow: 0 2px 0 rgba(0,0,0,0.06), 0 3px 10px rgba(0,0,0,0.08);
85
+ overflow: hidden;
86
+ border: 1px solid #e0e0e0;
87
+ background: #f5f7fa;
88
+ }
89
+ .attachment-preview {
90
+ height: 360px;
91
+ background: #E0E0E0;
92
+ border-bottom: 1px solid #BDBDBD;
93
+ display: flex;
94
+ justify-content: center;
95
+ align-items: center;
96
+ color: #757575;
97
+ font-size: 38px;
98
+ }
99
+ .file-row {
100
+ background: #e6edf3;
101
+ padding: 22px 28px;
102
+ display: flex;
103
+ align-items: center;
104
+ gap: 24px;
105
+ }
106
+ .thumb {
107
+ width: 68px;
108
+ height: 68px;
109
+ border-radius: 8px;
110
+ background: #d84315; /* reddish image icon tile */
111
+ display: flex;
112
+ align-items: center;
113
+ justify-content: center;
114
+ }
115
+ .file-info {
116
+ display: flex;
117
+ flex-direction: column;
118
+ line-height: 1.2;
119
+ }
120
+ .file-name {
121
+ color: #212121;
122
+ font-size: 36px;
123
+ }
124
+ .file-size {
125
+ color: #607d8b;
126
+ font-size: 28px;
127
+ margin-top: 6px;
128
+ }
129
+ .file-action {
130
+ margin-left: auto;
131
+ width: 44px;
132
+ height: 44px;
133
+ color: #424242;
134
+ cursor: default;
135
+ }
136
+
137
+ /* Bottom gesture pill (visual) */
138
+ .gesture-pill {
139
+ position: absolute;
140
+ bottom: 36px;
141
+ left: 50%;
142
+ transform: translateX(-50%);
143
+ width: 360px;
144
+ height: 12px;
145
+ background: #8d8d8d;
146
+ border-radius: 12px;
147
+ opacity: 0.7;
148
+ }
149
+ </style>
150
+ </head>
151
+ <body>
152
+ <div id="render-target">
153
+
154
+ <!-- Status bar -->
155
+ <div class="status-bar">
156
+ <div class="status-left">
157
+ <div>1:15</div>
158
+ <!-- simple cloud icon -->
159
+ <svg class="icon" viewBox="0 0 24 24">
160
+ <path d="M6 15h10a4 4 0 0 0 0-8 5 5 0 0 0-9-2 4 4 0 0 0-1 8z" fill="#757575"/>
161
+ </svg>
162
+ </div>
163
+ <div class="status-right">
164
+ <!-- signal icon -->
165
+ <svg class="icon" viewBox="0 0 24 24">
166
+ <path d="M3 17h2v2H3zm4-4h2v6H7zm4-3h2v9h-2zm4-4h2v13h-2z" fill="#616161"/>
167
+ </svg>
168
+ <!-- wifi icon -->
169
+ <svg class="icon" viewBox="0 0 24 24">
170
+ <path d="M12 18l-2 2 2 2 2-2-2-2zm-6-6l2 2a6 6 0 0 1 8 0l2-2a8 8 0 0 0-12 0zm-4-4l2 2a12 12 0 0 1 16 0l2-2a14 14 0 0 0-20 0z" fill="#616161"/>
171
+ </svg>
172
+ <!-- battery icon -->
173
+ <svg class="icon" viewBox="0 0 24 24">
174
+ <rect x="2" y="6" width="18" height="12" rx="2" ry="2" fill="none" stroke="#616161" stroke-width="2"/>
175
+ <rect x="4" y="8" width="12" height="8" fill="#616161"/>
176
+ <rect x="20" y="10" width="2" height="6" fill="#616161"/>
177
+ </svg>
178
+ </div>
179
+ </div>
180
+
181
+ <!-- Toolbar -->
182
+ <div class="toolbar">
183
+ <div class="toolbar-left">
184
+ <!-- back arrow -->
185
+ <svg class="icon" viewBox="0 0 24 24">
186
+ <path d="M15 6l-6 6 6 6" fill="none" stroke="#424242" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
187
+ </svg>
188
+ <div class="toolbar-title">Compose</div>
189
+ </div>
190
+ <div class="toolbar-actions">
191
+ <!-- paperclip -->
192
+ <svg class="icon" viewBox="0 0 24 24">
193
+ <path d="M7 13l7-7a4 4 0 0 1 6 6l-8 8a6 6 0 0 1-9-9l7-7" fill="none" stroke="#424242" stroke-width="2" stroke-linecap="round"/>
194
+ </svg>
195
+ <!-- send -->
196
+ <svg class="icon" viewBox="0 0 24 24">
197
+ <path d="M4 12l16-7-5 7 5 7-16-7z" fill="#424242"/>
198
+ </svg>
199
+ <!-- more menu -->
200
+ <svg class="icon" viewBox="0 0 24 24">
201
+ <circle cx="12" cy="5" r="2" fill="#424242"/>
202
+ <circle cx="12" cy="12" r="2" fill="#424242"/>
203
+ <circle cx="12" cy="19" r="2" fill="#424242"/>
204
+ </svg>
205
+ </div>
206
+ </div>
207
+
208
+ <!-- Content -->
209
+ <div class="content">
210
+ <div class="row">
211
+ <div class="label">From</div>
212
+ <div class="value">dbwscratch.test.id8@gmail.com</div>
213
+ </div>
214
+
215
+ <div class="row">
216
+ <div class="label">To</div>
217
+ <div class="value" style="color:#9e9e9e;">|</div>
218
+ <!-- dropdown chevron -->
219
+ <svg class="chevron" viewBox="0 0 24 24">
220
+ <path d="M6 9l6 6 6-6" fill="none" stroke="#757575" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
221
+ </svg>
222
+ </div>
223
+
224
+ <div class="row">
225
+ <div class="label">Subject</div>
226
+ <div class="value" style="color:#9e9e9e;">|</div>
227
+ </div>
228
+
229
+ <div class="placeholder-text">Compose email</div>
230
+
231
+ <!-- Attachment card -->
232
+ <div class="attachment-card">
233
+ <div class="attachment-preview">[IMG: 1h Active time graphic]</div>
234
+ <div class="file-row">
235
+ <div class="thumb">
236
+ <svg viewBox="0 0 24 24" width="28" height="28">
237
+ <rect x="3" y="5" width="18" height="14" rx="2" fill="#ffffff"/>
238
+ <path d="M6 15l3-3 4 4 4-6 3 5H6z" fill="#c62828"/>
239
+ </svg>
240
+ </div>
241
+ <div class="file-info">
242
+ <div class="file-name">temp_shared_bi...419875146.png</div>
243
+ <div class="file-size">24 KB</div>
244
+ </div>
245
+ <svg class="file-action" viewBox="0 0 24 24">
246
+ <path d="M6 6l12 12M18 6L6 18" stroke="#424242" stroke-width="2" stroke-linecap="round"/>
247
+ </svg>
248
+ </div>
249
+ </div>
250
+ </div>
251
+
252
+ <div class="gesture-pill"></div>
253
+ </div>
254
+ </body>
255
+ </html>
code/10166/10166_6.html ADDED
@@ -0,0 +1,272 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Compose Email UI</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: #ffffff;
19
+ font-family: Roboto, Arial, sans-serif;
20
+ color: #212121;
21
+ }
22
+
23
+ /* Status bar */
24
+ .status-bar {
25
+ position: absolute;
26
+ top: 0;
27
+ left: 0;
28
+ width: 100%;
29
+ height: 96px;
30
+ display: flex;
31
+ align-items: center;
32
+ justify-content: space-between;
33
+ padding: 0 32px;
34
+ box-sizing: border-box;
35
+ color: #2e2e2e;
36
+ font-size: 36px;
37
+ letter-spacing: 0.5px;
38
+ }
39
+ .status-left, .status-right {
40
+ display: flex;
41
+ align-items: center;
42
+ gap: 16px;
43
+ }
44
+ .status-icon svg {
45
+ width: 38px;
46
+ height: 38px;
47
+ fill: #707070;
48
+ stroke: #707070;
49
+ }
50
+
51
+ /* App bar */
52
+ .app-bar {
53
+ position: absolute;
54
+ top: 96px;
55
+ left: 0;
56
+ width: 100%;
57
+ height: 160px;
58
+ display: flex;
59
+ align-items: center;
60
+ padding: 0 24px;
61
+ box-sizing: border-box;
62
+ border-bottom: 1px solid #ECECEC;
63
+ }
64
+ .app-left {
65
+ display: flex;
66
+ align-items: center;
67
+ gap: 24px;
68
+ }
69
+ .app-title {
70
+ font-size: 54px;
71
+ font-weight: 500;
72
+ color: #222;
73
+ }
74
+ .app-right {
75
+ margin-left: auto;
76
+ display: flex;
77
+ align-items: center;
78
+ gap: 24px;
79
+ }
80
+ .icon-btn svg {
81
+ width: 64px;
82
+ height: 64px;
83
+ fill: none;
84
+ stroke: #424242;
85
+ stroke-width: 3;
86
+ }
87
+ .icon-dots svg {
88
+ width: 56px;
89
+ height: 56px;
90
+ fill: #424242;
91
+ stroke: none;
92
+ }
93
+
94
+ /* Fields */
95
+ .content {
96
+ position: absolute;
97
+ top: 256px; /* status + app bar */
98
+ left: 0;
99
+ width: 100%;
100
+ box-sizing: border-box;
101
+ padding: 0 32px;
102
+ }
103
+ .field {
104
+ display: flex;
105
+ align-items: center;
106
+ padding: 24px 0;
107
+ border-bottom: 1px solid #F0F0F0;
108
+ }
109
+ .field .label {
110
+ min-width: 140px;
111
+ color: #777;
112
+ font-size: 34px;
113
+ }
114
+ .field .value {
115
+ font-size: 36px;
116
+ color: #222;
117
+ flex: 1;
118
+ }
119
+ .chevron svg {
120
+ width: 48px;
121
+ height: 48px;
122
+ stroke: #5f6368;
123
+ stroke-width: 3.2;
124
+ fill: none;
125
+ }
126
+
127
+ /* Contact suggestion */
128
+ .contact-suggestion {
129
+ display: flex;
130
+ align-items: center;
131
+ gap: 24px;
132
+ padding: 28px 0;
133
+ }
134
+ .avatar {
135
+ width: 96px;
136
+ height: 96px;
137
+ border-radius: 50%;
138
+ background: #E0627E;
139
+ color: #fff;
140
+ display: flex;
141
+ align-items: center;
142
+ justify-content: center;
143
+ font-size: 48px;
144
+ font-weight: 500;
145
+ }
146
+ .contact-text .name {
147
+ font-size: 40px;
148
+ color: #222;
149
+ }
150
+ .contact-text .email {
151
+ font-size: 32px;
152
+ color: #757575;
153
+ margin-top: 4px;
154
+ }
155
+
156
+ /* Gesture pill */
157
+ .gesture {
158
+ position: absolute;
159
+ bottom: 36px;
160
+ left: 50%;
161
+ transform: translateX(-50%);
162
+ width: 360px;
163
+ height: 12px;
164
+ background: #9E9E9E;
165
+ border-radius: 8px;
166
+ opacity: 0.9;
167
+ }
168
+ </style>
169
+ </head>
170
+ <body>
171
+ <div id="render-target">
172
+
173
+ <!-- Status bar -->
174
+ <div class="status-bar">
175
+ <div class="status-left">
176
+ <div>1:16</div>
177
+ <div class="status-icon">
178
+ <!-- Cloud icon -->
179
+ <svg viewBox="0 0 48 48">
180
+ <path d="M16 30h18a7 7 0 0 0 0-14h-1a10 10 0 0 0-19-2 7 7 0 0 0 2 16z" />
181
+ </svg>
182
+ </div>
183
+ </div>
184
+ <div class="status-right">
185
+ <!-- Wi-Fi icon -->
186
+ <div class="status-icon">
187
+ <svg viewBox="0 0 48 48">
188
+ <path d="M6 18c10-8 26-8 36 0" stroke-width="3" fill="none"/>
189
+ <path d="M12 24c7-6 17-6 24 0" stroke-width="3" fill="none"/>
190
+ <path d="M18 30c4-3 8-3 12 0" stroke-width="3" fill="none"/>
191
+ <circle cx="24" cy="36" r="2.8"/>
192
+ </svg>
193
+ </div>
194
+ <!-- Battery icon -->
195
+ <div class="status-icon">
196
+ <svg viewBox="0 0 48 48">
197
+ <rect x="6" y="12" width="32" height="24" rx="3" ry="3" fill="none"/>
198
+ <rect x="40" y="18" width="4" height="12" rx="1" ry="1"/>
199
+ <rect x="9" y="15" width="26" height="18" rx="2" ry="2"/>
200
+ </svg>
201
+ </div>
202
+ </div>
203
+ </div>
204
+
205
+ <!-- App bar -->
206
+ <div class="app-bar">
207
+ <div class="app-left">
208
+ <!-- Back arrow -->
209
+ <div class="icon-btn">
210
+ <svg viewBox="0 0 48 48">
211
+ <path d="M28 10 L14 24 L28 38" stroke-linecap="round" stroke-linejoin="round"/>
212
+ </svg>
213
+ </div>
214
+ <div class="app-title">Compose</div>
215
+ </div>
216
+ <div class="app-right">
217
+ <!-- Attach (paperclip) -->
218
+ <div class="icon-btn">
219
+ <svg viewBox="0 0 48 48">
220
+ <path d="M16 22v-6a8 8 0 1 1 16 0v14a10 10 0 0 1-20 0v-10" stroke-linecap="round" stroke-linejoin="round"/>
221
+ </svg>
222
+ </div>
223
+ <!-- Send icon -->
224
+ <div class="icon-btn">
225
+ <svg viewBox="0 0 48 48">
226
+ <path d="M6 24 L42 12 L32 24 L42 36 Z" stroke-linejoin="round"/>
227
+ </svg>
228
+ </div>
229
+ <!-- More (vertical dots) -->
230
+ <div class="icon-dots">
231
+ <svg viewBox="0 0 48 48">
232
+ <circle cx="24" cy="10" r="4"/>
233
+ <circle cx="24" cy="24" r="4"/>
234
+ <circle cx="24" cy="38" r="4"/>
235
+ </svg>
236
+ </div>
237
+ </div>
238
+ </div>
239
+
240
+ <!-- Content fields -->
241
+ <div class="content">
242
+ <div class="field">
243
+ <div class="label">From</div>
244
+ <div class="value">dbwscratch.test.id8@gmail.com</div>
245
+ </div>
246
+
247
+ <div class="field" style="border-bottom: none;">
248
+ <div class="label">To</div>
249
+ <div class="value">akashgahlot@google.com</div>
250
+ <div class="chevron">
251
+ <svg viewBox="0 0 48 48">
252
+ <path d="M10 18 L24 30 L38 18" stroke-linecap="round" stroke-linejoin="round"/>
253
+ </svg>
254
+ </div>
255
+ </div>
256
+
257
+ <!-- Contact suggestion -->
258
+ <div class="contact-suggestion">
259
+ <div class="avatar">a</div>
260
+ <div class="contact-text">
261
+ <div class="name">akashgahlot@google.com</div>
262
+ <div class="email">akashgahlot@google.com</div>
263
+ </div>
264
+ </div>
265
+ </div>
266
+
267
+ <!-- Gesture bar -->
268
+ <div class="gesture"></div>
269
+
270
+ </div>
271
+ </body>
272
+ </html>
code/10166/10166_7.html ADDED
@@ -0,0 +1,213 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Compose - Gmail Mock</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
9
+ #render-target {
10
+ width: 1080px; height: 2400px; position: relative; overflow: hidden;
11
+ background: #FFFFFF; border-radius: 28px; box-shadow: 0 8px 24px rgba(0,0,0,0.12);
12
+ }
13
+
14
+ /* Status bar */
15
+ .status-bar {
16
+ height: 96px; padding: 0 32px; display: flex; align-items: center; justify-content: space-between; color: #111;
17
+ font-size: 40px; box-sizing: border-box;
18
+ }
19
+ .status-left { display: flex; align-items: center; gap: 20px; }
20
+ .status-right { display: flex; align-items: center; gap: 28px; }
21
+
22
+ /* Top app bar */
23
+ .appbar {
24
+ height: 140px; border-bottom: 1px solid #E5E7EB; display: flex; align-items: center; padding: 0 24px; box-sizing: border-box;
25
+ position: relative;
26
+ }
27
+ .appbar .title {
28
+ position: absolute; left: 120px; right: 220px; text-align: left; font-size: 56px; font-weight: 600; color: #1F2937;
29
+ }
30
+ .appbar .actions { margin-left: auto; display: flex; align-items: center; gap: 32px; }
31
+ .icon-btn { width: 96px; height: 96px; display: flex; align-items: center; justify-content: center; color: #374151; cursor: default; }
32
+ .icon { width: 54px; height: 54px; }
33
+
34
+ /* Content area */
35
+ .content { padding: 32px; }
36
+ .field-row { padding: 18px 8px; font-size: 40px; color: #374151; display: flex; align-items: center; gap: 24px; }
37
+ .field-row .label { width: 120px; color: #6B7280; }
38
+ .field-divider { height: 1px; background: #E5E7EB; margin: 8px 0 12px 0; }
39
+
40
+ /* Avatar placeholder (as per image rules) */
41
+ .avatar-placeholder {
42
+ width: 64px; height: 64px; background: #E0E0E0; border: 1px solid #BDBDBD; border-radius: 50%;
43
+ display: flex; align-items: center; justify-content: center; color: #757575; font-size: 22px;
44
+ }
45
+
46
+ /* Recipient pill */
47
+ .recipient-pill {
48
+ display: inline-flex; align-items: center; gap: 16px; padding: 12px 20px;
49
+ border: 1px solid #D1D5DB; border-radius: 999px; background: #F9FAFB; color: #111827; font-size: 40px;
50
+ }
51
+ .recipient-pill .email { max-width: 540px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
52
+ .down-icon { width: 40px; height: 40px; color: #6B7280; margin-left: 8px; }
53
+
54
+ .subject-placeholder, .compose-placeholder {
55
+ color: #6B7280; font-size: 40px;
56
+ }
57
+ .compose-placeholder { margin-top: 24px; }
58
+
59
+ /* Attachment card */
60
+ .attach-card {
61
+ width: 1000px; margin: 40px auto 0 auto; border-radius: 18px; overflow: hidden;
62
+ box-shadow: 0 6px 20px rgba(0,0,0,0.1); border: 1px solid #E5E7EB; background: #fff;
63
+ }
64
+ .attach-preview {
65
+ height: 300px; background: #E0E0E0; border-bottom: 1px solid #D6D6D6;
66
+ display: flex; align-items: center; justify-content: center; color: #757575; font-size: 40px;
67
+ }
68
+ .attach-info {
69
+ height: 140px; background: #E5EAF0; display: flex; align-items: center; padding: 0 24px; box-sizing: border-box; gap: 24px;
70
+ }
71
+ .file-icon {
72
+ width: 64px; height: 64px; border-radius: 8px; background: #E53935; display: flex; align-items: center; justify-content: center;
73
+ }
74
+ .file-details { flex: 1; display: flex; flex-direction: column; }
75
+ .file-name { font-size: 40px; color: #374151; }
76
+ .file-size { font-size: 32px; color: #6B7280; margin-top: 6px; }
77
+ .close-x {
78
+ width: 72px; height: 72px; display: flex; align-items: center; justify-content: center; color: #111827; font-size: 54px;
79
+ }
80
+
81
+ /* Bottom gesture bar */
82
+ .gesture {
83
+ position: absolute; bottom: 48px; left: 50%; transform: translateX(-50%);
84
+ width: 300px; height: 10px; background: #7A7A7A; border-radius: 8px;
85
+ }
86
+ </style>
87
+ </head>
88
+ <body>
89
+ <div id="render-target">
90
+
91
+ <!-- Status bar -->
92
+ <div class="status-bar">
93
+ <div class="status-left">
94
+ <div>1:16</div>
95
+ <div style="font-size:38px; color:#6B7280;">☁</div>
96
+ </div>
97
+ <div class="status-right">
98
+ <!-- Simple Wi-Fi icon -->
99
+ <svg class="icon" viewBox="0 0 24 24">
100
+ <path d="M3 9c4-3 14-3 18 0" stroke="#374151" stroke-width="2" fill="none" stroke-linecap="round"/>
101
+ <path d="M6 12c3-2 9-2 12 0" stroke="#374151" stroke-width="2" fill="none" stroke-linecap="round"/>
102
+ <circle cx="12" cy="16" r="2" fill="#374151"/>
103
+ </svg>
104
+ <!-- Signal bars -->
105
+ <svg class="icon" viewBox="0 0 24 24">
106
+ <rect x="3" y="14" width="3" height="7" fill="#374151"/>
107
+ <rect x="8" y="11" width="3" height="10" fill="#374151"/>
108
+ <rect x="13" y="8" width="3" height="13" fill="#374151"/>
109
+ <rect x="18" y="5" width="3" height="16" fill="#374151"/>
110
+ </svg>
111
+ <!-- Battery icon -->
112
+ <svg class="icon" viewBox="0 0 28 24">
113
+ <rect x="2" y="6" width="22" height="12" rx="2" ry="2" stroke="#374151" stroke-width="2" fill="none"/>
114
+ <rect x="24" y="9" width="3" height="6" fill="#374151"/>
115
+ <rect x="4" y="8" width="14" height="8" fill="#374151"/>
116
+ </svg>
117
+ </div>
118
+ </div>
119
+
120
+ <!-- App bar -->
121
+ <div class="appbar">
122
+ <div class="icon-btn" style="margin-right:12px;">
123
+ <svg class="icon" viewBox="0 0 24 24">
124
+ <path d="M15 6 L9 12 L15 18" stroke="currentColor" stroke-width="2.5" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
125
+ </svg>
126
+ </div>
127
+ <div class="title">Compose</div>
128
+ <div class="actions">
129
+ <div class="icon-btn">
130
+ <!-- Paperclip -->
131
+ <svg class="icon" viewBox="0 0 24 24">
132
+ <path d="M8 7v9a4 4 0 0 0 8 0V8a3 3 0 0 0-6 0v7" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round"/>
133
+ </svg>
134
+ </div>
135
+ <div class="icon-btn">
136
+ <!-- Send -->
137
+ <svg class="icon" viewBox="0 0 24 24">
138
+ <polygon points="3,12 21,6 14,12 21,18" fill="currentColor"/>
139
+ </svg>
140
+ </div>
141
+ <div class="icon-btn">
142
+ <!-- Overflow (vertical dots) -->
143
+ <svg class="icon" viewBox="0 0 24 24">
144
+ <circle cx="12" cy="5" r="2.2" fill="currentColor"/>
145
+ <circle cx="12" cy="12" r="2.2" fill="currentColor"/>
146
+ <circle cx="12" cy="19" r="2.2" fill="currentColor"/>
147
+ </svg>
148
+ </div>
149
+ </div>
150
+ </div>
151
+
152
+ <!-- Content -->
153
+ <div class="content">
154
+
155
+ <!-- From -->
156
+ <div class="field-row">
157
+ <div class="label">From</div>
158
+ <div style="color:#1F2937;">dbwscratch.test.id8@gmail.com</div>
159
+ </div>
160
+ <div class="field-divider"></div>
161
+
162
+ <!-- To -->
163
+ <div class="field-row">
164
+ <div class="label">To</div>
165
+ <div class="avatar-placeholder">[IMG: Avatar]</div>
166
+ <div class="recipient-pill">
167
+ <span class="email">akashgahlot@google.com</span>
168
+ <svg class="down-icon" viewBox="0 0 24 24">
169
+ <path d="M6 9 L12 15 L18 9" stroke="currentColor" stroke-width="2.5" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
170
+ </svg>
171
+ </div>
172
+ </div>
173
+ <div class="field-divider"></div>
174
+
175
+ <!-- Subject -->
176
+ <div class="field-row">
177
+ <div class="label"></div>
178
+ <div class="subject-placeholder">Subject</div>
179
+ </div>
180
+ <div class="field-divider"></div>
181
+
182
+ <!-- Compose body placeholder -->
183
+ <div class="field-row" style="align-items:flex-start;">
184
+ <div class="label"></div>
185
+ <div class="compose-placeholder">Compose email</div>
186
+ </div>
187
+
188
+ <!-- Attachment Card -->
189
+ <div class="attach-card">
190
+ <div class="attach-preview">[IMG: Attachment Preview]</div>
191
+ <div class="attach-info">
192
+ <div class="file-icon">
193
+ <!-- simple picture icon -->
194
+ <svg viewBox="0 0 24 24" width="34" height="34">
195
+ <rect x="3" y="4" width="18" height="16" rx="2" ry="2" fill="#FFFFFF"/>
196
+ <path d="M5 16l4-4 3 3 4-5 3 6H5z" fill="#E53935"/>
197
+ </svg>
198
+ </div>
199
+ <div class="file-details">
200
+ <div class="file-name">temp_shared_bi...419875146.png</div>
201
+ <div class="file-size">24 KB</div>
202
+ </div>
203
+ <div class="close-x">×</div>
204
+ </div>
205
+ </div>
206
+
207
+ </div>
208
+
209
+ <!-- Bottom gesture bar -->
210
+ <div class="gesture"></div>
211
+ </div>
212
+ </body>
213
+ </html>
code/10169/10169_0.html ADDED
@@ -0,0 +1,326 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Item - Added to cart</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: #f6f6f6;
15
+ }
16
+
17
+ /* Top navigation */
18
+ .topbar {
19
+ position: relative;
20
+ height: 120px;
21
+ background: #ffffff;
22
+ display: flex;
23
+ align-items: center;
24
+ padding: 0 32px;
25
+ box-shadow: 0 1px 0 rgba(0,0,0,0.06);
26
+ z-index: 1;
27
+ }
28
+ .topbar .title {
29
+ font-size: 44px;
30
+ font-weight: 600;
31
+ margin-left: 16px;
32
+ }
33
+ .topbar .actions {
34
+ margin-left: auto;
35
+ display: flex;
36
+ align-items: center;
37
+ gap: 26px;
38
+ }
39
+ .icon-btn {
40
+ width: 72px;
41
+ height: 72px;
42
+ border-radius: 36px;
43
+ background: #f0f0f0;
44
+ display: flex; align-items: center; justify-content: center;
45
+ }
46
+ .cart { position: relative; }
47
+ .badge {
48
+ position: absolute;
49
+ top: 8px; right: 6px;
50
+ width: 32px; height: 32px;
51
+ border-radius: 16px;
52
+ background: #d32f2f; color: #fff;
53
+ font-size: 22px; line-height: 32px; text-align: center;
54
+ font-weight: 700;
55
+ }
56
+
57
+ /* Content area */
58
+ .content {
59
+ position: relative;
60
+ padding: 32px;
61
+ color: #111;
62
+ }
63
+ .seller-row {
64
+ display: flex; align-items: center; gap: 22px;
65
+ margin-top: 22px;
66
+ }
67
+ .avatar {
68
+ width: 84px; height: 84px; border-radius: 42px;
69
+ background: #E0E0E0; border: 1px solid #BDBDBD;
70
+ display: flex; align-items: center; justify-content: center;
71
+ color: #757575; font-size: 22px;
72
+ }
73
+ .seller-info .name { font-size: 38px; font-weight: 700; letter-spacing: 0.2px; }
74
+ .seller-info .meta { font-size: 28px; color: #666; margin-top: 2px; }
75
+
76
+ .price-hero {
77
+ margin-top: 28px;
78
+ }
79
+ .price-hero .price {
80
+ font-size: 90px; font-weight: 800;
81
+ }
82
+ .price-hero .per { font-size: 40px; color: #444; margin-left: 8px; }
83
+ .subtext { font-size: 32px; color: #666; margin-top: 10px; }
84
+ .save { font-size: 32px; color: #c62828; margin-top: 4px; }
85
+ .ship { font-size: 36px; color: #1b5e20; font-weight: 700; margin-top: 18px; }
86
+ .when { font-size: 32px; color: #222; margin-top: 6px; }
87
+ .ontime { font-size: 30px; color: #444; margin-top: 6px; }
88
+
89
+ .cond-row {
90
+ display: flex; justify-content: space-between; align-items: center;
91
+ font-size: 34px; color: #666; margin-top: 26px;
92
+ }
93
+ .cond-row .right { color: #222; font-weight: 600; display:flex; align-items:center; gap:10px; }
94
+ .info-dot {
95
+ width: 36px; height: 36px; border-radius: 18px; border: 2px solid #999;
96
+ display:flex; align-items:center; justify-content:center; color:#666; font-size: 22px; font-weight:700;
97
+ }
98
+
99
+ .bulk-header {
100
+ display: flex; justify-content: space-between; align-items: center;
101
+ margin-top: 26px; font-size: 32px; color: #333;
102
+ }
103
+ .bulk-options {
104
+ display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
105
+ margin-top: 18px;
106
+ }
107
+ .opt {
108
+ height: 140px; border: 3px solid #3b59d4; border-radius: 16px;
109
+ display: flex; align-items: center; justify-content: center; text-align: center;
110
+ font-size: 36px; font-weight: 700; color: #3b59d4; background: #ffffff;
111
+ }
112
+ .opt.gray {
113
+ border-color: #bdbdbd; color: #333;
114
+ }
115
+
116
+ .buy-now {
117
+ margin-top: 42px;
118
+ height: 120px; border-radius: 60px;
119
+ background: #3f61f2; color: #fff; font-size: 48px; font-weight: 800;
120
+ display:flex; align-items:center; justify-content:center;
121
+ }
122
+
123
+ /* Dimming overlay for modal */
124
+ .overlay {
125
+ position: absolute; left: 0; top: 0; width: 100%; height: 100%;
126
+ background: rgba(0,0,0,0.35);
127
+ z-index: 3;
128
+ pointer-events: none;
129
+ }
130
+
131
+ /* Bottom sheet */
132
+ .bottom-sheet {
133
+ position: absolute; left: 0; bottom: 0;
134
+ width: 1080px; height: 980px;
135
+ background: #ffffff;
136
+ border-top-left-radius: 40px; border-top-right-radius: 40px;
137
+ box-shadow: 0 -14px 30px rgba(0,0,0,0.25);
138
+ z-index: 5;
139
+ padding: 28px 36px 36px 36px;
140
+ }
141
+ .sheet-head {
142
+ display: flex; align-items: center; gap: 18px;
143
+ font-size: 40px; font-weight: 700; color: #111;
144
+ padding-bottom: 18px;
145
+ }
146
+ .check-circle {
147
+ width: 44px; height: 44px; border-radius: 22px; background: #e8f5e9;
148
+ display:flex; align-items:center; justify-content:center; border: 2px solid #2e7d32;
149
+ }
150
+ .divider {
151
+ height: 1px; background: #e0e0e0; margin: 6px 0 18px 0;
152
+ }
153
+
154
+ .cart-item {
155
+ display: grid; grid-template-columns: 180px 1fr 200px; align-items: center;
156
+ gap: 24px;
157
+ }
158
+ .thumb {
159
+ width: 180px; height: 180px; background:#E0E0E0; border:1px solid #BDBDBD;
160
+ display:flex; align-items:center; justify-content:center; color:#757575; font-size:24px; text-align:center; border-radius: 8px;
161
+ }
162
+ .item-title {
163
+ font-size: 34px; color: #111; line-height: 1.24;
164
+ }
165
+ .item-price {
166
+ text-align: right; font-size: 36px; color: #111; font-weight: 700;
167
+ }
168
+
169
+ .goto {
170
+ margin-top: 40px;
171
+ height: 120px; border-radius: 60px;
172
+ background: #3f61f2; color: #fff;
173
+ display:flex; align-items:center; justify-content:center;
174
+ font-size: 50px; font-weight: 800;
175
+ }
176
+
177
+ .sponsored {
178
+ margin-top: 40px;
179
+ }
180
+ .sponsored .title {
181
+ font-size: 52px; font-weight: 800; color: #111;
182
+ margin-bottom: 22px;
183
+ }
184
+ .category {
185
+ font-size: 36px; color: #555; margin-bottom: 16px;
186
+ }
187
+ .sponsor-row {
188
+ display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
189
+ }
190
+ .sponsor-img {
191
+ height: 220px; background:#E0E0E0; border:1px solid #BDBDBD; border-radius: 16px;
192
+ display:flex; align-items:center; justify-content:center; color:#757575; font-size:26px;
193
+ }
194
+
195
+ /* Small helper text styles */
196
+ .strike { text-decoration: line-through; color: #888; }
197
+ </style>
198
+ </head>
199
+ <body>
200
+ <div id="render-target">
201
+
202
+ <!-- Top bar -->
203
+ <div class="topbar">
204
+ <div class="icon-btn">
205
+ <svg width="40" height="40" viewBox="0 0 24 24">
206
+ <path d="M15 6l-6 6 6 6" stroke="#111" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
207
+ </svg>
208
+ </div>
209
+ <div class="title">Item</div>
210
+ <div class="actions">
211
+ <div class="icon-btn">
212
+ <svg width="36" height="36" viewBox="0 0 24 24">
213
+ <circle cx="10" cy="10" r="6" stroke="#111" stroke-width="2" fill="none"/>
214
+ <path d="M21 21l-5-5" stroke="#111" stroke-width="2" fill="none" stroke-linecap="round"/>
215
+ </svg>
216
+ </div>
217
+ <div class="icon-btn cart">
218
+ <svg width="36" height="36" viewBox="0 0 24 24">
219
+ <path d="M6 6h14l-2 9H8L6 6z" stroke="#111" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
220
+ <circle cx="9" cy="20" r="1.6" fill="#111"/>
221
+ <circle cx="18" cy="20" r="1.6" fill="#111"/>
222
+ </svg>
223
+ <div class="badge">2</div>
224
+ </div>
225
+ <div class="icon-btn">
226
+ <svg width="36" height="36" viewBox="0 0 24 24">
227
+ <circle cx="6" cy="12" r="2.2" fill="#111"/>
228
+ <circle cx="12" cy="8" r="2.2" fill="#111"/>
229
+ <circle cx="18" cy="5" r="2.2" fill="#111"/>
230
+ <path d="M7.8 11l3.6-2.6M13.8 7.2l3.7-2.1" stroke="#111" stroke-width="2" fill="none" stroke-linecap="round"/>
231
+ </svg>
232
+ </div>
233
+ <div class="icon-btn">
234
+ <svg width="36" height="36" viewBox="0 0 24 24">
235
+ <circle cx="5" cy="12" r="2" fill="#111"/>
236
+ <circle cx="12" cy="12" r="2" fill="#111"/>
237
+ <circle cx="19" cy="12" r="2" fill="#111"/>
238
+ </svg>
239
+ </div>
240
+ </div>
241
+ </div>
242
+
243
+ <!-- Page content (dimmed by overlay) -->
244
+ <div class="content">
245
+ <div class="seller-row">
246
+ <div class="avatar">rinuvo</div>
247
+ <div class="seller-info">
248
+ <div class="name">Kinuvo (4U48)</div>
249
+ <div class="meta">99.5% positive feedback</div>
250
+ </div>
251
+ </div>
252
+
253
+ <div class="price-hero">
254
+ <div class="price">$279.99<span class="per">/ea</span></div>
255
+ <div class="subtext">or Best Offer</div>
256
+ <div class="save"><span class="strike">Was $329.99</span> Save $50.00 (15% off)</div>
257
+ <div class="ship">Free 2-3 day shipping</div>
258
+ <div class="when">Get it between <b>Mon, Nov 27</b> and <b>Tue, Nov 28</b></div>
259
+ <div class="ontime">Get it on time if you order in the next 7h 17m</div>
260
+ </div>
261
+
262
+ <div class="cond-row">
263
+ <div>Condition</div>
264
+ <div class="right">Excellent - Refurbished <div class="info-dot">i</div></div>
265
+ </div>
266
+
267
+ <div class="bulk-header">
268
+ <div>Bulk savings: Qty 1</div>
269
+ <div>4 available</div>
270
+ </div>
271
+ <div class="bulk-options">
272
+ <div class="opt">Buy 1<br>$279.99/ea</div>
273
+ <div class="opt gray">Buy 2<br>$277.19/ea</div>
274
+ <div class="opt gray">Buy 3<br>$274.39/ea</div>
275
+ </div>
276
+
277
+ <div class="buy-now">Buy It Now</div>
278
+
279
+ <!-- Underlying sponsored section (partially visible under the sheet) -->
280
+ <div class="sponsored" style="padding-bottom: 340px;">
281
+ <div class="title">Related sponsored items</div>
282
+ <div class="category">PC Laptops & Netbooks</div>
283
+ <div class="sponsor-row">
284
+ <div class="sponsor-img">[IMG: Rugged Laptop]</div>
285
+ <div class="sponsor-img">[IMG: Colorful Laptop]</div>
286
+ <div class="sponsor-img">[IMG: Windows Laptop]</div>
287
+ </div>
288
+ </div>
289
+ </div>
290
+
291
+ <!-- Dark overlay covering the background -->
292
+ <div class="overlay"></div>
293
+
294
+ <!-- Bottom sheet: Added to cart -->
295
+ <div class="bottom-sheet">
296
+ <div class="sheet-head">
297
+ <div class="check-circle">
298
+ <svg width="26" height="26" viewBox="0 0 24 24">
299
+ <path d="M20 6l-11 11-5-5" stroke="#2e7d32" stroke-width="2.5" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
300
+ </svg>
301
+ </div>
302
+ <div>Added to cart</div>
303
+ </div>
304
+ <div class="divider"></div>
305
+
306
+ <div class="cart-item">
307
+ <div class="thumb">[IMG: 14" Dell Latitude Laptop]</div>
308
+ <div class="item-title">14" Dell Latitude Laptop PC: Intel Core i7! Backlit Keyboard! Built in Webcam!</div>
309
+ <div class="item-price">$279.99/ea</div>
310
+ </div>
311
+
312
+ <div class="goto">Go to cart</div>
313
+
314
+ <div class="sponsored">
315
+ <div class="title">Related sponsored items</div>
316
+ <div class="category">PC Laptops & Netbooks</div>
317
+ <div class="sponsor-row">
318
+ <div class="sponsor-img">[IMG: Slim Laptop]</div>
319
+ <div class="sponsor-img">[IMG: Vibrant Display Laptop]</div>
320
+ <div class="sponsor-img">[IMG: Business Laptop]</div>
321
+ </div>
322
+ </div>
323
+ </div>
324
+ </div>
325
+ </body>
326
+ </html>
code/10169/10169_3.html ADDED
@@ -0,0 +1,145 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>eBay Loading</title>
6
+ <style>
7
+ body { margin: 0; padding: 0; background: transparent; }
8
+ #render-target {
9
+ width: 1080px;
10
+ height: 2400px;
11
+ position: relative;
12
+ overflow: hidden;
13
+ background: #FFFFFF;
14
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
15
+ }
16
+
17
+ /* Status bar */
18
+ .status-bar {
19
+ position: absolute;
20
+ top: 0;
21
+ left: 0;
22
+ width: 1080px;
23
+ height: 96px;
24
+ color: #757575;
25
+ font-size: 38px;
26
+ }
27
+ .status-time {
28
+ position: absolute;
29
+ left: 36px;
30
+ top: 24px;
31
+ letter-spacing: 0.5px;
32
+ }
33
+ .status-right {
34
+ position: absolute;
35
+ right: 32px;
36
+ top: 18px;
37
+ display: flex;
38
+ align-items: center;
39
+ gap: 28px;
40
+ }
41
+ .status-right span {
42
+ font-size: 34px;
43
+ color: #757575;
44
+ }
45
+ .icon {
46
+ width: 48px;
47
+ height: 48px;
48
+ }
49
+
50
+ /* App bar */
51
+ .app-bar {
52
+ position: absolute;
53
+ top: 108px;
54
+ left: 0;
55
+ width: 100%;
56
+ height: 140px;
57
+ display: flex;
58
+ align-items: center;
59
+ padding: 0 36px;
60
+ box-sizing: border-box;
61
+ }
62
+ .close-btn {
63
+ width: 72px;
64
+ height: 72px;
65
+ margin-right: 24px;
66
+ }
67
+ .title {
68
+ font-size: 64px;
69
+ font-weight: 700;
70
+ color: #111111;
71
+ }
72
+
73
+ /* Spinner */
74
+ .spinner {
75
+ position: absolute;
76
+ width: 200px;
77
+ height: 200px;
78
+ left: 440px; /* (1080 - 200) / 2 */
79
+ top: 1060px;
80
+ border-radius: 50%;
81
+ border: 20px solid #3F5AFE;
82
+ border-top-color: transparent;
83
+ border-right-color: transparent;
84
+ box-sizing: border-box;
85
+ }
86
+
87
+ /* Home indicator */
88
+ .home-indicator {
89
+ position: absolute;
90
+ bottom: 40px;
91
+ left: 50%;
92
+ transform: translateX(-50%);
93
+ width: 320px;
94
+ height: 16px;
95
+ background: #9E9E9E;
96
+ border-radius: 10px;
97
+ opacity: 0.8;
98
+ }
99
+ </style>
100
+ </head>
101
+ <body>
102
+ <div id="render-target">
103
+ <!-- Status Bar -->
104
+ <div class="status-bar">
105
+ <div class="status-time">2:14</div>
106
+ <div class="status-right">
107
+ <!-- Do Not Disturb -->
108
+ <svg class="icon" viewBox="0 0 24 24">
109
+ <circle cx="12" cy="12" r="9" fill="none" stroke="#757575" stroke-width="2"></circle>
110
+ <line x1="7" y1="12" x2="17" y2="12" stroke="#757575" stroke-width="2" stroke-linecap="round"></line>
111
+ </svg>
112
+ <!-- Wi-Fi -->
113
+ <svg class="icon" viewBox="0 0 24 24">
114
+ <path d="M3 10c4.5-4 13.5-4 18 0" fill="none" stroke="#757575" stroke-width="2" stroke-linecap="round"></path>
115
+ <path d="M6 13c3-2.5 9-2.5 12 0" fill="none" stroke="#757575" stroke-width="2" stroke-linecap="round"></path>
116
+ <path d="M9 16c1.5-1 4.5-1 6 0" fill="none" stroke="#757575" stroke-width="2" stroke-linecap="round"></path>
117
+ <circle cx="12" cy="19" r="1.5" fill="#757575"></circle>
118
+ </svg>
119
+ <!-- Battery -->
120
+ <svg class="icon" viewBox="0 0 28 24">
121
+ <rect x="2" y="6" width="20" height="12" rx="2" ry="2" fill="none" stroke="#757575" stroke-width="2"></rect>
122
+ <rect x="23" y="9" width="3" height="6" fill="#757575"></rect>
123
+ <rect x="4" y="8" width="16" height="8" fill="#757575"></rect>
124
+ </svg>
125
+ <span>100%</span>
126
+ </div>
127
+ </div>
128
+
129
+ <!-- App Bar -->
130
+ <div class="app-bar">
131
+ <svg class="close-btn" viewBox="0 0 24 24">
132
+ <line x1="5" y1="5" x2="19" y2="19" stroke="#111111" stroke-width="2.8" stroke-linecap="round"></line>
133
+ <line x1="19" y1="5" x2="5" y2="19" stroke="#111111" stroke-width="2.8" stroke-linecap="round"></line>
134
+ </svg>
135
+ <div class="title">eBay</div>
136
+ </div>
137
+
138
+ <!-- Loading Spinner -->
139
+ <div class="spinner"></div>
140
+
141
+ <!-- Home indicator -->
142
+ <div class="home-indicator"></div>
143
+ </div>
144
+ </body>
145
+ </html>
code/10169/10169_4.html ADDED
@@ -0,0 +1,330 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Checkout UI</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
9
+ #render-target {
10
+ width: 1080px;
11
+ height: 2400px;
12
+ position: relative;
13
+ overflow: hidden;
14
+ background: #ffffff;
15
+ }
16
+
17
+ .statusbar {
18
+ height: 110px;
19
+ padding: 24px 32px;
20
+ color: #555;
21
+ font-size: 42px;
22
+ display: flex;
23
+ align-items: center;
24
+ justify-content: space-between;
25
+ }
26
+ .status-icons { display: flex; align-items: center; gap: 28px; color: #777; }
27
+ .header {
28
+ padding: 12px 32px 24px 32px;
29
+ display: flex;
30
+ align-items: center;
31
+ gap: 28px;
32
+ }
33
+ .close-circle {
34
+ width: 92px;
35
+ height: 92px;
36
+ border-radius: 46px;
37
+ border: 2px solid #DADADA;
38
+ display: flex;
39
+ align-items: center;
40
+ justify-content: center;
41
+ }
42
+ .header-title {
43
+ font-size: 72px;
44
+ font-weight: 700;
45
+ color: #111;
46
+ }
47
+
48
+ .banner {
49
+ margin: 18px 32px 24px 32px;
50
+ background: #D8E7FF;
51
+ border-radius: 28px;
52
+ padding: 34px;
53
+ display: flex;
54
+ align-items: center;
55
+ gap: 28px;
56
+ }
57
+ .paypal-tag {
58
+ border: 2px solid #BBD0FF;
59
+ background: #F5FAFF;
60
+ color: #1E40AF;
61
+ font-weight: 700;
62
+ border-radius: 10px;
63
+ padding: 10px 18px;
64
+ font-size: 36px;
65
+ }
66
+ .banner-text {
67
+ font-size: 42px;
68
+ color: #1f2937;
69
+ }
70
+
71
+ .section {
72
+ padding: 10px 32px 0 32px;
73
+ }
74
+ .seller-label {
75
+ font-size: 40px;
76
+ font-weight: 700;
77
+ color: #222;
78
+ margin: 24px 0;
79
+ }
80
+
81
+ .item {
82
+ display: grid;
83
+ grid-template-columns: 210px 1fr auto;
84
+ gap: 28px;
85
+ align-items: start;
86
+ }
87
+ .thumb {
88
+ width: 210px;
89
+ height: 210px;
90
+ background: #E0E0E0;
91
+ border: 1px solid #BDBDBD;
92
+ border-radius: 28px;
93
+ display: flex;
94
+ align-items: center;
95
+ justify-content: center;
96
+ color: #757575;
97
+ font-size: 32px;
98
+ text-align: center;
99
+ padding: 10px;
100
+ }
101
+ .item-title {
102
+ font-size: 48px;
103
+ line-height: 1.25;
104
+ color: #222;
105
+ margin-top: 8px;
106
+ }
107
+ .price {
108
+ font-size: 52px;
109
+ font-weight: 700;
110
+ color: #222;
111
+ margin-top: 8px;
112
+ }
113
+
114
+ .meta-row {
115
+ display: flex;
116
+ align-items: center;
117
+ justify-content: space-between;
118
+ margin: 24px 0 14px 0;
119
+ }
120
+ .qty {
121
+ font-size: 40px;
122
+ color: #8A8A8A;
123
+ }
124
+ .remove {
125
+ font-size: 40px;
126
+ color: #2962FF;
127
+ text-decoration: none;
128
+ }
129
+
130
+ .delivery {
131
+ margin-top: 14px;
132
+ }
133
+ .delivery h4 {
134
+ margin: 0 0 14px 0;
135
+ font-size: 40px;
136
+ color: #333;
137
+ font-weight: 600;
138
+ }
139
+ .delivery p {
140
+ margin: 8px 0;
141
+ font-size: 38px;
142
+ color: #7a7a7a;
143
+ }
144
+ .delivery .green {
145
+ color: #2e7d32;
146
+ font-weight: 700;
147
+ }
148
+
149
+ .divider {
150
+ height: 2px;
151
+ background: #E6E6E6;
152
+ margin: 24px 0;
153
+ }
154
+ .message-row {
155
+ display: flex;
156
+ align-items: center;
157
+ justify-content: space-between;
158
+ padding: 12px 0 28px 0;
159
+ }
160
+ .message-row .label {
161
+ font-size: 42px;
162
+ color: #333;
163
+ }
164
+
165
+ .qty-input {
166
+ width: 74px;
167
+ height: 64px;
168
+ border: 2px solid #BDBDBD;
169
+ border-radius: 10px;
170
+ text-align: center;
171
+ font-size: 40px;
172
+ color: #333;
173
+ background: #fff;
174
+ }
175
+
176
+ .cta {
177
+ margin: 26px 32px;
178
+ height: 128px;
179
+ border-radius: 64px;
180
+ background: #E8E8E8;
181
+ color: #9E9E9E;
182
+ display: flex;
183
+ align-items: center;
184
+ justify-content: center;
185
+ gap: 22px;
186
+ font-size: 50px;
187
+ font-weight: 700;
188
+ }
189
+
190
+ .protection {
191
+ display: flex;
192
+ align-items: center;
193
+ gap: 20px;
194
+ padding: 8px 32px;
195
+ color: #333;
196
+ font-size: 38px;
197
+ }
198
+ .protection b { font-weight: 700; }
199
+
200
+ .bottom-bar {
201
+ position: absolute;
202
+ bottom: 30px;
203
+ left: 50%;
204
+ transform: translateX(-50%);
205
+ width: 240px;
206
+ height: 16px;
207
+ background: #CFCFCF;
208
+ border-radius: 8px;
209
+ }
210
+ </style>
211
+ </head>
212
+ <body>
213
+ <div id="render-target">
214
+
215
+ <div class="statusbar">
216
+ <div>2:14</div>
217
+ <div class="status-icons">
218
+ <!-- simple circle icon -->
219
+ <svg width="36" height="36" viewBox="0 0 24 24"><circle cx="12" cy="12" r="9" fill="none" stroke="#777" stroke-width="2"/></svg>
220
+ <!-- battery icon -->
221
+ <svg width="48" height="36" viewBox="0 0 28 18">
222
+ <rect x="1" y="3" width="22" height="12" rx="2" fill="none" stroke="#777" stroke-width="2"/>
223
+ <rect x="3" y="5" width="18" height="8" fill="#777"/>
224
+ <rect x="23" y="6" width="3" height="6" rx="1" fill="#777"/>
225
+ </svg>
226
+ <div style="font-size:38px;">100%</div>
227
+ </div>
228
+ </div>
229
+
230
+ <div class="header">
231
+ <div class="close-circle">
232
+ <svg width="48" height="48" viewBox="0 0 24 24">
233
+ <path d="M5 5 L19 19 M19 5 L5 19" stroke="#444" stroke-width="2" stroke-linecap="round"/>
234
+ </svg>
235
+ </div>
236
+ <div class="header-title">Checkout</div>
237
+ </div>
238
+
239
+ <div class="banner">
240
+ <div class="paypal-tag">PayPal</div>
241
+ <div class="banner-text">Buy with PayPal. It’s fast and simple.</div>
242
+ </div>
243
+
244
+ <!-- Seller 1 -->
245
+ <div class="section">
246
+ <div class="seller-label">Seller: jbar0907</div>
247
+
248
+ <div class="item">
249
+ <div class="thumb">[IMG: Coffee Machine]</div>
250
+ <div class="item-title">
251
+ Coffee Machine Quiet<br>
252
+ Automatic Heating One<br>
253
+ Click Portable Tea Brewer
254
+ </div>
255
+ <div class="price">$162.99</div>
256
+ </div>
257
+
258
+ <div class="meta-row">
259
+ <div class="qty">Quantity 1</div>
260
+ <a href="#" class="remove">Remove</a>
261
+ </div>
262
+
263
+ <div class="delivery">
264
+ <h4>Delivery</h4>
265
+ <p>Est. delivery: Nov 29 – Dec 4</p>
266
+ <p>USPS Ground Advantage</p>
267
+ <p>Free</p>
268
+ </div>
269
+
270
+ <div class="divider"></div>
271
+
272
+ <div class="message-row">
273
+ <div class="label">Message to seller</div>
274
+ <svg width="40" height="40" viewBox="0 0 24 24">
275
+ <path d="M9 5 L16 12 L9 19" fill="none" stroke="#555" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
276
+ </svg>
277
+ </div>
278
+ </div>
279
+
280
+ <!-- Seller 2 -->
281
+ <div class="section">
282
+ <div class="seller-label">Seller: rinuvo</div>
283
+
284
+ <div class="item">
285
+ <div class="thumb">[IMG: 14" Dell Latitude Laptop]</div>
286
+ <div class="item-title">
287
+ 14" Dell Latitude Laptop<br>
288
+ PC: Intel Core i7! Backlit<br>
289
+ Keyboard! Built in Webcam!
290
+ </div>
291
+ <div class="price">$279.99</div>
292
+ </div>
293
+
294
+ <div class="meta-row">
295
+ <div class="qty">
296
+ Quantity
297
+ <input class="qty-input" type="text" value="1">
298
+ </div>
299
+ <a href="#" class="remove">Remove</a>
300
+ </div>
301
+
302
+ <div class="delivery">
303
+ <h4>Delivery</h4>
304
+ <p class="green">Free 2-3 day shipping</p>
305
+ <p>Get it by Nov 27 – Nov 28</p>
306
+ <p>Expedited Shipping</p>
307
+ </div>
308
+ </div>
309
+
310
+ <!-- CTA -->
311
+ <div class="cta">
312
+ <svg width="44" height="44" viewBox="0 0 24 24">
313
+ <rect x="7" y="10" width="10" height="8" rx="2" fill="none" stroke="#9E9E9E" stroke-width="2"/>
314
+ <path d="M8 10 V8 a4 4 0 0 1 8 0 v2" fill="none" stroke="#9E9E9E" stroke-width="2"/>
315
+ </svg>
316
+ Confirm and pay
317
+ </div>
318
+
319
+ <div class="protection">
320
+ <svg width="48" height="48" viewBox="0 0 24 24">
321
+ <path d="M12 2 L20 6 V12c0 6-8 8-8 8s-8-2-8-8V6z" fill="#4F83FF"/>
322
+ <path d="M7 12l3 3 7-7" fill="none" stroke="#fff" stroke-width="2" stroke-linecap="round"/>
323
+ </svg>
324
+ Purchase protected by <b>eBay Money Back Guarantee</b>
325
+ </div>
326
+
327
+ <div class="bottom-bar"></div>
328
+ </div>
329
+ </body>
330
+ </html>
code/1017/1017_1.html ADDED
@@ -0,0 +1,272 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="utf-8">
4
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
5
+ <title>Item Screen Mock</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; height: 2400px;
10
+ position: relative; overflow: hidden;
11
+ background: #ffffff; color: #111;
12
+ }
13
+ .status-bar {
14
+ height: 80px; padding: 0 40px;
15
+ display: flex; align-items: center; justify-content: space-between;
16
+ color: #3c3c3c; font-weight: 600; font-size: 36px;
17
+ }
18
+ .status-icons { display: flex; gap: 24px; align-items: center; }
19
+ /* Header */
20
+ .header {
21
+ display: flex; align-items: center; justify-content: space-between;
22
+ padding: 0 32px; height: 120px;
23
+ }
24
+ .header-title { font-size: 52px; font-weight: 700; }
25
+ .icon-btns { display: flex; gap: 24px; align-items: center; }
26
+ .circle {
27
+ width: 96px; height: 96px; border-radius: 48px;
28
+ background: #F1F3F5; display: flex; align-items: center; justify-content: center;
29
+ }
30
+ /* Icons */
31
+ .icon { width: 48px; height: 48px; }
32
+ .back { width: 72px; height: 72px; display: flex; align-items: center; justify-content: center; }
33
+ .thin-blue-line { height: 6px; background: #3E6CF3; width: 92%; margin: 6px auto 12px; border-radius: 3px; }
34
+ /* Large action buttons */
35
+ .pill-btn {
36
+ margin: 24px 32px;
37
+ border: 4px solid #3E6CF3; color: #2C5AF0;
38
+ border-radius: 60px; height: 120px;
39
+ display: flex; align-items: center; justify-content: center;
40
+ font-size: 44px; font-weight: 700;
41
+ gap: 24px; background: #ffffff;
42
+ }
43
+ .heart-icon { width: 56px; height: 56px; }
44
+ /* Sections */
45
+ .section-title { font-size: 56px; font-weight: 800; padding: 32px; padding-top: 28px; }
46
+ .about-list { padding: 0 32px; }
47
+ .row {
48
+ display: flex; align-items: center;
49
+ padding: 24px 0; border-bottom: 1px solid #eee; font-size: 40px;
50
+ }
51
+ .label { width: 360px; color: #6f6f6f; }
52
+ .value { flex: 1; }
53
+ .chev { width: 36px; height: 36px; }
54
+ .desc-wrap { padding: 24px 32px; }
55
+ .desc-title { font-size: 56px; font-weight: 800; margin-bottom: 24px; }
56
+ .desc-text { font-size: 40px; line-height: 56px; color: #2f2f2f; }
57
+ .link { font-size: 42px; color: #2C5AF0; margin: 28px 32px; text-decoration: none; font-weight: 700; }
58
+ /* More like this */
59
+ .more-wrap { padding: 24px 32px; }
60
+ .more-head { display: flex; align-items: center; justify-content: space-between; }
61
+ .more-title { font-size: 56px; font-weight: 800; }
62
+ .see-all {
63
+ padding: 22px 36px; border: 2px solid #dcdcdc; border-radius: 60px;
64
+ font-size: 40px; color: #111; background: #f7f7f7;
65
+ }
66
+ .subtle { color: #6f6f6f; font-size: 40px; margin-top: 8px; }
67
+ .cards { display: flex; gap: 24px; margin-top: 24px; }
68
+ .card {
69
+ width: 492px; height: 420px; border-radius: 36px; overflow: hidden;
70
+ background: #fff; border: 1px solid #E4E4E4;
71
+ }
72
+ .img {
73
+ width: 100%; height: 100%; background: #E0E0E0; border-bottom: 1px solid #BDBDBD;
74
+ display: flex; align-items: center; justify-content: center; color: #757575; font-size: 36px;
75
+ }
76
+ /* Bottom nav */
77
+ .bottom-nav {
78
+ position: absolute; bottom: 0; left: 0; right: 0;
79
+ height: 180px; border-top: 1px solid #e6e6e6; background: #ffffff;
80
+ display: flex; align-items: center; justify-content: space-around;
81
+ }
82
+ .nav-item { display: flex; flex-direction: column; align-items: center; gap: 12px; font-size: 34px; color: #333; }
83
+ .nav-icon { width: 64px; height: 64px; }
84
+ .nav-active .nav-icon-wrap {
85
+ width: 120px; height: 120px; border-radius: 60px; background: #E9F0FF;
86
+ display: flex; align-items: center; justify-content: center;
87
+ }
88
+ .gesture {
89
+ position: absolute; bottom: 192px; left: 50%; transform: translateX(-50%);
90
+ width: 360px; height: 14px; background: #bbb; border-radius: 8px;
91
+ }
92
+ </style>
93
+ </head>
94
+ <body>
95
+ <div id="render-target">
96
+
97
+ <!-- Status Bar -->
98
+ <div class="status-bar">
99
+ <div>10:47</div>
100
+ <div class="status-icons">
101
+ <!-- Simple wifi icon -->
102
+ <svg class="icon" viewBox="0 0 24 24">
103
+ <path d="M12 18c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm-7-7c4.7-3.5 12.3-3.5 17 0l-2 2c-3.9-2.9-9.1-2.9-13 0l-2-2zm3.5 3.5c3.1-2.3 7.9-2.3 11 0l-2 2c-2.3-1.7-4.7-1.7-7 0l-2-2z" fill="#333"/>
104
+ </svg>
105
+ <!-- Battery icon -->
106
+ <svg class="icon" viewBox="0 0 24 24">
107
+ <rect x="2" y="6" width="18" height="12" rx="2" ry="2" fill="#4a4a4a"></rect>
108
+ <rect x="4" y="8" width="12" height="8" fill="#9ad16f"></rect>
109
+ <rect x="20" y="10" width="2" height="6" fill="#4a4a4a"></rect>
110
+ </svg>
111
+ </div>
112
+ </div>
113
+
114
+ <!-- Header -->
115
+ <div class="header">
116
+ <div style="display:flex; align-items:center; gap:16px;">
117
+ <div class="back">
118
+ <svg class="icon" viewBox="0 0 24 24">
119
+ <path d="M15.5 6l-7 6 7 6" stroke="#111" stroke-width="2.5" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
120
+ </svg>
121
+ </div>
122
+ <div class="header-title">Item</div>
123
+ </div>
124
+ <div class="icon-btns">
125
+ <div class="circle">
126
+ <svg class="icon" viewBox="0 0 24 24">
127
+ <circle cx="10" cy="10" r="7" stroke="#111" stroke-width="2" fill="none"></circle>
128
+ <line x1="15" y1="15" x2="21" y2="21" stroke="#111" stroke-width="2" stroke-linecap="round"></line>
129
+ </svg>
130
+ </div>
131
+ <div class="circle">
132
+ <svg class="icon" viewBox="0 0 24 24">
133
+ <path d="M7 6h14l-2 10H9L7 6zm2 16a2 2 0 002-2H7a2 2 0 002 2z" fill="#111"></path>
134
+ </svg>
135
+ </div>
136
+ <div class="circle">
137
+ <svg class="icon" viewBox="0 0 24 24">
138
+ <circle cx="6" cy="12" r="2" fill="#111"></circle>
139
+ <circle cx="12" cy="6" r="2" fill="#111"></circle>
140
+ <circle cx="18" cy="16" r="2" fill="#111"></circle>
141
+ <path d="M7.8 10.4l3.6-3.2M13.8 7.8l3.6 6.2" stroke="#111" stroke-width="2" fill="none"></path>
142
+ </svg>
143
+ </div>
144
+ <div class="circle">
145
+ <svg class="icon" viewBox="0 0 24 24">
146
+ <circle cx="5" cy="12" r="2" fill="#111"></circle>
147
+ <circle cx="12" cy="12" r="2" fill="#111"></circle>
148
+ <circle cx="19" cy="12" r="2" fill="#111"></circle>
149
+ </svg>
150
+ </div>
151
+ </div>
152
+ </div>
153
+
154
+ <div class="thin-blue-line"></div>
155
+
156
+ <!-- Action Buttons -->
157
+ <div class="pill-btn">Add to cart</div>
158
+ <div class="pill-btn">Make offer</div>
159
+ <div class="pill-btn">
160
+ <svg class="heart-icon" viewBox="0 0 24 24">
161
+ <path d="M12 21s-7-4.6-9-8.5C1.7 9.1 3.6 7 6 7c1.7 0 3 .9 4 2.2C11 7.9 12.3 7 14 7c2.4 0 4.3 2.1 3 5.5-2 3.9-9 8.5-9 8.5z" fill="none" stroke="#2C5AF0" stroke-width="2"/>
162
+ </svg>
163
+ Add to watchlist
164
+ </div>
165
+
166
+ <!-- About -->
167
+ <div class="section-title">About this item</div>
168
+ <div class="about-list">
169
+ <div class="row">
170
+ <div class="label">Condition</div>
171
+ <div class="value">Used</div>
172
+ </div>
173
+ <div class="row">
174
+ <div class="label">Quantity</div>
175
+ <div class="value">1 available</div>
176
+ </div>
177
+ <div class="row">
178
+ <div class="label">Item Number</div>
179
+ <div class="value" style="display:flex; align-items:center; justify-content:space-between;">
180
+ <span>304796314833</span>
181
+ <svg class="chev" viewBox="0 0 24 24">
182
+ <path d="M9 6l6 6-6 6" stroke="#777" stroke-width="2.5" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
183
+ </svg>
184
+ </div>
185
+ </div>
186
+ <div class="row">
187
+ <div class="label">UK Shoe Size</div>
188
+ <div class="value">7</div>
189
+ </div>
190
+ <div class="row" style="border-bottom:none;">
191
+ <div class="label">Shoe Shaft Style</div>
192
+ <div class="value">Low Top</div>
193
+ </div>
194
+ </div>
195
+
196
+ <!-- Description -->
197
+ <div class="desc-wrap">
198
+ <div class="desc-title">Item description from the seller</div>
199
+ <div class="desc-text">
200
+ New Balance 420 Size 9 Athletic shoes for women WL420DFU Mint. Good pre-owned conditions, look at all over the pictures for details.
201
+ </div>
202
+ <div style="display:flex; align-items:center; justify-content:space-between; margin-top:18px;">
203
+ <a class="link" href="#">See full description</a>
204
+ <svg class="chev" viewBox="0 0 24 24">
205
+ <path d="M9 6l6 6-6 6" stroke="#777" stroke-width="2.5" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
206
+ </svg>
207
+ </div>
208
+ </div>
209
+
210
+ <!-- More like this -->
211
+ <div class="more-wrap">
212
+ <div class="more-head">
213
+ <div>
214
+ <div class="more-title">More like this</div>
215
+ <div class="subtle">Sponsored · UK Shoe Size 7 an...</div>
216
+ </div>
217
+ <div class="see-all">See all →</div>
218
+ </div>
219
+ <div class="cards">
220
+ <div class="card">
221
+ <div class="img">[IMG: Similar shoe listing thumbnail]</div>
222
+ </div>
223
+ <div class="card">
224
+ <div class="img">[IMG: Similar shoe listing thumbnail]</div>
225
+ </div>
226
+ </div>
227
+ </div>
228
+
229
+ <!-- Bottom Navigation -->
230
+ <div class="gesture"></div>
231
+ <div class="bottom-nav">
232
+ <div class="nav-item">
233
+ <svg class="nav-icon" viewBox="0 0 24 24">
234
+ <path d="M3 11l9-7 9 7v9H3v-9z" fill="none" stroke="#333" stroke-width="2"></path>
235
+ </svg>
236
+ <div>Home</div>
237
+ </div>
238
+ <div class="nav-item">
239
+ <svg class="nav-icon" viewBox="0 0 24 24">
240
+ <circle cx="12" cy="8" r="4" stroke="#333" stroke-width="2" fill="none"></circle>
241
+ <path d="M4 22c0-5 4-8 8-8s8 3 8 8" stroke="#333" stroke-width="2" fill="none"></path>
242
+ </svg>
243
+ <div>My eBay</div>
244
+ </div>
245
+ <div class="nav-item nav-active">
246
+ <div class="nav-icon-wrap">
247
+ <svg class="nav-icon" viewBox="0 0 24 24">
248
+ <circle cx="10" cy="10" r="7" stroke="#2C5AF0" stroke-width="2" fill="none"></circle>
249
+ <line x1="15" y1="15" x2="21" y2="21" stroke="#2C5AF0" stroke-width="2" stroke-linecap="round"></line>
250
+ </svg>
251
+ </div>
252
+ <div style="color:#2C5AF0;">Search</div>
253
+ </div>
254
+ <div class="nav-item">
255
+ <svg class="nav-icon" viewBox="0 0 24 24">
256
+ <path d="M4 5h16v14H4z" fill="none" stroke="#333" stroke-width="2"></path>
257
+ <path d="M4 9h16" stroke="#333" stroke-width="2"></path>
258
+ </svg>
259
+ <div>Inbox</div>
260
+ </div>
261
+ <div class="nav-item">
262
+ <svg class="nav-icon" viewBox="0 0 24 24">
263
+ <path d="M3 6h18v4H3zM3 12h18v7H3z" fill="none" stroke="#333" stroke-width="2"></path>
264
+ <path d="M7 12v7M12 12v7M17 12v7" stroke="#333" stroke-width="2"></path>
265
+ </svg>
266
+ <div>Selling</div>
267
+ </div>
268
+ </div>
269
+
270
+ </div>
271
+ </body>
272
+ </html>
code/1017/1017_2.html ADDED
@@ -0,0 +1,396 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>eBay Item UI Mock</title>
5
+ <style>
6
+ body { margin: 0; padding: 0; background: transparent; }
7
+ #render-target {
8
+ width: 1080px;
9
+ height: 2400px;
10
+ position: relative;
11
+ overflow: hidden;
12
+ background: #ffffff;
13
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
14
+ color: #111;
15
+ }
16
+
17
+ /* Status bar */
18
+ .status-bar {
19
+ position: absolute;
20
+ top: 0;
21
+ left: 0;
22
+ right: 0;
23
+ height: 104px;
24
+ padding: 24px 32px;
25
+ box-sizing: border-box;
26
+ display: flex;
27
+ align-items: center;
28
+ justify-content: space-between;
29
+ color: #2c2c2c;
30
+ font-weight: 600;
31
+ }
32
+ .status-icons {
33
+ display: flex;
34
+ align-items: center;
35
+ gap: 22px;
36
+ }
37
+ .status-dot {
38
+ width: 28px;
39
+ height: 28px;
40
+ border-radius: 50%;
41
+ border: 2px solid #777;
42
+ }
43
+ .wifi {
44
+ width: 36px; height: 24px;
45
+ }
46
+ .battery {
47
+ width: 38px; height: 22px; border: 2px solid #555; border-radius: 4px; position: relative;
48
+ }
49
+ .battery::after {
50
+ content: "";
51
+ position: absolute;
52
+ right: -8px; top: 6px;
53
+ width: 6px; height: 10px; background: #555; border-radius: 2px;
54
+ }
55
+
56
+ /* Header */
57
+ .header {
58
+ position: absolute;
59
+ top: 104px;
60
+ left: 0; right: 0;
61
+ height: 112px;
62
+ display: flex;
63
+ align-items: center;
64
+ padding: 0 32px;
65
+ box-sizing: border-box;
66
+ gap: 20px;
67
+ }
68
+ .back-btn {
69
+ width: 64px; height: 64px; display: flex; align-items: center; justify-content: center;
70
+ }
71
+ .header-title {
72
+ font-size: 52px; font-weight: 700; letter-spacing: -0.5px;
73
+ }
74
+ .more-btn {
75
+ margin-left: auto;
76
+ width: 64px; height: 64px; display: flex; align-items: center; justify-content: center;
77
+ }
78
+ .dots svg { width: 28px; height: 28px; }
79
+
80
+ /* Action buttons (blue outline pills) */
81
+ .actions {
82
+ position: absolute;
83
+ top: 236px;
84
+ left: 32px; right: 32px;
85
+ }
86
+ .outline-btn {
87
+ height: 110px;
88
+ border: 3px solid #2F5BFF;
89
+ border-radius: 58px;
90
+ margin-bottom: 26px;
91
+ display: flex; align-items: center;
92
+ padding: 0 36px;
93
+ box-sizing: border-box;
94
+ color: #2F5BFF; font-size: 44px; font-weight: 600;
95
+ }
96
+ .outline-btn .heart {
97
+ margin-right: 18px;
98
+ }
99
+
100
+ /* Dropdown menu card */
101
+ .menu-card {
102
+ position: absolute;
103
+ top: 176px;
104
+ right: 32px;
105
+ width: 540px;
106
+ background: #EEF2FF;
107
+ border-radius: 22px;
108
+ box-shadow: 0 12px 30px rgba(0,0,0,0.12);
109
+ padding: 28px 32px;
110
+ box-sizing: border-box;
111
+ }
112
+ .menu-item {
113
+ font-size: 44px; color: #222;
114
+ padding: 24px 10px;
115
+ border-bottom: 1px solid rgba(0,0,0,0.08);
116
+ }
117
+ .menu-item:last-child { border-bottom: none; }
118
+
119
+ /* Section titles */
120
+ .section-title {
121
+ position: absolute;
122
+ top: 740px;
123
+ left: 32px;
124
+ font-size: 56px; font-weight: 800;
125
+ }
126
+
127
+ /* About list */
128
+ .about-list {
129
+ position: absolute;
130
+ top: 840px;
131
+ left: 32px; right: 32px;
132
+ }
133
+ .about-row {
134
+ display: flex; justify-content: space-between; align-items: center;
135
+ padding: 22px 0;
136
+ font-size: 40px;
137
+ border-bottom: 1px solid #eee;
138
+ }
139
+ .about-label { color: #666; }
140
+ .about-value { font-weight: 600; }
141
+ .chev {
142
+ margin-left: 12px; width: 28px; height: 28px;
143
+ }
144
+
145
+ /* Description */
146
+ .desc-title {
147
+ position: absolute;
148
+ top: 1220px;
149
+ left: 32px; right: 32px;
150
+ font-size: 56px; font-weight: 800;
151
+ }
152
+ .desc-text {
153
+ position: absolute;
154
+ top: 1320px;
155
+ left: 32px; right: 32px;
156
+ font-size: 40px; line-height: 1.5; color: #222;
157
+ }
158
+ .see-full {
159
+ position: absolute;
160
+ top: 1540px; left: 32px;
161
+ color: #2F5BFF; font-size: 44px; font-weight: 700; text-decoration: none;
162
+ }
163
+
164
+ /* More like this */
165
+ .mlt-head {
166
+ position: absolute;
167
+ top: 1640px; left: 32px;
168
+ font-size: 60px; font-weight: 800;
169
+ }
170
+ .mlt-sub {
171
+ position: absolute;
172
+ top: 1720px; left: 32px; right: 360px;
173
+ color: #666; font-size: 40px;
174
+ }
175
+ .see-all-btn {
176
+ position: absolute;
177
+ top: 1700px; right: 32px;
178
+ height: 110px; width: 300px;
179
+ border: 2px solid #cfcfcf; border-radius: 60px;
180
+ display: flex; align-items: center; justify-content: center;
181
+ font-size: 44px; color: #222;
182
+ background: #fff;
183
+ }
184
+
185
+ .cards {
186
+ position: absolute;
187
+ top: 1840px; left: 32px; right: 32px;
188
+ display: flex; gap: 32px;
189
+ }
190
+ .card {
191
+ width: 492px; height: 420px; border-radius: 28px; overflow: hidden;
192
+ background: #fff; border: 1px solid #e6e6e6; position: relative;
193
+ }
194
+ .img {
195
+ width: 100%; height: 100%;
196
+ background: #E0E0E0;
197
+ border-top-left-radius: 28px; border-top-right-radius: 28px;
198
+ border-bottom: 1px solid #BDBDBD;
199
+ display: flex; align-items: center; justify-content: center;
200
+ color: #757575; font-size: 36px; text-align: center;
201
+ }
202
+ .fav {
203
+ position: absolute; top: 22px; right: 22px;
204
+ width: 78px; height: 78px; border-radius: 50%;
205
+ background: #fff; border: 1px solid #ddd;
206
+ display: flex; align-items: center; justify-content: center;
207
+ box-shadow: 0 2px 8px rgba(0,0,0,0.1);
208
+ }
209
+
210
+ /* Bottom navigation */
211
+ .nav {
212
+ position: absolute; bottom: 0; left: 0; right: 0;
213
+ height: 168px; border-top: 1px solid #e5e5e5; background: #fafafa;
214
+ display: flex; justify-content: space-around; align-items: center;
215
+ }
216
+ .nav-item {
217
+ width: 180px; height: 140px; display: flex; flex-direction: column;
218
+ align-items: center; justify-content: center; color: #333; font-size: 32px;
219
+ }
220
+ .nav-item .icon {
221
+ width: 72px; height: 72px; margin-bottom: 10px; color: #333;
222
+ }
223
+ .nav-item.active .icon-wrap {
224
+ width: 120px; height: 120px; border-radius: 60px; background: #E7EDFF;
225
+ display: flex; align-items: center; justify-content: center; margin-bottom: 6px;
226
+ }
227
+ .nav-item.active .label { color: #2F5BFF; }
228
+ </style>
229
+ </head>
230
+ <body>
231
+ <div id="render-target">
232
+
233
+ <!-- Status Bar -->
234
+ <div class="status-bar">
235
+ <div style="display:flex;align-items:center;gap:18px;">
236
+ <div style="font-size:44px;">10:47</div>
237
+ <div class="status-dot"></div>
238
+ </div>
239
+ <div class="status-icons">
240
+ <svg class="wifi" viewBox="0 0 48 32">
241
+ <path d="M24 28c-2 0-4 2-4 4s2 4 4 4 4-2 4-4-2-4-4-4zm0-8c-6 0-12 3-16 8l4 3c3-4 7-6 12-6s9 2 12 6l4-3c-4-5-10-8-16-8zm0-8c-10 0-18 4-24 12l4 3c5-6 12-10 20-10s15 4 20 10l4-3C42 8 34 4 24 4z" fill="#4b4b4b"/>
242
+ </svg>
243
+ <div class="battery"></div>
244
+ </div>
245
+ </div>
246
+
247
+ <!-- Header -->
248
+ <div class="header">
249
+ <div class="back-btn">
250
+ <svg viewBox="0 0 48 48" width="48" height="48">
251
+ <path d="M28 6 L10 24 L28 42" stroke="#222" stroke-width="6" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
252
+ </svg>
253
+ </div>
254
+ <div class="header-title">Item</div>
255
+ <div class="more-btn dots">
256
+ <svg viewBox="0 0 20 60">
257
+ <circle cx="10" cy="10" r="6" fill="#222"></circle>
258
+ <circle cx="10" cy="30" r="6" fill="#222"></circle>
259
+ <circle cx="10" cy="50" r="6" fill="#222"></circle>
260
+ </svg>
261
+ </div>
262
+ </div>
263
+
264
+ <!-- Dropdown menu -->
265
+ <div class="menu-card">
266
+ <div class="menu-item">Watch this item</div>
267
+ <div class="menu-item">Share this item</div>
268
+ <div class="menu-item">Report this item</div>
269
+ <div class="menu-item">Help & Contact</div>
270
+ </div>
271
+
272
+ <!-- Blue outline actions -->
273
+ <div class="actions">
274
+ <div class="outline-btn">Add to basket</div>
275
+ <div class="outline-btn">Make offer</div>
276
+ <div class="outline-btn">
277
+ <span class="heart">
278
+ <svg viewBox="0 0 48 48" width="48" height="48">
279
+ <path d="M24 42s-14-9-18-16c-3-6 1-14 8-14 5 0 8 4 10 7 2-3 5-7 10-7 7 0 11 8 8 14-4 7-18 16-18 16z" fill="none" stroke="#2F5BFF" stroke-width="4"/>
280
+ </svg>
281
+ </span>
282
+ Add to watchlist
283
+ </div>
284
+ </div>
285
+
286
+ <!-- About this item -->
287
+ <div class="section-title">About this item</div>
288
+ <div class="about-list">
289
+ <div class="about-row">
290
+ <div class="about-label">Condition</div>
291
+ <div class="about-value">Used</div>
292
+ </div>
293
+ <div class="about-row">
294
+ <div class="about-label">Quantity</div>
295
+ <div class="about-value">1 available</div>
296
+ </div>
297
+ <div class="about-row">
298
+ <div class="about-label">Item Number</div>
299
+ <div style="display:flex; align-items:center;">
300
+ <div class="about-value">304796314833</div>
301
+ <svg class="chev" viewBox="0 0 24 24">
302
+ <path d="M8 4 L16 12 L8 20" stroke="#666" stroke-width="3" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
303
+ </svg>
304
+ </div>
305
+ </div>
306
+ <div class="about-row">
307
+ <div class="about-label">UK Shoe Size</div>
308
+ <div class="about-value">7</div>
309
+ </div>
310
+ <div class="about-row" style="border-bottom:none;">
311
+ <div class="about-label">Shoe Shaft Style</div>
312
+ <div class="about-value">Low Top</div>
313
+ </div>
314
+ </div>
315
+
316
+ <!-- Description -->
317
+ <div class="desc-title">Item description from the seller</div>
318
+ <div class="desc-text">
319
+ New Balance 420 Size 9 Athletic shoes for women WL420DFU Mint. Good pre-owned conditions, look at all over the pictures for details.
320
+ </div>
321
+ <a href="#" class="see-full">See full description</a>
322
+
323
+ <!-- More like this -->
324
+ <div class="mlt-head">More like this</div>
325
+ <div class="mlt-sub">Sponsored · UK Shoe Size 7 and similar styles</div>
326
+ <div class="see-all-btn">See all →</div>
327
+
328
+ <div class="cards">
329
+ <div class="card">
330
+ <div class="img">[IMG: Mint New Balance Sneakers]</div>
331
+ <div class="fav">
332
+ <svg viewBox="0 0 48 48" width="40" height="40">
333
+ <path d="M24 40s-12-8-16-14c-3-5 1-12 7-12 4 0 7 3 9 6 2-3 5-6 9-6 6 0 10 7 7 12-4 6-16 14-16 14z" fill="none" stroke="#777" stroke-width="3"/>
334
+ </svg>
335
+ </div>
336
+ </div>
337
+ <div class="card">
338
+ <div class="img">[IMG: Similar Running Shoes]</div>
339
+ <div class="fav">
340
+ <svg viewBox="0 0 48 48" width="40" height="40">
341
+ <path d="M24 40s-12-8-16-14c-3-5 1-12 7-12 4 0 7 3 9 6 2-3 5-6 9-6 6 0 10 7 7 12-4 6-16 14-16 14z" fill="none" stroke="#777" stroke-width="3"/>
342
+ </svg>
343
+ </div>
344
+ </div>
345
+ </div>
346
+
347
+ <!-- Bottom Navigation -->
348
+ <div class="nav">
349
+ <div class="nav-item">
350
+ <div class="icon">
351
+ <svg viewBox="0 0 48 48" width="72" height="72">
352
+ <path d="M6 22 L24 6 L42 22 V42 H28 V30 H20 V42 H6 Z" fill="#333"/>
353
+ </svg>
354
+ </div>
355
+ <div class="label">Home</div>
356
+ </div>
357
+ <div class="nav-item">
358
+ <div class="icon">
359
+ <svg viewBox="0 0 48 48" width="72" height="72">
360
+ <circle cx="24" cy="16" r="10" fill="#333"></circle>
361
+ <path d="M6 44c4-10 14-14 18-14s14 4 18 14" stroke="#333" stroke-width="4" fill="none"/>
362
+ </svg>
363
+ </div>
364
+ <div class="label">My eBay</div>
365
+ </div>
366
+ <div class="nav-item active">
367
+ <div class="icon-wrap">
368
+ <svg class="icon" viewBox="0 0 48 48">
369
+ <circle cx="20" cy="20" r="14" stroke="#2F5BFF" stroke-width="4" fill="none"></circle>
370
+ <path d="M32 32 L44 44" stroke="#2F5BFF" stroke-width="4" stroke-linecap="round"/>
371
+ </svg>
372
+ </div>
373
+ <div class="label">Search</div>
374
+ </div>
375
+ <div class="nav-item">
376
+ <div class="icon">
377
+ <svg viewBox="0 0 48 48" width="72" height="72">
378
+ <path d="M8 20 C8 12 14 6 24 6s16 6 16 14v8l-6 6v8H14v-8l-6-6z" fill="#333"/>
379
+ </svg>
380
+ </div>
381
+ <div class="label">Inbox</div>
382
+ </div>
383
+ <div class="nav-item">
384
+ <div class="icon">
385
+ <svg viewBox="0 0 48 48" width="72" height="72">
386
+ <path d="M12 38 L36 14" stroke="#333" stroke-width="4"/>
387
+ <path d="M34 10 L42 18 L18 42 L10 34 Z" fill="none" stroke="#333" stroke-width="4"/>
388
+ </svg>
389
+ </div>
390
+ <div class="label">Selling</div>
391
+ </div>
392
+ </div>
393
+
394
+ </div>
395
+ </body>
396
+ </html>
code/1017/1017_3.html ADDED
@@ -0,0 +1,159 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
5
+ <title>Help & Contact Screen</title>
6
+ <style>
7
+ body { margin: 0; padding: 0; background: transparent; font-family: system-ui, -apple-system, Roboto, Arial, sans-serif; }
8
+ #render-target {
9
+ width: 1080px;
10
+ height: 2400px;
11
+ position: relative;
12
+ overflow: hidden;
13
+ background: #FFFFFF;
14
+ }
15
+
16
+ /* Status bar */
17
+ .status-bar {
18
+ position: absolute;
19
+ top: 0;
20
+ left: 0;
21
+ width: 100%;
22
+ height: 120px;
23
+ padding: 30px 40px;
24
+ display: flex;
25
+ align-items: center;
26
+ justify-content: space-between;
27
+ color: #333;
28
+ box-sizing: border-box;
29
+ font-weight: 600;
30
+ }
31
+ .sb-left, .sb-right {
32
+ display: flex;
33
+ align-items: center;
34
+ gap: 22px;
35
+ }
36
+ .sb-time {
37
+ font-size: 44px;
38
+ letter-spacing: 0.5px;
39
+ }
40
+ .sb-icon {
41
+ width: 36px;
42
+ height: 36px;
43
+ }
44
+
45
+ /* Header with close and title */
46
+ .header {
47
+ position: absolute;
48
+ top: 160px;
49
+ left: 40px;
50
+ right: 40px;
51
+ display: flex;
52
+ align-items: center;
53
+ gap: 28px;
54
+ }
55
+ .close-btn {
56
+ width: 112px;
57
+ height: 112px;
58
+ border-radius: 56px;
59
+ background: #F5F6F7;
60
+ display: flex;
61
+ align-items: center;
62
+ justify-content: center;
63
+ }
64
+ .title {
65
+ font-size: 64px;
66
+ font-weight: 800;
67
+ color: #111;
68
+ letter-spacing: 0.2px;
69
+ }
70
+
71
+ /* Spinner */
72
+ .spinner {
73
+ position: absolute;
74
+ top: 1200px;
75
+ left: 480px; /* centered: (1080 - 120)/2 */
76
+ width: 120px;
77
+ height: 120px;
78
+ border-radius: 50%;
79
+ border: 16px solid #3366FF;
80
+ border-left-color: transparent;
81
+ animation: spin 1.2s linear infinite;
82
+ }
83
+ @keyframes spin {
84
+ to { transform: rotate(360deg); }
85
+ }
86
+
87
+ /* Home indicator */
88
+ .home-indicator {
89
+ position: absolute;
90
+ bottom: 60px;
91
+ left: 50%;
92
+ transform: translateX(-50%);
93
+ width: 500px;
94
+ height: 14px;
95
+ background: #8E8E8E;
96
+ border-radius: 8px;
97
+ opacity: 0.7;
98
+ }
99
+ </style>
100
+ </head>
101
+ <body>
102
+ <div id="render-target">
103
+ <!-- Status Bar -->
104
+ <div class="status-bar">
105
+ <div class="sb-left">
106
+ <div class="sb-time">10:48</div>
107
+ <!-- small status icon (sun/brightness style) -->
108
+ <svg class="sb-icon" viewBox="0 0 24 24">
109
+ <circle cx="12" cy="12" r="4" fill="#666"/>
110
+ <g stroke="#666" stroke-width="2" stroke-linecap="round">
111
+ <line x1="12" y1="1.5" x2="12" y2="5.5"/>
112
+ <line x1="12" y1="18.5" x2="12" y2="22.5"/>
113
+ <line x1="1.5" y1="12" x2="5.5" y2="12"/>
114
+ <line x1="18.5" y1="12" x2="22.5" y2="12"/>
115
+ <line x1="4.2" y1="4.2" x2="6.8" y2="6.8"/>
116
+ <line x1="17.2" y1="17.2" x2="19.8" y2="19.8"/>
117
+ <line x1="17.2" y1="6.8" x2="19.8" y2="4.2"/>
118
+ <line x1="4.2" y1="19.8" x2="6.8" y2="17.2"/>
119
+ </g>
120
+ </svg>
121
+ </div>
122
+ <div class="sb-right">
123
+ <!-- WiFi icon -->
124
+ <svg class="sb-icon" viewBox="0 0 24 24">
125
+ <path d="M2 9c5.5-5.5 14.5-5.5 20 0" fill="none" stroke="#555" stroke-width="2" stroke-linecap="round"/>
126
+ <path d="M5 12c3.8-3.8 10.2-3.8 14 0" fill="none" stroke="#555" stroke-width="2" stroke-linecap="round"/>
127
+ <path d="M8 15c2.2-2.2 5.8-2.2 8 0" fill="none" stroke="#555" stroke-width="2" stroke-linecap="round"/>
128
+ <circle cx="12" cy="18" r="1.8" fill="#555"/>
129
+ </svg>
130
+ <!-- Battery icon -->
131
+ <svg class="sb-icon" viewBox="0 0 28 24">
132
+ <rect x="2" y="6" width="20" height="12" rx="2" ry="2" fill="none" stroke="#555" stroke-width="2"/>
133
+ <rect x="4" y="8" width="16" height="8" fill="#555"/>
134
+ <rect x="22.5" y="9" width="3" height="6" rx="1" ry="1" fill="#555"/>
135
+ </svg>
136
+ </div>
137
+ </div>
138
+
139
+ <!-- Header -->
140
+ <div class="header">
141
+ <div class="close-btn">
142
+ <svg width="44" height="44" viewBox="0 0 24 24">
143
+ <g stroke="#222" stroke-width="2.6" stroke-linecap="round">
144
+ <line x1="5" y1="5" x2="19" y2="19"/>
145
+ <line x1="19" y1="5" x2="5" y2="19"/>
146
+ </g>
147
+ </svg>
148
+ </div>
149
+ <div class="title">Help &amp; Contact</div>
150
+ </div>
151
+
152
+ <!-- Loading Spinner -->
153
+ <div class="spinner"></div>
154
+
155
+ <!-- Home Indicator -->
156
+ <div class="home-indicator"></div>
157
+ </div>
158
+ </body>
159
+ </html>
code/1017/1017_4.html ADDED
@@ -0,0 +1,285 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Help & Contact - 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: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, Helvetica, sans-serif;
12
+ color: #111;
13
+ }
14
+ #render-target {
15
+ width: 1080px;
16
+ height: 2400px;
17
+ position: relative;
18
+ overflow: hidden;
19
+ background: #ffffff;
20
+ }
21
+
22
+ /* Status bar */
23
+ .status-bar {
24
+ position: absolute;
25
+ top: 0;
26
+ left: 0;
27
+ width: 1080px;
28
+ height: 96px;
29
+ padding: 0 36px;
30
+ display: flex;
31
+ align-items: center;
32
+ justify-content: space-between;
33
+ color: #111;
34
+ font-weight: 600;
35
+ font-size: 36px;
36
+ }
37
+ .status-left {
38
+ display: flex;
39
+ align-items: center;
40
+ gap: 18px;
41
+ }
42
+ .status-right {
43
+ display: flex;
44
+ align-items: center;
45
+ gap: 26px;
46
+ }
47
+ .sun-icon {
48
+ width: 34px;
49
+ height: 34px;
50
+ }
51
+ .wifi-icon, .battery-icon {
52
+ height: 32px;
53
+ }
54
+
55
+ /* Header area */
56
+ .header {
57
+ position: absolute;
58
+ top: 96px;
59
+ left: 0;
60
+ width: 100%;
61
+ padding: 24px 36px 0 36px;
62
+ box-sizing: border-box;
63
+ }
64
+ .top-row {
65
+ display: flex;
66
+ align-items: center;
67
+ gap: 24px;
68
+ margin-bottom: 16px;
69
+ }
70
+ .close-btn {
71
+ width: 72px;
72
+ height: 72px;
73
+ border-radius: 36px;
74
+ background: #F0F0F0;
75
+ display: flex;
76
+ align-items: center;
77
+ justify-content: center;
78
+ }
79
+ .close-btn svg { width: 28px; height: 28px; }
80
+ .title {
81
+ font-size: 50px;
82
+ font-weight: 700;
83
+ }
84
+
85
+ .main-title {
86
+ margin-top: 20px;
87
+ font-size: 92px;
88
+ font-weight: 800;
89
+ line-height: 1.06;
90
+ letter-spacing: -0.5px;
91
+ }
92
+
93
+ .search-bar {
94
+ margin-top: 36px;
95
+ width: calc(100% - 72px);
96
+ height: 120px;
97
+ background: #F3F3F3;
98
+ border-radius: 60px;
99
+ display: flex;
100
+ align-items: center;
101
+ padding: 0 40px;
102
+ box-sizing: border-box;
103
+ color: #999;
104
+ font-size: 42px;
105
+ }
106
+
107
+ /* List items */
108
+ .list {
109
+ position: absolute;
110
+ top: 700px;
111
+ left: 0;
112
+ width: 100%;
113
+ padding: 0 0 140px 0;
114
+ }
115
+ .card {
116
+ width: 100%;
117
+ background: #EAF6FF;
118
+ padding: 40px 120px 40px 36px;
119
+ box-sizing: border-box;
120
+ border-top: 1px solid #E0EEF9;
121
+ }
122
+ .card:first-child {
123
+ border-top: none;
124
+ }
125
+ .card-row {
126
+ display: flex;
127
+ align-items: center;
128
+ justify-content: space-between;
129
+ }
130
+ .card-title {
131
+ font-size: 60px;
132
+ font-weight: 800;
133
+ margin-bottom: 18px;
134
+ }
135
+ .card-sub {
136
+ font-size: 36px;
137
+ color: #666;
138
+ font-weight: 500;
139
+ }
140
+ .arrow {
141
+ width: 52px;
142
+ height: 52px;
143
+ color: #1E6CFF;
144
+ }
145
+
146
+ /* Bottom gesture bar */
147
+ .gesture-bar {
148
+ position: absolute;
149
+ bottom: 24px;
150
+ left: 50%;
151
+ transform: translateX(-50%);
152
+ width: 300px;
153
+ height: 12px;
154
+ background: #CFCFCF;
155
+ border-radius: 8px;
156
+ }
157
+ </style>
158
+ </head>
159
+ <body>
160
+ <div id="render-target">
161
+
162
+ <!-- Status Bar -->
163
+ <div class="status-bar">
164
+ <div class="status-left">
165
+ <div>10:48</div>
166
+ <svg class="sun-icon" viewBox="0 0 24 24">
167
+ <circle cx="12" cy="12" r="5" fill="#808080"></circle>
168
+ <g stroke="#808080" stroke-width="1.5">
169
+ <line x1="12" y1="1.5" x2="12" y2="5"></line>
170
+ <line x1="12" y1="19" x2="12" y2="22.5"></line>
171
+ <line x1="1.5" y1="12" x2="5" y2="12"></line>
172
+ <line x1="19" y1="12" x2="22.5" y2="12"></line>
173
+ </g>
174
+ </svg>
175
+ </div>
176
+ <div class="status-right">
177
+ <svg class="wifi-icon" viewBox="0 0 24 24">
178
+ <path d="M2 8.5c5.5-4.5 14.5-4.5 20 0" fill="none" stroke="#555" stroke-width="2" stroke-linecap="round"/>
179
+ <path d="M5 12.5c4-3 10-3 14 0" fill="none" stroke="#555" stroke-width="2" stroke-linecap="round"/>
180
+ <path d="M9 16.5c2.5-1.8 5.5-1.8 8 0" fill="none" stroke="#555" stroke-width="2" stroke-linecap="round"/>
181
+ <circle cx="12.5" cy="19" r="1.5" fill="#555"/>
182
+ </svg>
183
+ <svg class="battery-icon" viewBox="0 0 28 24">
184
+ <rect x="1" y="5" width="22" height="14" rx="3" ry="3" fill="none" stroke="#555" stroke-width="2"/>
185
+ <rect x="3.5" y="7.5" width="14" height="9" rx="2" fill="#555"/>
186
+ <rect x="23.5" y="9" width="3.5" height="6" rx="1" fill="#555"/>
187
+ </svg>
188
+ </div>
189
+ </div>
190
+
191
+ <!-- Header -->
192
+ <div class="header">
193
+ <div class="top-row">
194
+ <div class="close-btn">
195
+ <svg viewBox="0 0 24 24">
196
+ <path d="M5 5 L19 19 M19 5 L5 19" stroke="#333" stroke-width="2.5" stroke-linecap="round"/>
197
+ </svg>
198
+ </div>
199
+ <div class="title">Help &amp; Contact</div>
200
+ </div>
201
+
202
+ <div class="main-title">How can we help you today?</div>
203
+
204
+ <div class="search-bar">Search eBay Help...</div>
205
+ </div>
206
+
207
+ <!-- List of help topics -->
208
+ <div class="list">
209
+ <div class="card">
210
+ <div class="card-row">
211
+ <div>
212
+ <div class="card-title">Return an item for a refund</div>
213
+ <div class="card-sub">Popular article</div>
214
+ </div>
215
+ <svg class="arrow" viewBox="0 0 24 24">
216
+ <path d="M8 5 L16 12 L8 19" fill="none" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
217
+ </svg>
218
+ </div>
219
+ </div>
220
+
221
+ <div class="card">
222
+ <div class="card-row">
223
+ <div>
224
+ <div class="card-title">Get help with an item that hasn't arrived</div>
225
+ <div class="card-sub">Popular article</div>
226
+ </div>
227
+ <svg class="arrow" viewBox="0 0 24 24">
228
+ <path d="M8 5 L16 12 L8 19" fill="none" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
229
+ </svg>
230
+ </div>
231
+ </div>
232
+
233
+ <div class="card">
234
+ <div class="card-row">
235
+ <div>
236
+ <div class="card-title">Create a listing</div>
237
+ <div class="card-sub">Popular article</div>
238
+ </div>
239
+ <svg class="arrow" viewBox="0 0 24 24">
240
+ <path d="M8 5 L16 12 L8 19" fill="none" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
241
+ </svg>
242
+ </div>
243
+ </div>
244
+
245
+ <div class="card">
246
+ <div class="card-row">
247
+ <div>
248
+ <div class="card-title">Payments on hold</div>
249
+ <div class="card-sub">Popular article</div>
250
+ </div>
251
+ <svg class="arrow" viewBox="0 0 24 24">
252
+ <path d="M8 5 L16 12 L8 19" fill="none" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
253
+ </svg>
254
+ </div>
255
+ </div>
256
+
257
+ <div class="card">
258
+ <div class="card-row">
259
+ <div>
260
+ <div class="card-title">Account restrictions and suspensions</div>
261
+ <div class="card-sub">Popular article</div>
262
+ </div>
263
+ <svg class="arrow" viewBox="0 0 24 24">
264
+ <path d="M8 5 L16 12 L8 19" fill="none" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
265
+ </svg>
266
+ </div>
267
+ </div>
268
+
269
+ <div class="card">
270
+ <div class="card-row">
271
+ <div>
272
+ <div class="card-title">Selling limits</div>
273
+ <div class="card-sub">Popular article</div>
274
+ </div>
275
+ <svg class="arrow" viewBox="0 0 24 24">
276
+ <path d="M8 5 L16 12 L8 19" fill="none" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
277
+ </svg>
278
+ </div>
279
+ </div>
280
+ </div>
281
+
282
+ <div class="gesture-bar"></div>
283
+ </div>
284
+ </body>
285
+ </html>
code/1017/1017_5.html ADDED
@@ -0,0 +1,170 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="utf-8">
4
+ <title>Help & Contact - 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, Arial, Helvetica, sans-serif; color:#111; }
8
+ #render-target {
9
+ position: relative;
10
+ width: 1080px;
11
+ height: 2400px;
12
+ overflow: hidden;
13
+ background: #ffffff;
14
+ }
15
+
16
+ /* Status bar */
17
+ .status-bar{
18
+ height: 88px;
19
+ padding: 18px 36px 0 36px;
20
+ box-sizing: border-box;
21
+ font-weight: 600;
22
+ color:#222;
23
+ display: flex;
24
+ align-items: center;
25
+ justify-content: space-between;
26
+ }
27
+ .status-right{ display:flex; gap:26px; align-items:center; }
28
+ .sb-icon{ width:34px; height:34px; }
29
+
30
+ /* Header */
31
+ .header{
32
+ display:flex;
33
+ align-items:center;
34
+ gap:28px;
35
+ padding:16px 36px 18px 36px;
36
+ }
37
+ .close-btn{
38
+ width:92px; height:92px; border-radius:46px;
39
+ display:flex; align-items:center; justify-content:center;
40
+ }
41
+ .close-btn svg{ width:56px; height:56px; }
42
+ .title{
43
+ font-size:64px; font-weight:800; letter-spacing:.2px;
44
+ }
45
+
46
+ /* Search */
47
+ .search-wrap{
48
+ padding: 10px 36px 10px 36px;
49
+ }
50
+ .search{
51
+ display:flex; align-items:center; gap:20px;
52
+ background:#f3f4f6; border-radius:36px; height:120px;
53
+ padding: 0 28px;
54
+ box-sizing: border-box;
55
+ }
56
+ .search svg{ width:44px; height:44px; fill:#9aa0a6; }
57
+ .search input{
58
+ border:none; outline:none; background:transparent;
59
+ font-size:42px; color:#6b7280; width:100%;
60
+ }
61
+
62
+ /* Article section */
63
+ .mini-label{
64
+ color:#2a5bf6; font-size:32px; margin:26px 36px 8px 36px;
65
+ }
66
+ .article-card{
67
+ margin:0 24px;
68
+ border:6px solid #f1a43a;
69
+ border-radius:18px;
70
+ padding:42px 36px;
71
+ }
72
+ .article-title{
73
+ color:#121a7e;
74
+ font-size:72px; font-weight:800; line-height:1.12;
75
+ }
76
+
77
+ .links{
78
+ margin: 22px 36px;
79
+ display:flex; flex-direction:column; gap:36px;
80
+ }
81
+ .link-row{
82
+ color:#2a5bf6; font-weight:800; font-size:54px;
83
+ }
84
+ .sep-line{
85
+ height:16px; background:#f29a83; margin:40px 0 36px 0;
86
+ }
87
+
88
+ .info-text{
89
+ padding: 0 36px;
90
+ font-size:54px; line-height:1.35; color:#111; font-weight:600;
91
+ }
92
+
93
+ .hint-card{
94
+ margin: 36px;
95
+ background:#e9f8ff; border-radius:18px;
96
+ padding: 40px 36px;
97
+ font-size:44px; color:#0f172a;
98
+ }
99
+ .hint-card a{ color:#2a5bf6; font-weight:800; text-decoration:none; }
100
+
101
+ /* Bottom home indicator */
102
+ .home-indicator{
103
+ position:absolute; left:50%; transform:translateX(-50%);
104
+ bottom:24px; width:380px; height:12px; border-radius:8px; background:#cfcfcf;
105
+ }
106
+ </style>
107
+ </head>
108
+ <body>
109
+ <div id="render-target">
110
+
111
+ <!-- Status bar -->
112
+ <div class="status-bar">
113
+ <div style="font-size:38px;">10:49</div>
114
+ <div class="status-right">
115
+ <!-- simple wifi -->
116
+ <svg class="sb-icon" viewBox="0 0 24 24" fill="#555"><path d="M12 20.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3zM3 9.5l1.4 1.4A11 11 0 0 1 19.6 10L21 8.6A13 13 0 0 0 3 9.5zm4 4l1.4 1.4a7 7 0 0 1 7.2 0L17 13.5a9 9 0 0 0-10 0z"/></svg>
117
+ <!-- battery -->
118
+ <svg class="sb-icon" viewBox="0 0 24 24" fill="#555"><rect x="2" y="7" width="18" height="10" rx="2"/><rect x="20" y="10" width="2" height="4"/></svg>
119
+ </div>
120
+ </div>
121
+
122
+ <!-- Header -->
123
+ <div class="header">
124
+ <div class="close-btn">
125
+ <svg viewBox="0 0 24 24" stroke="#111" stroke-width="2.5" fill="none">
126
+ <circle cx="12" cy="12" r="10" stroke="#d1d5db"></circle>
127
+ <path d="M7 7l10 10M17 7L7 17"></path>
128
+ </svg>
129
+ </div>
130
+ <div class="title">Help & Contact</div>
131
+ </div>
132
+
133
+ <!-- Search -->
134
+ <div class="search-wrap">
135
+ <div class="search">
136
+ <svg viewBox="0 0 24 24"><path d="M21 21l-4.3-4.3M10.5 18a7.5 7.5 0 1 1 0-15 7.5 7.5 0 0 1 0 15z"/></svg>
137
+ <input type="text" placeholder="Search eBay Help..." />
138
+ </div>
139
+ </div>
140
+
141
+ <!-- Article -->
142
+ <div class="mini-label">4 min article</div>
143
+ <div class="article-card">
144
+ <div class="article-title">Return an item for a refund</div>
145
+ </div>
146
+
147
+ <div class="links">
148
+ <div class="link-row">Open a return request ↓</div>
149
+ <div class="link-row">Send the item back ↓</div>
150
+ <div class="link-row">Get your refund ↓</div>
151
+ <div class="link-row">Get help from eBay ↓</div>
152
+ <div class="link-row">Close a return request ↓</div>
153
+ <div class="link-row">Misuse of returns ↓</div>
154
+ </div>
155
+
156
+ <div class="sep-line"></div>
157
+
158
+ <div class="info-text">
159
+ If you've changed your mind about an item you bought or there's something wrong with it, you can request a return.
160
+ </div>
161
+
162
+ <div class="hint-card">
163
+ Need an update on an open return request? See how to
164
+ <a href="#">check the status of your return</a>
165
+ </div>
166
+
167
+ <div class="home-indicator"></div>
168
+ </div>
169
+ </body>
170
+ </html>
code/1017/1017_6.html ADDED
@@ -0,0 +1,166 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="utf-8">
4
+ <title>Help & Contact - Mock</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: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
11
+ color:#222;
12
+ }
13
+ .status{
14
+ height:90px; padding:0 32px; display:flex; align-items:center; justify-content:space-between;
15
+ color:#222; font-weight:600; font-size:38px;
16
+ }
17
+ .status .icons{ display:flex; gap:26px; align-items:center; }
18
+ .icon-dot{ width:22px; height:22px; border-radius:50%; background:#888; display:inline-block; }
19
+ .wifi, .battery{
20
+ width:46px; height:28px;
21
+ }
22
+ .wifi svg, .battery svg{ width:100%; height:100%; }
23
+ .header{
24
+ display:flex; align-items:center; padding:22px 36px 10px;
25
+ }
26
+ .close{
27
+ width:86px; height:86px; border-radius:43px; border:1.5px solid #cfcfcf;
28
+ display:flex; align-items:center; justify-content:center; margin-right:18px;
29
+ }
30
+ .close svg{ width:36px; height:36px; }
31
+ .title{
32
+ font-size:64px; font-weight:800; letter-spacing:0.2px;
33
+ }
34
+ .search-wrap{ padding:22px 36px 0; }
35
+ .search{
36
+ height:112px; border-radius:56px; background:#f2f2f2; display:flex; align-items:center;
37
+ padding:0 36px; color:#9e9e9e; font-size:42px;
38
+ box-shadow: inset 0 0 0 1px #e5e5e5;
39
+ }
40
+ .search svg{ width:44px; height:44px; margin-right:18px; fill:#9e9e9e; }
41
+ .accent{ height:40px; background:#e9fbff; margin:18px 36px 6px; border-radius:8px; }
42
+ .content{
43
+ padding:24px 36px 240px; font-size:42px; line-height:1.55;
44
+ }
45
+ .lead{ color:#333; margin-bottom:42px; }
46
+ .section-title{
47
+ display:flex; align-items:center; gap:26px; font-weight:800; font-size:50px; margin:18px 0 14px;
48
+ }
49
+ .minus{
50
+ width:72px; height:72px; border-radius:50%; background:#0a66ff; color:#fff;
51
+ display:flex; align-items:center; justify-content:center; font-size:60px; line-height:0;
52
+ }
53
+ .card{ color:#444; }
54
+ a{ color:#0a66ff; text-decoration:none; }
55
+ ul{ margin:28px 0 0 40px; padding:0; }
56
+ ul li{ margin:22px 0; }
57
+ .subtle{ color:#666; }
58
+ .subheading{ font-size:52px; font-weight:800; margin-top:40px; }
59
+ /* Floating help bubble */
60
+ .help-bubble{
61
+ position:absolute; right:40px; bottom:360px; width:840px;
62
+ background:#1268ff; color:#fff; border-radius:28px; padding:40px;
63
+ box-shadow:0 12px 24px rgba(0,0,0,0.18);
64
+ }
65
+ .help-bubble .close-x{
66
+ position:absolute; right:30px; top:24px; width:64px; height:64px; border-radius:50%;
67
+ display:flex; align-items:center; justify-content:center; color:#fff; opacity:.95;
68
+ }
69
+ .help-bubble .close-x svg{ width:40px; height:40px; fill:#ffffff; }
70
+ .help-text{ font-size:48px; line-height:1.35; margin-right:56px; }
71
+ /* Chat FAB */
72
+ .fab{
73
+ position:absolute; right:36px; bottom:140px; width:170px; height:170px; border-radius:50%;
74
+ background:#0a66ff; display:flex; align-items:center; justify-content:center;
75
+ box-shadow:0 16px 28px rgba(10,102,255,.35);
76
+ }
77
+ .fab svg{ width:90px; height:90px; fill:#fff; }
78
+ </style>
79
+ </head>
80
+ <body>
81
+ <div id="render-target">
82
+ <!-- Status bar -->
83
+ <div class="status">
84
+ <div>10:49</div>
85
+ <div class="icons">
86
+ <span class="icon-dot"></span>
87
+ <div class="wifi">
88
+ <svg viewBox="0 0 24 24"><path d="M12 18.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Zm-3.3-2.9 1.1 1.1a3.1 3.1 0 0 1 4.4 0l1.1-1.1a4.7 4.7 0 0 0-6.6 0Zm-3-3 1.1 1.1a8 8 0 0 1 11.4 0l1.1-1.1a9.6 9.6 0 0 0-13.6 0Z"/></svg>
89
+ </div>
90
+ <div class="battery">
91
+ <svg viewBox="0 0 28 16"><rect x="1" y="3" width="22" height="10" rx="2" fill="#222"/><rect x="24" y="6" width="3" height="4" fill="#222"/></svg>
92
+ </div>
93
+ </div>
94
+ </div>
95
+
96
+ <!-- Header -->
97
+ <div class="header">
98
+ <div class="close">
99
+ <svg viewBox="0 0 24 24"><path d="M6 6l12 12M18 6L6 18" stroke="#222" stroke-width="2" stroke-linecap="round"/></svg>
100
+ </div>
101
+ <div class="title">Help & Contact</div>
102
+ </div>
103
+
104
+ <!-- Search -->
105
+ <div class="search-wrap">
106
+ <div class="search">
107
+ <svg viewBox="0 0 24 24"><circle cx="10" cy="10" r="7" stroke="none"/><path d="M15.5 15.5 22 22" stroke="#9e9e9e" stroke-width="2" stroke-linecap="round"/></svg>
108
+ <span>Search eBay Help...</span>
109
+ </div>
110
+ </div>
111
+ <div class="accent"></div>
112
+
113
+ <!-- Content -->
114
+ <div class="content">
115
+ <p class="lead">
116
+ Once you request a return, the seller should get back to you within 3 business days. If the seller doesn't respond or you're unable to resolve the issue with them, you can ask us to step in and help.
117
+ </p>
118
+
119
+ <div class="section-title">
120
+ <div class="minus">–</div>
121
+ <div>More info on when you can return an item</div>
122
+ </div>
123
+
124
+ <div class="card">
125
+ <p>
126
+ Many eBay sellers accept returns if you've changed your mind. Check the listing in your
127
+ <a href="#">Purchases</a> to see the seller's full return policy, including how long you have to request a return and any other conditions.
128
+ </p>
129
+
130
+ <ul>
131
+ <li>
132
+ If the seller states in their return policy that they don't accept returns, you can ask them to see if they'll make an exception
133
+ </li>
134
+ <li>
135
+ If the item doesn't match the listing description, or if it is faulty or arrived damaged, you may be covered by our
136
+ <span class="subtle">Money Back Guarantee</span>.
137
+ </li>
138
+ </ul>
139
+
140
+ <h3 class="subheading">Open a return request</h3>
141
+ <p class="subtle">To request a return, select the item you want to...</p>
142
+ </div>
143
+ </div>
144
+
145
+ <!-- Floating blue help bubble -->
146
+ <div class="help-bubble">
147
+ <div class="close-x">
148
+ <svg viewBox="0 0 24 24"><path d="M6 6l12 12M18 6L6 18" stroke="#fff" stroke-width="2" stroke-linecap="round"/></svg>
149
+ </div>
150
+ <div class="help-text">
151
+ Get the help you need from our automated assistant, or contact an agent.
152
+ </div>
153
+ </div>
154
+
155
+ <!-- Chat floating action button -->
156
+ <div class="fab" aria-label="Chat">
157
+ <svg viewBox="0 0 24 24">
158
+ <path d="M4 4h16a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H9l-5 4v-4H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2z" fill="#fff" opacity=".25"/>
159
+ <path d="M7 9h10M7 13h6" stroke="#fff" stroke-width="2" stroke-linecap="round"/>
160
+ <text x="17" y="10" font-size="6" fill="#fff" font-weight="700">?</text>
161
+ </svg>
162
+ </div>
163
+
164
+ </div>
165
+ </body>
166
+ </html>
code/1017/1017_7.html ADDED
@@ -0,0 +1,209 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="utf-8">
4
+ <title>Mockup - eBay Help & Contact</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:#ffffff;
11
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
12
+ color:#111;
13
+ }
14
+
15
+ /* Status bar */
16
+ .status-bar {
17
+ height:72px;
18
+ padding:0 36px;
19
+ display:flex; align-items:center; justify-content:space-between;
20
+ color:#222;
21
+ font-size:34px; font-weight:600;
22
+ }
23
+ .status-right { display:flex; align-items:center; gap:22px; }
24
+ .icon { width:34px; height:34px; }
25
+ .wifi svg, .battery svg { width:40px; height:28px; }
26
+ .dot {
27
+ width:18px; height:18px; border-radius:50%; background:#9e9e9e; display:inline-block; margin-left:12px;
28
+ }
29
+
30
+ /* App bar */
31
+ .app-bar {
32
+ height:110px;
33
+ display:flex; align-items:center;
34
+ padding:0 32px;
35
+ border-bottom:1px solid #eee;
36
+ }
37
+ .icon-btn {
38
+ width:76px; height:76px;
39
+ border:none; background:#f5f5f7; border-radius:38px;
40
+ display:flex; align-items:center; justify-content:center;
41
+ margin-right:18px;
42
+ }
43
+ .icon-btn svg { width:32px; height:32px; }
44
+ .title {
45
+ font-size:60px; font-weight:700; letter-spacing:0.2px;
46
+ }
47
+
48
+ /* Search */
49
+ .search-wrap { padding:24px 32px; }
50
+ .search-bar {
51
+ height:96px; border-radius:48px;
52
+ background:#f2f4f7; border:1px solid #e6e8eb;
53
+ display:flex; align-items:center;
54
+ padding:0 30px; color:#777;
55
+ font-size:36px;
56
+ }
57
+ .search-bar svg { width:40px; height:40px; margin-right:18px; }
58
+
59
+ /* Content */
60
+ .content { padding:8px 40px 160px; line-height:1.5; }
61
+ .bullet {
62
+ display:flex; gap:18px; margin-top:24px; font-size:37px; color:#333;
63
+ }
64
+ .bullet .dot-b {
65
+ width:14px; height:14px; background:#222; border-radius:50%; margin-top:20px;
66
+ }
67
+ a.link { color:#1a73e8; text-decoration:none; }
68
+
69
+ h2.section-title {
70
+ margin-top:64px; font-size:46px; font-weight:800; color:#111;
71
+ }
72
+ .paragraph {
73
+ margin-top:16px; font-size:36px; color:#333;
74
+ }
75
+
76
+ .primary-btn {
77
+ margin:36px 0;
78
+ width:100%; max-width:960px;
79
+ height:110px; border-radius:60px;
80
+ background:#1565ff; color:#fff;
81
+ display:flex; align-items:center; justify-content:center;
82
+ font-size:42px; font-weight:700;
83
+ box-shadow: 0 6px 12px rgba(21,101,255,0.25);
84
+ }
85
+
86
+ .expander {
87
+ display:flex; align-items:center; gap:22px;
88
+ height:auto; padding:26px 0;
89
+ border-top:1px solid #eee;
90
+ font-size:40px; color:#111;
91
+ }
92
+ .plus {
93
+ width:56px; height:56px; border-radius:28px;
94
+ border:2px solid #1a73e8; color:#1a73e8;
95
+ display:flex; align-items:center; justify-content:center; font-weight:700;
96
+ }
97
+
98
+ .sub-section-title {
99
+ margin-top:54px; font-size:44px; font-weight:800;
100
+ }
101
+
102
+ /* Floating chat */
103
+ .chat-fab {
104
+ position:absolute; right:36px; bottom:230px;
105
+ width:160px; height:160px; border-radius:80px;
106
+ background:#1a73e8; box-shadow:0 12px 24px rgba(0,0,0,0.25);
107
+ display:flex; align-items:center; justify-content:center;
108
+ }
109
+ .chat-fab svg { width:76px; height:76px; fill:#fff; }
110
+
111
+ /* Gesture bar */
112
+ .gesture {
113
+ position:absolute; bottom:40px; left:50%; transform:translateX(-50%);
114
+ width:360px; height:12px; border-radius:8px; background:#cfcfcf;
115
+ }
116
+ </style>
117
+ </head>
118
+ <body>
119
+ <div id="render-target">
120
+
121
+ <!-- Status Bar -->
122
+ <div class="status-bar">
123
+ <div class="status-left">10:50<span class="dot"></span></div>
124
+ <div class="status-right">
125
+ <div class="wifi">
126
+ <svg viewBox="0 0 24 24">
127
+ <path d="M3 8c9-6 18 0 18 0" stroke="#333" stroke-width="2" fill="none" stroke-linecap="round"/>
128
+ <path d="M6 12c6-4 12 0 12 0" stroke="#333" stroke-width="2" fill="none" stroke-linecap="round"/>
129
+ <circle cx="12" cy="16" r="2" fill="#333"/>
130
+ </svg>
131
+ </div>
132
+ <div class="battery">
133
+ <svg viewBox="0 0 32 20">
134
+ <rect x="2" y="4" width="26" height="12" rx="3" ry="3" stroke="#333" stroke-width="2" fill="none"/>
135
+ <rect x="4" y="6" width="18" height="8" fill="#333"/>
136
+ <rect x="28" y="7" width="3" height="6" rx="1" fill="#333"/>
137
+ </svg>
138
+ </div>
139
+ </div>
140
+ </div>
141
+
142
+ <!-- App Bar -->
143
+ <div class="app-bar">
144
+ <button class="icon-btn" aria-label="Close">
145
+ <svg viewBox="0 0 24 24">
146
+ <path d="M5 5 L19 19 M19 5 L5 19" stroke="#333" stroke-width="2" stroke-linecap="round"/>
147
+ </svg>
148
+ </button>
149
+ <div class="title">Help &amp; Contact</div>
150
+ </div>
151
+
152
+ <!-- Search -->
153
+ <div class="search-wrap">
154
+ <div class="search-bar">
155
+ <svg viewBox="0 0 24 24">
156
+ <circle cx="11" cy="11" r="7" stroke="#999" stroke-width="2" fill="none"/>
157
+ <path d="M20 20 L16 16" stroke="#999" stroke-width="2" stroke-linecap="round"/>
158
+ </svg>
159
+ <span>Search eBay Help...</span>
160
+ </div>
161
+ </div>
162
+
163
+ <!-- Content -->
164
+ <div class="content">
165
+ <div class="bullet">
166
+ <div class="dot-b"></div>
167
+ <div>
168
+ If the item doesn't match the listing description, or if it is faulty or arrived
169
+ damaged, you may be eligible for <a href="#" class="link">eBay Money Back Guarantee</a>.
170
+ This means that you can return it even if the seller's returns policy says they don't accept returns
171
+ </div>
172
+ </div>
173
+
174
+ <h2 class="section-title">Open a return request</h2>
175
+ <div class="paragraph">
176
+ To request a return, select the item you want to send back from your recent purchases above, or
177
+ use the button below. You can also start a return request from your <b>Purchases</b> in My eBay.
178
+ </div>
179
+
180
+ <div class="primary-btn">Start a return</div>
181
+
182
+ <div class="expander">
183
+ <div class="plus">+</div>
184
+ <div>How to request a return through My eBay</div>
185
+ </div>
186
+ <div class="expander">
187
+ <div class="plus">+</div>
188
+ <div>How to return multiple items</div>
189
+ </div>
190
+
191
+ <div class="sub-section-title">How the seller may respond to your request</div>
192
+ <div class="paragraph">
193
+ The seller has 3 business days to get back to you. How they can respond depends on the reason for your return:
194
+ </div>
195
+ </div>
196
+
197
+ <!-- Floating chat button -->
198
+ <div class="chat-fab" aria-label="Help">
199
+ <svg viewBox="0 0 24 24">
200
+ <path d="M12 3c5 0 9 3.5 9 7.8S17 19 12 19c-1.1 0-2.1-.2-3-.5L5 21l1.3-3.3C5.5 16.4 4 14.4 4 10.8 4 6.5 7 3 12 3z" fill="#fff" opacity="0.2"/>
201
+ <text x="11.5" y="16" text-anchor="middle" font-size="14" font-weight="700" fill="#fff">?</text>
202
+ </svg>
203
+ </div>
204
+
205
+ <!-- Gesture bar -->
206
+ <div class="gesture"></div>
207
+ </div>
208
+ </body>
209
+ </html>
code/10170/10170_0.html ADDED
@@ -0,0 +1,262 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="utf-8">
4
+ <title>Mail UI Mock</title>
5
+ <style>
6
+ body { margin:0; padding:0; background:transparent; font-family: "Roboto", Arial, sans-serif; }
7
+ #render-target {
8
+ width:1080px; height:2400px; position:relative; overflow:hidden;
9
+ background:#121212; color:#fff;
10
+ }
11
+
12
+ /* Top purple app bar */
13
+ .appbar { position:absolute; left:0; top:0; width:100%; height:260px; background:#5B42C2; }
14
+ .status { height:110px; display:flex; align-items:center; padding:0 36px; color:#fff; font-size:32px; }
15
+ .status .icons { margin-left:auto; display:flex; gap:26px; align-items:center; }
16
+ .titlebar { height:150px; display:flex; align-items:center; padding:0 36px; color:#fff; }
17
+ .title { font-size:56px; font-weight:700; margin-left:20px; }
18
+ .titlebar .right { margin-left:auto; display:flex; gap:34px; align-items:center; }
19
+
20
+ /* List container */
21
+ .list { position:absolute; left:0; top:260px; width:100%; bottom:200px; overflow:hidden; }
22
+ .email { display:flex; padding:34px 40px; border-bottom:1px solid rgba(255,255,255,0.06); background:#0e0e0e; position:relative; }
23
+ .email.alt { background:#111111; }
24
+ .email.highlight { background:#2e2e2e; }
25
+ .left-dot { width:18px; height:18px; background:#3DA5FF; border-radius:50%; margin-right:26px; margin-top:10px; }
26
+ .content { flex:1; }
27
+ .top-row { display:flex; align-items:center; }
28
+ .sender { font-size:42px; font-weight:800; }
29
+ .subject { font-size:36px; font-weight:700; color:#ffffff; margin-top:10px; }
30
+ .snippet { font-size:32px; color:#b9b9b9; margin-top:8px; }
31
+ .time { position:absolute; right:40px; top:40px; color:#b9b9b9; font-size:30px; }
32
+
33
+ /* Right side star icon */
34
+ .star { margin-left:auto; width:48px; height:48px; }
35
+ .star svg { width:48px; height:48px; fill:none; stroke:#cfcfcf; stroke-width:4; }
36
+
37
+ /* Bottom nav */
38
+ .bottom { position:absolute; left:0; right:0; bottom:0; height:200px; background:#1a1a1a; border-top:1px solid rgba(255,255,255,0.06); display:flex; align-items:center; justify-content:space-around; padding:0 30px; }
39
+ .nav-icon { width:90px; height:90px; display:flex; align-items:center; justify-content:center; }
40
+ .nav-icon svg { width:72px; height:72px; fill:none; stroke:#e0e0e0; stroke-width:4; }
41
+ .compose { width:120px; height:120px; border-radius:26px; background:#2a2a2a; display:flex; align-items:center; justify-content:center; }
42
+ .home-indicator { position:absolute; left:50%; transform:translateX(-50%); bottom:20px; width:500px; height:16px; background:#eaeaea; border-radius:10px; opacity:0.85; }
43
+
44
+ /* Small utilities */
45
+ .hamburger svg, .search svg, .wave svg { width:52px; height:52px; stroke:#fff; fill:none; stroke-width:6; }
46
+ </style>
47
+ </head>
48
+ <body>
49
+ <div id="render-target">
50
+
51
+ <!-- Top App Bar -->
52
+ <div class="appbar">
53
+ <div class="status">
54
+ <div>12:32</div>
55
+ <div class="icons">
56
+ <!-- simple status dots -->
57
+ <svg width="28" height="28"><circle cx="14" cy="14" r="10" fill="#fff"/></svg>
58
+ <svg width="28" height="28"><circle cx="14" cy="14" r="10" fill="#fff" opacity="0.7"/></svg>
59
+ <svg width="28" height="28"><circle cx="14" cy="14" r="10" fill="#fff" opacity="0.5"/></svg>
60
+ <svg width="34" height="34"><rect x="6" y="6" width="22" height="22" fill="#fff"/></svg>
61
+ <svg width="34" height="34"><polygon points="6,30 28,30 28,10 6,20" fill="#fff"/></svg>
62
+ </div>
63
+ </div>
64
+ <div class="titlebar">
65
+ <!-- Hamburger -->
66
+ <div class="hamburger">
67
+ <svg viewBox="0 0 24 24">
68
+ <path d="M3 5h18M3 12h18M3 19h18"/>
69
+ </svg>
70
+ </div>
71
+ <div class="title">All Mail</div>
72
+ <div class="right">
73
+ <!-- Wave/Activity icon -->
74
+ <div class="wave">
75
+ <svg viewBox="0 0 24 24">
76
+ <path d="M2 12c3-6 5 6 8 0s5 6 12-2" />
77
+ </svg>
78
+ </div>
79
+ <!-- Search -->
80
+ <div class="search">
81
+ <svg viewBox="0 0 24 24">
82
+ <circle cx="11" cy="11" r="7"></circle>
83
+ <path d="M21 21l-5.2-5.2"></path>
84
+ </svg>
85
+ </div>
86
+ </div>
87
+ </div>
88
+ </div>
89
+
90
+ <!-- Mail List -->
91
+ <div class="list">
92
+
93
+ <!-- Email 1 -->
94
+ <div class="email alt">
95
+ <div class="left-dot"></div>
96
+ <div class="content">
97
+ <div class="top-row">
98
+ <div class="sender">Raghav Himatsingka</div>
99
+ <div class="star">
100
+ <svg viewBox="0 0 24 24"><path d="M12 3l3 6 6 .9-4.5 4.3 1 6-5.5-3-5.5 3 1-6L3 9.9 9 9z"/></svg>
101
+ </div>
102
+ </div>
103
+ <div class="subject">Secret 1 of Upcoming Masterclass For Your Child</div>
104
+ <div class="snippet">Sneak Preview of your upcoming Masterclass!</div>
105
+ </div>
106
+ <div class="time">11m</div>
107
+ </div>
108
+
109
+ <!-- Email 2 -->
110
+ <div class="email alt">
111
+ <div class="left-dot" style="background:#0000;"></div>
112
+ <div class="content">
113
+ <div class="top-row">
114
+ <div class="sender">Me &amp; dbwscratch.test.id6</div>
115
+ <div class="star">
116
+ <svg viewBox="0 0 24 24"><path d="M12 3l3 6 6 .9-4.5 4.3 1 6-5.5-3-5.5 3 1-6L3 9.9 9 9z"/></svg>
117
+ </div>
118
+ </div>
119
+ <div class="subject">Re: Working from office</div>
120
+ <div class="snippet">I Will come office from 1 sep 2023.</div>
121
+ </div>
122
+ <div class="time">1h</div>
123
+ </div>
124
+
125
+ <!-- Email 3 -->
126
+ <div class="email alt">
127
+ <div class="left-dot" style="background:#0000;"></div>
128
+ <div class="content">
129
+ <div class="top-row">
130
+ <div class="sender">Me &amp; Cerebra</div>
131
+ <div class="star">
132
+ <svg viewBox="0 0 24 24"><path d="M12 3l3 6 6 .9-4.5 4.3 1 6-5.5-3-5.5 3 1-6L3 9.9 9 9z"/></svg>
133
+ </div>
134
+ </div>
135
+ <div class="subject">OFFICIAL WEEKEND PARTY</div>
136
+ <div class="snippet">Thanks a lot.</div>
137
+ </div>
138
+ <div class="time">2h</div>
139
+ </div>
140
+
141
+ <!-- Email 4 (highlight) -->
142
+ <div class="email highlight">
143
+ <div class="left-dot"></div>
144
+ <div class="content">
145
+ <div class="top-row">
146
+ <div class="sender">Glow Nurture</div>
147
+ <div class="star">
148
+ <svg viewBox="0 0 24 24"><path d="M12 3l3 6 6 .9-4.5 4.3 1 6-5.5-3-5.5 3 1-6L3 9.9 9 9z"/></svg>
149
+ </div>
150
+ </div>
151
+ <div class="subject">Your baby on Day 302</div>
152
+ </div>
153
+ <div class="time">2h</div>
154
+ </div>
155
+
156
+ <!-- Email 5 -->
157
+ <div class="email alt">
158
+ <div class="left-dot" style="background:#0000;"></div>
159
+ <div class="content">
160
+ <div class="top-row">
161
+ <div class="sender">Cerebra Research</div>
162
+ <div class="star">
163
+ <svg viewBox="0 0 24 24"><path d="M12 3l3 6 6 .9-4.5 4.3 1 6-5.5-3-5.5 3 1-6L3 9.9 9 9z"/></svg>
164
+ </div>
165
+ </div>
166
+ <div class="subject">Event organiser</div>
167
+ <div class="snippet">Hello, I am organising a small event on 14th August...</div>
168
+ </div>
169
+ <div class="time">2h</div>
170
+ </div>
171
+
172
+ <!-- Email 6 -->
173
+ <div class="email alt">
174
+ <div class="left-dot" style="background:#0000;"></div>
175
+ <div class="content">
176
+ <div class="top-row">
177
+ <div class="sender">Me to Cerebra</div>
178
+ <div class="star">
179
+ <svg viewBox="0 0 24 24"><path d="M12 3l3 6 6 .9-4.5 4.3 1 6-5.5-3-5.5 3 1-6L3 9.9 9 9z"/></svg>
180
+ </div>
181
+ </div>
182
+ <div class="subject">Business meeting with the Clients</div>
183
+ <div class="snippet">We have a business meeting on August 30, 2023, s...</div>
184
+ </div>
185
+ <div class="time">2h</div>
186
+ </div>
187
+
188
+ <!-- Email 7 -->
189
+ <div class="email alt">
190
+ <div class="left-dot" style="background:#0000;"></div>
191
+ <div class="content">
192
+ <div class="top-row">
193
+ <div class="sender">Google</div>
194
+ <div class="star">
195
+ <svg viewBox="0 0 24 24"><path d="M12 3l3 6 6 .9-4.5 4.3 1 6-5.5-3-5.5 3 1-6L3 9.9 9 9z"/></svg>
196
+ </div>
197
+ </div>
198
+ <div class="subject">Security alert</div>
199
+ <div class="snippet">Newton by CloudMagic was granted access to your...</div>
200
+ </div>
201
+ <div class="time">4h</div>
202
+ </div>
203
+
204
+ <!-- Email 8 -->
205
+ <div class="email alt">
206
+ <div class="left-dot" style="background:#0000;"></div>
207
+ <div class="content">
208
+ <div class="top-row">
209
+ <div class="sender">Webex</div>
210
+ <div class="star">
211
+ <svg viewBox="0 0 24 24"><path d="M12 3l3 6 6 .9-4.5 4.3 1 6-5.5-3-5.5 3 1-6L3 9.9 9 9z"/></svg>
212
+ </div>
213
+ </div>
214
+ <div class="subject">Limited Spots. Unlimited Potential.</div>
215
+ </div>
216
+ </div>
217
+
218
+ </div>
219
+
220
+ <!-- Bottom Navigation -->
221
+ <div class="bottom">
222
+ <div class="nav-icon">
223
+ <!-- inbox tray -->
224
+ <svg viewBox="0 0 24 24">
225
+ <path d="M3 4h18v10h-6l-3 3-3-3H3z"></path>
226
+ </svg>
227
+ </div>
228
+ <div class="nav-icon">
229
+ <!-- star -->
230
+ <svg viewBox="0 0 24 24">
231
+ <path d="M12 3l3 6 6 .9-4.5 4.3 1 6-5.5-3-5.5 3 1-6L3 9.9 9 9z"></path>
232
+ </svg>
233
+ </div>
234
+ <div class="nav-icon">
235
+ <!-- envelope -->
236
+ <svg viewBox="0 0 24 24">
237
+ <path d="M3 6h18v12H3z"></path>
238
+ <path d="M3 7l9 6 9-6"></path>
239
+ </svg>
240
+ </div>
241
+ <div class="nav-icon">
242
+ <!-- people / group -->
243
+ <svg viewBox="0 0 24 24">
244
+ <circle cx="9" cy="9" r="4"></circle>
245
+ <circle cx="17" cy="11" r="3"></circle>
246
+ <path d="M3 21c2-5 10-5 12 0M12 20c2-3 7-3 9 0"></path>
247
+ </svg>
248
+ </div>
249
+ <div class="compose">
250
+ <!-- pencil -->
251
+ <svg viewBox="0 0 24 24">
252
+ <path d="M4 20l4-1 10-10-3-3L5 16l-1 4z"></path>
253
+ <path d="M13 5l3 3"></path>
254
+ </svg>
255
+ </div>
256
+ </div>
257
+
258
+ <div class="home-indicator"></div>
259
+
260
+ </div>
261
+ </body>
262
+ </html>
code/10170/10170_1.html ADDED
@@ -0,0 +1,309 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Inbox UI Mock</title>
5
+ <style>
6
+ body { margin:0; padding:0; background:transparent; font-family: Arial, Helvetica, sans-serif; }
7
+ #render-target {
8
+ width:1080px; height:2400px; position:relative; overflow:hidden;
9
+ background:#0f0f12; border-radius:24px; box-shadow:0 10px 30px rgba(0,0,0,0.35);
10
+ color:#fff;
11
+ }
12
+
13
+ /* Top area */
14
+ .topbar {
15
+ position:absolute; left:0; top:0; width:100%; height:220px;
16
+ background:#5b45c9;
17
+ }
18
+ .status {
19
+ height:80px; display:flex; align-items:center; padding:0 32px; color:#fff; font-size:34px;
20
+ }
21
+ .status .icons { margin-left:auto; display:flex; align-items:center; gap:22px; }
22
+ .appbar {
23
+ height:140px; display:flex; align-items:center; padding:0 28px;
24
+ color:#fff;
25
+ }
26
+ .appbar .title { font-size:56px; font-weight:700; margin-left:24px; }
27
+ .appbar .right { margin-left:auto; display:flex; align-items:center; gap:36px; }
28
+
29
+ /* List */
30
+ .list {
31
+ position:absolute; left:0; right:0; top:220px; bottom:210px;
32
+ background:#101010; overflow:hidden; /* static mock, no scroll */
33
+ }
34
+ .item {
35
+ position:relative;
36
+ padding:34px 40px 30px 40px;
37
+ border-bottom:1px solid #1d1d1d;
38
+ background:#000;
39
+ }
40
+ .item.dim { background:#2b2b2f; }
41
+ .sender-row {
42
+ display:flex; align-items:center; gap:18px; margin-bottom:14px;
43
+ color:#e5e5e5; font-weight:700; font-size:40px;
44
+ }
45
+ .dot {
46
+ width:16px; height:16px; border-radius:50%; background:#3da7ff; display:inline-block;
47
+ }
48
+ .subject {
49
+ font-size:44px; font-weight:800; color:#fff; line-height:1.2; margin-bottom:10px;
50
+ }
51
+ .sub-dark { color:#ddd; font-weight:700; }
52
+ .preview-time {
53
+ display:flex; align-items:center; justify-content:space-between;
54
+ color:#b7b7b7; font-size:32px;
55
+ }
56
+ .time { color:#bcbcbc; margin-left:12px; white-space:nowrap; }
57
+
58
+ .star {
59
+ position:absolute; right:40px; top:36px;
60
+ }
61
+ .star svg { width:46px; height:46px; }
62
+ .star.outline svg path { fill:none; stroke:#bfbfbf; stroke-width:3; }
63
+ .star.filled svg path { fill:#ff8f3a; stroke:#ff8f3a; }
64
+
65
+ /* Bottom nav */
66
+ .bottom-nav {
67
+ position:absolute; left:0; right:0; bottom:0; height:190px;
68
+ background:#1b1b1d; display:flex; align-items:center; justify-content:space-around;
69
+ padding:0 40px;
70
+ }
71
+ .nav-icon { width:92px; height:92px; display:flex; align-items:center; justify-content:center; }
72
+ .nav-icon svg { width:72px; height:72px; }
73
+ .nav-icon .circle {
74
+ width:100px; height:100px; border-radius:50%; border:2px solid #666; display:flex; align-items:center; justify-content:center;
75
+ }
76
+ .gesture {
77
+ position:absolute; bottom:210px; left:50%; transform:translateX(-50%);
78
+ width:320px; height:14px; background:#e9e9e9; border-radius:12px; opacity:0.9;
79
+ }
80
+ </style>
81
+ </head>
82
+ <body>
83
+ <div id="render-target">
84
+
85
+ <!-- Top purple area -->
86
+ <div class="topbar">
87
+ <div class="status">
88
+ <div>12:34</div>
89
+ <div class="icons">
90
+ <!-- small status icons -->
91
+ <svg viewBox="0 0 24 24" width="30" height="30">
92
+ <circle cx="12" cy="12" r="9" fill="none" stroke="#fff" stroke-width="2"></circle>
93
+ <path d="M8 12h8" stroke="#fff" stroke-width="2" stroke-linecap="round"></path>
94
+ </svg>
95
+ <svg viewBox="0 0 24 24" width="30" height="30">
96
+ <path d="M4 8h16M4 12h12M4 16h8" stroke="#fff" stroke-width="2" fill="none" stroke-linecap="round"></path>
97
+ </svg>
98
+ <svg viewBox="0 0 24 24" width="30" height="30">
99
+ <path d="M5 14l4-4 4 4 6-6" stroke="#fff" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"></path>
100
+ </svg>
101
+ <svg viewBox="0 0 24 24" width="30" height="30">
102
+ <path d="M3 12h14l4-3v6l-4-3H3z" fill="none" stroke="#fff" stroke-width="2"></path>
103
+ </svg>
104
+ </div>
105
+ </div>
106
+ <div class="appbar">
107
+ <!-- hamburger -->
108
+ <svg viewBox="0 0 24 24" width="48" height="48">
109
+ <path d="M3 6h18M3 12h18M3 18h18" stroke="#fff" stroke-width="3" stroke-linecap="round" fill="none"></path>
110
+ </svg>
111
+ <div class="title">All Mail</div>
112
+ <div class="right">
113
+ <!-- pulse/zigzag icon -->
114
+ <svg viewBox="0 0 24 24" width="48" height="48">
115
+ <path d="M3 14l4-6 4 8 4-5 6 3" stroke="#fff" stroke-width="2.5" fill="none" stroke-linecap="round" stroke-linejoin="round"></path>
116
+ </svg>
117
+ <!-- search icon -->
118
+ <svg viewBox="0 0 24 24" width="48" height="48">
119
+ <circle cx="11" cy="11" r="7" stroke="#fff" stroke-width="2.5" fill="none"></circle>
120
+ <path d="M20 20l-4-4" stroke="#fff" stroke-width="2.5" stroke-linecap="round"></path>
121
+ </svg>
122
+ </div>
123
+ </div>
124
+ </div>
125
+
126
+ <!-- List items -->
127
+ <div class="list">
128
+ <!-- Email 1 -->
129
+ <div class="item">
130
+ <div class="sender-row">
131
+ <span class="dot"></span>
132
+ <span>Raghav Himatsingka</span>
133
+ </div>
134
+ <div class="subject">Secret 1 of Upcoming Masterclass For Your Child</div>
135
+ <div class="preview-time">
136
+ <div class="preview">Sneak Preview of your upcoming Masterclass!</div>
137
+ <div class="time">14m</div>
138
+ </div>
139
+ <div class="star outline">
140
+ <svg viewBox="0 0 24 24">
141
+ <path d="M12 3l3.1 6.3 7 1-5.1 4.7 1.5 7-6.5-3.6-6.5 3.6 1.5-7-5.1-4.7 7-1z"></path>
142
+ </svg>
143
+ </div>
144
+ </div>
145
+
146
+ <!-- Email 2 -->
147
+ <div class="item">
148
+ <div class="sender-row">
149
+ <span>Me &amp; dbwscratch.test.id6</span>
150
+ </div>
151
+ <div class="subject sub-dark">Re: Working from office</div>
152
+ <div class="preview-time">
153
+ <div class="preview">I will come office from 1 Sep 2023.</div>
154
+ <div class="time">1h</div>
155
+ </div>
156
+ <div class="star outline">
157
+ <svg viewBox="0 0 24 24">
158
+ <path d="M12 3l3.1 6.3 7 1-5.1 4.7 1.5 7-6.5-3.6-6.5 3.6 1.5-7-5.1-4.7 7-1z"></path>
159
+ </svg>
160
+ </div>
161
+ </div>
162
+
163
+ <!-- Email 3 -->
164
+ <div class="item">
165
+ <div class="sender-row">
166
+ <span>Me &amp; Cerebra</span>
167
+ </div>
168
+ <div class="subject">OFFICIAL WEEKEND PARTY</div>
169
+ <div class="preview-time">
170
+ <div class="preview">Thanks a lot.</div>
171
+ <div class="time">2h</div>
172
+ </div>
173
+ <div class="star outline">
174
+ <svg viewBox="0 0 24 24">
175
+ <path d="M12 3l3.1 6.3 7 1-5.1 4.7 1.5 7-6.5-3.6-6.5 3.6 1.5-7-5.1-4.7 7-1z"></path>
176
+ </svg>
177
+ </div>
178
+ </div>
179
+
180
+ <!-- Email 4 (Dim background + orange star) -->
181
+ <div class="item dim">
182
+ <div class="sender-row">
183
+ <span class="dot"></span>
184
+ <span>Glow Nurture</span>
185
+ </div>
186
+ <div class="subject">Your baby on Day 302</div>
187
+ <div class="preview-time">
188
+ <div class="preview"></div>
189
+ <div class="time">2h</div>
190
+ </div>
191
+ <div class="star filled">
192
+ <svg viewBox="0 0 24 24">
193
+ <path d="M12 3l3.1 6.3 7 1-5.1 4.7 1.5 7-6.5-3.6-6.5 3.6 1.5-7-5.1-4.7 7-1z"></path>
194
+ </svg>
195
+ </div>
196
+ </div>
197
+
198
+ <!-- Email 5 -->
199
+ <div class="item">
200
+ <div class="sender-row">
201
+ <span>Cerebra Research</span>
202
+ </div>
203
+ <div class="subject sub-dark">Event organiser</div>
204
+ <div class="preview-time">
205
+ <div class="preview">Hello, I am organising a small event on 14th August...</div>
206
+ <div class="time">2h</div>
207
+ </div>
208
+ <div class="star outline">
209
+ <svg viewBox="0 0 24 24">
210
+ <path d="M12 3l3.1 6.3 7 1-5.1 4.7 1.5 7-6.5-3.6-6.5 3.6 1.5-7-5.1-4.7 7-1z"></path>
211
+ </svg>
212
+ </div>
213
+ </div>
214
+
215
+ <!-- Email 6 -->
216
+ <div class="item">
217
+ <div class="sender-row">
218
+ <span>Me to Cerebra</span>
219
+ </div>
220
+ <div class="subject sub-dark">Business meeting with the Clients</div>
221
+ <div class="preview-time">
222
+ <div class="preview">We have a business meeting on August 30, 2023, s...</div>
223
+ <div class="time">2h</div>
224
+ </div>
225
+ <div class="star outline">
226
+ <svg viewBox="0 0 24 24">
227
+ <path d="M12 3l3.1 6.3 7 1-5.1 4.7 1.5 7-6.5-3.6-6.5 3.6 1.5-7-5.1-4.7 7-1z"></path>
228
+ </svg>
229
+ </div>
230
+ </div>
231
+
232
+ <!-- Email 7 -->
233
+ <div class="item">
234
+ <div class="sender-row">
235
+ <span>Google</span>
236
+ </div>
237
+ <div class="subject sub-dark">Security alert</div>
238
+ <div class="preview-time">
239
+ <div class="preview">Newton by CloudMagic was granted access to your...</div>
240
+ <div class="time">4h</div>
241
+ </div>
242
+ <div class="star outline">
243
+ <svg viewBox="0 0 24 24">
244
+ <path d="M12 3l3.1 6.3 7 1-5.1 4.7 1.5 7-6.5-3.6-6.5 3.6 1.5-7-5.1-4.7 7-1z"></path>
245
+ </svg>
246
+ </div>
247
+ </div>
248
+
249
+ <!-- Email 8 -->
250
+ <div class="item">
251
+ <div class="sender-row">
252
+ <span>Webex</span>
253
+ </div>
254
+ <div class="subject">Limited Spots. Unlimited Potential.</div>
255
+ <div class="preview-time">
256
+ <div class="preview"></div>
257
+ <div class="time"></div>
258
+ </div>
259
+ <div class="star outline">
260
+ <svg viewBox="0 0 24 24">
261
+ <path d="M12 3l3.1 6.3 7 1-5.1 4.7 1.5 7-6.5-3.6-6.5 3.6 1.5-7-5.1-4.7 7-1z"></path>
262
+ </svg>
263
+ </div>
264
+ </div>
265
+ </div>
266
+
267
+ <!-- Bottom navigation -->
268
+ <div class="bottom-nav">
269
+ <!-- Inbox tray -->
270
+ <div class="nav-icon">
271
+ <svg viewBox="0 0 24 24">
272
+ <path d="M3 5h18v10l-4 4H7l-4-4V5zm4 10h10" fill="none" stroke="#e6e6e6" stroke-width="2" stroke-linejoin="round"></path>
273
+ </svg>
274
+ </div>
275
+ <!-- Star -->
276
+ <div class="nav-icon">
277
+ <svg viewBox="0 0 24 24">
278
+ <path d="M12 3l3.1 6.3 7 1-5.1 4.7 1.5 7-6.5-3.6-6.5 3.6 1.5-7-5.1-4.7 7-1z" fill="none" stroke="#e6e6e6" stroke-width="2"></path>
279
+ </svg>
280
+ </div>
281
+ <!-- Envelope -->
282
+ <div class="nav-icon">
283
+ <svg viewBox="0 0 24 24">
284
+ <rect x="3" y="6" width="18" height="12" rx="2" ry="2" fill="none" stroke="#e6e6e6" stroke-width="2"></rect>
285
+ <path d="M3 8l9 6 9-6" stroke="#e6e6e6" stroke-width="2" fill="none"></path>
286
+ </svg>
287
+ </div>
288
+ <!-- Feed/Waves -->
289
+ <div class="nav-icon">
290
+ <svg viewBox="0 0 24 24">
291
+ <path d="M3 16c3-3 6-3 9 0s6 3 9 0" stroke="#e6e6e6" stroke-width="2" fill="none" stroke-linecap="round"></path>
292
+ <path d="M5 10c2-2 4-2 6 0s4 2 6 0" stroke="#e6e6e6" stroke-width="2" fill="none" stroke-linecap="round"></path>
293
+ </svg>
294
+ </div>
295
+ <!-- Compose pencil -->
296
+ <div class="nav-icon">
297
+ <div class="circle">
298
+ <svg viewBox="0 0 24 24">
299
+ <path d="M4 18l1-5 9-9 5 5-9 9-6 0z" fill="none" stroke="#e6e6e6" stroke-width="2" stroke-linejoin="round"></path>
300
+ </svg>
301
+ </div>
302
+ </div>
303
+ </div>
304
+
305
+ <!-- Gesture bar -->
306
+ <div class="gesture"></div>
307
+ </div>
308
+ </body>
309
+ </html>
code/10173/10173_0.html ADDED
@@ -0,0 +1,342 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1">
6
+ <title>Shopsy Mock UI</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
9
+ #render-target {
10
+ width: 1080px; height: 2400px;
11
+ position: relative; overflow: hidden;
12
+ background: #ffffff; border-radius: 24px;
13
+ }
14
+
15
+ /* Status bar */
16
+ .status-bar {
17
+ height: 100px; background: #EDEDED; color: #333; display: flex; align-items: center; justify-content: space-between;
18
+ padding: 0 40px; font-size: 36px;
19
+ }
20
+ .status-right { display: flex; align-items: center; gap: 24px; }
21
+ .dot { width: 10px; height: 10px; border-radius: 50%; background: #666; display: inline-block; margin: 0 6px; }
22
+
23
+ /* Header */
24
+ .header {
25
+ height: 140px; background: #fff; display: flex; align-items: center; justify-content: space-between;
26
+ padding: 0 40px;
27
+ }
28
+ .brand { font-weight: 800; font-size: 54px; color: #5e37ff; letter-spacing: 0.5px; }
29
+ .login { font-size: 38px; color: #1a73e8; }
30
+
31
+ /* Offer banner (image placeholder) */
32
+ .offer-banner {
33
+ margin: 16px 40px 24px; height: 180px;
34
+ display: flex; align-items: center; justify-content: center;
35
+ background: #E0E0E0; border: 1px solid #BDBDBD; color: #757575; border-radius: 18px;
36
+ font-size: 36px;
37
+ }
38
+
39
+ /* Hero */
40
+ .hero {
41
+ margin: 0 0 12px 0;
42
+ height: 520px;
43
+ background: linear-gradient(90deg, #6d3bff 0%, #8a52ff 50%, #5f2bd9 100%);
44
+ position: relative;
45
+ padding: 40px;
46
+ color: #fff;
47
+ }
48
+ .hero-content { display: flex; height: 100%; }
49
+ .hero-left { width: 560px; display: flex; flex-direction: column; justify-content: center; }
50
+ .hero-title { font-size: 60px; font-weight: 800; line-height: 1.1; margin-bottom: 16px; }
51
+ .hero-sub { font-size: 32px; opacity: 0.95; margin-bottom: 24px; }
52
+ .hero-price { font-size: 46px; font-weight: 800; margin-bottom: 24px; }
53
+ .btn {
54
+ display: inline-flex; align-items: center; gap: 14px;
55
+ background: #ffeb72; color: #3a2a00; font-weight: 700; border-radius: 12px;
56
+ padding: 18px 26px; font-size: 32px;
57
+ }
58
+ .hero-right {
59
+ flex: 1; display: flex; align-items: center; justify-content: center;
60
+ }
61
+ .img-placeholder {
62
+ background: #E0E0E0; border: 1px solid #BDBDBD; color: #757575;
63
+ display: flex; align-items: center; justify-content: center;
64
+ }
65
+ .hero-right .img-placeholder { width: 430px; height: 430px; border-radius: 18px; }
66
+
67
+ .carousel-dots { height: 40px; display: flex; align-items: center; justify-content: center; gap: 14px; }
68
+ .dot-round { width: 18px; height: 18px; border-radius: 50%; background: #cfc6f9; }
69
+ .dot-round.active { width: 36px; border-radius: 9px; background: #7c5cff; }
70
+
71
+ /* Categories grid */
72
+ .categories {
73
+ background: #fff; padding: 20px 20px 0;
74
+ }
75
+ .cat-row {
76
+ display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 16px;
77
+ }
78
+ .cat-item {
79
+ width: 20%;
80
+ display: flex; flex-direction: column; align-items: center; text-align: center;
81
+ padding: 18px 8px;
82
+ }
83
+ .icon-wrap {
84
+ width: 170px; height: 170px; border-radius: 50%;
85
+ border: 6px solid #e8c66b; display: flex; align-items: center; justify-content: center;
86
+ background: #fff; position: relative;
87
+ box-shadow: 0 2px 6px rgba(0,0,0,0.04);
88
+ }
89
+ .icon-wrap .img-placeholder { width: 150px; height: 150px; border-radius: 50%; font-size: 24px; }
90
+ .badge-new {
91
+ position: absolute; top: -8px; left: -8px;
92
+ background: #5e37ff; color: #fff; font-size: 24px; padding: 6px 12px; border-radius: 20px;
93
+ box-shadow: 0 2px 4px rgba(0,0,0,0.12);
94
+ }
95
+ .cat-label {
96
+ margin-top: 12px; font-size: 30px; color: #222; line-height: 1.2;
97
+ }
98
+
99
+ /* Feature ribbon */
100
+ .features {
101
+ margin: 12px 20px 20px; border-radius: 18px; padding: 26px 20px;
102
+ background: linear-gradient(90deg, #4f38f7, #6a4ff8);
103
+ color: #fff; display: flex; justify-content: space-around; align-items: center;
104
+ }
105
+ .feat { display: flex; align-items: center; gap: 16px; font-size: 32px; }
106
+ .feat svg { width: 48px; height: 48px; fill: #fff; }
107
+
108
+ /* Loot banner */
109
+ .loot-banner {
110
+ margin: 0 20px; height: 320px; border-radius: 18px; position: relative;
111
+ background: linear-gradient(90deg, #6d3bff 0%, #8a52ff 50%, #5f2bd9 100%);
112
+ color: #fff; padding: 24px;
113
+ }
114
+ .loot-title { text-align: center; font-size: 54px; font-weight: 900; letter-spacing: 2px; }
115
+ .loot-sub { text-align: center; font-size: 28px; margin-top: 8px; opacity: 0.9; }
116
+ .loot-badges { position: absolute; top: 70px; left: 24px; right: 24px; display: flex; justify-content: space-between; align-items: center; }
117
+ .loot-badge {
118
+ width: 240px; height: 180px; border-radius: 14px;
119
+ display: flex; align-items: center; justify-content: center;
120
+ background: #E0E0E0; border: 1px solid #BDBDBD; color: #757575; font-size: 28px;
121
+ }
122
+ .loot-cta {
123
+ position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
124
+ background: #ffeb72; color: #3a2a00; padding: 16px 28px; border-radius: 12px; font-weight: 800; font-size: 30px;
125
+ }
126
+
127
+ /* Bottom nav */
128
+ .bottom-nav {
129
+ position: absolute; left: 0; right: 0; bottom: 0; height: 180px;
130
+ background: #fff; border-top: 1px solid #e5e5e5;
131
+ display: flex; align-items: center; justify-content: space-around;
132
+ }
133
+ .nav-item { display: flex; flex-direction: column; align-items: center; justify-content: center; color: #777; font-size: 28px; position: relative; }
134
+ .nav-item.active { color: #2a57ff; }
135
+ .nav-item svg { width: 56px; height: 56px; margin-bottom: 8px; }
136
+ .nav-item.active svg { fill: #2a57ff; }
137
+ .nav-item svg { fill: #777; }
138
+ .red-dot {
139
+ position: absolute; top: 12px; right: 48px; width: 16px; height: 16px; border-radius: 50%; background: #ff3b30;
140
+ }
141
+ .cart-badge {
142
+ position: absolute; top: 8px; right: 38px; min-width: 34px; height: 34px; padding: 0 8px;
143
+ background: #ff3b30; color: #fff; font-size: 24px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
144
+ box-shadow: 0 1px 4px rgba(0,0,0,0.2);
145
+ }
146
+
147
+ /* Safe area indicator */
148
+ .home-indicator {
149
+ position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
150
+ width: 320px; height: 12px; background: rgba(0,0,0,0.2); border-radius: 8px;
151
+ }
152
+
153
+ /* Simple arrow icon for button */
154
+ .arrow {
155
+ width: 22px; height: 22px; border: 2px solid #3a2a00; border-left: none; border-bottom: none; transform: rotate(-45deg);
156
+ }
157
+ </style>
158
+ </head>
159
+ <body>
160
+ <div id="render-target">
161
+
162
+ <!-- Status bar -->
163
+ <div class="status-bar">
164
+ <div>11:25</div>
165
+ <div class="status-right">
166
+ <span>B</span>
167
+ <span>TEMU</span><span class="dot"></span><span>TEMU</span>
168
+ <span class="dot"></span>
169
+ <span>▵</span>
170
+ <span>Wi-Fi</span>
171
+ <span>🔋</span>
172
+ </div>
173
+ </div>
174
+
175
+ <!-- Header -->
176
+ <div class="header">
177
+ <div class="brand">shopsy</div>
178
+ <div class="login">Log in</div>
179
+ </div>
180
+
181
+ <!-- Offer banner placeholder -->
182
+ <div class="offer-banner">[IMG: Limited Time Offer - Extra 20% Off Banner]</div>
183
+
184
+ <!-- Hero section -->
185
+ <div class="hero">
186
+ <div class="hero-content">
187
+ <div class="hero-left">
188
+ <div class="hero-title">Cozy Elegance for Women</div>
189
+ <div class="hero-sub">Trendy Color Block Tees & more</div>
190
+ <div class="hero-price">From ₹125</div>
191
+ <div class="btn">
192
+ Shop Now
193
+ <span class="arrow"></span>
194
+ </div>
195
+ </div>
196
+ <div class="hero-right">
197
+ <div class="img-placeholder">[IMG: Fashion Models in Hoodies]</div>
198
+ </div>
199
+ </div>
200
+ </div>
201
+ <div class="carousel-dots">
202
+ <div class="dot-round"></div>
203
+ <div class="dot-round"></div>
204
+ <div class="dot-round active"></div>
205
+ <div class="dot-round"></div>
206
+ <div class="dot-round"></div>
207
+ <div class="dot-round"></div>
208
+ <div class="dot-round"></div>
209
+ </div>
210
+
211
+ <!-- Categories -->
212
+ <div class="categories">
213
+ <div class="cat-row">
214
+ <div class="cat-item">
215
+ <div class="icon-wrap">
216
+ <div class="badge-new">New</div>
217
+ <div class="img-placeholder">[IMG: Winter Fashion]</div>
218
+ </div>
219
+ <div class="cat-label">Winter<br>Fashion</div>
220
+ </div>
221
+ <div class="cat-item">
222
+ <div class="icon-wrap">
223
+ <div class="img-placeholder">[IMG: Women's Fashion]</div>
224
+ </div>
225
+ <div class="cat-label">Women's<br>Fashion</div>
226
+ </div>
227
+ <div class="cat-item">
228
+ <div class="icon-wrap">
229
+ <div class="img-placeholder">[IMG: Men's Fashion]</div>
230
+ </div>
231
+ <div class="cat-label">Men's<br>Fashion</div>
232
+ </div>
233
+ <div class="cat-item">
234
+ <div class="icon-wrap">
235
+ <div class="img-placeholder">[IMG: Electronics Accessories]</div>
236
+ </div>
237
+ <div class="cat-label">Electronics</div>
238
+ </div>
239
+ <div class="cat-item">
240
+ <div class="icon-wrap">
241
+ <div class="badge-new">New</div>
242
+ <div class="img-placeholder">[IMG: Auto Accessories]</div>
243
+ </div>
244
+ <div class="cat-label">Auto<br>Accessories</div>
245
+ </div>
246
+ </div>
247
+
248
+ <div class="cat-row">
249
+ <div class="cat-item">
250
+ <div class="icon-wrap">
251
+ <div class="badge-new">New</div>
252
+ <div class="img-placeholder">[IMG: Wedding Store]</div>
253
+ </div>
254
+ <div class="cat-label">Wedding<br>Store</div>
255
+ </div>
256
+ <div class="cat-item">
257
+ <div class="icon-wrap">
258
+ <div class="img-placeholder">[IMG: Home Products]</div>
259
+ </div>
260
+ <div class="cat-label">Home</div>
261
+ </div>
262
+ <div class="cat-item">
263
+ <div class="icon-wrap">
264
+ <div class="img-placeholder">[IMG: Beauty & Cosmetics]</div>
265
+ </div>
266
+ <div class="cat-label">Beauty &<br>more</div>
267
+ </div>
268
+ <div class="cat-item">
269
+ <div class="icon-wrap">
270
+ <div class="img-placeholder">[IMG: Kids & Toys]</div>
271
+ </div>
272
+ <div class="cat-label">Kids & Toys</div>
273
+ </div>
274
+ <div class="cat-item">
275
+ <div class="icon-wrap">
276
+ <div class="img-placeholder">[IMG: Fitness Equipment]</div>
277
+ </div>
278
+ <div class="cat-label">Fitness</div>
279
+ </div>
280
+ </div>
281
+ </div>
282
+
283
+ <!-- Feature ribbon -->
284
+ <div class="features">
285
+ <div class="feat">
286
+ <svg viewBox="0 0 24 24"><path d="M3 12c0-3 2.5-5 5.5-5H12v3H8.5C7 10 6 11 6 12s1 2 2.5 2H12v3H8.5C5.5 17 3 15 3 12zm12-7h6v4h-6V5zm0 9h6v4h-6v-4z"></path></svg>
287
+ <span>Affordable Prices</span>
288
+ </div>
289
+ <div class="feat">
290
+ <svg viewBox="0 0 24 24"><path d="M12 2l3 6 6 .5-4.5 4 1.5 6.5L12 16l-6 3 1.5-6.5L3 8.5 9 8l3-6z"></path></svg>
291
+ <span>Good Quality</span>
292
+ </div>
293
+ <div class="feat">
294
+ <svg viewBox="0 0 24 24"><path d="M3 6h13l3 5v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6zm2 2v10h12V12H9l-4-4z"></path></svg>
295
+ <span>Free Delivery</span>
296
+ </div>
297
+ </div>
298
+
299
+ <!-- Loot Stores banner -->
300
+ <div class="loot-banner">
301
+ <div class="loot-title">THE LOOT STORES</div>
302
+ <div class="loot-sub">Sale Valid For 1 Unit Per Customer</div>
303
+ <div class="loot-badges">
304
+ <div class="loot-badge">[IMG: UNDER 45 STORE Badge]</div>
305
+ <div class="loot-badge">[IMG: UNDER 95 STORE Badge]</div>
306
+ </div>
307
+ <div class="loot-cta">SHOP NOW</div>
308
+ </div>
309
+
310
+ <!-- Spacer to allow scroll feel -->
311
+ <div style="height: 320px;"></div>
312
+
313
+ <!-- Bottom Navigation -->
314
+ <div class="bottom-nav">
315
+ <div class="nav-item active">
316
+ <svg viewBox="0 0 24 24"><path d="M12 3l9 8h-2v9h-5v-6H10v6H5v-9H3l9-8z"></path></svg>
317
+ <div>Home</div>
318
+ </div>
319
+ <div class="nav-item">
320
+ <svg viewBox="0 0 24 24"><path d="M10 2a8 8 0 1 1 0 16 8 8 0 0 1 0-16zm11 19-5.5-5.5"></path></svg>
321
+ <div>Search</div>
322
+ </div>
323
+ <div class="nav-item">
324
+ <span class="red-dot"></span>
325
+ <svg viewBox="0 0 24 24"><path d="M3 3h8v8H3V3zm10 0h8v8h-8V3zM3 13h8v8H3v-8zm10 0h8v8h-8v-8z"></path></svg>
326
+ <div>Categories</div>
327
+ </div>
328
+ <div class="nav-item">
329
+ <svg viewBox="0 0 24 24"><path d="M12 12a5 5 0 1 0-0.001-10.001A5 5 0 0 0 12 12zm-8 9c0-4.418 3.582-8 8-8s8 3.582 8 8H4z"></path></svg>
330
+ <div>Account</div>
331
+ </div>
332
+ <div class="nav-item">
333
+ <div class="cart-badge">1</div>
334
+ <svg viewBox="0 0 24 24"><path d="M3 4h2l3 12h10l2-8H7"></path><circle cx="9" cy="20" r="2"></circle><circle cx="18" cy="20" r="2"></circle></svg>
335
+ <div>Cart</div>
336
+ </div>
337
+ </div>
338
+
339
+ <div class="home-indicator"></div>
340
+ </div>
341
+ </body>
342
+ </html>
code/10173/10173_1.html ADDED
@@ -0,0 +1,349 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Search UI Mock</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; }
9
+ #render-target {
10
+ width: 1080px;
11
+ height: 2400px;
12
+ position: relative;
13
+ overflow: hidden;
14
+ background: #FAFAFA;
15
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
16
+ color: #111;
17
+ }
18
+
19
+ /* Status bar */
20
+ .status-bar {
21
+ height: 110px;
22
+ background: #EDEDED;
23
+ display: flex;
24
+ align-items: center;
25
+ justify-content: space-between;
26
+ padding: 0 36px;
27
+ font-size: 34px;
28
+ color: #222;
29
+ letter-spacing: 0.5px;
30
+ }
31
+ .status-icons {
32
+ display: flex;
33
+ align-items: center;
34
+ gap: 22px;
35
+ }
36
+ .dot { width: 10px; height: 10px; background:#777; border-radius:50%; display:inline-block; }
37
+
38
+ /* Search bar */
39
+ .search-wrap {
40
+ height: 130px;
41
+ background: #FFFFFF;
42
+ display: flex;
43
+ align-items: center;
44
+ padding: 0 28px;
45
+ border-bottom: 1px solid #E6E6E6;
46
+ }
47
+ .search-field {
48
+ flex: 1;
49
+ height: 92px;
50
+ border-radius: 46px;
51
+ background: #F3F3F3;
52
+ display: flex;
53
+ align-items: center;
54
+ padding: 0 32px;
55
+ gap: 24px;
56
+ color: #777;
57
+ font-size: 36px;
58
+ }
59
+ .icon {
60
+ width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center; color: #666;
61
+ }
62
+ .mic-btn { margin-left: 20px; }
63
+
64
+ /* Suggestions */
65
+ .suggestions {
66
+ background: #FFFFFF;
67
+ }
68
+ .s-item {
69
+ display: flex;
70
+ align-items: center;
71
+ padding: 26px 24px 26px 24px;
72
+ border-bottom: 1px solid #EFEFEF;
73
+ }
74
+ .s-left {
75
+ width: 80px;
76
+ display: flex; align-items: center; justify-content: center;
77
+ color: #777;
78
+ }
79
+ .s-mid { flex: 1; }
80
+ .s-title {
81
+ font-size: 40px;
82
+ color: #222;
83
+ line-height: 1.2;
84
+ }
85
+ .s-sub {
86
+ margin-top: 6px;
87
+ font-size: 32px;
88
+ color: #3F51F7;
89
+ }
90
+ .s-right { width: 80px; display:flex; align-items:center; justify-content:center; color:#888; }
91
+
92
+ /* Discover */
93
+ .discover {
94
+ padding: 30px 24px 20px 24px;
95
+ background: #FFFFFF;
96
+ border-top: 12px solid #F1F1F4;
97
+ }
98
+ .discover h3 {
99
+ margin: 0 0 24px 6px;
100
+ font-size: 36px;
101
+ color: #333;
102
+ font-weight: 600;
103
+ }
104
+ .chips {
105
+ display: flex;
106
+ flex-wrap: wrap;
107
+ gap: 22px;
108
+ }
109
+ .chip {
110
+ padding: 20px 28px;
111
+ background: #FFFFFF;
112
+ border: 1px solid #E6E6F2;
113
+ border-radius: 16px;
114
+ color: #5B63FF;
115
+ font-size: 34px;
116
+ box-shadow: 0 2px 0 rgba(0,0,0,0.04);
117
+ }
118
+
119
+ /* Keyboard mock */
120
+ .keyboard {
121
+ position: absolute;
122
+ left: 0;
123
+ right: 0;
124
+ bottom: 0;
125
+ height: 820px;
126
+ background: #171717;
127
+ border-top-left-radius: 24px;
128
+ border-top-right-radius: 24px;
129
+ box-shadow: 0 -4px 18px rgba(0,0,0,0.25);
130
+ padding: 26px 22px;
131
+ color: #EDEDED;
132
+ }
133
+ .kbd-top {
134
+ display: flex;
135
+ justify-content: space-between;
136
+ align-items: center;
137
+ margin-bottom: 18px;
138
+ }
139
+ .kbd-top .round {
140
+ width: 70px; height: 70px; background: #222; border-radius: 16px; display:flex; align-items:center; justify-content:center;
141
+ color:#BDBDBD; font-size: 28px;
142
+ }
143
+ .rows { display: grid; row-gap: 16px; }
144
+ .row { display: flex; gap: 12px; justify-content: center; }
145
+ .key {
146
+ height: 120px; min-width: 86px;
147
+ background: #242424;
148
+ border-radius: 18px;
149
+ display:flex; align-items:center; justify-content:center;
150
+ font-size: 38px; color: #F3F3F3;
151
+ }
152
+ .key.wide { min-width: 140px; }
153
+ .space { flex: 1; min-width: 520px; }
154
+ .enter { background:#3C6DF6; }
155
+ .footer-bar {
156
+ position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
157
+ width: 360px; height: 10px; background:#D1D1D1; border-radius: 6px; opacity: .8;
158
+ }
159
+ </style>
160
+ </head>
161
+ <body>
162
+ <div id="render-target">
163
+
164
+ <!-- Status Bar -->
165
+ <div class="status-bar">
166
+ <div>11:25</div>
167
+ <div class="status-icons">
168
+ <span class="dot"></span>
169
+ <span style="font-size:26px; color:#666;">B</span>
170
+ <span class="dot"></span><span class="dot"></span>
171
+ <svg class="icon" viewBox="0 0 24 24" fill="none" stroke="#555" stroke-width="2">
172
+ <path d="M3 18h18M5 18c0-6 14-6 14 0"></path>
173
+ </svg>
174
+ <svg class="icon" viewBox="0 0 24 24" fill="none" stroke="#555" stroke-width="2">
175
+ <path d="M3 12h18"></path>
176
+ </svg>
177
+ </div>
178
+ </div>
179
+
180
+ <!-- Search Bar -->
181
+ <div class="search-wrap">
182
+ <div class="search-field">
183
+ <svg class="icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
184
+ <circle cx="11" cy="11" r="7"></circle>
185
+ <path d="M20 20l-4-4"></path>
186
+ </svg>
187
+ <div>Search for Products, Brands and More</div>
188
+ </div>
189
+ <div class="mic-btn icon">
190
+ <svg viewBox="0 0 24 24" fill="currentColor">
191
+ <path d="M12 14a3 3 0 0 0 3-3V7a3 3 0 1 0-6 0v4a3 3 0 0 0 3 3zm5-3a5 5 0 0 1-10 0H5a7 7 0 0 0 6 6.92V21h2v-3.08A7 7 0 0 0 19 11h-2z"/>
192
+ </svg>
193
+ </div>
194
+ </div>
195
+
196
+ <!-- Suggestions List -->
197
+ <div class="suggestions">
198
+ <div class="s-item">
199
+ <div class="s-left">
200
+ <svg viewBox="0 0 24 24" width="44" height="44" stroke="currentColor" fill="none" stroke-width="2">
201
+ <path d="M12 8v5l4 2"></path>
202
+ <path d="M21 12a9 9 0 1 1-2.64-6.36"></path>
203
+ </svg>
204
+ </div>
205
+ <div class="s-mid">
206
+ <div class="s-title">shirt for men</div>
207
+ <div class="s-sub">in Casual Shirts</div>
208
+ </div>
209
+ <div class="s-right">
210
+ <svg viewBox="0 0 24 24" width="44" height="44" stroke="currentColor" fill="none" stroke-width="2">
211
+ <path d="M7 17L17 7"></path>
212
+ <path d="M8 7h9v9"></path>
213
+ </svg>
214
+ </div>
215
+ </div>
216
+
217
+ <div class="s-item">
218
+ <div class="s-left">
219
+ <svg viewBox="0 0 24 24" width="44" height="44" stroke="currentColor" fill="none" stroke-width="2">
220
+ <path d="M12 8v5l4 2"></path>
221
+ <path d="M21 12a9 9 0 1 1-2.64-6.36"></path>
222
+ </svg>
223
+ </div>
224
+ <div class="s-mid">
225
+ <div class="s-title">cycling shoes for men</div>
226
+ </div>
227
+ <div class="s-right">
228
+ <svg viewBox="0 0 24 24" width="44" height="44" stroke="currentColor" fill="none" stroke-width="2">
229
+ <path d="M7 17L17 7"></path>
230
+ <path d="M8 7h9v9"></path>
231
+ </svg>
232
+ </div>
233
+ </div>
234
+
235
+ <div class="s-item">
236
+ <div class="s-left">
237
+ <svg viewBox="0 0 24 24" width="44" height="44" stroke="currentColor" fill="none" stroke-width="2">
238
+ <path d="M12 8v5l4 2"></path>
239
+ <path d="M21 12a9 9 0 1 1-2.64-6.36"></path>
240
+ </svg>
241
+ </div>
242
+ <div class="s-mid">
243
+ <div class="s-title">cycling shoes for men</div>
244
+ <div class="s-sub">in Men's Sports Shoes</div>
245
+ </div>
246
+ <div class="s-right">
247
+ <svg viewBox="0 0 24 24" width="44" height="44" stroke="currentColor" fill="none" stroke-width="2">
248
+ <path d="M7 17L17 7"></path>
249
+ <path d="M8 7h9v9"></path>
250
+ </svg>
251
+ </div>
252
+ </div>
253
+
254
+ <div class="s-item">
255
+ <div class="s-left">
256
+ <svg viewBox="0 0 24 24" width="44" height="44" stroke="currentColor" fill="none" stroke-width="2">
257
+ <path d="M12 8v5l4 2"></path>
258
+ <path d="M21 12a9 9 0 1 1-2.64-6.36"></path>
259
+ </svg>
260
+ </div>
261
+ <div class="s-mid">
262
+ <div class="s-title">hiking shoes</div>
263
+ <div class="s-sub">in Men's Sports Shoes</div>
264
+ </div>
265
+ <div class="s-right">
266
+ <svg viewBox="0 0 24 24" width="44" height="44" stroke="currentColor" fill="none" stroke-width="2">
267
+ <path d="M7 17L17 7"></path>
268
+ <path d="M8 7h9v9"></path>
269
+ </svg>
270
+ </div>
271
+ </div>
272
+
273
+ <div class="s-item">
274
+ <div class="s-left">
275
+ <svg viewBox="0 0 24 24" width="44" height="44" stroke="currentColor" fill="none" stroke-width="2">
276
+ <path d="M12 8v5l4 2"></path>
277
+ <path d="M21 12a9 9 0 1 1-2.64-6.36"></path>
278
+ </svg>
279
+ </div>
280
+ <div class="s-mid">
281
+ <div class="s-title">shoes</div>
282
+ </div>
283
+ <div class="s-right">
284
+ <svg viewBox="0 0 24 24" width="44" height="44" stroke="currentColor" fill="none" stroke-width="2">
285
+ <path d="M7 17L17 7"></path>
286
+ <path d="M8 7h9v9"></path>
287
+ </svg>
288
+ </div>
289
+ </div>
290
+ </div>
291
+
292
+ <!-- Discover More -->
293
+ <div class="discover">
294
+ <h3>Discover More</h3>
295
+ <div class="chips">
296
+ <div class="chip">Mobiles</div>
297
+ <div class="chip">Shoes</div>
298
+ <div class="chip">T shirts</div>
299
+ <div class="chip">Laptops</div>
300
+ <div class="chip">Watches</div>
301
+ <div class="chip">Tv</div>
302
+ <div class="chip">Sarees</div>
303
+ <div class="chip">Headphones</div>
304
+ <div class="chip">Bluetooth</div>
305
+ <div class="chip">Fridge</div>
306
+ <div class="chip">Bedsheet</div>
307
+ <div class="chip">Water bottle</div>
308
+ </div>
309
+ </div>
310
+
311
+ <!-- Keyboard Mock -->
312
+ <div class="keyboard">
313
+ <div class="kbd-top">
314
+ <div style="display:flex; gap:12px;">
315
+ <div class="round">⬚</div>
316
+ <div class="round">😊</div>
317
+ <div class="round">GIF</div>
318
+ <div class="round">⚙️</div>
319
+ <div class="round">G↔︎</div>
320
+ <div class="round">🎨</div>
321
+ </div>
322
+ <div class="round">🎙️</div>
323
+ </div>
324
+
325
+ <div class="rows">
326
+ <div class="row">
327
+ <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>
328
+ </div>
329
+ <div class="row">
330
+ <div class="key wide">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 wide">L</div>
331
+ </div>
332
+ <div class="row">
333
+ <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>
334
+ </div>
335
+ <div class="row">
336
+ <div class="key wide">?123</div>
337
+ <div class="key wide">,</div>
338
+ <div class="key space"> </div>
339
+ <div class="key wide">.</div>
340
+ <div class="key wide enter">✓</div>
341
+ </div>
342
+ </div>
343
+
344
+ <div class="footer-bar"></div>
345
+ </div>
346
+
347
+ </div>
348
+ </body>
349
+ </html>
code/10173/10173_2.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>Search UI Mock</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: #FFFFFF;
15
+ }
16
+
17
+ /* Status bar */
18
+ .statusbar {
19
+ height: 110px;
20
+ background: #E9E9EB;
21
+ display: flex;
22
+ align-items: center;
23
+ padding: 0 32px;
24
+ color: #2E2E2E;
25
+ box-sizing: border-box;
26
+ font-weight: 600;
27
+ font-size: 36px;
28
+ }
29
+ .statusbar .time { flex: 0 0 auto; }
30
+ .statusbar .status-icons {
31
+ margin-left: auto;
32
+ display: flex;
33
+ align-items: center;
34
+ gap: 26px;
35
+ }
36
+ .icon-small { width: 38px; height: 22px; }
37
+
38
+ /* Search area */
39
+ .search-area {
40
+ padding: 18px 24px 8px;
41
+ background: #FFFFFF;
42
+ }
43
+ .search-field {
44
+ height: 110px;
45
+ border: 1px solid #E3E3E6;
46
+ border-radius: 56px;
47
+ display: flex;
48
+ align-items: center;
49
+ padding: 0 28px;
50
+ box-shadow: 0 2px 4px rgba(0,0,0,0.05);
51
+ }
52
+ .search-field .placeholder {
53
+ color: #8A8A8F;
54
+ font-size: 36px;
55
+ margin-left: 20px;
56
+ flex: 1;
57
+ white-space: nowrap;
58
+ overflow: hidden;
59
+ text-overflow: ellipsis;
60
+ }
61
+ .icon-48 { width: 48px; height: 48px; }
62
+
63
+ /* Suggestion list */
64
+ .suggestions { padding: 0 0 0 0; }
65
+ .suggestion {
66
+ display: flex;
67
+ align-items: center;
68
+ padding: 24px 24px;
69
+ gap: 24px;
70
+ }
71
+ .suggestion + .suggestion { border-top: 1px solid #EFEFF2; }
72
+ .s-texts { flex: 1; }
73
+ .s-title { font-size: 38px; color: #2E2E2E; }
74
+ .s-sub { font-size: 30px; color: #4D46E5; margin-top: 8px; }
75
+ .history-ico { width: 54px; height: 54px; }
76
+ .arrow-ico { width: 40px; height: 40px; opacity: 0.6; }
77
+
78
+ /* Discover more */
79
+ .discover-wrap {
80
+ border-top: 10px solid #F0F0F3;
81
+ padding: 28px 24px 18px;
82
+ }
83
+ .discover-title {
84
+ font-size: 36px;
85
+ color: #3A3A3C;
86
+ margin-bottom: 22px;
87
+ }
88
+ .chips {
89
+ display: flex;
90
+ flex-wrap: wrap;
91
+ gap: 22px;
92
+ }
93
+ .chip {
94
+ padding: 22px 28px;
95
+ background: #F6F6FF;
96
+ color: #4D46E5;
97
+ border: 1px solid #E4E4F5;
98
+ border-radius: 16px;
99
+ font-size: 34px;
100
+ box-shadow: 0 1px 0 rgba(0,0,0,0.06);
101
+ }
102
+
103
+ /* Keyboard mock */
104
+ .keyboard {
105
+ position: absolute;
106
+ left: 0;
107
+ bottom: 60px;
108
+ width: 100%;
109
+ height: 900px;
110
+ background: #1F1F1F;
111
+ border-top-left-radius: 18px;
112
+ border-top-right-radius: 18px;
113
+ padding: 24px 26px;
114
+ box-sizing: border-box;
115
+ color: #fff;
116
+ display: flex;
117
+ flex-direction: column;
118
+ justify-content: space-between;
119
+ }
120
+ .kb-top {
121
+ display: flex;
122
+ gap: 24px;
123
+ align-items: center;
124
+ }
125
+ .kb-top .round {
126
+ width: 92px;
127
+ height: 92px;
128
+ background: #2C2C2E;
129
+ border-radius: 18px;
130
+ display: flex;
131
+ align-items: center;
132
+ justify-content: center;
133
+ color: #D0D0D2;
134
+ font-size: 30px;
135
+ }
136
+ .key-row {
137
+ display: flex;
138
+ justify-content: space-between;
139
+ gap: 14px;
140
+ }
141
+ .key {
142
+ flex: 1;
143
+ height: 120px;
144
+ background: #2C2C2E;
145
+ border-radius: 18px;
146
+ display: flex;
147
+ align-items: center;
148
+ justify-content: center;
149
+ color: #FFFFFF;
150
+ font-size: 46px;
151
+ font-weight: 600;
152
+ }
153
+ .key.wide { flex: 1.6; }
154
+ .key.extra-wide { flex: 3.6; }
155
+ .key.action { background: #3A3A3C; color: #D6E4FF; }
156
+ .nav-pill {
157
+ position: absolute;
158
+ bottom: 14px;
159
+ left: 50%;
160
+ transform: translateX(-50%);
161
+ width: 300px;
162
+ height: 10px;
163
+ background: #D0D0D2;
164
+ border-radius: 10px;
165
+ opacity: 0.8;
166
+ }
167
+ </style>
168
+ </head>
169
+ <body>
170
+ <div id="render-target">
171
+
172
+ <!-- Status Bar -->
173
+ <div class="statusbar">
174
+ <div class="time">11:26</div>
175
+ <div class="status-icons">
176
+ <!-- Simple placeholders for signal, wifi and battery -->
177
+ <svg class="icon-small" viewBox="0 0 24 12"><rect x="0" y="6" width="4" height="6" fill="#4A4A4A"/><rect x="6" y="4" width="4" height="8" fill="#4A4A4A"/><rect x="12" y="2" width="4" height="10" fill="#4A4A4A"/><rect x="18" y="0" width="4" height="12" fill="#4A4A4A"/></svg>
178
+ <svg class="icon-small" viewBox="0 0 24 20"><path d="M2 20c4-5 8-8 10-8s6 3 10 8" fill="none" stroke="#4A4A4A" stroke-width="2"/></svg>
179
+ <svg class="icon-small" viewBox="0 0 28 14">
180
+ <rect x="0.5" y="1" width="22" height="12" rx="2" ry="2" fill="none" stroke="#4A4A4A" stroke-width="2"/>
181
+ <rect x="3" y="3.5" width="16" height="7" fill="#4A4A4A"/>
182
+ <rect x="24" y="5" width="3" height="4" fill="#4A4A4A"/>
183
+ </svg>
184
+ </div>
185
+ </div>
186
+
187
+ <!-- Search field -->
188
+ <div class="search-area">
189
+ <div class="search-field">
190
+ <!-- Search icon -->
191
+ <svg class="icon-48" viewBox="0 0 24 24">
192
+ <circle cx="11" cy="11" r="7" stroke="#6B6B6E" stroke-width="2" fill="none"></circle>
193
+ <path d="M16 16l6 6" stroke="#6B6B6E" stroke-width="2" />
194
+ </svg>
195
+ <div class="placeholder">Search for Products, Brands and More</div>
196
+ <!-- Mic icon -->
197
+ <svg class="icon-48" viewBox="0 0 24 24">
198
+ <rect x="9" y="4" width="6" height="10" rx="3" fill="#6B6B6E"></rect>
199
+ <path d="M5 11c0 4 3 6 7 6s7-2 7-6" stroke="#6B6B6E" stroke-width="2" fill="none"></path>
200
+ <path d="M12 17v3" stroke="#6B6B6E" stroke-width="2"></path>
201
+ </svg>
202
+ </div>
203
+ </div>
204
+
205
+ <!-- Suggestions -->
206
+ <div class="suggestions">
207
+ <div class="suggestion">
208
+ <!-- history icon -->
209
+ <svg class="history-ico" viewBox="0 0 24 24">
210
+ <circle cx="12" cy="12" r="9" stroke="#A0A0A5" stroke-width="2" fill="none"></circle>
211
+ <path d="M12 7v6l4 2" stroke="#A0A0A5" stroke-width="2" fill="none"></path>
212
+ </svg>
213
+ <div class="s-texts">
214
+ <div class="s-title">shirt for men</div>
215
+ <div class="s-sub">in Casual Shirts</div>
216
+ </div>
217
+ <svg class="arrow-ico" viewBox="0 0 24 24">
218
+ <path d="M5 19L19 5" stroke="#6B6B6E" stroke-width="2"></path>
219
+ <path d="M8 5h11v11" stroke="#6B6B6E" stroke-width="2" fill="none"></path>
220
+ </svg>
221
+ </div>
222
+ <div class="suggestion">
223
+ <svg class="history-ico" viewBox="0 0 24 24">
224
+ <circle cx="12" cy="12" r="9" stroke="#A0A0A5" stroke-width="2" fill="none"></circle>
225
+ <path d="M12 7v6l4 2" stroke="#A0A0A5" stroke-width="2" fill="none"></path>
226
+ </svg>
227
+ <div class="s-texts">
228
+ <div class="s-title">cycling shoes for men</div>
229
+ </div>
230
+ <svg class="arrow-ico" viewBox="0 0 24 24">
231
+ <path d="M5 19L19 5" stroke="#6B6B6E" stroke-width="2"></path>
232
+ <path d="M8 5h11v11" stroke="#6B6B6E" stroke-width="2" fill="none"></path>
233
+ </svg>
234
+ </div>
235
+ <div class="suggestion">
236
+ <svg class="history-ico" viewBox="0 0 24 24">
237
+ <circle cx="12" cy="12" r="9" stroke="#A0A0A5" stroke-width="2" fill="none"></circle>
238
+ <path d="M12 7v6l4 2" stroke="#A0A0A5" stroke-width="2" fill="none"></path>
239
+ </svg>
240
+ <div class="s-texts">
241
+ <div class="s-title">cycling shoes for men</div>
242
+ <div class="s-sub">in Men's Sports Shoes</div>
243
+ </div>
244
+ <svg class="arrow-ico" viewBox="0 0 24 24">
245
+ <path d="M5 19L19 5" stroke="#6B6B6E" stroke-width="2"></path>
246
+ <path d="M8 5h11v11" stroke="#6B6B6E" stroke-width="2" fill="none"></path>
247
+ </svg>
248
+ </div>
249
+ <div class="suggestion">
250
+ <svg class="history-ico" viewBox="0 0 24 24">
251
+ <circle cx="12" cy="12" r="9" stroke="#A0A0A5" stroke-width="2" fill="none"></circle>
252
+ <path d="M12 7v6l4 2" stroke="#A0A0A5" stroke-width="2" fill="none"></path>
253
+ </svg>
254
+ <div class="s-texts">
255
+ <div class="s-title">hiking shoes</div>
256
+ <div class="s-sub">in Men's Sports Shoes</div>
257
+ </div>
258
+ <svg class="arrow-ico" viewBox="0 0 24 24">
259
+ <path d="M5 19L19 5" stroke="#6B6B6E" stroke-width="2"></path>
260
+ <path d="M8 5h11v11" stroke="#6B6B6E" stroke-width="2" fill="none"></path>
261
+ </svg>
262
+ </div>
263
+ <div class="suggestion">
264
+ <svg class="history-ico" viewBox="0 0 24 24">
265
+ <circle cx="12" cy="12" r="9" stroke="#A0A0A5" stroke-width="2" fill="none"></circle>
266
+ <path d="M12 7v6l4 2" stroke="#A0A0A5" stroke-width="2" fill="none"></path>
267
+ </svg>
268
+ <div class="s-texts">
269
+ <div class="s-title">shoes</div>
270
+ </div>
271
+ <svg class="arrow-ico" viewBox="0 0 24 24">
272
+ <path d="M5 19L19 5" stroke="#6B6B6E" stroke-width="2"></path>
273
+ <path d="M8 5h11v11" stroke="#6B6B6E" stroke-width="2" fill="none"></path>
274
+ </svg>
275
+ </div>
276
+ </div>
277
+
278
+ <!-- Discover more -->
279
+ <div class="discover-wrap">
280
+ <div class="discover-title">Discover More</div>
281
+ <div class="chips">
282
+ <div class="chip">Mobiles</div>
283
+ <div class="chip">Shoes</div>
284
+ <div class="chip">T shirts</div>
285
+ <div class="chip">Laptops</div>
286
+ <div class="chip">Watches</div>
287
+
288
+ <div class="chip">Tv</div>
289
+ <div class="chip">Sarees</div>
290
+ <div class="chip">Headphones</div>
291
+ <div class="chip">Bluetooth</div>
292
+ <div class="chip">Fridge</div>
293
+
294
+ <div class="chip">Bedsheet</div>
295
+ <div class="chip">Water bottle</div>
296
+ </div>
297
+ </div>
298
+
299
+ <!-- Keyboard Mock -->
300
+ <div class="keyboard">
301
+ <div class="kb-top">
302
+ <div class="round">◧</div>
303
+ <div class="round">😊</div>
304
+ <div class="round">GIF</div>
305
+ <div class="round">⚙</div>
306
+ <div class="round">G⤳</div>
307
+ <div class="round">🎨</div>
308
+ <div class="round">🎤</div>
309
+ </div>
310
+ <div class="key-row">
311
+ <div class="key">Q</div>
312
+ <div class="key">W</div>
313
+ <div class="key">E</div>
314
+ <div class="key">R</div>
315
+ <div class="key">T</div>
316
+ <div class="key">Y</div>
317
+ <div class="key">U</div>
318
+ <div class="key">I</div>
319
+ <div class="key">O</div>
320
+ <div class="key">P</div>
321
+ </div>
322
+ <div class="key-row">
323
+ <div class="key">A</div>
324
+ <div class="key">S</div>
325
+ <div class="key">D</div>
326
+ <div class="key">F</div>
327
+ <div class="key">G</div>
328
+ <div class="key">H</div>
329
+ <div class="key">J</div>
330
+ <div class="key">K</div>
331
+ <div class="key">L</div>
332
+ </div>
333
+ <div class="key-row">
334
+ <div class="key">Z</div>
335
+ <div class="key">X</div>
336
+ <div class="key">C</div>
337
+ <div class="key">V</div>
338
+ <div class="key">B</div>
339
+ <div class="key">N</div>
340
+ <div class="key">M</div>
341
+ <div class="key wide">⌫</div>
342
+ </div>
343
+ <div class="key-row">
344
+ <div class="key">?123</div>
345
+ <div class="key">,</div>
346
+ <div class="key extra-wide"></div>
347
+ <div class="key">.</div>
348
+ <div class="key action">✓</div>
349
+ </div>
350
+ </div>
351
+
352
+ <div class="nav-pill"></div>
353
+ </div>
354
+ </body>
355
+ </html>
code/10173/10173_3.html ADDED
@@ -0,0 +1,456 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Search Suggestions UI</title>
7
+ <style>
8
+ /* Reset and body requirements */
9
+ html, body { margin: 0; padding: 0; }
10
+ body { background: transparent; font-family: Arial, Helvetica, sans-serif; }
11
+
12
+ /* Root container */
13
+ #render-target {
14
+ width: 1080px;
15
+ height: 2400px;
16
+ position: relative;
17
+ overflow: hidden;
18
+ background: #ffffff; /* app surface */
19
+ color: #111;
20
+ }
21
+
22
+ /* Status bar */
23
+ .statusbar {
24
+ height: 90px;
25
+ background: #EDEDED;
26
+ display: flex;
27
+ align-items: center;
28
+ justify-content: space-between;
29
+ padding: 0 28px;
30
+ font-size: 30px;
31
+ color: #222;
32
+ box-sizing: border-box;
33
+ }
34
+ .status-left { font-weight: 600; }
35
+ .status-right { display: flex; align-items: center; gap: 22px; }
36
+ .icon-small svg { width: 38px; height: 38px; fill: #444; }
37
+
38
+ /* Search header */
39
+ .searchbar {
40
+ height: 120px;
41
+ display: flex;
42
+ align-items: center;
43
+ padding: 0 24px;
44
+ box-sizing: border-box;
45
+ border-bottom: 1px solid #e8e8e8;
46
+ gap: 24px;
47
+ }
48
+ .searchbar .icon {
49
+ width: 48px;
50
+ height: 48px;
51
+ display: inline-flex;
52
+ align-items: center;
53
+ justify-content: center;
54
+ }
55
+ .query {
56
+ flex: 1;
57
+ font-size: 44px;
58
+ color: #222;
59
+ display: flex;
60
+ align-items: center;
61
+ }
62
+ .query .caret {
63
+ color: #2962FF;
64
+ margin-left: 4px;
65
+ }
66
+
67
+ /* Suggestions list */
68
+ .suggestions {
69
+ overflow: hidden;
70
+ height: auto;
71
+ padding-bottom: 840px; /* space for keyboard overlay */
72
+ }
73
+ .row {
74
+ display: flex;
75
+ align-items: center;
76
+ padding: 28px 24px;
77
+ gap: 24px;
78
+ border-bottom: 1px solid #eeeeee;
79
+ }
80
+ .row .thumb {
81
+ width: 110px;
82
+ height: 110px;
83
+ background: #E0E0E0;
84
+ border: 1px solid #BDBDBD;
85
+ display: flex;
86
+ align-items: center;
87
+ justify-content: center;
88
+ color: #757575;
89
+ font-size: 22px;
90
+ }
91
+ .row .lefticon {
92
+ width: 72px;
93
+ height: 72px;
94
+ display: flex;
95
+ align-items: center;
96
+ justify-content: center;
97
+ opacity: 0.8;
98
+ }
99
+ .row .content {
100
+ flex: 1;
101
+ min-width: 0;
102
+ }
103
+ .title {
104
+ font-size: 38px;
105
+ color: #222;
106
+ white-space: nowrap;
107
+ overflow: hidden;
108
+ text-overflow: ellipsis;
109
+ }
110
+ .title .bold { font-weight: 700; }
111
+ .subtitle {
112
+ margin-top: 6px;
113
+ font-size: 30px;
114
+ color: #5E35B1;
115
+ }
116
+ .endicon {
117
+ width: 64px;
118
+ height: 64px;
119
+ display: flex;
120
+ align-items: center;
121
+ justify-content: center;
122
+ opacity: 0.6;
123
+ }
124
+ .endicon svg { width: 38px; height: 38px; }
125
+
126
+ /* Keyboard mock */
127
+ .keyboard {
128
+ position: absolute;
129
+ left: 0;
130
+ bottom: 0;
131
+ width: 1080px;
132
+ height: 820px;
133
+ background: #121212;
134
+ border-top: 1px solid #2b2b2b;
135
+ box-sizing: border-box;
136
+ color: #EDEDED;
137
+ }
138
+ .kb-suggest {
139
+ height: 88px;
140
+ background: #1B1B1B;
141
+ display: flex;
142
+ align-items: center;
143
+ padding: 0 28px;
144
+ font-size: 32px;
145
+ gap: 18px;
146
+ color: #cfcfcf;
147
+ box-sizing: border-box;
148
+ }
149
+ .kb-suggest .divider { opacity: 0.4; }
150
+ .kb-rows {
151
+ padding: 16px 20px 0;
152
+ box-sizing: border-box;
153
+ }
154
+ .kb-row {
155
+ display: flex;
156
+ justify-content: center;
157
+ gap: 18px;
158
+ margin: 10px 0;
159
+ }
160
+ .key {
161
+ min-width: 86px;
162
+ height: 120px;
163
+ background: #262626;
164
+ border-radius: 16px;
165
+ display: flex;
166
+ align-items: center;
167
+ justify-content: center;
168
+ font-size: 40px;
169
+ color: #EEEEEE;
170
+ box-shadow: inset 0 -2px 0 rgba(0,0,0,0.35);
171
+ }
172
+ .key.wide { min-width: 180px; }
173
+ .key.space { flex: 1; min-width: 0; }
174
+ .key.circle {
175
+ width: 110px;
176
+ min-width: 110px;
177
+ border-radius: 56px;
178
+ background: #96A6BD2a;
179
+ color: #DDE7F7;
180
+ }
181
+ .gesture-pill {
182
+ position: absolute;
183
+ width: 240px;
184
+ height: 10px;
185
+ border-radius: 8px;
186
+ background: #eaeaea;
187
+ left: 50%;
188
+ transform: translateX(-50%);
189
+ bottom: 18px;
190
+ opacity: 0.9;
191
+ }
192
+ /* Utility */
193
+ .muted { color: #666; }
194
+
195
+ /* Simple icon sizes */
196
+ .icon svg { width: 48px; height: 48px; }
197
+ .lefticon svg { width: 44px; height: 44px; stroke: #444; }
198
+ </style>
199
+ </head>
200
+ <body>
201
+ <div id="render-target">
202
+
203
+ <!-- Status bar -->
204
+ <div class="statusbar">
205
+ <div class="status-left">11:26</div>
206
+ <div class="status-right">
207
+ <span class="icon-small" title="Wi‑Fi">
208
+ <svg viewBox="0 0 24 24">
209
+ <path d="M12 20a2 2 0 1 0 0-4 2 2 0 0 0 0 4z" />
210
+ <path d="M2 9c5-5 15-5 20 0" fill="none" stroke="#444" stroke-width="2" stroke-linecap="round"/>
211
+ <path d="M5 12c4-4 10-4 14 0" fill="none" stroke="#444" stroke-width="2" stroke-linecap="round"/>
212
+ <path d="M8 15c2-2 6-2 8 0" fill="none" stroke="#444" stroke-width="2" stroke-linecap="round"/>
213
+ </svg>
214
+ </span>
215
+ <span class="icon-small" title="Battery">
216
+ <svg viewBox="0 0 32 24">
217
+ <rect x="1" y="4" width="26" height="16" rx="3" ry="3" fill="#444"></rect>
218
+ <rect x="4" y="7" width="18" height="10" fill="#9ccc65"></rect>
219
+ <rect x="28" y="9" width="3" height="8" rx="1" fill="#444"></rect>
220
+ </svg>
221
+ </span>
222
+ </div>
223
+ </div>
224
+
225
+ <!-- Search bar -->
226
+ <div class="searchbar">
227
+ <div class="icon" title="Back">
228
+ <svg viewBox="0 0 24 24">
229
+ <path d="M15 18l-6-6 6-6" fill="none" stroke="#111" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
230
+ </svg>
231
+ </div>
232
+ <div class="query">shirts for men <span class="caret">|</span></div>
233
+ <div class="icon" title="Clear">
234
+ <svg viewBox="0 0 24 24">
235
+ <path d="M6 6l12 12M18 6L6 18" fill="none" stroke="#111" stroke-width="2" stroke-linecap="round"/>
236
+ </svg>
237
+ </div>
238
+ </div>
239
+
240
+ <!-- Suggestions -->
241
+ <div class="suggestions">
242
+ <!-- First row with avatar image -->
243
+ <div class="row">
244
+ <div class="thumb">[IMG]</div>
245
+ <div class="content">
246
+ <div class="title">shirts for men</div>
247
+ <div class="subtitle">in Casual Shirts</div>
248
+ </div>
249
+ </div>
250
+
251
+ <!-- Search suggestion rows -->
252
+ <div class="row">
253
+ <div class="lefticon" aria-label="search icon">
254
+ <svg viewBox="0 0 24 24" fill="none" stroke="#666" stroke-width="2">
255
+ <circle cx="11" cy="11" r="7"></circle>
256
+ <path d="M20 20l-4-4"></path>
257
+ </svg>
258
+ </div>
259
+ <div class="content">
260
+ <div class="title">shirts for men wear</div>
261
+ </div>
262
+ <div class="endicon" aria-label="go">
263
+ <svg viewBox="0 0 24 24" fill="none" stroke="#444" stroke-width="2">
264
+ <path d="M7 17l10-10"></path>
265
+ <path d="M7 7h10v10"></path>
266
+ </svg>
267
+ </div>
268
+ </div>
269
+
270
+ <div class="row">
271
+ <div class="lefticon">
272
+ <svg viewBox="0 0 24 24" fill="none" stroke="#666" stroke-width="2">
273
+ <circle cx="11" cy="11" r="7"></circle>
274
+ <path d="M20 20l-4-4"></path>
275
+ </svg>
276
+ </div>
277
+ <div class="content">
278
+ <div class="title">shirts for men <span class="bold">full sleeve</span></div>
279
+ </div>
280
+ <div class="endicon">
281
+ <svg viewBox="0 0 24 24" fill="none" stroke="#444" stroke-width="2">
282
+ <path d="M7 17l10-10"></path>
283
+ <path d="M7 7h10v10"></path>
284
+ </svg>
285
+ </div>
286
+ </div>
287
+
288
+ <div class="row">
289
+ <div class="lefticon">
290
+ <svg viewBox="0 0 24 24" fill="none" stroke="#666" stroke-width="2">
291
+ <circle cx="11" cy="11" r="7"></circle>
292
+ <path d="M20 20l-4-4"></path>
293
+ </svg>
294
+ </div>
295
+ <div class="content">
296
+ <div class="title">t shirts for men</div>
297
+ </div>
298
+ <div class="endicon">
299
+ <svg viewBox="0 0 24 24" fill="none" stroke="#444" stroke-width="2">
300
+ <path d="M7 17l10-10"></path>
301
+ <path d="M7 7h10v10"></path>
302
+ </svg>
303
+ </div>
304
+ </div>
305
+
306
+ <div class="row">
307
+ <div class="lefticon">
308
+ <svg viewBox="0 0 24 24" fill="none" stroke="#666" stroke-width="2">
309
+ <circle cx="11" cy="11" r="7"></circle>
310
+ <path d="M20 20l-4-4"></path>
311
+ </svg>
312
+ </div>
313
+ <div class="content">
314
+ <div class="title"><span class="bold">formal</span> shirts for men</div>
315
+ </div>
316
+ <div class="endicon">
317
+ <svg viewBox="0 0 24 24" fill="none" stroke="#444" stroke-width="2">
318
+ <path d="M7 17l10-10"></path>
319
+ <path d="M7 7h10v10"></path>
320
+ </svg>
321
+ </div>
322
+ </div>
323
+
324
+ <div class="row">
325
+ <div class="lefticon">
326
+ <svg viewBox="0 0 24 24" fill="none" stroke="#666" stroke-width="2">
327
+ <circle cx="11" cy="11" r="7"></circle>
328
+ <path d="M20 20l-4-4"></path>
329
+ </svg>
330
+ </div>
331
+ <div class="content">
332
+ <div class="title"><span class="bold">sweatshirt</span> for men</div>
333
+ </div>
334
+ <div class="endicon">
335
+ <svg viewBox="0 0 24 24" fill="none" stroke="#444" stroke-width="2">
336
+ <path d="M7 17l10-10"></path>
337
+ <path d="M7 7h10v10"></path>
338
+ </svg>
339
+ </div>
340
+ </div>
341
+
342
+ <div class="row">
343
+ <div class="lefticon">
344
+ <svg viewBox="0 0 24 24" fill="none" stroke="#666" stroke-width="2">
345
+ <circle cx="11" cy="11" r="7"></circle>
346
+ <path d="M20 20l-4-4"></path>
347
+ </svg>
348
+ </div>
349
+ <div class="content">
350
+ <div class="title">shirts for men <span class="bold">half sleeve</span></div>
351
+ </div>
352
+ <div class="endicon">
353
+ <svg viewBox="0 0 24 24" fill="none" stroke="#444" stroke-width="2">
354
+ <path d="M7 17l10-10"></path>
355
+ <path d="M7 7h10v10"></path>
356
+ </svg>
357
+ </div>
358
+ </div>
359
+
360
+ <div class="row">
361
+ <div class="lefticon">
362
+ <svg viewBox="0 0 24 24" fill="none" stroke="#666" stroke-width="2">
363
+ <circle cx="11" cy="11" r="7"></circle>
364
+ <path d="M20 20l-4-4"></path>
365
+ </svg>
366
+ </div>
367
+ <div class="content">
368
+ <div class="title"><span class="bold">woolen</span> shirts for men</div>
369
+ </div>
370
+ <div class="endicon">
371
+ <svg viewBox="0 0 24 24" fill="none" stroke="#444" stroke-width="2">
372
+ <path d="M7 17l10-10"></path>
373
+ <path d="M7 7h10v10"></path>
374
+ </svg>
375
+ </div>
376
+ </div>
377
+
378
+ <div class="row">
379
+ <div class="lefticon">
380
+ <svg viewBox="0 0 24 24" fill="none" stroke="#666" stroke-width="2">
381
+ <circle cx="11" cy="11" r="7"></circle>
382
+ <path d="M20 20l-4-4"></path>
383
+ </svg>
384
+ </div>
385
+ <div class="content">
386
+ <div class="title">shirts for men <span class="bold">combo</span></div>
387
+ </div>
388
+ <div class="endicon">
389
+ <svg viewBox="0 0 24 24" fill="none" stroke="#444" stroke-width="2">
390
+ <path d="M7 17l10-10"></path>
391
+ <path d="M7 7h10v10"></path>
392
+ </svg>
393
+ </div>
394
+ </div>
395
+ </div>
396
+
397
+ <!-- Keyboard mock -->
398
+ <div class="keyboard" aria-label="virtual keyboard">
399
+ <div class="kb-suggest">
400
+ <span>men</span>
401
+ <span class="divider">|</span>
402
+ <span>mens</span>
403
+ <span class="divider">|</span>
404
+ <span>men's</span>
405
+ <span style="margin-left:auto; opacity:.5;">🎤</span>
406
+ </div>
407
+ <div class="kb-rows">
408
+ <div class="kb-row">
409
+ <div class="key">q</div>
410
+ <div class="key">w</div>
411
+ <div class="key">e</div>
412
+ <div class="key">r</div>
413
+ <div class="key">t</div>
414
+ <div class="key">y</div>
415
+ <div class="key">u</div>
416
+ <div class="key">i</div>
417
+ <div class="key">o</div>
418
+ <div class="key">p</div>
419
+ </div>
420
+ <div class="kb-row">
421
+ <div class="key">a</div>
422
+ <div class="key">s</div>
423
+ <div class="key">d</div>
424
+ <div class="key">f</div>
425
+ <div class="key">g</div>
426
+ <div class="key">h</div>
427
+ <div class="key">j</div>
428
+ <div class="key">k</div>
429
+ <div class="key">l</div>
430
+ </div>
431
+ <div class="kb-row">
432
+ <div class="key wide">⇧</div>
433
+ <div class="key">z</div>
434
+ <div class="key">x</div>
435
+ <div class="key">c</div>
436
+ <div class="key">v</div>
437
+ <div class="key">b</div>
438
+ <div class="key">n</div>
439
+ <div class="key">m</div>
440
+ <div class="key wide">⌫</div>
441
+ </div>
442
+ <div class="kb-row">
443
+ <div class="key circle">?123</div>
444
+ <div class="key circle">😊</div>
445
+ <div class="key">,</div>
446
+ <div class="key space"></div>
447
+ <div class="key">.</div>
448
+ <div class="key circle">✔</div>
449
+ </div>
450
+ </div>
451
+ <div class="gesture-pill"></div>
452
+ </div>
453
+
454
+ </div>
455
+ </body>
456
+ </html>
code/10173/10173_4.html ADDED
@@ -0,0 +1,372 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Shirts for Men - UI Mock</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; color: #222; }
9
+ #render-target {
10
+ width: 1080px; height: 2400px;
11
+ position: relative; overflow: hidden;
12
+ background: #ffffff; border-radius: 28px; box-shadow: 0 8px 28px rgba(0,0,0,0.08);
13
+ }
14
+
15
+ /* Status bar (OS area) */
16
+ .status-bar {
17
+ height: 90px; background: #f3f3f3; color: #444;
18
+ display: flex; align-items: center; justify-content: space-between;
19
+ padding: 0 28px; font-size: 34px;
20
+ }
21
+ .status-icons { display: flex; gap: 20px; align-items: center; }
22
+ .dot { width: 10px; height: 10px; background: #777; border-radius: 50%; display: inline-block; margin: 0 8px; }
23
+ .battery {
24
+ width: 46px; height: 22px; border: 2px solid #444; border-radius: 4px; position: relative; margin-left: 10px;
25
+ }
26
+ .battery::after { content: ""; position: absolute; right: -8px; top: 6px; width: 6px; height: 10px; background: #444; border-radius: 2px; }
27
+ .battery .level { width: 28px; height: 14px; background: #444; position: absolute; left: 4px; top: 4px; border-radius: 2px; }
28
+
29
+ /* Top app bar */
30
+ .top-bar {
31
+ height: 120px; display: flex; align-items: center;
32
+ padding: 0 24px; border-bottom: 1px solid #e6e6e6; background: #fff;
33
+ }
34
+ .top-left { display: flex; align-items: center; gap: 18px; }
35
+ .title { font-size: 44px; font-weight: 600; color: #333; }
36
+ .top-actions { margin-left: auto; display: flex; align-items: center; gap: 26px; }
37
+ .icon-btn { width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; }
38
+ .cart-badge {
39
+ position: absolute; right: 30px; top: 160px;
40
+ background: #ff3b30; color: #fff; font-weight: 700; font-size: 26px;
41
+ border-radius: 18px; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
42
+ }
43
+
44
+ /* Sort/Filter row */
45
+ .controls {
46
+ display: grid; grid-template-columns: 1fr 1fr;
47
+ border-bottom: 1px solid #eaeaea; background: #fff;
48
+ }
49
+ .control-item {
50
+ height: 120px; display: flex; align-items: center; justify-content: center; gap: 18px;
51
+ font-size: 36px; color: #444; position: relative;
52
+ }
53
+ .control-item:first-child { border-right: 1px solid #efefef; }
54
+
55
+ /* Banner */
56
+ .banner {
57
+ height: 200px; margin: 22px; border-radius: 18px; overflow: hidden;
58
+ background: #E0E0E0; border: 1px solid #BDBDBD; display: flex; align-items: center; justify-content: center; color: #757575; font-size: 36px;
59
+ }
60
+
61
+ /* Product grid */
62
+ .product-grid {
63
+ padding: 12px 22px 0 22px;
64
+ display: grid; grid-template-columns: 1fr 1fr; grid-gap: 24px;
65
+ }
66
+ .card {
67
+ background: #fff; border: 1px solid #e6e6e6; border-radius: 18px; overflow: hidden; position: relative;
68
+ }
69
+ .product-img {
70
+ height: 560px; background: #E0E0E0; border-bottom: 1px solid #BDBDBD;
71
+ display: flex; align-items: center; justify-content: center; color: #757575; font-size: 32px;
72
+ }
73
+ .ad-badge {
74
+ position: absolute; left: 12px; top: 12px; background: #ffffff; border: 1px solid #dadada;
75
+ color: #888; font-size: 28px; padding: 8px 12px; border-radius: 10px;
76
+ }
77
+ .fav-btn {
78
+ position: absolute; right: 14px; top: 12px; width: 64px; height: 64px;
79
+ background: #fff; border: 1px solid #e0e0e0; border-radius: 50%;
80
+ display: flex; align-items: center; justify-content: center;
81
+ }
82
+ .card-body { padding: 22px; }
83
+ .prod-title { font-size: 34px; color: #444; line-height: 1.2; margin-bottom: 12px; }
84
+ .price-row { display: flex; align-items: baseline; gap: 14px; margin-bottom: 16px; }
85
+ .original { color: #9b9b9b; text-decoration: line-through; font-size: 30px; }
86
+ .price { font-weight: 700; font-size: 34px; color: #222; }
87
+ .discount { color: #1b8f3a; font-size: 32px; font-weight: 700; }
88
+ .delivery-chip {
89
+ display: inline-flex; align-items: center; gap: 10px;
90
+ padding: 10px 12px; border-radius: 10px; background: #f5f8ff; color: #2f66d5; font-weight: 600; font-size: 30px;
91
+ }
92
+
93
+ /* Coupon pill */
94
+ .coupon {
95
+ margin: 18px 0 6px 0; display: flex; align-items: center;
96
+ background: #e9fbe9; border: 1px dashed #b9e5b9; border-radius: 14px; padding: 16px 18px; gap: 16px; width: calc(100% - 2px); font-size: 30px;
97
+ }
98
+ .coupon .amount { font-weight: 800; color: #2e7d32; }
99
+ .coupon .divider {
100
+ width: 1px; height: 26px; background: linear-gradient(#b9e5b9,#b9e5b9) no-repeat;
101
+ border-left: 4px dotted #9fd99f; margin: 0 4px;
102
+ }
103
+
104
+ /* Bottom navigation */
105
+ .bottom-nav {
106
+ position: absolute; left: 0; right: 0; bottom: 40px;
107
+ height: 160px; background: #fafafa; border-top: 1px solid #e6e6e6;
108
+ display: grid; grid-template-columns: repeat(5, 1fr); align-items: center; padding: 0 18px;
109
+ }
110
+ .nav-item { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: #666; font-size: 28px; }
111
+ .nav-item.active { color: #2563eb; font-weight: 700; }
112
+ .cart-dot {
113
+ position: absolute; top: 22px; right: 110px; width: 26px; height: 26px; background: #ff3b30; color: #fff; border-radius: 50%;
114
+ display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 700;
115
+ }
116
+ .categories-dot {
117
+ position: absolute; width: 20px; height: 20px; background: #ff3b30; border-radius: 50%; top: 34px; left: 660px;
118
+ border: 2px solid #fff;
119
+ }
120
+ .home-indicator {
121
+ position: absolute; left: 50%; transform: translateX(-50%);
122
+ bottom: 12px; width: 360px; height: 12px; background: #000; border-radius: 6px;
123
+ }
124
+ </style>
125
+ </head>
126
+ <body>
127
+ <div id="render-target">
128
+
129
+ <!-- Status Bar -->
130
+ <div class="status-bar">
131
+ <div>11:27</div>
132
+ <div class="status-icons">
133
+ <span>Temu</span><span class="dot"></span>
134
+ <svg width="32" height="32" viewBox="0 0 24 24">
135
+ <circle cx="12" cy="12" r="10" stroke="#444" stroke-width="2" fill="none"></circle>
136
+ <circle cx="12" cy="12" r="4" fill="#444"></circle>
137
+ </svg>
138
+ <svg width="32" height="32" viewBox="0 0 24 24">
139
+ <path d="M5 3h14l-2 14H7L5 3zm4 18a2 2 0 1 0 0-4 2 2 0 0 0 0 4zm8 0a2 2 0 1 0 0-4 2 2 0 0 0 0 4z" fill="#444"></path>
140
+ </svg>
141
+ <div class="battery"><div class="level"></div></div>
142
+ </div>
143
+ </div>
144
+
145
+ <!-- Top App Bar -->
146
+ <div class="top-bar">
147
+ <div class="top-left">
148
+ <div class="icon-btn">
149
+ <svg width="48" height="48" viewBox="0 0 24 24">
150
+ <path d="M15 18l-6-6 6-6" stroke="#333" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"></path>
151
+ </svg>
152
+ </div>
153
+ <div class="title">shirts for men</div>
154
+ </div>
155
+ <div class="top-actions">
156
+ <div class="icon-btn">
157
+ <svg width="44" height="44" viewBox="0 0 24 24">
158
+ <circle cx="11" cy="11" r="7" stroke="#333" stroke-width="2" fill="none"></circle>
159
+ <line x1="20" y1="20" x2="16" y2="16" stroke="#333" stroke-width="2"></line>
160
+ </svg>
161
+ </div>
162
+ <div class="icon-btn">
163
+ <svg width="44" height="44" viewBox="0 0 24 24">
164
+ <rect x="10" y="6" width="4" height="8" rx="2" fill="#333"></rect>
165
+ <path d="M8 14h8v3a4 4 0 0 1-8 0v-3z" fill="#333"></path>
166
+ </svg>
167
+ </div>
168
+ <div class="icon-btn">
169
+ <svg width="44" height="44" viewBox="0 0 24 24">
170
+ <path d="M12 21s-7-4.5-7-10a4 4 0 0 1 7-2 4 4 0 0 1 7 2c0 5.5-7 10-7 10z" stroke="#333" stroke-width="2" fill="none"></path>
171
+ </svg>
172
+ </div>
173
+ <div class="icon-btn">
174
+ <svg width="48" height="48" viewBox="0 0 24 24">
175
+ <path d="M7 6h14l-2 10H7L5 4H2" stroke="#333" stroke-width="2" fill="none" stroke-linecap="round"></path>
176
+ <circle cx="9" cy="20" r="1.8" fill="#333"></circle>
177
+ <circle cx="18" cy="20" r="1.8" fill="#333"></circle>
178
+ </svg>
179
+ </div>
180
+ </div>
181
+ <div class="cart-badge">1</div>
182
+ </div>
183
+
184
+ <!-- Sort / Filter -->
185
+ <div class="controls">
186
+ <div class="control-item">
187
+ <svg width="42" height="42" viewBox="0 0 24 24">
188
+ <path d="M4 7h10M4 12h7M4 17h4" stroke="#444" stroke-width="2" stroke-linecap="round"></path>
189
+ </svg>
190
+ <span>Sort</span>
191
+ </div>
192
+ <div class="control-item">
193
+ <svg width="42" height="42" viewBox="0 0 24 24">
194
+ <path d="M3 5h18l-7 8v6l-4-2v-4z" stroke="#444" stroke-width="2" fill="none" stroke-linejoin="round"></path>
195
+ </svg>
196
+ <span>Filter</span>
197
+ </div>
198
+ </div>
199
+
200
+ <!-- Banner -->
201
+ <div class="banner">[IMG: Promotional banner - Best Value Badge]</div>
202
+
203
+ <!-- Product Grid -->
204
+ <div class="product-grid">
205
+ <!-- Card 1 -->
206
+ <div class="card">
207
+ <div class="ad-badge">Ad</div>
208
+ <div class="fav-btn">
209
+ <svg width="32" height="32" viewBox="0 0 24 24">
210
+ <path d="M12 21s-7-4.5-7-10a4 4 0 0 1 7-2 4 4 0 0 1 7 2c0 5.5-7 10-7 10z" stroke="#888" stroke-width="2" fill="none"></path>
211
+ </svg>
212
+ </div>
213
+ <div class="product-img">[IMG: Model wearing solid grey shirt]</div>
214
+ <div class="card-body">
215
+ <div class="prod-title">Men Solid Casual Grey Shirt</div>
216
+ <div class="price-row">
217
+ <div class="original">2,199</div>
218
+ <div class="price">₹379</div>
219
+ <div class="discount">82% off</div>
220
+ </div>
221
+ <div class="delivery-chip">
222
+ <svg width="32" height="24" viewBox="0 0 24 24">
223
+ <rect x="2" y="8" width="12" height="8" fill="#2f66d5"></rect>
224
+ <rect x="14" y="10" width="6" height="6" fill="#2f66d5"></rect>
225
+ <circle cx="6" cy="18" r="2" fill="#2f66d5"></circle>
226
+ <circle cx="18" cy="18" r="2" fill="#2f66d5"></circle>
227
+ </svg>
228
+ <span>Free Delivery</span>
229
+ </div>
230
+ <div class="coupon">
231
+ <span class="amount">₹35</span>
232
+ <span class="divider"></span>
233
+ <span>Coupon available</span>
234
+ </div>
235
+ </div>
236
+ </div>
237
+
238
+ <!-- Card 2 -->
239
+ <div class="card">
240
+ <div class="ad-badge">Ad</div>
241
+ <div class="fav-btn">
242
+ <svg width="32" height="32" viewBox="0 0 24 24">
243
+ <path d="M12 21s-7-4.5-7-10a4 4 0 0 1 7-2 4 4 0 0 1 7 2c0 5.5-7 10-7 10z" stroke="#888" stroke-width="2" fill="none"></path>
244
+ </svg>
245
+ </div>
246
+ <div class="product-img">[IMG: Model wearing solid red shirt]</div>
247
+ <div class="card-body">
248
+ <div class="prod-title">Men Solid Casual Red Shirt</div>
249
+ <div class="price-row">
250
+ <div class="original">2,199</div>
251
+ <div class="price">₹379</div>
252
+ <div class="discount">82% off</div>
253
+ </div>
254
+ <div class="delivery-chip">
255
+ <svg width="32" height="24" viewBox="0 0 24 24">
256
+ <rect x="2" y="8" width="12" height="8" fill="#2f66d5"></rect>
257
+ <rect x="14" y="10" width="6" height="6" fill="#2f66d5"></rect>
258
+ <circle cx="6" cy="18" r="2" fill="#2f66d5"></circle>
259
+ <circle cx="18" cy="18" r="2" fill="#2f66d5"></circle>
260
+ </svg>
261
+ <span>Free Delivery</span>
262
+ </div>
263
+ <div class="coupon">
264
+ <span class="amount">₹35</span>
265
+ <span class="divider"></span>
266
+ <span>Coupon available</span>
267
+ </div>
268
+ </div>
269
+ </div>
270
+
271
+ <!-- Card 3 -->
272
+ <div class="card">
273
+ <div class="fav-btn">
274
+ <svg width="32" height="32" viewBox="0 0 24 24">
275
+ <path d="M12 21s-7-4.5-7-10a4 4 0 0 1 7-2 4 4 0 0 1 7 2c0 5.5-7 10-7 10z" stroke="#888" stroke-width="2" fill="none"></path>
276
+ </svg>
277
+ </div>
278
+ <div class="product-img">[IMG: Model wearing solid pink shirt]</div>
279
+ <div class="card-body">
280
+ <div class="prod-title">Men Solid Casual Pink Shirt</div>
281
+ <div class="price-row">
282
+ <div class="original">2,199</div>
283
+ <div class="price">₹379</div>
284
+ <div class="discount">82% off</div>
285
+ </div>
286
+ <div class="delivery-chip">
287
+ <svg width="32" height="24" viewBox="0 0 24 24">
288
+ <rect x="2" y="8" width="12" height="8" fill="#2f66d5"></rect>
289
+ <rect x="14" y="10" width="6" height="6" fill="#2f66d5"></rect>
290
+ <circle cx="6" cy="18" r="2" fill="#2f66d5"></circle>
291
+ <circle cx="18" cy="18" r="2" fill="#2f66d5"></circle>
292
+ </svg>
293
+ <span>Free Delivery</span>
294
+ </div>
295
+ </div>
296
+ </div>
297
+
298
+ <!-- Card 4 -->
299
+ <div class="card">
300
+ <div class="fav-btn">
301
+ <svg width="32" height="32" viewBox="0 0 24 24">
302
+ <path d="M12 21s-7-4.5-7-10a4 4 0 0 1 7-2 4 4 0 0 1 7 2c0 5.5-7 10-7 10z" stroke="#888" stroke-width="2" fill="none"></path>
303
+ </svg>
304
+ </div>
305
+ <div class="product-img">[IMG: Solid black shirt product photo]</div>
306
+ <div class="card-body">
307
+ <div class="prod-title">Men Solid Casual Black Shirt</div>
308
+ <div class="price-row">
309
+ <div class="original">2,199</div>
310
+ <div class="price">₹379</div>
311
+ <div class="discount">82% off</div>
312
+ </div>
313
+ <div class="delivery-chip">
314
+ <svg width="32" height="24" viewBox="0 0 24 24">
315
+ <rect x="2" y="8" width="12" height="8" fill="#2f66d5"></rect>
316
+ <rect x="14" y="10" width="6" height="6" fill="#2f66d5"></rect>
317
+ <circle cx="6" cy="18" r="2" fill="#2f66d5"></circle>
318
+ <circle cx="18" cy="18" r="2" fill="#2f66d5"></circle>
319
+ </svg>
320
+ <span>Free Delivery</span>
321
+ </div>
322
+ </div>
323
+ </div>
324
+ </div>
325
+
326
+ <!-- Bottom Navigation -->
327
+ <div class="bottom-nav">
328
+ <div class="nav-item">
329
+ <svg width="40" height="40" viewBox="0 0 24 24">
330
+ <path d="M3 11l9-8 9 8v9H3v-9z" stroke="#666" stroke-width="2" fill="none"></path>
331
+ </svg>
332
+ <div>Home</div>
333
+ </div>
334
+ <div class="nav-item active">
335
+ <svg width="40" height="40" viewBox="0 0 24 24">
336
+ <circle cx="11" cy="11" r="7" stroke="#2563eb" stroke-width="2" fill="none"></circle>
337
+ <line x1="20" y1="20" x2="16" y2="16" stroke="#2563eb" stroke-width="2"></line>
338
+ </svg>
339
+ <div>Search</div>
340
+ </div>
341
+ <div class="nav-item">
342
+ <svg width="40" height="40" viewBox="0 0 24 24">
343
+ <rect x="4" y="4" width="6" height="6" fill="#666"></rect>
344
+ <rect x="14" y="4" width="6" height="6" fill="#666"></rect>
345
+ <rect x="4" y="14" width="6" height="6" fill="#666"></rect>
346
+ <rect x="14" y="14" width="6" height="6" fill="#666"></rect>
347
+ </svg>
348
+ <div>Categories</div>
349
+ </div>
350
+ <div class="nav-item">
351
+ <svg width="40" height="40" viewBox="0 0 24 24">
352
+ <circle cx="12" cy="8" r="4" stroke="#666" stroke-width="2" fill="none"></circle>
353
+ <path d="M4 22c0-4 4-7 8-7s8 3 8 7" stroke="#666" stroke-width="2" fill="none"></path>
354
+ </svg>
355
+ <div>Account</div>
356
+ </div>
357
+ <div class="nav-item">
358
+ <svg width="40" height="40" viewBox="0 0 24 24">
359
+ <path d="M7 6h14l-2 10H7L5 4H2" stroke="#666" stroke-width="2" fill="none" stroke-linecap="round"></path>
360
+ <circle cx="9" cy="20" r="1.8" fill="#666"></circle>
361
+ <circle cx="18" cy="20" r="1.8" fill="#666"></circle>
362
+ </svg>
363
+ <div>Cart</div>
364
+ </div>
365
+ <div class="cart-dot">1</div>
366
+ <div class="categories-dot"></div>
367
+ </div>
368
+
369
+ <div class="home-indicator"></div>
370
+ </div>
371
+ </body>
372
+ </html>
code/10173/10173_6.html ADDED
@@ -0,0 +1,306 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Filters UI</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; color: #111; }
9
+ #render-target {
10
+ width: 1080px;
11
+ height: 2400px;
12
+ position: relative;
13
+ overflow: hidden;
14
+ background: #ffffff;
15
+ }
16
+
17
+ /* Status bar */
18
+ .status-bar {
19
+ height: 120px;
20
+ background: #e6e6e6;
21
+ padding: 0 36px;
22
+ display: flex;
23
+ align-items: center;
24
+ justify-content: space-between;
25
+ font-weight: 600;
26
+ font-size: 40px;
27
+ color: #111;
28
+ letter-spacing: 0.5px;
29
+ }
30
+ .status-icons {
31
+ display: flex;
32
+ align-items: center;
33
+ gap: 26px;
34
+ }
35
+ .dot { width: 14px; height: 14px; background: #6b6b6b; border-radius: 50%; }
36
+ .icon-box { width: 38px; height: 24px; border: 3px solid #4b4b4b; border-radius: 4px; position: relative; }
37
+ .icon-box::after { content: ""; position: absolute; right: 4px; top: 4px; bottom: 4px; width: 16px; background: #4b4b4b; border-radius: 2px; }
38
+
39
+ /* Top app bar */
40
+ .appbar {
41
+ height: 140px;
42
+ display: flex;
43
+ align-items: center;
44
+ padding: 0 36px;
45
+ background: #fff;
46
+ border-bottom: 1px solid #ececec;
47
+ }
48
+ .appbar h1 {
49
+ margin: 0 0 0 22px;
50
+ font-size: 56px;
51
+ font-weight: 700;
52
+ }
53
+ .clear-link {
54
+ margin-left: auto;
55
+ color: #2a3cff;
56
+ font-size: 44px;
57
+ font-weight: 700;
58
+ text-decoration: none;
59
+ }
60
+ .back-btn {
61
+ width: 60px; height: 60px;
62
+ display: inline-flex; align-items: center; justify-content: center;
63
+ }
64
+ .back-btn svg { width: 56px; height: 56px; }
65
+
66
+ /* Layout below appbar */
67
+ .content {
68
+ position: absolute;
69
+ top: 260px; /* 120 + 140 */
70
+ bottom: 350px; /* apply bar + navbar combined reserved later */
71
+ left: 0; right: 0;
72
+ display: flex;
73
+ overflow: hidden;
74
+ }
75
+ .sidebar {
76
+ width: 320px;
77
+ background: #f1f2f6;
78
+ border-right: 1px solid #e6e6e9;
79
+ overflow-y: auto;
80
+ }
81
+ .side-item {
82
+ padding: 34px 30px;
83
+ font-size: 42px;
84
+ color: #1b1b1b;
85
+ border-bottom: 1px solid #ececf0;
86
+ display: flex;
87
+ align-items: center;
88
+ justify-content: space-between;
89
+ min-height: 120px;
90
+ }
91
+ .side-item.muted { color: #6b6b6b; }
92
+ .side-item.active { color: #4a45ff; font-weight: 700; background: #ffffff; }
93
+ .tick {
94
+ width: 34px; height: 34px; color: #6a58ff;
95
+ }
96
+
97
+ .options {
98
+ flex: 1;
99
+ overflow-y: auto;
100
+ padding: 8px 20px 40px 28px;
101
+ background: #fff;
102
+ }
103
+ .opt-row {
104
+ display: flex;
105
+ align-items: center;
106
+ gap: 26px;
107
+ padding: 34px 24px;
108
+ margin: 8px 8px;
109
+ border-bottom: 1px solid #f1f1f1;
110
+ }
111
+ .checkbox {
112
+ width: 54px; height: 54px;
113
+ border: 6px solid #2a2a2a;
114
+ border-radius: 8px;
115
+ box-sizing: border-box;
116
+ background: #fff;
117
+ }
118
+ .opt-label {
119
+ font-size: 46px;
120
+ color: #222;
121
+ letter-spacing: 0.3px;
122
+ }
123
+
124
+ /* Apply bar (above bottom nav) */
125
+ .apply-bar {
126
+ position: absolute;
127
+ left: 0; right: 0;
128
+ bottom: 170px; /* keep nav visible */
129
+ height: 180px;
130
+ background: #ffffff;
131
+ border-top: 1px solid #ececec;
132
+ display: flex;
133
+ align-items: center;
134
+ padding: 0 36px;
135
+ gap: 24px;
136
+ }
137
+ .found {
138
+ flex: 1;
139
+ }
140
+ .found .count {
141
+ font-size: 52px; font-weight: 800; color: #111;
142
+ }
143
+ .found .sub {
144
+ font-size: 34px; color: #6b6b6b; margin-top: 6px;
145
+ }
146
+ .apply-btn {
147
+ width: 500px; height: 118px; background: #5b4dff;
148
+ border-radius: 16px; color: #fff; font-size: 46px; font-weight: 700;
149
+ display: flex; align-items: center; justify-content: center;
150
+ box-shadow: 0 6px 14px rgba(91,77,255,0.3);
151
+ }
152
+
153
+ /* Bottom navigation */
154
+ .navbar {
155
+ position: absolute;
156
+ left: 0; right: 0; bottom: 0;
157
+ height: 170px;
158
+ background: #fff;
159
+ border-top: 1px solid #e9e9e9;
160
+ display: flex;
161
+ align-items: center;
162
+ justify-content: space-around;
163
+ font-size: 32px;
164
+ color: #6b6b6b;
165
+ }
166
+ .nav-item {
167
+ width: 180px;
168
+ display: flex; flex-direction: column;
169
+ align-items: center; justify-content: center;
170
+ position: relative;
171
+ gap: 10px;
172
+ }
173
+ .nav-item svg { width: 54px; height: 54px; }
174
+ .nav-item.active { color: #5b4dff; }
175
+ .active-indicator {
176
+ position: absolute; bottom: 0; height: 10px; width: 120px; background: #5b4dff; border-radius: 6px;
177
+ }
178
+ .badge {
179
+ position: absolute;
180
+ top: 8px; right: 46px;
181
+ width: 28px; height: 28px; background: #ff3b30; color: #fff; font-size: 22px;
182
+ display: flex; align-items: center; justify-content: center; border-radius: 50%;
183
+ }
184
+ </style>
185
+ </head>
186
+ <body>
187
+ <div id="render-target">
188
+
189
+ <!-- Status bar -->
190
+ <div class="status-bar">
191
+ <div>11:28</div>
192
+ <div class="status-icons">
193
+ <div class="dot"></div>
194
+ <div class="dot"></div>
195
+ <div class="icon-box"></div>
196
+ </div>
197
+ </div>
198
+
199
+ <!-- App bar -->
200
+ <div class="appbar">
201
+ <div class="back-btn" aria-label="Back">
202
+ <svg viewBox="0 0 24 24" fill="none" stroke="#111" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
203
+ <path d="M15 18l-6-6 6-6"></path>
204
+ </svg>
205
+ </div>
206
+ <h1>Filters</h1>
207
+ <a class="clear-link" href="#">Clear Filters</a>
208
+ </div>
209
+
210
+ <!-- Main content -->
211
+ <div class="content">
212
+ <!-- Sidebar -->
213
+ <div class="sidebar">
214
+ <div class="side-item">Price</div>
215
+ <div class="side-item">Brand</div>
216
+ <div class="side-item">Deliver At
217
+ <svg class="tick" viewBox="0 0 24 24" fill="none" stroke="#6a58ff" stroke-width="3" stroke-linecap="round" stroke-linejoin="round">
218
+ <path d="M20 6L9 17l-5-5"></path>
219
+ </svg>
220
+ </div>
221
+ <div class="side-item">Gender</div>
222
+ <div class="side-item">Discount</div>
223
+ <div class="side-item active">Size</div>
224
+ <div class="side-item">Sleeves</div>
225
+ <div class="side-item">Collar</div>
226
+ <div class="side-item">Fabric</div>
227
+ <div class="side-item">Pattern</div>
228
+ <div class="side-item">Occasion</div>
229
+ <div class="side-item">Color</div>
230
+ </div>
231
+
232
+ <!-- Options list -->
233
+ <div class="options">
234
+ <div class="opt-row"><div class="checkbox"></div><div class="opt-label">3XS</div></div>
235
+ <div class="opt-row"><div class="checkbox"></div><div class="opt-label">2XS</div></div>
236
+ <div class="opt-row"><div class="checkbox"></div><div class="opt-label">XS</div></div>
237
+ <div class="opt-row"><div class="checkbox"></div><div class="opt-label">S</div></div>
238
+ <div class="opt-row"><div class="checkbox"></div><div class="opt-label">M</div></div>
239
+ <div class="opt-row"><div class="checkbox"></div><div class="opt-label">L</div></div>
240
+ <div class="opt-row"><div class="checkbox"></div><div class="opt-label">XL</div></div>
241
+ <div class="opt-row"><div class="checkbox"></div><div class="opt-label">XXL</div></div>
242
+ <div class="opt-row"><div class="checkbox"></div><div class="opt-label">3XL</div></div>
243
+ <div class="opt-row"><div class="checkbox"></div><div class="opt-label">4XL</div></div>
244
+ <div class="opt-row"><div class="checkbox"></div><div class="opt-label">5XL</div></div>
245
+ <div class="opt-row"><div class="checkbox"></div><div class="opt-label">6XL</div></div>
246
+ <div class="opt-row"><div class="checkbox"></div><div class="opt-label">7XL</div></div>
247
+ <div class="opt-row"><div class="checkbox"></div><div class="opt-label">Free</div></div>
248
+ </div>
249
+ </div>
250
+
251
+ <!-- Apply bar -->
252
+ <div class="apply-bar">
253
+ <div class="found">
254
+ <div class="count">200,777</div>
255
+ <div class="sub">products found</div>
256
+ </div>
257
+ <div class="apply-btn">Apply</div>
258
+ </div>
259
+
260
+ <!-- Bottom navigation -->
261
+ <div class="navbar">
262
+ <div class="nav-item">
263
+ <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
264
+ <path d="M3 10l9-7 9 7v8a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2v-4H9v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"></path>
265
+ </svg>
266
+ <div>Home</div>
267
+ </div>
268
+ <div class="nav-item active">
269
+ <svg viewBox="0 0 24 24" fill="none" stroke="#5b4dff" stroke-width="2">
270
+ <circle cx="11" cy="11" r="7"></circle>
271
+ <path d="M21 21l-4.3-4.3"></path>
272
+ </svg>
273
+ <div>Search</div>
274
+ <div class="active-indicator"></div>
275
+ </div>
276
+ <div class="nav-item">
277
+ <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
278
+ <rect x="3" y="3" width="7" height="7"></rect>
279
+ <rect x="14" y="3" width="7" height="7"></rect>
280
+ <rect x="3" y="14" width="7" height="7"></rect>
281
+ <rect x="14" y="14" width="7" height="7"></rect>
282
+ </svg>
283
+ <div>Categories</div>
284
+ <div class="badge"></div>
285
+ </div>
286
+ <div class="nav-item">
287
+ <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
288
+ <circle cx="12" cy="8" r="4"></circle>
289
+ <path d="M4 21c0-4 4-7 8-7s8 3 8 7"></path>
290
+ </svg>
291
+ <div>Account</div>
292
+ </div>
293
+ <div class="nav-item">
294
+ <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
295
+ <path d="M6 6h15l-1.5 9h-12z"></path>
296
+ <circle cx="9" cy="20" r="2"></circle>
297
+ <circle cx="18" cy="20" r="2"></circle>
298
+ </svg>
299
+ <div>Cart</div>
300
+ <div class="badge">1</div>
301
+ </div>
302
+ </div>
303
+
304
+ </div>
305
+ </body>
306
+ </html>
code/10173/10173_7.html ADDED
@@ -0,0 +1,364 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Filters UI</title>
7
+ <style>
8
+ body {
9
+ margin: 0;
10
+ padding: 0;
11
+ background: transparent;
12
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
13
+ color: #111;
14
+ }
15
+ #render-target {
16
+ width: 1080px;
17
+ height: 2400px;
18
+ position: relative;
19
+ overflow: hidden;
20
+ background: #ffffff;
21
+ }
22
+
23
+ /* Status bar */
24
+ .status-bar {
25
+ height: 120px;
26
+ background: #e7e7e7;
27
+ display: flex;
28
+ align-items: center;
29
+ padding: 0 36px;
30
+ box-sizing: border-box;
31
+ font-size: 34px;
32
+ color: #222;
33
+ }
34
+ .status-bar .right {
35
+ margin-left: auto;
36
+ display: flex;
37
+ align-items: center;
38
+ gap: 26px;
39
+ }
40
+ .sb-dot {
41
+ width: 12px; height: 12px; background:#444; border-radius:50%;
42
+ display:inline-block;
43
+ }
44
+ .sb-icon {
45
+ width: 36px; height: 24px; border: 3px solid #444; border-radius: 4px; position: relative;
46
+ }
47
+ .sb-icon:after {
48
+ content: ""; position: absolute; right: -10px; top: 4px; width: 6px; height: 16px; background:#444; border-radius: 2px;
49
+ }
50
+
51
+ /* Header */
52
+ .header {
53
+ height: 140px;
54
+ display: flex;
55
+ align-items: center;
56
+ padding: 0 32px;
57
+ box-sizing: border-box;
58
+ border-bottom: 1px solid #eee;
59
+ }
60
+ .back-btn {
61
+ width: 72px; height: 72px; display:flex; align-items:center; justify-content:center;
62
+ }
63
+ .header h1 {
64
+ font-size: 48px;
65
+ font-weight: 600;
66
+ margin: 0 0 0 8px;
67
+ }
68
+ .clear-link {
69
+ margin-left: auto;
70
+ color: #2046ff;
71
+ font-size: 40px;
72
+ font-weight: 600;
73
+ cursor: pointer;
74
+ }
75
+
76
+ /* Main 2-column area */
77
+ .filters-wrap {
78
+ position: absolute;
79
+ top: 260px; /* 120 + 140 */
80
+ bottom: 300px; /* space for bottom bars */
81
+ left: 0;
82
+ right: 0;
83
+ display: grid;
84
+ grid-template-columns: 320px 1fr;
85
+ }
86
+
87
+ /* Left section list */
88
+ .left-menu {
89
+ overflow: hidden;
90
+ border-right: 1px solid #eee;
91
+ }
92
+ .menu-item {
93
+ height: 140px;
94
+ display: flex;
95
+ align-items: center;
96
+ padding: 0 36px;
97
+ box-sizing: border-box;
98
+ font-size: 38px;
99
+ color: #222;
100
+ background: #f2f3f6;
101
+ border-bottom: 10px solid #ffffff00;
102
+ }
103
+ .menu-item + .menu-item {
104
+ margin-top: 16px;
105
+ }
106
+ .menu-item.active {
107
+ color: #5b43ff;
108
+ background: #ffffff;
109
+ }
110
+ .menu-item.selected {
111
+ position: relative;
112
+ }
113
+ .menu-item.selected .tick {
114
+ margin-left: auto;
115
+ width: 42px; height: 42px; color: #5b43ff;
116
+ }
117
+
118
+ /* Right options list */
119
+ .right-list {
120
+ overflow: auto;
121
+ padding: 8px 40px 40px 40px;
122
+ }
123
+ .option {
124
+ display: flex;
125
+ align-items: center;
126
+ gap: 28px;
127
+ padding: 26px 0;
128
+ font-size: 40px;
129
+ }
130
+ .box {
131
+ width: 60px; height: 60px; border: 4px solid #222; border-radius: 10px; box-sizing: border-box;
132
+ display: inline-flex; align-items: center; justify-content: center;
133
+ }
134
+ .box.checked {
135
+ border-color: #5b43ff;
136
+ background: #5b43ff;
137
+ }
138
+ .checkmark {
139
+ width: 34px; height: 34px;
140
+ }
141
+
142
+ /* Bottom sticky apply bar */
143
+ .apply-bar {
144
+ position: absolute;
145
+ left: 0; right: 0;
146
+ bottom: 210px; /* above the tab bar */
147
+ height: 140px;
148
+ background: #ffffff;
149
+ border-top: 1px solid #eaeaea;
150
+ box-shadow: 0 -2px 12px rgba(0,0,0,0.06);
151
+ display: flex;
152
+ align-items: center;
153
+ padding: 0 36px;
154
+ box-sizing: border-box;
155
+ gap: 24px;
156
+ }
157
+ .count {
158
+ flex: 1;
159
+ display: flex; flex-direction: column;
160
+ }
161
+ .count .num {
162
+ font-size: 44px; font-weight: 700;
163
+ }
164
+ .count .sub {
165
+ font-size: 30px; color: #666;
166
+ margin-top: 6px;
167
+ }
168
+ .apply-btn {
169
+ width: 520px; height: 100px; border-radius: 16px; background: #5b43ff; color: #fff; font-size: 40px; font-weight: 700; border: none;
170
+ }
171
+
172
+ /* Bottom navigation */
173
+ .tabbar {
174
+ position: absolute;
175
+ left: 0; right: 0; bottom: 80px;
176
+ height: 130px;
177
+ background: #fff;
178
+ border-top: 1px solid #e6e6e6;
179
+ display: grid;
180
+ grid-template-columns: repeat(5, 1fr);
181
+ align-items: center;
182
+ }
183
+ .tab-item {
184
+ display: flex; flex-direction: column; align-items: center; justify-content: center;
185
+ gap: 10px;
186
+ position: relative;
187
+ }
188
+ .tab-item svg { width: 48px; height: 48px; }
189
+ .tab-item span { font-size: 28px; color: #777; }
190
+ .tab-item.active span { color: #5b43ff; }
191
+ .active-indicator {
192
+ position: absolute; bottom: -1px; height: 6px; width: 120px; background: #5b43ff; border-radius: 3px;
193
+ }
194
+ .badge {
195
+ position: absolute; right: 150px; top: 12px;
196
+ min-width: 24px; height: 24px; background: #ff3b30; color: #fff; font-size: 20px; padding: 2px 6px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
197
+ }
198
+ .dot {
199
+ position: absolute; right: 170px; top: 18px;
200
+ width: 14px; height: 14px; background: #ff3b30; border-radius: 50%;
201
+ }
202
+
203
+ /* Home indicator */
204
+ .home-indicator {
205
+ position: absolute; left: 50%; transform: translateX(-50%);
206
+ bottom: 20px; width: 320px; height: 12px; background: #000; opacity: 0.2; border-radius: 8px;
207
+ }
208
+ </style>
209
+ </head>
210
+ <body>
211
+ <div id="render-target">
212
+
213
+ <!-- Status Bar -->
214
+ <div class="status-bar">
215
+ <div>11:28</div>
216
+ <div class="right">
217
+ <div style="background:#bbb; padding:6px 10px; border-radius:8px; font-size:26px; color:#333;">B</div>
218
+ <div class="sb-dot"></div>
219
+ <div class="sb-dot"></div>
220
+ <div class="sb-dot"></div>
221
+ <div class="sb-icon"></div>
222
+ </div>
223
+ </div>
224
+
225
+ <!-- Header -->
226
+ <div class="header">
227
+ <div class="back-btn" aria-label="Back">
228
+ <svg viewBox="0 0 24 24">
229
+ <path d="M15.5 4 7 12l8.5 8" fill="none" stroke="#111" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
230
+ </svg>
231
+ </div>
232
+ <h1>Filters</h1>
233
+ <div class="clear-link">Clear Filters</div>
234
+ </div>
235
+
236
+ <!-- Main Filters Area -->
237
+ <div class="filters-wrap">
238
+ <!-- Left menu -->
239
+ <div class="left-menu">
240
+ <div class="menu-item">Price</div>
241
+ <div class="menu-item">Brand</div>
242
+ <div class="menu-item selected">
243
+ Deliver At
244
+ <svg class="tick" viewBox="0 0 24 24">
245
+ <path d="M4 13l4 4L20 7" fill="none" stroke="#5b43ff" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
246
+ </svg>
247
+ </div>
248
+ <div class="menu-item">Gender</div>
249
+ <div class="menu-item">Discount</div>
250
+ <div class="menu-item active">Size</div>
251
+ <div class="menu-item">Sleeves</div>
252
+ <div class="menu-item">Collar</div>
253
+ <div class="menu-item">Fabric</div>
254
+ <div class="menu-item">Pattern</div>
255
+ <div class="menu-item">Occasion</div>
256
+ <div class="menu-item">Color</div>
257
+ </div>
258
+
259
+ <!-- Right size options -->
260
+ <div class="right-list">
261
+ <div class="option">
262
+ <div class="box"></div><div>3XS</div>
263
+ </div>
264
+ <div class="option">
265
+ <div class="box"></div><div>2XS</div>
266
+ </div>
267
+ <div class="option">
268
+ <div class="box"></div><div>XS</div>
269
+ </div>
270
+ <div class="option">
271
+ <div class="box"></div><div>S</div>
272
+ </div>
273
+ <div class="option">
274
+ <div class="box checked">
275
+ <svg class="checkmark" viewBox="0 0 24 24">
276
+ <path d="M4 12.5l4 4L20 7" fill="none" stroke="#fff" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
277
+ </svg>
278
+ </div>
279
+ <div>M</div>
280
+ </div>
281
+ <div class="option">
282
+ <div class="box"></div><div>L</div>
283
+ </div>
284
+ <div class="option">
285
+ <div class="box"></div><div>XL</div>
286
+ </div>
287
+ <div class="option">
288
+ <div class="box"></div><div>XXL</div>
289
+ </div>
290
+ <div class="option">
291
+ <div class="box"></div><div>3XL</div>
292
+ </div>
293
+ <div class="option">
294
+ <div class="box"></div><div>4XL</div>
295
+ </div>
296
+ <div class="option">
297
+ <div class="box"></div><div>5XL</div>
298
+ </div>
299
+ <div class="option">
300
+ <div class="box"></div><div>6XL</div>
301
+ </div>
302
+ <div class="option">
303
+ <div class="box"></div><div>7XL</div>
304
+ </div>
305
+ <div class="option">
306
+ <div class="box"></div><div>Free</div>
307
+ </div>
308
+ <div style="height:80px"></div>
309
+ </div>
310
+ </div>
311
+
312
+ <!-- Bottom apply bar -->
313
+ <div class="apply-bar">
314
+ <div class="count">
315
+ <div class="num">200,777</div>
316
+ <div class="sub">products found</div>
317
+ </div>
318
+ <button class="apply-btn">Apply</button>
319
+ </div>
320
+
321
+ <!-- Bottom navigation -->
322
+ <div class="tabbar">
323
+ <div class="tab-item">
324
+ <svg viewBox="0 0 24 24" fill="none" stroke="#777" stroke-width="1.6">
325
+ <path d="M3 10l9-7 9 7v9a2 2 0 0 1-2 2h-4V13H9v8H5a2 2 0 0 1-2-2z"/>
326
+ </svg>
327
+ <span>Home</span>
328
+ </div>
329
+ <div class="tab-item active">
330
+ <svg viewBox="0 0 24 24" fill="none" stroke="#5b43ff" stroke-width="1.8">
331
+ <circle cx="11" cy="11" r="7"/>
332
+ <path d="M20 20l-3-3"/>
333
+ </svg>
334
+ <span>Search</span>
335
+ <div class="active-indicator"></div>
336
+ </div>
337
+ <div class="tab-item">
338
+ <svg viewBox="0 0 24 24" fill="none" stroke="#777" stroke-width="1.6">
339
+ <rect x="3" y="3" width="7" height="7"/><rect x="14" y="3" width="7" height="7"/>
340
+ <rect x="3" y="14" width="7" height="7"/><rect x="14" y="14" width="7" height="7"/>
341
+ </svg>
342
+ <span>Categories</span>
343
+ <div class="dot"></div>
344
+ </div>
345
+ <div class="tab-item">
346
+ <svg viewBox="0 0 24 24" fill="none" stroke="#777" stroke-width="1.6">
347
+ <circle cx="12" cy="8" r="4"/><path d="M4 21c1-4 5-6 8-6s7 2 8 6"/>
348
+ </svg>
349
+ <span>Account</span>
350
+ </div>
351
+ <div class="tab-item">
352
+ <svg viewBox="0 0 24 24" fill="none" stroke="#777" stroke-width="1.6">
353
+ <path d="M6 6h15l-2 9H7L6 6z"/><circle cx="9" cy="20" r="1.5"/><circle cx="18" cy="20" r="1.5"/>
354
+ </svg>
355
+ <span>Cart</span>
356
+ <div class="badge">1</div>
357
+ </div>
358
+ </div>
359
+
360
+ <!-- Home indicator -->
361
+ <div class="home-indicator"></div>
362
+ </div>
363
+ </body>
364
+ </html>
code/10173/10173_8.html ADDED
@@ -0,0 +1,480 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>Shopping - Shirts for Men</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
+ overflow: hidden;
11
+ width: 1080px;
12
+ height: 2400px;
13
+ background: #FFFFFF;
14
+ box-sizing: border-box;
15
+ }
16
+
17
+ /* Status bar */
18
+ .status-bar {
19
+ height: 96px;
20
+ background: #ECECEC;
21
+ display: flex;
22
+ align-items: center;
23
+ padding: 0 32px;
24
+ color: #4A4A4A;
25
+ font-size: 34px;
26
+ box-sizing: border-box;
27
+ }
28
+ .status-spacer { flex: 1; }
29
+ .status-dot { width: 10px; height: 10px; background: #707070; border-radius: 50%; margin: 0 12px; }
30
+
31
+ /* Top search bar */
32
+ .topbar {
33
+ height: 120px;
34
+ display: flex;
35
+ align-items: center;
36
+ padding: 0 28px;
37
+ box-sizing: border-box;
38
+ border-bottom: 1px solid #E6E6E6;
39
+ background: #FFFFFF;
40
+ }
41
+ .topbar .title {
42
+ font-size: 48px;
43
+ color: #222;
44
+ margin-left: 20px;
45
+ flex: 1;
46
+ }
47
+ .icon-btn {
48
+ width: 84px;
49
+ height: 84px;
50
+ display: flex;
51
+ align-items: center;
52
+ justify-content: center;
53
+ border-radius: 42px;
54
+ }
55
+ .icon-btn svg { width: 48px; height: 48px; fill: #3A3A3A; }
56
+ .badge {
57
+ position: absolute;
58
+ top: 6px;
59
+ right: 6px;
60
+ background: #E53935;
61
+ color: #fff;
62
+ font-size: 26px;
63
+ border-radius: 18px;
64
+ line-height: 28px;
65
+ height: 28px;
66
+ min-width: 28px;
67
+ padding: 0 8px;
68
+ text-align: center;
69
+ }
70
+
71
+ /* Sort / Filter row */
72
+ .sort-filter {
73
+ height: 120px;
74
+ display: grid;
75
+ grid-template-columns: 1fr 1fr;
76
+ border-bottom: 1px solid #E9E9E9;
77
+ background: #FFFFFF;
78
+ }
79
+ .sf-item {
80
+ display: flex;
81
+ align-items: center;
82
+ justify-content: center;
83
+ gap: 18px;
84
+ font-size: 38px;
85
+ color: #333;
86
+ position: relative;
87
+ }
88
+ .sf-item svg { width: 44px; height: 44px; fill: #4A4A4A; }
89
+ .sf-divider {
90
+ position: absolute;
91
+ right: 0;
92
+ top: 24px;
93
+ bottom: 24px;
94
+ width: 1px;
95
+ background: #EEEEEE;
96
+ }
97
+ .sf-dot {
98
+ position: absolute;
99
+ top: 18px;
100
+ left: 620px;
101
+ width: 26px;
102
+ height: 26px;
103
+ background: #E53935;
104
+ border-radius: 50%;
105
+ color: #fff;
106
+ font-size: 22px;
107
+ line-height: 26px;
108
+ text-align: center;
109
+ }
110
+
111
+ /* Banner placeholder */
112
+ .banner {
113
+ margin: 20px 24px;
114
+ height: 220px;
115
+ background: #E0E0E0;
116
+ border: 1px solid #BDBDBD;
117
+ border-radius: 24px;
118
+ display: flex;
119
+ align-items: center;
120
+ justify-content: center;
121
+ color: #757575;
122
+ font-size: 40px;
123
+ }
124
+
125
+ /* Product grid */
126
+ .grid {
127
+ display: grid;
128
+ grid-template-columns: 1fr 1fr;
129
+ gap: 24px;
130
+ padding: 0 24px 24px;
131
+ box-sizing: border-box;
132
+ }
133
+ .card {
134
+ background: #FFFFFF;
135
+ border: 1px solid #EEEEEE;
136
+ border-radius: 24px;
137
+ padding: 14px;
138
+ box-sizing: border-box;
139
+ position: relative;
140
+ }
141
+ .ad-pill {
142
+ position: absolute;
143
+ top: 18px;
144
+ left: 18px;
145
+ background: #F3F3F3;
146
+ color: #707070;
147
+ font-size: 28px;
148
+ padding: 6px 12px;
149
+ border-radius: 12px;
150
+ }
151
+ .wish-btn {
152
+ position: absolute;
153
+ top: 18px;
154
+ right: 18px;
155
+ width: 72px;
156
+ height: 72px;
157
+ border-radius: 36px;
158
+ background: #FFFFFF;
159
+ border: 1px solid #E6E6E6;
160
+ display: flex;
161
+ align-items: center;
162
+ justify-content: center;
163
+ }
164
+ .wish-btn svg { width: 40px; height: 40px; fill: none; stroke: #6C6C6C; stroke-width: 2px; }
165
+
166
+ .img-placeholder {
167
+ width: 100%;
168
+ height: 540px;
169
+ background: #E0E0E0;
170
+ border: 1px solid #BDBDBD;
171
+ border-radius: 18px;
172
+ display: flex;
173
+ align-items: center;
174
+ justify-content: center;
175
+ color: #757575;
176
+ font-size: 34px;
177
+ }
178
+ .brand {
179
+ font-size: 42px;
180
+ color: #1F1F1F;
181
+ margin: 18px 8px 6px;
182
+ }
183
+ .desc {
184
+ font-size: 34px;
185
+ color: #6E6E6E;
186
+ margin: 0 8px 12px;
187
+ white-space: nowrap;
188
+ overflow: hidden;
189
+ text-overflow: ellipsis;
190
+ }
191
+ .price-row {
192
+ display: flex;
193
+ align-items: baseline;
194
+ gap: 14px;
195
+ margin: 0 8px 12px;
196
+ font-size: 38px;
197
+ }
198
+ .strike {
199
+ color: #9E9E9E;
200
+ text-decoration: line-through;
201
+ }
202
+ .sale { color: #222; font-weight: 600; }
203
+ .off { color: #2E7D32; font-weight: 600; }
204
+
205
+ .pill-blue {
206
+ display: inline-flex;
207
+ align-items: center;
208
+ gap: 12px;
209
+ background: #EAF0FF;
210
+ color: #2F5BD2;
211
+ padding: 12px 16px;
212
+ border-radius: 14px;
213
+ font-size: 32px;
214
+ margin: 0 8px 12px;
215
+ }
216
+ .pill-blue svg { width: 32px; height: 32px; fill: #2F5BD2; }
217
+
218
+ .rating-row {
219
+ display: flex;
220
+ align-items: center;
221
+ gap: 16px;
222
+ margin: 0 8px 12px;
223
+ }
224
+ .stars {
225
+ color: #2E7D32;
226
+ font-size: 38px;
227
+ letter-spacing: 6px;
228
+ }
229
+ .rating-count {
230
+ font-size: 32px;
231
+ color: #7A7A7A;
232
+ }
233
+
234
+ .hot-deal {
235
+ display: inline-block;
236
+ font-size: 32px;
237
+ color: #2E7D32;
238
+ background: #E8F5E9;
239
+ padding: 10px 16px;
240
+ border-radius: 12px;
241
+ margin: 0 8px 14px;
242
+ }
243
+
244
+ .coupon {
245
+ display: flex;
246
+ align-items: center;
247
+ background: #EAF7E5;
248
+ border-radius: 12px;
249
+ margin: 0 8px 16px;
250
+ overflow: hidden;
251
+ }
252
+ .coupon .amount {
253
+ background: #DFF3D6;
254
+ color: #2E7D32;
255
+ font-weight: 600;
256
+ padding: 14px 18px;
257
+ font-size: 34px;
258
+ }
259
+ .coupon .divider {
260
+ width: 2px;
261
+ height: 100%;
262
+ border-left: 2px dashed #BBD9B3;
263
+ }
264
+ .coupon .label {
265
+ flex: 1;
266
+ padding: 14px 18px;
267
+ font-size: 34px;
268
+ color: #2E7D32;
269
+ }
270
+
271
+ /* Bottom navigation */
272
+ .bottom-nav {
273
+ position: absolute;
274
+ left: 0;
275
+ right: 0;
276
+ bottom: 120px;
277
+ height: 160px;
278
+ background: #FFFFFF;
279
+ border-top: 1px solid #E6E6E6;
280
+ display: grid;
281
+ grid-template-columns: repeat(5, 1fr);
282
+ align-items: center;
283
+ text-align: center;
284
+ }
285
+ .nav-item {
286
+ position: relative;
287
+ }
288
+ .nav-item svg { width: 48px; height: 48px; fill: #6A6A6A; }
289
+ .nav-item .label {
290
+ font-size: 30px;
291
+ color: #6A6A6A;
292
+ margin-top: 8px;
293
+ }
294
+ .nav-item.active svg { fill: #3D5AFE; }
295
+ .nav-item.active .label { color: #3D5AFE; }
296
+ .nav-dot {
297
+ position: absolute;
298
+ top: 24px;
299
+ right: 130px;
300
+ width: 18px;
301
+ height: 18px;
302
+ background: #E53935;
303
+ border-radius: 50%;
304
+ }
305
+
306
+ /* Home indicator */
307
+ .home-indicator {
308
+ position: absolute;
309
+ bottom: 32px;
310
+ left: 50%;
311
+ transform: translateX(-50%);
312
+ width: 360px;
313
+ height: 16px;
314
+ background: #000;
315
+ border-radius: 8px;
316
+ opacity: 0.7;
317
+ }
318
+ </style>
319
+ </head>
320
+ <body>
321
+ <div id="render-target">
322
+ <!-- Status Bar -->
323
+ <div class="status-bar">
324
+ <div>11:29</div>
325
+ <div class="status-spacer"></div>
326
+ <div style="display:flex; align-items:center; gap:18px;">
327
+ <div style="background:#9E9E9E; color:#fff; border-radius:8px; padding:6px 10px; font-size:28px;">B</div>
328
+ <div style="font-size:28px; color:#707070;">TEMU</div>
329
+ <div class="status-dot"></div>
330
+ <svg viewBox="0 0 24 24" style="width:34px;height:34px; fill:#707070;"><path d="M12 4a8 8 0 0 0-8 8h2a6 6 0 0 1 12 0h2a8 8 0 0 0-8-8zm-6 12v-2h12v2H6zm3 4v-2h6v2H9z"/></svg>
331
+ <svg viewBox="0 0 24 24" style="width:34px;height:34px; fill:#707070;"><path d="M12 4a8 8 0 0 0-8 8h16a8 8 0 0 0-8-8zm-6 10v2h12v-2H6zm3 4v2h6v-2H9z"/></svg>
332
+ </div>
333
+ </div>
334
+
335
+ <!-- Top Bar -->
336
+ <div class="topbar">
337
+ <div class="icon-btn">
338
+ <svg viewBox="0 0 24 24"><path d="M15.5 19l-7-7 7-7" stroke="#3A3A3A" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>
339
+ </div>
340
+ <div class="title">shirts for men</div>
341
+ <div class="icon-btn">
342
+ <svg viewBox="0 0 24 24"><path d="M10 2a8 8 0 1 0 4.9 14.3l5 5 1.4-1.4-5-5A8 8 0 0 0 10 2zm0 2a6 6 0 1 1 0 12 6 6 0 0 1 0-12z"/></svg>
343
+ </div>
344
+ <div class="icon-btn">
345
+ <svg viewBox="0 0 24 24"><path d="M12 2a4 4 0 0 1 4 4v3a4 4 0 0 1-8 0V6a4 4 0 0 1 4-4zm-2 14h4v6h-4v-6z"/></svg>
346
+ </div>
347
+ <div class="icon-btn">
348
+ <svg viewBox="0 0 24 24"><path d="M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 6 3.99 4 6.5 4c1.74 0 3.41.81 4.5 2.09C12.09 4.81 13.76 4 15.5 4 18.01 4 20 6 20 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z" fill="#6A6A6A"/></svg>
349
+ </div>
350
+ <div class="icon-btn" style="position:relative;">
351
+ <svg viewBox="0 0 24 24"><path d="M7 18c-1.1 0-2-.9-2-2V7H3V5h3l1-2h8l1 2h3v2h-2v9c0 1.1-.9 2-2 2H7zm0-11v9h10V7H7z"/></svg>
352
+ <div class="badge">1</div>
353
+ </div>
354
+ </div>
355
+
356
+ <!-- Sort / Filter -->
357
+ <div class="sort-filter">
358
+ <div class="sf-item">
359
+ <svg viewBox="0 0 24 24"><path d="M6 4l4 4H7v12H5V8H2l4-4zm12 16l-4-4h3V4h2v12h3l-4 4z"/></svg>
360
+ <div>Sort</div>
361
+ <div class="sf-divider"></div>
362
+ </div>
363
+ <div class="sf-item">
364
+ <svg viewBox="0 0 24 24"><path d="M6 5h12v2H6V5zm-2 6h10v2H4v-2zm4 6h8v2H8v-2z"/></svg>
365
+ <div>Filter</div>
366
+ <div class="badge" style="top:16px; right:200px; height:28px; line-height:28px; font-size:24px; min-width:28px; border-radius:14px;">1</div>
367
+ </div>
368
+ </div>
369
+
370
+ <!-- Banner -->
371
+ <div class="banner">[IMG: Promotional Banner]</div>
372
+
373
+ <!-- Products Grid -->
374
+ <div class="grid">
375
+ <!-- Card 1 -->
376
+ <div class="card">
377
+ <div class="ad-pill">Ad</div>
378
+ <div class="wish-btn">
379
+ <svg viewBox="0 0 24 24"><path d="M12 21s-7-4.35-9.33-8.1C1.47 10.5 2.5 7.5 5.5 7.5c2 0 3.38 1.15 4.5 2.6 1.12-1.45 2.5-2.6 4.5-2.6 3 0 4.03 3 2.83 5.4C19 16.65 12 21 12 21z"/></svg>
380
+ </div>
381
+ <div class="img-placeholder">[IMG: Model wearing printed shirt]</div>
382
+ <div class="brand">Allen Solly</div>
383
+ <div class="desc">Men Regular Fit Solid Casual Shirt</div>
384
+ <div class="price-row">
385
+ <span class="strike">1,999</span>
386
+ <span class="sale">₹1,299</span>
387
+ <span class="off">35% off</span>
388
+ </div>
389
+ <div class="pill-blue">
390
+ <svg viewBox="0 0 24 24"><path d="M3 12h13l3-4v10h-3l-3 4H3V12z"/></svg>
391
+ Free Delivery
392
+ </div>
393
+ <div class="rating-row">
394
+ <div class="stars">★ ★ ★ ★ ☆</div>
395
+ <div class="rating-count">(45)</div>
396
+ </div>
397
+ <div class="hot-deal">Hot Deal</div>
398
+ <div class="coupon">
399
+ <div class="amount">₹35</div>
400
+ <div class="divider"></div>
401
+ <div class="label">Coupon available</div>
402
+ </div>
403
+ </div>
404
+
405
+ <!-- Card 2 -->
406
+ <div class="card">
407
+ <div class="ad-pill">Ad</div>
408
+ <div class="wish-btn">
409
+ <svg viewBox="0 0 24 24"><path d="M12 21s-7-4.35-9.33-8.1C1.47 10.5 2.5 7.5 5.5 7.5c2 0 3.38 1.15 4.5 2.6 1.12-1.45 2.5-2.6 4.5-2.6 3 0 4.03 3 2.83 5.4C19 16.65 12 21 12 21z"/></svg>
410
+ </div>
411
+ <div class="img-placeholder">[IMG: Model wearing blue checked shirt]</div>
412
+ <div class="brand">Allen Solly</div>
413
+ <div class="desc">Men Regular Fit Solid Casual Shirt</div>
414
+ <div class="price-row">
415
+ <span class="strike">1,899</span>
416
+ <span class="sale">₹1,234</span>
417
+ <span class="off">35% off</span>
418
+ </div>
419
+ <div class="pill-blue">
420
+ <svg viewBox="0 0 24 24"><path d="M3 12h13l3-4v10h-3l-3 4H3V12z"/></svg>
421
+ Free Delivery
422
+ </div>
423
+ <div class="rating-row">
424
+ <div class="stars">★ ★ ★ ★ ☆</div>
425
+ <div class="rating-count">(28)</div>
426
+ </div>
427
+ <div class="hot-deal">Hot Deal</div>
428
+ <div class="coupon">
429
+ <div class="amount">₹35</div>
430
+ <div class="divider"></div>
431
+ <div class="label">Coupon available</div>
432
+ </div>
433
+ </div>
434
+
435
+ <!-- Row 2 cards - images only (as visible in screenshot) -->
436
+ <div class="card">
437
+ <div class="wish-btn">
438
+ <svg viewBox="0 0 24 24"><path d="M12 21s-7-4.35-9.33-8.1C1.47 10.5 2.5 7.5 5.5 7.5c2 0 3.38 1.15 4.5 2.6 1.12-1.45 2.5-2.6 4.5-2.6 3 0 4.03 3 2.83 5.4C19 16.65 12 21 12 21z"/></svg>
439
+ </div>
440
+ <div class="img-placeholder">[IMG: Model wearing pink shirt]</div>
441
+ </div>
442
+
443
+ <div class="card">
444
+ <div class="wish-btn">
445
+ <svg viewBox="0 0 24 24"><path d="M12 21s-7-4.35-9.33-8.1C1.47 10.5 2.5 7.5 5.5 7.5c2 0 3.38 1.15 4.5 2.6 1.12-1.45 2.5-2.6 4.5-2.6 3 0 4.03 3 2.83 5.4C19 16.65 12 21 12 21z"/></svg>
446
+ </div>
447
+ <div class="img-placeholder">[IMG: Model wearing dark green shirt]</div>
448
+ </div>
449
+ </div>
450
+
451
+ <!-- Bottom Navigation -->
452
+ <div class="bottom-nav">
453
+ <div class="nav-item">
454
+ <svg viewBox="0 0 24 24"><path d="M12 3l9 8h-3v9h-5v-6H11v6H6v-9H3l9-8z"/></svg>
455
+ <div class="label">Home</div>
456
+ </div>
457
+ <div class="nav-item active">
458
+ <svg viewBox="0 0 24 24"><path d="M10 2a8 8 0 1 0 4.9 14.3l5 5 1.4-1.4-5-5A8 8 0 0 0 10 2zm0 2a6 6 0 1 1 0 12 6 6 0 0 1 0-12z"/></svg>
459
+ <div class="label">Search</div>
460
+ </div>
461
+ <div class="nav-item">
462
+ <div class="nav-dot"></div>
463
+ <svg viewBox="0 0 24 24"><path d="M3 4h8v6H3V4zm0 10h8v6H3v-6zm10-10h8v8h-8V4zm0 10h8v6h-8v-6z"/></svg>
464
+ <div class="label">Categories</div>
465
+ </div>
466
+ <div class="nav-item">
467
+ <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.42 0-8 2.24-8 5v3h16v-3c0-2.76-3.58-5-8-5z"/></svg>
468
+ <div class="label">Account</div>
469
+ </div>
470
+ <div class="nav-item" style="position:relative;">
471
+ <svg viewBox="0 0 24 24"><path d="M7 18c-1.1 0-2-.9-2-2V7H3V5h3l1-2h8l1 2h3v2h-2v9c0 1.1-.9 2-2 2H7zm0-11v9h10V7H7z"/></svg>
472
+ <div class="label">Cart</div>
473
+ <div class="badge" style="top:22px; right:160px; height:26px; line-height:26px; font-size:22px; min-width:26px; border-radius:13px;">1</div>
474
+ </div>
475
+ </div>
476
+
477
+ <div class="home-indicator"></div>
478
+ </div>
479
+ </body>
480
+ </html>
code/10175/10175_1.html ADDED
@@ -0,0 +1,311 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1440, initial-scale=1.0">
6
+ <title>Audio Recorder List UI</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
9
+ #render-target {
10
+ width: 1440px;
11
+ height: 3120px;
12
+ position: relative;
13
+ overflow: hidden;
14
+ background: #EEF4F4;
15
+ color: #111;
16
+ }
17
+
18
+ /* Top status bar */
19
+ .status-bar {
20
+ position: absolute;
21
+ top: 0; left: 0;
22
+ width: 100%;
23
+ height: 170px;
24
+ background: #0E0E0E;
25
+ color: #fff;
26
+ padding: 0 40px;
27
+ box-sizing: border-box;
28
+ display: flex;
29
+ align-items: center;
30
+ justify-content: space-between;
31
+ font-weight: 600;
32
+ }
33
+ .status-left { display: flex; align-items: center; gap: 26px; }
34
+ .status-time { font-size: 48px; letter-spacing: 1px; }
35
+ .status-icons { display: flex; align-items: center; gap: 24px; }
36
+ .status-right { display: flex; align-items: center; gap: 28px; }
37
+
38
+ /* App bar with search + menu */
39
+ .app-bar {
40
+ position: absolute;
41
+ top: 170px; left: 0;
42
+ width: 100%;
43
+ height: 170px;
44
+ background: #0E0E0E;
45
+ display: flex;
46
+ align-items: center;
47
+ justify-content: flex-end;
48
+ padding: 0 40px;
49
+ box-sizing: border-box;
50
+ gap: 40px;
51
+ }
52
+
53
+ /* Title */
54
+ .title {
55
+ position: absolute;
56
+ top: 360px; left: 40px;
57
+ font-size: 104px;
58
+ font-weight: 700;
59
+ }
60
+
61
+ /* List area */
62
+ .list {
63
+ position: absolute;
64
+ top: 520px; left: 0;
65
+ width: 100%;
66
+ }
67
+
68
+ .list-item {
69
+ display: flex;
70
+ align-items: center;
71
+ gap: 36px;
72
+ padding: 40px 40px;
73
+ border-bottom: 1px solid #D8E4E4;
74
+ background: #F7FBFB;
75
+ }
76
+
77
+ .play-box {
78
+ width: 160px; height: 160px;
79
+ border-radius: 16px;
80
+ background: #EBF1F2;
81
+ display: flex; align-items: center; justify-content: center;
82
+ border: 1px solid #D0D7D8;
83
+ flex: 0 0 160px;
84
+ }
85
+
86
+ .item-content { flex: 1; min-width: 0; }
87
+ .item-title {
88
+ font-size: 60px; font-weight: 800; color: #111;
89
+ white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
90
+ margin-bottom: 18px;
91
+ }
92
+ .item-meta {
93
+ display: flex; align-items: center; justify-content: space-between;
94
+ font-size: 40px; color: #5F6B6B;
95
+ }
96
+ .meta-left { display: flex; gap: 24px; }
97
+ .checkbox {
98
+ width: 86px; height: 86px;
99
+ border: 4px solid #1D1D1D; border-radius: 10px;
100
+ flex: 0 0 86px;
101
+ }
102
+
103
+ /* Ad banner */
104
+ .ad-banner {
105
+ position: absolute;
106
+ left: 0; bottom: 430px;
107
+ width: 100%; height: 210px;
108
+ display: flex; align-items: center; justify-content: center;
109
+ background: #E0E0E0;
110
+ border-top: 1px solid #BDBDBD;
111
+ border-bottom: 1px solid #BDBDBD;
112
+ color: #757575;
113
+ font-size: 46px; font-weight: 600;
114
+ }
115
+
116
+ /* Bottom navigation */
117
+ .bottom-nav {
118
+ position: absolute;
119
+ left: 0; bottom: 0;
120
+ width: 100%;
121
+ height: 380px;
122
+ background: #0E0E0E;
123
+ color: #fff;
124
+ display: flex;
125
+ align-items: center;
126
+ justify-content: space-around;
127
+ box-sizing: border-box;
128
+ }
129
+ .nav-item { display: flex; flex-direction: column; align-items: center; gap: 24px; }
130
+ .nav-label { font-size: 36px; color: #D7D7D7; }
131
+
132
+ /* Progress strip above nav */
133
+ .progress-strip {
134
+ position: absolute; left: 0; bottom: 380px;
135
+ height: 12px; width: 420px; background: #E0342D;
136
+ }
137
+
138
+ /* Gesture home pill */
139
+ .home-pill {
140
+ position: absolute; left: 50%; bottom: 430px;
141
+ transform: translateX(-50%);
142
+ width: 280px; height: 20px; background: #E5E5E5; border-radius: 30px;
143
+ }
144
+
145
+ /* Simple helper for subtle dots/circles */
146
+ .dot {
147
+ width: 22px; height: 22px; background: #DADADA; border-radius: 50%;
148
+ }
149
+ </style>
150
+ </head>
151
+ <body>
152
+ <div id="render-target">
153
+
154
+ <!-- Status bar -->
155
+ <div class="status-bar">
156
+ <div class="status-left">
157
+ <div class="status-time">3:49</div>
158
+ <div style="width:48px; height:48px; border-radius:50%; border:3px solid #fff; display:flex; align-items:center; justify-content:center; font-size:28px;">ib</div>
159
+ <div class="status-icons">
160
+ <!-- Small search icon (for status mock) -->
161
+ <svg width="44" height="44" viewBox="0 0 24 24" fill="none">
162
+ <circle cx="10" cy="10" r="6" stroke="#fff" stroke-width="2"/>
163
+ <line x1="14.5" y1="14.5" x2="20" y2="20" stroke="#fff" stroke-width="2" stroke-linecap="round"/>
164
+ </svg>
165
+ <div class="dot"></div>
166
+ <div class="dot"></div>
167
+ </div>
168
+ </div>
169
+ <div class="status-right">
170
+ <!-- Signal -->
171
+ <svg width="44" height="44" viewBox="0 0 24 24" fill="none">
172
+ <rect x="3" y="14" width="3" height="7" fill="#fff"/>
173
+ <rect x="8" y="11" width="3" height="10" fill="#fff"/>
174
+ <rect x="13" y="8" width="3" height="13" fill="#fff"/>
175
+ <rect x="18" y="5" width="3" height="16" fill="#fff"/>
176
+ </svg>
177
+ <!-- WiFi -->
178
+ <svg width="44" height="44" viewBox="0 0 24 24" fill="none">
179
+ <path d="M2 8c5-5 15-5 20 0" stroke="#fff" stroke-width="2" fill="none"/>
180
+ <path d="M5 12c3-3 11-3 14 0" stroke="#fff" stroke-width="2" fill="none"/>
181
+ <path d="M8 16c2-2 6-2 8 0" stroke="#fff" stroke-width="2" fill="none"/>
182
+ <circle cx="12" cy="20" r="2" fill="#fff"/>
183
+ </svg>
184
+ <!-- Battery -->
185
+ <svg width="64" height="44" viewBox="0 0 32 18" fill="none">
186
+ <rect x="1" y="3" width="26" height="12" rx="2" stroke="#fff" stroke-width="2"/>
187
+ <rect x="28" y="6" width="3" height="6" rx="1" fill="#fff"/>
188
+ <rect x="3" y="5" width="20" height="8" fill="#fff"/>
189
+ </svg>
190
+ </div>
191
+ </div>
192
+
193
+ <!-- App bar -->
194
+ <div class="app-bar">
195
+ <!-- Search icon -->
196
+ <svg width="70" height="70" viewBox="0 0 24 24" fill="none">
197
+ <circle cx="10" cy="10" r="6.5" stroke="#fff" stroke-width="2.4"/>
198
+ <line x1="14.8" y1="14.8" x2="21" y2="21" stroke="#fff" stroke-width="2.4" stroke-linecap="round"/>
199
+ </svg>
200
+ <!-- Hamburger icon -->
201
+ <svg width="80" height="80" viewBox="0 0 24 24" fill="none">
202
+ <line x1="3" y1="6" x2="21" y2="6" stroke="#fff" stroke-width="2.8" stroke-linecap="round"/>
203
+ <line x1="3" y1="12" x2="21" y2="12" stroke="#fff" stroke-width="2.8" stroke-linecap="round"/>
204
+ <line x1="3" y1="18" x2="21" y2="18" stroke="#fff" stroke-width="2.8" stroke-linecap="round"/>
205
+ </svg>
206
+ </div>
207
+
208
+ <!-- Title -->
209
+ <div class="title">(2)</div>
210
+
211
+ <!-- List -->
212
+ <div class="list">
213
+ <!-- Item 1 -->
214
+ <div class="list-item">
215
+ <div class="play-box">
216
+ <svg width="86" height="86" viewBox="0 0 24 24">
217
+ <polygon points="6,4 20,12 6,20" fill="#111"/>
218
+ </svg>
219
+ </div>
220
+ <div class="item-content">
221
+ <div class="item-title">2023_12_08_12_46_58_1_1....</div>
222
+ <div class="item-meta">
223
+ <div class="meta-left">
224
+ <span>2023-12-08</span>
225
+ <span>13:31</span>
226
+ <span>234.3 KB</span>
227
+ </div>
228
+ <div class="meta-right">00:14s</div>
229
+ </div>
230
+ </div>
231
+ <div class="checkbox"></div>
232
+ </div>
233
+
234
+ <!-- Item 2 -->
235
+ <div class="list-item">
236
+ <div class="play-box">
237
+ <svg width="86" height="86" viewBox="0 0 24 24">
238
+ <polygon points="6,4 20,12 6,20" fill="#111"/>
239
+ </svg>
240
+ </div>
241
+ <div class="item-content">
242
+ <div class="item-title">2023_12_08_12_46_58_1.mp3</div>
243
+ <div class="item-meta">
244
+ <div class="meta-left">
245
+ <span>2023-12-08</span>
246
+ <span>12:47</span>
247
+ <span>567.8 KB</span>
248
+ </div>
249
+ <div class="meta-right">00:36s</div>
250
+ </div>
251
+ </div>
252
+ <div class="checkbox"></div>
253
+ </div>
254
+ </div>
255
+
256
+ <!-- Large empty scrolling area is represented by background -->
257
+
258
+ <!-- Ad banner placeholder -->
259
+ <div class="ad-banner">[IMG: Booking.com Ad Banner]</div>
260
+
261
+ <!-- Progress strip above navigation -->
262
+ <div class="progress-strip"></div>
263
+
264
+ <!-- Gesture pill -->
265
+ <div class="home-pill"></div>
266
+
267
+ <!-- Bottom navigation bar -->
268
+ <div class="bottom-nav">
269
+ <div class="nav-item">
270
+ <!-- Headphones icon (red) -->
271
+ <svg width="150" height="150" viewBox="0 0 48 48">
272
+ <path d="M8 24A16 16 0 0 1 40 24" stroke="#E53935" stroke-width="4" fill="none"/>
273
+ <rect x="6" y="24" width="8" height="14" rx="2" fill="#E53935"/>
274
+ <rect x="34" y="24" width="8" height="14" rx="2" fill="#E53935"/>
275
+ </svg>
276
+ <div class="nav-label"></div>
277
+ </div>
278
+
279
+ <div class="nav-item">
280
+ <!-- Microphone icon (outlined white) -->
281
+ <svg width="150" height="150" viewBox="0 0 48 48">
282
+ <rect x="18" y="8" width="12" height="20" rx="6" stroke="#FFFFFF" stroke-width="3" fill="none"/>
283
+ <path d="M12 24c0 8 6 12 12 12s12-4 12-12" stroke="#FFFFFF" stroke-width="3" fill="none"/>
284
+ <line x1="24" y1="36" x2="24" y2="44" stroke="#FFFFFF" stroke-width="3"/>
285
+ <line x1="16" y1="44" x2="32" y2="44" stroke="#FFFFFF" stroke-width="3" stroke-linecap="round"/>
286
+ </svg>
287
+ <div class="nav-label"></div>
288
+ </div>
289
+
290
+ <div class="nav-item">
291
+ <!-- Gear icon -->
292
+ <svg width="150" height="150" viewBox="0 0 48 48" fill="none">
293
+ <circle cx="24" cy="24" r="6" stroke="#FFFFFF" stroke-width="3"/>
294
+ <g stroke="#FFFFFF" stroke-width="3" stroke-linecap="round">
295
+ <line x1="24" y1="6" x2="24" y2="12"/>
296
+ <line x1="24" y1="36" x2="24" y2="42"/>
297
+ <line x1="6" y1="24" x2="12" y2="24"/>
298
+ <line x1="36" y1="24" x2="42" y2="24"/>
299
+ <line x1="10" y1="10" x2="14" y2="14"/>
300
+ <line x1="34" y1="34" x2="38" y2="38"/>
301
+ <line x1="34" y1="10" x2="38" y2="14"/>
302
+ <line x1="10" y1="34" x2="14" y2="38"/>
303
+ </g>
304
+ </svg>
305
+ <div class="nav-label"></div>
306
+ </div>
307
+ </div>
308
+
309
+ </div>
310
+ </body>
311
+ </html>
code/10175/10175_2.html ADDED
@@ -0,0 +1,358 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>Audio Player Details UI</title>
6
+ <style>
7
+ body { margin: 0; padding: 0; background: transparent; font-family: "Roboto", Arial, sans-serif; }
8
+ #render-target {
9
+ width: 1440px; height: 3120px;
10
+ position: relative; overflow: hidden;
11
+ background: #1d1f24; color: #eee;
12
+ }
13
+
14
+ /* Status bar */
15
+ .status-bar {
16
+ position: absolute; top: 0; left: 0; right: 0;
17
+ height: 84px; padding: 0 36px;
18
+ display: flex; align-items: center; justify-content: space-between;
19
+ color: #fff; font-size: 44px;
20
+ }
21
+ .status-right { display: flex; align-items: center; gap: 28px; }
22
+ .status-icon svg { width: 42px; height: 42px; }
23
+
24
+ /* Toolbar */
25
+ .toolbar {
26
+ position: absolute; top: 84px; left: 0; right: 0;
27
+ height: 140px; background: #121417;
28
+ display: flex; align-items: center; justify-content: space-between;
29
+ padding: 0 40px;
30
+ border-bottom: 1px solid #2a2d33;
31
+ }
32
+ .toolbar-left { display: flex; align-items: center; gap: 24px; }
33
+ .toolbar-right { display: flex; align-items: center; gap: 48px; }
34
+ .toolbar .icon { width: 64px; height: 64px; }
35
+ .page-dots {
36
+ position: absolute; top: 228px; left: 0; right: 0;
37
+ display: flex; justify-content: center; gap: 18px;
38
+ }
39
+ .dot { width: 24px; height: 24px; border-radius: 50%; background: #486fb7; }
40
+ .dot.inactive { background: #6b6f78; }
41
+
42
+ /* Info card */
43
+ .info-card {
44
+ position: absolute; top: 280px; left: 40px;
45
+ width: 1360px; background: #23262b;
46
+ border: 2px solid #3a3e45; border-radius: 18px;
47
+ box-sizing: border-box; padding: 0;
48
+ }
49
+ .info-grid {
50
+ display: grid; grid-template-columns: 420px 1fr;
51
+ border-collapse: collapse;
52
+ }
53
+ .row {
54
+ min-height: 190px; display: grid; grid-template-columns: inherit;
55
+ border-top: 1px solid #3a3e45;
56
+ }
57
+ .row:first-child { border-top: none; }
58
+ .cell {
59
+ padding: 40px; display: flex; align-items: center;
60
+ border-right: 1px solid #3a3e45;
61
+ font-size: 50px; color: #cfd3db;
62
+ }
63
+ .cell:last-child { border-right: none; color: #fff; }
64
+ .value.bold { font-weight: 800; color: #fff; }
65
+
66
+ /* Player area */
67
+ .player-area {
68
+ position: absolute; left: 0; right: 0; top: 1500px;
69
+ height: 980px; background: #1a1c21;
70
+ padding: 80px 80px 40px 80px; box-sizing: border-box;
71
+ }
72
+ .player-tools {
73
+ display: flex; align-items: center; justify-content: space-between;
74
+ margin-bottom: 80px;
75
+ }
76
+ .tool-group { display: flex; align-items: center; gap: 120px; }
77
+ .tool { display: flex; flex-direction: column; align-items: center; gap: 10px; color: #9ec5ff; }
78
+ .tool .icon { width: 88px; height: 88px; }
79
+ .tool.label-grey { color: #b8bcc3; }
80
+ .tool .small { font-size: 40px; }
81
+ .stop-btn { width: 100px; height: 100px; }
82
+
83
+ .timeline {
84
+ display: flex; align-items: center; justify-content: space-between;
85
+ margin: 40px 0 50px 0;
86
+ color: #cfd3db; font-size: 46px;
87
+ }
88
+ .track {
89
+ position: relative; height: 18px; background: #9da2a9;
90
+ border-radius: 12px; margin: 0 40px; flex: 1;
91
+ }
92
+ .track .progress {
93
+ position: absolute; left: 0; top: 0; bottom: 0;
94
+ width: 160px; background: #6ea2ff; border-radius: 12px;
95
+ }
96
+ .track .knob {
97
+ position: absolute; left: 160px; top: 50%;
98
+ width: 38px; height: 38px; background: #6ea2ff;
99
+ border-radius: 50%; transform: translate(-50%, -50%);
100
+ box-shadow: 0 0 0 6px rgba(110,162,255,0.25);
101
+ }
102
+
103
+ .transport {
104
+ display: flex; align-items: center; justify-content: center; gap: 120px;
105
+ margin-top: 40px;
106
+ }
107
+ .transport .icon { width: 128px; height: 128px; }
108
+ .big-pause {
109
+ width: 240px; height: 240px; background: #ffffff;
110
+ border-radius: 50%; display: flex; align-items: center; justify-content: center;
111
+ box-shadow: 0 10px 30px rgba(0,0,0,0.4);
112
+ }
113
+ .big-pause .bars {
114
+ display: flex; gap: 26px;
115
+ }
116
+ .big-pause .bar {
117
+ width: 26px; height: 128px; background: #1a1c21; border-radius: 6px;
118
+ }
119
+
120
+ /* Ad banner */
121
+ .ad-banner {
122
+ position: absolute; left: 0; right: 0; top: 2450px;
123
+ height: 200px; background: #23262b; border-top: 1px solid #3a3e45; border-bottom: 1px solid #3a3e45;
124
+ display: flex; align-items: center; gap: 30px; padding: 0 40px; box-sizing: border-box;
125
+ }
126
+ .ad-img {
127
+ width: 160px; height: 160px; background: #E0E0E0; border: 1px solid #BDBDBD;
128
+ display: flex; align-items: center; justify-content: center; color: #757575; font-size: 40px;
129
+ border-radius: 24px;
130
+ }
131
+ .ad-text { flex: 1; color: #e7ebf1; }
132
+ .ad-title { font-size: 52px; font-weight: 700; margin-bottom: 10px; }
133
+ .ad-sub { font-size: 40px; color: #cfd3db; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
134
+ .ad-open { color: #7fb1ff; font-size: 44px; font-weight: 700; }
135
+
136
+ /* Bottom filters */
137
+ .filters {
138
+ position: absolute; left: 0; right: 0; bottom: 140px;
139
+ height: 220px; display: flex; flex-direction: column; align-items: center; justify-content: center;
140
+ color: #fff;
141
+ }
142
+ .filter-row { display: flex; gap: 130px; font-size: 60px; margin-bottom: 50px; color: #d8dbe0; }
143
+ .bottom-slider {
144
+ width: 680px; height: 16px; background: #ffffff; border-radius: 8px;
145
+ }
146
+ </style>
147
+ </head>
148
+ <body>
149
+ <div id="render-target">
150
+
151
+ <!-- Status bar -->
152
+ <div class="status-bar">
153
+ <div>3:50</div>
154
+ <div class="status-right">
155
+ <div class="status-icon">
156
+ <!-- simple "ib" badge -->
157
+ <svg viewBox="0 0 24 24">
158
+ <circle cx="12" cy="12" r="10" fill="none" stroke="#fff" stroke-width="2"/>
159
+ <text x="6" y="16" fill="#fff" font-size="10" font-family="Arial">ib</text>
160
+ </svg>
161
+ </div>
162
+ <div class="status-icon">
163
+ <!-- search -->
164
+ <svg viewBox="0 0 24 24">
165
+ <circle cx="10" cy="10" r="7" fill="none" stroke="#fff" stroke-width="2"/>
166
+ <path d="M15 15l6 6" stroke="#fff" stroke-width="2" />
167
+ </svg>
168
+ </div>
169
+ <div class="status-icon">
170
+ <!-- tiny mic -->
171
+ <svg viewBox="0 0 24 24">
172
+ <rect x="9" y="4" width="6" height="10" rx="3" fill="none" stroke="#fff" stroke-width="2"/>
173
+ <path d="M6 10a6 6 0 0 0 12 0M12 20v-4" stroke="#fff" stroke-width="2" fill="none"/>
174
+ </svg>
175
+ </div>
176
+ <div class="status-icon">
177
+ <!-- dot -->
178
+ <svg viewBox="0 0 24 24"><circle cx="12" cy="12" r="4" fill="#fff"/></svg>
179
+ </div>
180
+ <div class="status-icon">
181
+ <!-- wifi -->
182
+ <svg viewBox="0 0 24 24">
183
+ <path d="M2 8c5-4 15-4 20 0M5 12c3-3 11-3 14 0M8 16c2-2 6-2 8 0" stroke="#fff" stroke-width="2" fill="none"/>
184
+ <circle cx="12" cy="19" r="2" fill="#fff"/>
185
+ </svg>
186
+ </div>
187
+ <div class="status-icon">
188
+ <!-- battery -->
189
+ <svg viewBox="0 0 24 24">
190
+ <rect x="2" y="6" width="18" height="12" rx="2" fill="none" stroke="#fff" stroke-width="2"/>
191
+ <rect x="4" y="8" width="14" height="8" fill="#fff"/>
192
+ <rect x="20" y="10" width="2" height="4" fill="#fff"/>
193
+ </svg>
194
+ </div>
195
+ </div>
196
+ </div>
197
+
198
+ <!-- Toolbar with back and actions -->
199
+ <div class="toolbar">
200
+ <div class="toolbar-left">
201
+ <svg class="icon" viewBox="0 0 24 24">
202
+ <path d="M15 5l-7 7 7 7" stroke="#fff" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
203
+ </svg>
204
+ </div>
205
+ <div class="toolbar-right">
206
+ <!-- Scissors -->
207
+ <svg class="icon" viewBox="0 0 24 24">
208
+ <circle cx="6" cy="6" r="3" fill="none" stroke="#fff" stroke-width="2"/>
209
+ <circle cx="6" cy="18" r="3" fill="none" stroke="#fff" stroke-width="2"/>
210
+ <path d="M20 5L8 12l12 7" stroke="#fff" stroke-width="2" fill="none" stroke-linecap="round"/>
211
+ </svg>
212
+ <!-- Trash -->
213
+ <svg class="icon" viewBox="0 0 24 24">
214
+ <path d="M6 7h12l-1 13H7L6 7z" fill="none" stroke="#fff" stroke-width="2"/>
215
+ <path d="M9 7V4h6v3" stroke="#fff" stroke-width="2" fill="none"/>
216
+ </svg>
217
+ <!-- Share -->
218
+ <svg class="icon" viewBox="0 0 24 24">
219
+ <circle cx="5" cy="12" r="2" fill="#fff"/>
220
+ <circle cx="19" cy="5" r="2" fill="#fff"/>
221
+ <circle cx="19" cy="19" r="2" fill="#fff"/>
222
+ <path d="M7 12l10-7M7 12l10 7" stroke="#fff" stroke-width="2" fill="none"/>
223
+ </svg>
224
+ </div>
225
+ </div>
226
+
227
+ <!-- page dots -->
228
+ <div class="page-dots">
229
+ <div class="dot"></div>
230
+ <div class="dot inactive"></div>
231
+ <div class="dot inactive"></div>
232
+ </div>
233
+
234
+ <!-- Info Card -->
235
+ <div class="info-card">
236
+ <div class="info-grid">
237
+ <div class="row">
238
+ <div class="cell">File name</div>
239
+ <div class="cell"><span class="value bold">2023_12_08_12_46_58_1_1.mp3</span></div>
240
+ </div>
241
+ <div class="row">
242
+ <div class="cell">File location</div>
243
+ <div class="cell">/storage/emulated/0/Music/Recorders/2023_12_08_12_46_58_1_1.mp3</div>
244
+ </div>
245
+ <div class="row">
246
+ <div class="cell">File size:</div>
247
+ <div class="cell">234.3 KB</div>
248
+ </div>
249
+ <div class="row">
250
+ <div class="cell">Creation time:</div>
251
+ <div class="cell">2023-12-08</div>
252
+ </div>
253
+ <div class="row">
254
+ <div class="cell">Duration:</div>
255
+ <div class="cell">00:14</div>
256
+ </div>
257
+ </div>
258
+ </div>
259
+
260
+ <!-- Player Area -->
261
+ <div class="player-area">
262
+ <div class="player-tools">
263
+ <div class="tool-group">
264
+ <div class="tool">
265
+ <svg class="icon" viewBox="0 0 24 24">
266
+ <path d="M4 14a8 8 0 0 1 16 0" stroke="#9ec5ff" stroke-width="2" fill="none"/>
267
+ <path d="M12 14l4-4" stroke="#9ec5ff" stroke-width="2"/>
268
+ </svg>
269
+ <div class="small">1.0x</div>
270
+ </div>
271
+ <div class="tool label-grey">
272
+ <svg class="icon" viewBox="0 0 24 24">
273
+ <rect x="3" y="5" width="18" height="14" rx="2" fill="none" stroke="#cfd3db" stroke-width="2"/>
274
+ <path d="M3 5l18 14" stroke="#cfd3db" stroke-width="2"/>
275
+ </svg>
276
+ </div>
277
+ <div class="tool label-grey">
278
+ <svg class="icon" viewBox="0 0 24 24">
279
+ <path d="M4 12a8 8 0 1 0 8-8" stroke="#cfd3db" stroke-width="2" fill="none"/>
280
+ <path d="M4 4v6h6" stroke="#cfd3db" stroke-width="2" fill="none"/>
281
+ <path d="M4 4l16 16" stroke="#cfd3db" stroke-width="2"/>
282
+ </svg>
283
+ </div>
284
+ </div>
285
+ <div class="tool">
286
+ <svg class="stop-btn" viewBox="0 0 24 24">
287
+ <circle cx="12" cy="12" r="10" stroke="#fff" stroke-width="2" fill="none"/>
288
+ <rect x="8" y="8" width="8" height="8" fill="#fff"/>
289
+ </svg>
290
+ </div>
291
+ </div>
292
+
293
+ <div class="timeline">
294
+ <div>00:01</div>
295
+ <div class="track">
296
+ <div class="progress"></div>
297
+ <div class="knob"></div>
298
+ </div>
299
+ <div>00:14</div>
300
+ </div>
301
+
302
+ <div class="transport">
303
+ <!-- Step back -->
304
+ <svg class="icon" viewBox="0 0 24 24">
305
+ <path d="M18 5l-10 7 10 7" fill="#cfd3db"/>
306
+ </svg>
307
+ <!-- Previous -->
308
+ <svg class="icon" viewBox="0 0 24 24">
309
+ <path d="M16 5l-8 7 8 7" fill="#cfd3db"/>
310
+ <rect x="3" y="5" width="2" height="14" fill="#cfd3db"/>
311
+ </svg>
312
+
313
+ <!-- Big pause button -->
314
+ <div class="big-pause">
315
+ <div class="bars">
316
+ <div class="bar"></div>
317
+ <div class="bar"></div>
318
+ </div>
319
+ </div>
320
+
321
+ <!-- Next -->
322
+ <svg class="icon" viewBox="0 0 24 24">
323
+ <rect x="19" y="5" width="2" height="14" fill="#cfd3db"/>
324
+ <path d="M8 5l8 7-8 7" fill="#cfd3db"/>
325
+ </svg>
326
+ <!-- Forward -->
327
+ <svg class="icon" viewBox="0 0 24 24">
328
+ <path d="M6 5l10 7-10 7" fill="#cfd3db"/>
329
+ </svg>
330
+ </div>
331
+ </div>
332
+
333
+ <!-- Advertisement banner -->
334
+ <div class="ad-banner">
335
+ <div class="ad-img">[IMG: App Icon]</div>
336
+ <div class="ad-text">
337
+ <div class="ad-title">LoveLocal: Shop Grocery Online AD</div>
338
+ <div class="ad-sub">LoveLocal is your go-to online shopping app to...</div>
339
+ </div>
340
+ <div class="ad-open">OPEN</div>
341
+ </div>
342
+
343
+ <!-- Bottom filters / labels -->
344
+ <div class="filters">
345
+ <div class="filter-row">
346
+ <div>60&lt;</div>
347
+ <div>30&lt;</div>
348
+ <div>5&lt;</div>
349
+ <div>&gt;5</div>
350
+ <div>&gt;30</div>
351
+ <div>&gt;60</div>
352
+ </div>
353
+ <div class="bottom-slider"></div>
354
+ </div>
355
+
356
+ </div>
357
+ </body>
358
+ </html>
code/10175/10175_3.html ADDED
@@ -0,0 +1,480 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>UI Render</title>
6
+ <style>
7
+ body { margin: 0; padding: 0; background: transparent; }
8
+ #render-target {
9
+ width: 1440px;
10
+ height: 3120px;
11
+ position: relative;
12
+ overflow: hidden;
13
+ background: #EAF1F4;
14
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
15
+ color: #111;
16
+ }
17
+
18
+ /* Top status bar */
19
+ .status-bar {
20
+ position: absolute;
21
+ top: 0;
22
+ left: 0;
23
+ width: 100%;
24
+ height: 120px;
25
+ background: #0E0E0E;
26
+ color: #ffffff;
27
+ display: flex;
28
+ align-items: center;
29
+ padding: 0 40px;
30
+ box-sizing: border-box;
31
+ letter-spacing: 0.5px;
32
+ }
33
+ .status-left {
34
+ display: flex;
35
+ align-items: center;
36
+ gap: 28px;
37
+ font-size: 46px;
38
+ }
39
+ .status-icons-small {
40
+ display: flex;
41
+ align-items: center;
42
+ gap: 22px;
43
+ }
44
+ .dot, .circle {
45
+ width: 22px;
46
+ height: 22px;
47
+ border-radius: 50%;
48
+ background: #CFCFCF;
49
+ opacity: 0.9;
50
+ }
51
+ .status-right {
52
+ margin-left: auto;
53
+ display: flex;
54
+ align-items: center;
55
+ gap: 30px;
56
+ }
57
+ .wifi svg, .battery svg {
58
+ display: block;
59
+ }
60
+
61
+ /* App toolbar */
62
+ .toolbar {
63
+ position: absolute;
64
+ top: 120px;
65
+ left: 0;
66
+ width: 100%;
67
+ height: 180px;
68
+ background: #121212;
69
+ color: #ffffff;
70
+ display: flex;
71
+ align-items: center;
72
+ padding: 0 40px;
73
+ box-sizing: border-box;
74
+ border-bottom: 1px solid #1e1e1e;
75
+ }
76
+ .toolbar-title {
77
+ font-size: 72px;
78
+ font-weight: 600;
79
+ }
80
+ .toolbar-icons {
81
+ margin-left: auto;
82
+ display: flex;
83
+ align-items: center;
84
+ gap: 56px;
85
+ }
86
+ .tool-icon svg { width: 70px; height: 70px; fill: none; stroke: #fff; stroke-width: 6; }
87
+
88
+ /* List area */
89
+ .list {
90
+ position: absolute;
91
+ top: 300px; /* status + toolbar */
92
+ left: 0;
93
+ width: 100%;
94
+ }
95
+ .file-item {
96
+ display: flex;
97
+ align-items: center;
98
+ padding: 40px;
99
+ box-sizing: border-box;
100
+ height: 360px;
101
+ border-bottom: 1px solid #d7dee3;
102
+ background: #F5FAFC;
103
+ }
104
+ .file-item.selected {
105
+ background: #9EC3F1;
106
+ }
107
+ .file-thumb {
108
+ width: 150px;
109
+ height: 150px;
110
+ background: #E0E0E0;
111
+ border: 1px solid #BDBDBD;
112
+ border-radius: 14px;
113
+ display: flex;
114
+ justify-content: center;
115
+ align-items: center;
116
+ color: #757575;
117
+ font-size: 34px;
118
+ margin-right: 42px;
119
+ }
120
+ .file-content { flex: 1; }
121
+ .file-title {
122
+ font-size: 58px;
123
+ font-weight: 700;
124
+ color: #0b0b0b;
125
+ white-space: nowrap;
126
+ overflow: hidden;
127
+ text-overflow: ellipsis;
128
+ margin-bottom: 14px;
129
+ }
130
+ .file-meta {
131
+ font-size: 40px;
132
+ color: #5e6b77;
133
+ display: flex;
134
+ justify-content: space-between;
135
+ align-items: center;
136
+ }
137
+ .duration {
138
+ color: #333;
139
+ font-weight: 600;
140
+ margin-left: 20px;
141
+ }
142
+ .checkbox {
143
+ width: 92px;
144
+ height: 92px;
145
+ border: 6px solid #111;
146
+ border-radius: 10px;
147
+ margin-left: 32px;
148
+ display: flex;
149
+ justify-content: center;
150
+ align-items: center;
151
+ box-sizing: border-box;
152
+ background: transparent;
153
+ }
154
+ .file-item.selected .checkbox {
155
+ background: #0D47A1;
156
+ border-color: #0D47A1;
157
+ }
158
+ .checkbox svg { width: 68px; height: 68px; }
159
+
160
+ /* Large spacer area to match screenshot empty space */
161
+ .content-spacer {
162
+ height: 1300px;
163
+ background: #EAF1F4;
164
+ }
165
+
166
+ /* Bottom actions bar */
167
+ .bottom-actions {
168
+ position: absolute;
169
+ bottom: 540px;
170
+ left: 0;
171
+ width: 100%;
172
+ height: 200px;
173
+ background: #8B8E92;
174
+ color: #fff;
175
+ display: flex;
176
+ align-items: center;
177
+ padding: 0 40px;
178
+ box-sizing: border-box;
179
+ }
180
+ .action-left {
181
+ display: flex;
182
+ align-items: center;
183
+ gap: 60px;
184
+ }
185
+ .badge {
186
+ width: 120px;
187
+ height: 120px;
188
+ background: #DFE2E6;
189
+ color: #111;
190
+ border-radius: 12px;
191
+ display: flex;
192
+ align-items: center;
193
+ justify-content: center;
194
+ font-size: 56px;
195
+ font-weight: 700;
196
+ }
197
+ .action-icon svg { width: 120px; height: 120px; stroke: #fff; stroke-width: 10; fill: none; }
198
+ .action-right {
199
+ margin-left: auto;
200
+ font-size: 58px;
201
+ }
202
+
203
+ /* Ad banner */
204
+ .ad-banner {
205
+ position: absolute;
206
+ bottom: 360px;
207
+ left: 0;
208
+ width: 100%;
209
+ height: 180px;
210
+ background: #ffffff;
211
+ border-top: 1px solid #d9d9d9;
212
+ border-bottom: 1px solid #d9d9d9;
213
+ display: flex;
214
+ align-items: center;
215
+ padding: 0 40px;
216
+ box-sizing: border-box;
217
+ color: #000;
218
+ }
219
+ .ad-logo {
220
+ width: 150px;
221
+ height: 150px;
222
+ background: #1E56CF;
223
+ color: #fff;
224
+ border-radius: 12px;
225
+ display: flex;
226
+ align-items: center;
227
+ justify-content: center;
228
+ font-size: 46px;
229
+ font-weight: 700;
230
+ margin-right: 36px;
231
+ }
232
+ .ad-text {
233
+ font-size: 46px;
234
+ display: flex;
235
+ align-items: center;
236
+ gap: 16px;
237
+ }
238
+ .ad-pill {
239
+ font-size: 36px;
240
+ color: #666;
241
+ border: 1px solid #999;
242
+ padding: 6px 12px;
243
+ border-radius: 8px;
244
+ }
245
+ .ad-open {
246
+ margin-left: auto;
247
+ font-size: 50px;
248
+ color: #1E56CF;
249
+ font-weight: 700;
250
+ }
251
+ .ad-info {
252
+ margin-left: 18px;
253
+ width: 40px;
254
+ height: 40px;
255
+ border: 2px solid #87B5FF;
256
+ color: #87B5FF;
257
+ border-radius: 50%;
258
+ display: flex;
259
+ align-items: center;
260
+ justify-content: center;
261
+ font-size: 28px;
262
+ }
263
+
264
+ /* Bottom black controls */
265
+ .bottom-controls {
266
+ position: absolute;
267
+ bottom: 0;
268
+ left: 0;
269
+ width: 100%;
270
+ height: 360px;
271
+ background: #0C0C0C;
272
+ border-top: 1px solid #1b1b1b;
273
+ box-sizing: border-box;
274
+ }
275
+ .controls-row {
276
+ height: 100%;
277
+ display: flex;
278
+ align-items: center;
279
+ justify-content: space-around;
280
+ padding: 0 120px;
281
+ }
282
+ .ctrl {
283
+ width: 180px;
284
+ height: 180px;
285
+ display: flex;
286
+ align-items: center;
287
+ justify-content: center;
288
+ }
289
+ .ctrl svg { width: 140px; height: 140px; }
290
+ .accent-line {
291
+ position: absolute;
292
+ left: 0;
293
+ bottom: 340px;
294
+ width: 420px;
295
+ height: 10px;
296
+ background: #D32222;
297
+ }
298
+ .home-indicator {
299
+ position: absolute;
300
+ bottom: 260px;
301
+ left: 50%;
302
+ transform: translateX(-50%);
303
+ width: 320px;
304
+ height: 18px;
305
+ background: #f2f2f2;
306
+ border-radius: 12px;
307
+ opacity: 0.9;
308
+ }
309
+ </style>
310
+ </head>
311
+ <body>
312
+ <div id="render-target">
313
+
314
+ <!-- Status bar -->
315
+ <div class="status-bar">
316
+ <div class="status-left">
317
+ <div>3:51</div>
318
+ <div class="status-icons-small">
319
+ <div class="circle"></div>
320
+ <div class="circle"></div>
321
+ <div class="dot"></div>
322
+ <div class="dot"></div>
323
+ </div>
324
+ </div>
325
+ <div class="status-right">
326
+ <div class="wifi">
327
+ <svg viewBox="0 0 64 64" stroke="#fff" stroke-width="5" fill="none">
328
+ <path d="M8 24c16-12 32-12 48 0"/>
329
+ <path d="M16 32c12-8 20-8 32 0"/>
330
+ <path d="M28 44c4-3 8-3 12 0"/>
331
+ <circle cx="34" cy="52" r="3" fill="#fff"></circle>
332
+ </svg>
333
+ </div>
334
+ <div class="battery">
335
+ <svg viewBox="0 0 80 40" fill="none" stroke="#fff" stroke-width="4">
336
+ <rect x="4" y="6" width="60" height="28" rx="6"></rect>
337
+ <rect x="66" y="12" width="10" height="16" rx="3" fill="#fff"></rect>
338
+ <rect x="8" y="10" width="48" height="20" fill="#fff" stroke="none"></rect>
339
+ </svg>
340
+ </div>
341
+ </div>
342
+ </div>
343
+
344
+ <!-- Toolbar -->
345
+ <div class="toolbar">
346
+ <div class="toolbar-title">(2)</div>
347
+ <div class="toolbar-icons">
348
+ <div class="tool-icon" title="Search">
349
+ <svg viewBox="0 0 64 64">
350
+ <circle cx="28" cy="28" r="20"></circle>
351
+ <line x1="44" y1="44" x2="60" y2="60"></line>
352
+ </svg>
353
+ </div>
354
+ <div class="tool-icon" title="Cut">
355
+ <svg viewBox="0 0 64 64">
356
+ <circle cx="16" cy="20" r="10"></circle>
357
+ <circle cx="16" cy="44" r="10"></circle>
358
+ <line x1="28" y1="16" x2="60" y2="32"></line>
359
+ <line x1="28" y1="48" x2="60" y2="32"></line>
360
+ </svg>
361
+ </div>
362
+ <div class="tool-icon" title="Edit">
363
+ <svg viewBox="0 0 64 64">
364
+ <path d="M12 52l12-2 26-26-10-10-26 26-2 12z"></path>
365
+ </svg>
366
+ </div>
367
+ <div class="tool-icon" title="Menu">
368
+ <svg viewBox="0 0 64 64">
369
+ <line x1="8" y1="16" x2="56" y2="16"></line>
370
+ <line x1="8" y1="32" x2="56" y2="32"></line>
371
+ <line x1="8" y1="48" x2="56" y2="48"></line>
372
+ </svg>
373
+ </div>
374
+ </div>
375
+ </div>
376
+
377
+ <!-- File list -->
378
+ <div class="list">
379
+ <div class="file-item selected">
380
+ <div class="file-thumb">[ICON: Music]</div>
381
+ <div class="file-content">
382
+ <div class="file-title">2023_12_08_12_46_58_1_1....</div>
383
+ <div class="file-meta">
384
+ <div>2023-12-08&nbsp;&nbsp;13:31, 234.3 KB</div>
385
+ <div class="duration">00:14s</div>
386
+ </div>
387
+ </div>
388
+ <div class="checkbox">
389
+ <svg viewBox="0 0 64 64">
390
+ <polyline points="12,34 26,48 52,18" stroke="#fff" stroke-width="8" fill="none"></polyline>
391
+ </svg>
392
+ </div>
393
+ </div>
394
+
395
+ <div class="file-item">
396
+ <div class="file-thumb">[ICON: Music]</div>
397
+ <div class="file-content">
398
+ <div class="file-title">2023_12_08_12_46_58_1.mp3</div>
399
+ <div class="file-meta">
400
+ <div>2023-12-08&nbsp;&nbsp;12:47, 567.8 KB</div>
401
+ <div class="duration">00:36s</div>
402
+ </div>
403
+ </div>
404
+ <div class="checkbox"></div>
405
+ </div>
406
+
407
+ <div class="content-spacer"></div>
408
+ </div>
409
+
410
+ <!-- Bottom actions bar -->
411
+ <div class="bottom-actions">
412
+ <div class="action-left">
413
+ <div class="badge">1</div>
414
+ <div class="action-icon" title="Play">
415
+ <svg viewBox="0 0 64 64">
416
+ <polygon points="16,12 52,32 16,52" fill="#fff" stroke="none"></polygon>
417
+ </svg>
418
+ </div>
419
+ <div class="action-icon" title="Delete">
420
+ <svg viewBox="0 0 64 64">
421
+ <rect x="18" y="22" width="28" height="34" rx="4"></rect>
422
+ <line x1="14" y1="22" x2="50" y2="22"></line>
423
+ <rect x="26" y="10" width="12" height="8" rx="2"></rect>
424
+ </svg>
425
+ </div>
426
+ <div class="action-icon" title="Share">
427
+ <svg viewBox="0 0 64 64">
428
+ <circle cx="16" cy="32" r="8"></circle>
429
+ <circle cx="48" cy="16" r="8"></circle>
430
+ <circle cx="48" cy="48" r="8"></circle>
431
+ <line x1="24" y1="28" x2="40" y2="20"></line>
432
+ <line x1="24" y1="36" x2="40" y2="44"></line>
433
+ </svg>
434
+ </div>
435
+ </div>
436
+ <div class="action-right">Cancel</div>
437
+ </div>
438
+
439
+ <!-- Ad banner -->
440
+ <div class="ad-banner">
441
+ <div class="ad-logo">Booking</div>
442
+ <div class="ad-text">
443
+ Booking.com: Hotels &amp; Flights
444
+ <span class="ad-pill">AD</span>
445
+ </div>
446
+ <div class="ad-info">i</div>
447
+ <div class="ad-open">OPEN</div>
448
+ </div>
449
+
450
+ <!-- Bottom control area -->
451
+ <div class="bottom-controls">
452
+ <div class="accent-line"></div>
453
+ <div class="home-indicator"></div>
454
+ <div class="controls-row">
455
+ <div class="ctrl">
456
+ <svg viewBox="0 0 64 64">
457
+ <circle cx="32" cy="32" r="28" stroke="#D32222" stroke-width="6" fill="none"></circle>
458
+ <path d="M20 44c2-8 6-12 12-12s10 4 12 12" stroke="#D32222" stroke-width="6" fill="none"></path>
459
+ <circle cx="22" cy="28" r="4" fill="#D32222"></circle>
460
+ <circle cx="42" cy="28" r="4" fill="#D32222"></circle>
461
+ </svg>
462
+ </div>
463
+ <div class="ctrl">
464
+ <svg viewBox="0 0 64 64">
465
+ <circle cx="32" cy="24" r="10" stroke="#FFFFFF" stroke-width="6" fill="none"></circle>
466
+ <rect x="22" y="32" width="20" height="18" rx="6" stroke="#FFFFFF" stroke-width="6" fill="none"></rect>
467
+ </svg>
468
+ </div>
469
+ <div class="ctrl">
470
+ <svg viewBox="0 0 64 64">
471
+ <circle cx="32" cy="32" r="8" fill="#FFFFFF"></circle>
472
+ <path d="M12 32a20 20 0 0 1 4-12l8 4m24 8a20 20 0 0 1-4 12l-8-4" stroke="#FFFFFF" stroke-width="6" fill="none"></path>
473
+ </svg>
474
+ </div>
475
+ </div>
476
+ </div>
477
+
478
+ </div>
479
+ </body>
480
+ </html>
code/10175/10175_4.html ADDED
@@ -0,0 +1,378 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <title>UI Render</title>
6
+ <style>
7
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
8
+ #render-target {
9
+ width: 1440px;
10
+ height: 3120px;
11
+ position: relative;
12
+ overflow: hidden;
13
+ background: #181818;
14
+ color: #fff;
15
+ }
16
+
17
+ /* Status bar */
18
+ .statusbar {
19
+ position: absolute;
20
+ top: 0;
21
+ left: 0;
22
+ width: 1440px;
23
+ height: 120px;
24
+ background: #000;
25
+ color: #fff;
26
+ }
27
+ .statusbar .time {
28
+ position: absolute;
29
+ left: 40px;
30
+ top: 28px;
31
+ font-size: 52px;
32
+ letter-spacing: 1px;
33
+ }
34
+ .status-icons {
35
+ position: absolute;
36
+ right: 40px;
37
+ top: 26px;
38
+ display: flex;
39
+ gap: 28px;
40
+ align-items: center;
41
+ }
42
+ .status-dot {
43
+ width: 16px; height: 16px; background:#fff; border-radius:50%;
44
+ }
45
+
46
+ /* App toolbar */
47
+ .appbar {
48
+ position: absolute;
49
+ top: 120px;
50
+ left: 0;
51
+ width: 1440px;
52
+ height: 160px;
53
+ background: #111;
54
+ display: flex;
55
+ align-items: center;
56
+ padding: 0 40px;
57
+ box-sizing: border-box;
58
+ }
59
+ .appbar .title {
60
+ font-size: 68px;
61
+ font-weight: 700;
62
+ color: #d7d7d7;
63
+ }
64
+ .appbar .actions {
65
+ margin-left: auto;
66
+ display: flex;
67
+ gap: 60px;
68
+ align-items: center;
69
+ }
70
+ .appbar svg { width: 72px; height: 72px; fill: none; stroke: #cfcfcf; stroke-width: 6px; }
71
+
72
+ /* List area */
73
+ .list-area {
74
+ position: absolute;
75
+ top: 280px;
76
+ left: 0;
77
+ width: 1440px;
78
+ height: 1280px;
79
+ background: #efefef;
80
+ }
81
+ .file-row {
82
+ position: relative;
83
+ width: calc(100% - 80px);
84
+ margin: 30px 40px;
85
+ height: 260px;
86
+ border-radius: 18px;
87
+ background: #f7f7f7;
88
+ box-sizing: border-box;
89
+ display: flex;
90
+ align-items: center;
91
+ padding: 40px 40px;
92
+ }
93
+ .file-row.selected { background: #27486f; color: #eaf1ff; }
94
+ .file-icon {
95
+ width: 140px; height: 140px; margin-right: 40px;
96
+ background: #e0e0e0; border: 1px solid #bdbdbd; border-radius: 20px;
97
+ display: flex; align-items: center; justify-content: center; color:#757575;
98
+ }
99
+ .file-texts { flex: 1; }
100
+ .file-name {
101
+ font-size: 64px; font-weight: 800; color: #1a1a1a;
102
+ }
103
+ .selected .file-name { color: #ffffff; }
104
+ .file-meta {
105
+ margin-top: 18px; font-size: 40px; color: #6e6e6e;
106
+ }
107
+ .selected .file-meta { color: #d7e4ff; }
108
+ .file-check {
109
+ width: 80px; height: 80px; border-radius: 8px;
110
+ border: 6px solid #2b2b2b; margin-left: 30px; display:flex; align-items:center; justify-content:center;
111
+ }
112
+ .file-check.selected {
113
+ background: #0d0d0d; border-color: #0d0d0d;
114
+ }
115
+ .file-check svg { width: 60px; height: 60px; stroke: #fff; stroke-width: 8px; fill: none; }
116
+
117
+ /* Modal overlay */
118
+ .overlay {
119
+ position: absolute;
120
+ top: 0; left: 0; width: 1440px; height: 3120px;
121
+ background: rgba(0,0,0,0.45);
122
+ }
123
+ .dialog {
124
+ position: absolute;
125
+ left: 50%; top: 50%;
126
+ width: 1080px; height: 720px;
127
+ transform: translate(-50%, -40%); /* slightly above center like screenshot */
128
+ background: #ffffff;
129
+ color: #111;
130
+ border-radius: 36px;
131
+ box-shadow: 0 24px 60px rgba(0,0,0,0.4);
132
+ padding: 60px;
133
+ box-sizing: border-box;
134
+ }
135
+ .dialog h2 {
136
+ margin: 0 0 60px 0;
137
+ font-size: 64px; font-weight: 800; color: #1b1b1b;
138
+ }
139
+ .input-line {
140
+ font-size: 54px;
141
+ color: #333;
142
+ padding-bottom: 16px;
143
+ border-bottom: 3px solid #cfcfcf;
144
+ word-break: break-all;
145
+ }
146
+ .dialog-actions {
147
+ position: absolute;
148
+ bottom: 52px; right: 60px;
149
+ display: flex; gap: 40px;
150
+ }
151
+ .btn-link {
152
+ font-size: 58px; color: #4a8cff; cursor: default;
153
+ }
154
+
155
+ /* Bottom tool strip */
156
+ .strip {
157
+ position: absolute;
158
+ bottom: 540px;
159
+ left: 0;
160
+ width: 1440px;
161
+ height: 160px;
162
+ background: #dcdcdc;
163
+ display: flex;
164
+ align-items: center;
165
+ padding: 0 40px;
166
+ box-sizing: border-box;
167
+ color: #333;
168
+ gap: 40px;
169
+ }
170
+ .chip {
171
+ width: 80px; height: 80px; border-radius: 12px; background:#fff; border: 2px solid #bdbdbd;
172
+ display:flex; align-items:center; justify-content:center; font-size: 42px; font-weight:700;
173
+ }
174
+ .strip svg { width: 64px; height: 64px; stroke: #333; stroke-width: 6px; fill: none; }
175
+ .strip .cancel { margin-left: auto; font-size: 52px; color: #5d5d5d; }
176
+
177
+ /* Ad banner */
178
+ .adbar {
179
+ position: absolute;
180
+ bottom: 380px;
181
+ left: 0;
182
+ width: 1440px;
183
+ height: 160px;
184
+ background: #f2f2f2;
185
+ display: flex; align-items: center;
186
+ padding: 0 40px; box-sizing: border-box;
187
+ color: #111;
188
+ gap: 30px;
189
+ border-top: 1px solid #e0e0e0;
190
+ }
191
+ .ad-img {
192
+ width: 120px; height: 120px; background:#E0E0E0; border:1px solid #BDBDBD;
193
+ display:flex; align-items:center; justify-content:center; color:#757575; font-size: 28px;
194
+ }
195
+ .ad-text { font-size: 48px; color:#222; }
196
+ .ad-badge { font-size: 36px; color:#6b6b6b; margin-left: 12px; }
197
+ .ad-open { margin-left: auto; font-size: 52px; color:#2b8cff; }
198
+
199
+ /* Bottom navigation */
200
+ .bottom-nav {
201
+ position: absolute;
202
+ bottom: 140px;
203
+ left: 0;
204
+ width: 1440px;
205
+ height: 240px;
206
+ background: #000;
207
+ display: flex; align-items: center; justify-content: space-around;
208
+ }
209
+ .nav-item { display:flex; flex-direction: column; align-items: center; color:#fff; }
210
+ .nav-item svg { width: 120px; height: 120px; stroke-width: 6px; }
211
+ .nav-item.red svg { stroke: #d02929; fill: none; }
212
+ .nav-item.white svg { stroke: #f2f2f2; fill: none; }
213
+
214
+ /* Gesture pill */
215
+ .gesture {
216
+ position: absolute;
217
+ bottom: 60px; left: 50%;
218
+ width: 420px; height: 16px; background:#ffffff; border-radius: 12px;
219
+ transform: translateX(-50%);
220
+ opacity: 0.9;
221
+ }
222
+ </style>
223
+ </head>
224
+ <body>
225
+ <div id="render-target">
226
+
227
+ <!-- Status bar -->
228
+ <div class="statusbar">
229
+ <div class="time">3:51</div>
230
+ <div class="status-icons">
231
+ <div style="width:50px;height:50px;border-radius:50%;border:4px solid #fff;display:flex;align-items:center;justify-content:center;font-size:28px;">ib</div>
232
+ <svg viewBox="0 0 24 24"><circle cx="10" cy="10" r="6" stroke="#fff" fill="none"/><line x1="16" y1="16" x2="22" y2="22" stroke="#fff"/></svg>
233
+ <div class="status-dot"></div>
234
+ <div class="status-dot"></div>
235
+ <svg viewBox="0 0 24 24"><path d="M2 16c4-6 16-6 20 0" stroke="#fff"/><path d="M6 16c3-4 9-4 12 0" stroke="#fff"/><circle cx="12" cy="16" r="1.5" fill="#fff"/></svg>
236
+ <svg viewBox="0 0 32 18">
237
+ <rect x="1" y="3" width="26" height="12" rx="2" ry="2" stroke="#fff" fill="none" stroke-width="2"/>
238
+ <rect x="4" y="6" width="20" height="6" fill="#fff"/>
239
+ <rect x="29" y="6" width="2" height="6" fill="#fff"/>
240
+ </svg>
241
+ </div>
242
+ </div>
243
+
244
+ <!-- App toolbar -->
245
+ <div class="appbar">
246
+ <div class="title">(2)</div>
247
+ <div class="actions">
248
+ <!-- search -->
249
+ <svg viewBox="0 0 24 24"><circle cx="10" cy="10" r="7"/><line x1="16" y1="16" x2="22" y2="22"/></svg>
250
+ <!-- scissors -->
251
+ <svg viewBox="0 0 24 24">
252
+ <circle cx="6" cy="6" r="3"/>
253
+ <circle cx="6" cy="18" r="3"/>
254
+ <line x1="9" y1="8" x2="20" y2="2"/>
255
+ <line x1="9" y1="16" x2="20" y2="22"/>
256
+ </svg>
257
+ <!-- pencil -->
258
+ <svg viewBox="0 0 24 24">
259
+ <path d="M3 21l3-9 12-8 3 3-8 12-10 2z"/>
260
+ </svg>
261
+ <!-- menu -->
262
+ <svg viewBox="0 0 24 24">
263
+ <line x1="3" y1="6" x2="21" y2="6"/>
264
+ <line x1="3" y1="12" x2="21" y2="12"/>
265
+ <line x1="3" y1="18" x2="21" y2="18"/>
266
+ </svg>
267
+ </div>
268
+ </div>
269
+
270
+ <!-- File list -->
271
+ <div class="list-area">
272
+ <div class="file-row selected">
273
+ <div class="file-icon">
274
+ <svg viewBox="0 0 64 64" width="64" height="64">
275
+ <rect x="12" y="8" width="40" height="48" rx="6" ry="6" fill="#fff" stroke="#bdbdbd" stroke-width="3"/>
276
+ <path d="M28 28 v14 a8 8 0 1 0 6 7 v-21" stroke="#757575" fill="none" stroke-width="3"/>
277
+ <circle cx="24" cy="50" r="4" fill="#757575"/>
278
+ </svg>
279
+ </div>
280
+ <div class="file-texts">
281
+ <div class="file-name">2023_12_08_12_46_58_1_1....</div>
282
+ <div class="file-meta">2023-12-08 13:31, 234.3 KB 00:14s</div>
283
+ </div>
284
+ <div class="file-check selected">
285
+ <svg viewBox="0 0 24 24"><path d="M4 12l6 6 10-12"/></svg>
286
+ </div>
287
+ </div>
288
+
289
+ <div class="file-row">
290
+ <div class="file-icon">
291
+ <svg viewBox="0 0 64 64" width="64" height="64">
292
+ <rect x="12" y="8" width="40" height="48" rx="6" ry="6" fill="#fff" stroke="#bdbdbd" stroke-width="3"/>
293
+ <path d="M28 28 v14 a8 8 0 1 0 6 7 v-21" stroke="#757575" fill="none" stroke-width="3"/>
294
+ <circle cx="24" cy="50" r="4" fill="#757575"/>
295
+ </svg>
296
+ </div>
297
+ <div class="file-texts">
298
+ <div class="file-name">2023_12_08_12_46_58_1.mp3</div>
299
+ <div class="file-meta">2023-12-08 12:47, 567.8 KB 00:36s</div>
300
+ </div>
301
+ <div class="file-check"></div>
302
+ </div>
303
+ </div>
304
+
305
+ <!-- Modal overlay and dialog -->
306
+ <div class="overlay"></div>
307
+ <div class="dialog">
308
+ <h2>Insert new file name</h2>
309
+ <div class="input-line">2023_12_08_12_46_58_1_1</div>
310
+ <div class="dialog-actions">
311
+ <div class="btn-link">Cancel</div>
312
+ <div class="btn-link">OK</div>
313
+ </div>
314
+ </div>
315
+
316
+ <!-- Bottom tool strip -->
317
+ <div class="strip">
318
+ <div class="chip">1</div>
319
+ <!-- play -->
320
+ <svg viewBox="0 0 24 24"><polygon points="6,4 20,12 6,20" fill="#333"/></svg>
321
+ <!-- trash -->
322
+ <svg viewBox="0 0 24 24">
323
+ <rect x="6" y="7" width="12" height="14"/>
324
+ <line x1="4" y1="7" x2="20" y2="7"/>
325
+ <rect x="9" y="2" width="6" height="3"/>
326
+ </svg>
327
+ <!-- share -->
328
+ <svg viewBox="0 0 24 24">
329
+ <circle cx="6" cy="12" r="3"/>
330
+ <circle cx="18" cy="6" r="3"/>
331
+ <circle cx="18" cy="18" r="3"/>
332
+ <line x1="8" y1="11" x2="15" y2="7"/>
333
+ <line x1="8" y1="13" x2="15" y2="17"/>
334
+ </svg>
335
+ <div class="cancel">Cancel</div>
336
+ </div>
337
+
338
+ <!-- Ad banner -->
339
+ <div class="adbar">
340
+ <div class="ad-img">[IMG: Booking logo]</div>
341
+ <div class="ad-text">Booking.com: Hotels & Flights</div>
342
+ <div class="ad-badge">AD</div>
343
+ <div class="ad-open">OPEN</div>
344
+ </div>
345
+
346
+ <!-- Bottom navigation -->
347
+ <div class="bottom-nav">
348
+ <div class="nav-item red">
349
+ <svg viewBox="0 0 24 24">
350
+ <path d="M6 18v-4c0-4 12-4 12 0v4"/>
351
+ <circle cx="6" cy="18" r="3"/>
352
+ <circle cx="18" cy="18" r="3"/>
353
+ </svg>
354
+ </div>
355
+ <div class="nav-item white">
356
+ <svg viewBox="0 0 24 24">
357
+ <rect x="9" y="6" width="6" height="10"/>
358
+ <line x1="9" y1="6" x2="15" y2="6"/>
359
+ <path d="M9 16v2c0 2 6 2 6 0v-2"/>
360
+ </svg>
361
+ </div>
362
+ <div class="nav-item white">
363
+ <svg viewBox="0 0 24 24">
364
+ <circle cx="12" cy="12" r="6"/>
365
+ <line x1="12" y1="2" x2="12" y2="6"/>
366
+ <line x1="12" y1="18" x2="12" y2="22"/>
367
+ <line x1="2" y1="12" x2="6" y2="12"/>
368
+ <line x1="18" y1="12" x2="22" y2="12"/>
369
+ </svg>
370
+ </div>
371
+ </div>
372
+
373
+ <!-- Gesture pill -->
374
+ <div class="gesture"></div>
375
+
376
+ </div>
377
+ </body>
378
+ </html>
code/10175/10175_5.html ADDED
@@ -0,0 +1,384 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1440, initial-scale=1.0">
6
+ <title>Rename Dialog UI</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: Roboto, Arial, sans-serif; }
9
+ #render-target {
10
+ position: relative;
11
+ overflow: hidden;
12
+ width: 1440px;
13
+ height: 3120px;
14
+ background: #101214;
15
+ border-radius: 0;
16
+ box-shadow: none;
17
+ color: #FFFFFF;
18
+ }
19
+
20
+ /* Status bar */
21
+ .status-bar {
22
+ position: absolute;
23
+ top: 0;
24
+ left: 0;
25
+ width: 1440px;
26
+ height: 120px;
27
+ background: #0B0C0E;
28
+ padding: 0 36px;
29
+ display: flex;
30
+ align-items: center;
31
+ justify-content: space-between;
32
+ box-sizing: border-box;
33
+ font-size: 44px;
34
+ letter-spacing: 0.5px;
35
+ }
36
+ .status-right {
37
+ display: flex;
38
+ align-items: center;
39
+ gap: 30px;
40
+ color: #EAEAEA;
41
+ }
42
+ .icon {
43
+ display: inline-flex;
44
+ width: 54px;
45
+ height: 54px;
46
+ fill: #EAEAEA;
47
+ }
48
+
49
+ /* App bar */
50
+ .app-bar {
51
+ position: absolute;
52
+ top: 120px;
53
+ left: 0;
54
+ width: 1440px;
55
+ height: 180px;
56
+ background: #14161A;
57
+ display: flex;
58
+ align-items: center;
59
+ justify-content: space-between;
60
+ box-sizing: border-box;
61
+ padding: 0 40px;
62
+ border-bottom: 1px solid #20232A;
63
+ }
64
+ .app-title {
65
+ font-size: 72px;
66
+ font-weight: 600;
67
+ color: #D0D3DA;
68
+ }
69
+ .app-actions {
70
+ display: flex;
71
+ align-items: center;
72
+ gap: 50px;
73
+ }
74
+ .action-btn {
75
+ width: 88px;
76
+ height: 88px;
77
+ border-radius: 16px;
78
+ display: flex;
79
+ align-items: center;
80
+ justify-content: center;
81
+ background: transparent;
82
+ }
83
+ .action-btn svg { width: 64px; height: 64px; fill: #C7CCD4; }
84
+
85
+ /* File list area */
86
+ .content {
87
+ position: absolute;
88
+ top: 300px;
89
+ left: 0;
90
+ width: 1440px;
91
+ height: 1140px;
92
+ background: #0F1216;
93
+ }
94
+ .file-row {
95
+ margin: 40px;
96
+ height: 260px;
97
+ background: #9EC3FF;
98
+ border-radius: 12px;
99
+ display: flex;
100
+ align-items: center;
101
+ padding: 40px;
102
+ box-sizing: border-box;
103
+ color: #0A1A33;
104
+ position: relative;
105
+ }
106
+ .file-icon {
107
+ width: 140px;
108
+ height: 140px;
109
+ border-radius: 16px;
110
+ background: #E0E0E0;
111
+ border: 1px solid #BDBDBD;
112
+ display: flex;
113
+ align-items: center;
114
+ justify-content: center;
115
+ color: #757575;
116
+ margin-right: 40px;
117
+ }
118
+ .file-texts {
119
+ flex: 1;
120
+ }
121
+ .file-name { font-size: 58px; font-weight: 700; color: #0A1A33; }
122
+ .file-meta { margin-top: 18px; font-size: 40px; color: #233A61; }
123
+ .file-check {
124
+ width: 84px;
125
+ height: 84px;
126
+ border-radius: 10px;
127
+ background: #1A1D22;
128
+ display: flex;
129
+ align-items: center;
130
+ justify-content: center;
131
+ }
132
+ .file-check svg { width: 60px; height: 60px; fill: #9EC3FF; }
133
+
134
+ /* Dim overlay (above content, not covering keyboard) */
135
+ .overlay {
136
+ position: absolute;
137
+ top: 0;
138
+ left: 0;
139
+ width: 1440px;
140
+ height: 1920px; /* leave keyboard visible */
141
+ background: rgba(0,0,0,0.55);
142
+ z-index: 10;
143
+ pointer-events: none;
144
+ }
145
+
146
+ /* Modal dialog */
147
+ .modal {
148
+ position: absolute;
149
+ top: 740px;
150
+ left: 50%;
151
+ transform: translateX(-50%);
152
+ width: 980px;
153
+ background: #EFEFEF;
154
+ color: #1B1B1B;
155
+ border-radius: 34px;
156
+ box-shadow: 0 20px 60px rgba(0,0,0,0.6);
157
+ padding: 50px 60px 40px;
158
+ box-sizing: border-box;
159
+ z-index: 20;
160
+ }
161
+ .modal-title {
162
+ font-size: 68px;
163
+ font-weight: 700;
164
+ margin-bottom: 60px;
165
+ }
166
+ .modal-input {
167
+ font-size: 58px;
168
+ border: none;
169
+ outline: none;
170
+ background: transparent;
171
+ width: 100%;
172
+ color: #1B1B1B;
173
+ padding: 0 0 16px 0;
174
+ border-bottom: 4px solid #B8B8B8;
175
+ box-sizing: border-box;
176
+ }
177
+ .modal-actions {
178
+ display: flex;
179
+ justify-content: flex-end;
180
+ gap: 60px;
181
+ margin-top: 50px;
182
+ }
183
+ .modal-link {
184
+ font-size: 64px;
185
+ color: #64A4FF;
186
+ }
187
+
188
+ /* Keyboard */
189
+ .keyboard {
190
+ position: absolute;
191
+ bottom: 90px; /* leave room for navigation pill */
192
+ left: 0;
193
+ width: 1440px;
194
+ height: 1200px;
195
+ background: #0E0F11;
196
+ border-top: 1px solid #202225;
197
+ box-sizing: border-box;
198
+ padding: 36px 40px;
199
+ z-index: 5;
200
+ }
201
+ .suggestions {
202
+ display: flex;
203
+ align-items: center;
204
+ justify-content: center;
205
+ gap: 36px;
206
+ margin-bottom: 36px;
207
+ }
208
+ .chip {
209
+ padding: 18px 34px;
210
+ border-radius: 36px;
211
+ background: #1A1C1F;
212
+ color: #E6E6E6;
213
+ font-size: 46px;
214
+ }
215
+ .suggest-right {
216
+ position: absolute;
217
+ right: 40px;
218
+ top: 36px;
219
+ display: flex;
220
+ align-items: center;
221
+ gap: 30px;
222
+ }
223
+ .kb-grid {
224
+ display: grid;
225
+ grid-template-columns: repeat(10, 1fr);
226
+ gap: 22px;
227
+ }
228
+ .key {
229
+ height: 128px;
230
+ background: #1A1C1F;
231
+ border-radius: 22px;
232
+ display: flex;
233
+ align-items: center;
234
+ justify-content: center;
235
+ color: #EDEDED;
236
+ font-size: 54px;
237
+ }
238
+ .row { margin-top: 22px; }
239
+ .key.shift { width: 160px; }
240
+ .bottom-row {
241
+ display: grid;
242
+ grid-template-columns: 200px 1fr 200px 200px;
243
+ gap: 22px;
244
+ margin-top: 22px;
245
+ }
246
+ .key.light {
247
+ background: #CFE9C8;
248
+ color: #0E0F11;
249
+ }
250
+ .key.circle {
251
+ border-radius: 50%;
252
+ }
253
+ .key.enter {
254
+ background: #D7F5C8;
255
+ color: #0E0F11;
256
+ }
257
+ .key.mic svg,
258
+ .key.backspace svg { fill: #EDEDED; width: 52px; height: 52px; }
259
+
260
+ /* Navigation pill */
261
+ .nav-pill {
262
+ position: absolute;
263
+ bottom: 20px;
264
+ left: 50%;
265
+ transform: translateX(-50%);
266
+ width: 320px;
267
+ height: 18px;
268
+ background: #FFFFFF;
269
+ border-radius: 12px;
270
+ opacity: 0.9;
271
+ z-index: 6;
272
+ }
273
+ </style>
274
+ </head>
275
+ <body>
276
+ <div id="render-target">
277
+
278
+ <!-- Status Bar -->
279
+ <div class="status-bar">
280
+ <div class="status-left">3:52</div>
281
+ <div class="status-right">
282
+ <!-- WiFi icon -->
283
+ <svg class="icon" viewBox="0 0 24 24"><path d="M12 18c.9 0 1.7.8 1.7 1.7S12.9 21.4 12 21.4s-1.7-.8-1.7-1.7S11.1 18 12 18zm7.4-6.3l-1.6 1.6C16.1 11.6 13.9 10.9 12 10.9s-4.1.7-5.8 2.3l-1.6-1.6C6.7 9.8 9.2 8.9 12 8.9s5.3.9 7.4 2.8zm3-3.1l-1.6 1.6C18.6 8.1 15.4 7 12 7S5.4 8.1 3.2 10.2L1.6 8.6C4.3 6.1 8 4.8 12 4.8s7.7 1.3 10.4 3.8z"/></svg>
284
+ <!-- Battery icon -->
285
+ <svg class="icon" viewBox="0 0 24 24"><path d="M20 7h-1V5h-2v2H7c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V9zm-2 8H7V9h11v6z"/></svg>
286
+ </div>
287
+ </div>
288
+
289
+ <!-- App Bar -->
290
+ <div class="app-bar">
291
+ <div class="app-title">(2)</div>
292
+ <div class="app-actions">
293
+ <div class="action-btn">
294
+ <!-- Search -->
295
+ <svg viewBox="0 0 24 24"><path d="M15.5 14h-.79l-.28-.27A6.5 6.5 0 1 0 14 15.5l.27.28v.79L20 21l1-1-5.5-5.5zM10 15a5 5 0 1 1 0-10 5 5 0 0 1 0 10z"/></svg>
296
+ </div>
297
+ <div class="action-btn">
298
+ <!-- Scissors -->
299
+ <svg viewBox="0 0 24 24"><path d="M9.64 7L3 3l1-1 8 4.5L20 2l1 1-8.5 4.6L12 9l4 7-1.2.7L11 10.6 8.2 12c.5.9.3 2-.5 2.6a2.3 2.3 0 1 1-.8-4.5L9.64 7z"/></svg>
300
+ </div>
301
+ <div class="action-btn">
302
+ <!-- Pencil -->
303
+ <svg viewBox="0 0 24 24"><path d="M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zm19.71-11.04a1 1 0 0 0 0-1.41l-2.5-2.5a1 1 0 0 0-1.41 0l-1.83 1.83 3.75 3.75 1.99-1.67z"/></svg>
304
+ </div>
305
+ <div class="action-btn">
306
+ <!-- Hamburger -->
307
+ <svg viewBox="0 0 24 24"><path d="M3 6h18v2H3V6zm0 5h18v2H3v-2zm0 5h18v2H3v-2z"/></svg>
308
+ </div>
309
+ </div>
310
+ </div>
311
+
312
+ <!-- Content with selected file -->
313
+ <div class="content">
314
+ <div class="file-row">
315
+ <div class="file-icon">[IMG: Music File]</div>
316
+ <div class="file-texts">
317
+ <div class="file-name">2023_12_08_12_46_58_1_...</div>
318
+ <div class="file-meta">2023-12-08 13:31, 234.3 KB &nbsp;&nbsp;00:14s</div>
319
+ </div>
320
+ <div class="file-check">
321
+ <svg viewBox="0 0 24 24"><path d="M9 16.2l-3.5-3.5L4 13.2l5 5 11-11-1.5-1.5z"/></svg>
322
+ </div>
323
+ </div>
324
+ </div>
325
+
326
+ <!-- Dim Overlay -->
327
+ <div class="overlay"></div>
328
+
329
+ <!-- Modal dialog -->
330
+ <div class="modal">
331
+ <div class="modal-title">Insert new file name</div>
332
+ <div class="modal-input">Quentin Clark</div>
333
+ <div class="modal-actions">
334
+ <div class="modal-link">Cancel</div>
335
+ <div class="modal-link">OK</div>
336
+ </div>
337
+ </div>
338
+
339
+ <!-- Keyboard -->
340
+ <div class="keyboard">
341
+ <div class="suggestions">
342
+ <div class="chip">Clark</div>
343
+ <div class="chip">Clarke</div>
344
+ <div class="chip">Clarks</div>
345
+ </div>
346
+ <div class="suggest-right">
347
+ <div class="key mic" style="width:120px;height:120px;border-radius:60px;background:#1A1C1F;">
348
+ <svg viewBox="0 0 24 24"><path d="M12 14a3 3 0 0 0 3-3V6a3 3 0 0 0-6 0v5a3 3 0 0 0 3 3zm5-3a5 5 0 0 1-10 0H5a7 7 0 0 0 6 6.92V21h2v-3.08A7 7 0 0 0 19 11h-2z"/></svg>
349
+ </div>
350
+ </div>
351
+
352
+ <!-- Row 1 -->
353
+ <div class="kb-grid">
354
+ <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>
355
+ </div>
356
+ <!-- Row 2 -->
357
+ <div class="kb-grid row" style="grid-template-columns: repeat(9, 1fr); margin-left: 70px; margin-right: 70px;">
358
+ <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>
359
+ </div>
360
+ <!-- Row 3 -->
361
+ <div class="kb-grid row" style="grid-template-columns: 160px repeat(7, 1fr) 160px;">
362
+ <div class="key">↑</div>
363
+ <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>
364
+ <div class="key backspace">
365
+ <svg viewBox="0 0 24 24"><path d="M22 6H9L2 12l7 6h13V6zm-3 8h-8v-4h8v4z"/></svg>
366
+ </div>
367
+ </div>
368
+ <!-- Bottom Row -->
369
+ <div class="bottom-row">
370
+ <div class="key circle light" style="height:128px;">?123</div>
371
+ <div class="key" style="height:128px;">space</div>
372
+ <div class="key" style="height:128px;">.</div>
373
+ <div class="key circle enter" style="height:128px;">
374
+ <svg viewBox="0 0 24 24"><path d="M9 16.2l-3.5-3.5L4 13.2l5 5 11-11-1.5-1.5z"/></svg>
375
+ </div>
376
+ </div>
377
+ </div>
378
+
379
+ <!-- Navigation pill -->
380
+ <div class="nav-pill"></div>
381
+
382
+ </div>
383
+ </body>
384
+ </html>
code/10175/10175_6.html ADDED
@@ -0,0 +1,364 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>Audio Files UI Mock</title>
6
+ <style>
7
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
8
+ #render-target {
9
+ position: relative;
10
+ width: 1440px;
11
+ height: 3120px;
12
+ overflow: hidden;
13
+ background: #EEF4F5;
14
+ }
15
+
16
+ /* Top system status bar */
17
+ .status-bar {
18
+ position: absolute;
19
+ top: 0;
20
+ left: 0;
21
+ width: 1440px;
22
+ height: 120px;
23
+ background: #101010;
24
+ color: #fff;
25
+ display: flex;
26
+ align-items: center;
27
+ padding: 0 40px;
28
+ box-sizing: border-box;
29
+ font-size: 48px;
30
+ letter-spacing: 0.5px;
31
+ }
32
+ .status-icons {
33
+ margin-left: auto;
34
+ display: flex;
35
+ align-items: center;
36
+ gap: 24px;
37
+ }
38
+ .dot {
39
+ width: 16px;
40
+ height: 16px;
41
+ background: #D9D9D9;
42
+ border-radius: 50%;
43
+ opacity: 0.9;
44
+ }
45
+ .signal {
46
+ width: 40px; height: 40px; border: 3px solid #D9D9D9; border-radius: 50%;
47
+ }
48
+ .wifi {
49
+ width: 42px; height: 42px; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 4px solid transparent;
50
+ }
51
+ .battery {
52
+ width: 52px; height: 28px; border: 4px solid #D9D9D9; border-radius: 6px; position: relative;
53
+ }
54
+ .battery::after { content: ""; position: absolute; right: -10px; top: 6px; width: 8px; height: 14px; background: #D9D9D9; border-radius: 2px; }
55
+
56
+ /* App toolbar */
57
+ .toolbar {
58
+ position: absolute;
59
+ top: 120px;
60
+ left: 0;
61
+ width: 1440px;
62
+ height: 160px;
63
+ background: #101010;
64
+ display: flex;
65
+ align-items: center;
66
+ padding: 0 40px;
67
+ box-sizing: border-box;
68
+ color: #fff;
69
+ }
70
+ .toolbar-right {
71
+ margin-left: auto;
72
+ display: flex;
73
+ align-items: center;
74
+ gap: 36px;
75
+ }
76
+ .icon-btn svg { display: block; }
77
+
78
+ /* Count title */
79
+ .count-title {
80
+ position: absolute;
81
+ top: 300px;
82
+ left: 40px;
83
+ font-size: 96px;
84
+ color: #0B0B0B;
85
+ font-weight: 600;
86
+ }
87
+
88
+ /* List */
89
+ .list {
90
+ position: absolute;
91
+ top: 420px;
92
+ left: 0;
93
+ width: 100%;
94
+ }
95
+ .item {
96
+ width: 100%;
97
+ padding: 40px 40px;
98
+ box-sizing: border-box;
99
+ border-top: 1px solid #D8E0E2;
100
+ background: transparent;
101
+ display: flex;
102
+ align-items: center;
103
+ }
104
+ .play-tile {
105
+ width: 140px;
106
+ height: 140px;
107
+ border-radius: 22px;
108
+ background: #F2F6F7;
109
+ border: 1px solid #E1E6E8;
110
+ display: flex; align-items: center; justify-content: center;
111
+ box-shadow: inset 0 0 0 1px rgba(0,0,0,0.03);
112
+ }
113
+ .file-info {
114
+ flex: 1;
115
+ margin-left: 40px;
116
+ }
117
+ .file-name {
118
+ font-size: 54px;
119
+ color: #111;
120
+ line-height: 1.2;
121
+ }
122
+ .meta-row {
123
+ margin-top: 12px;
124
+ font-size: 36px;
125
+ color: #6E7C7F;
126
+ display: flex;
127
+ justify-content: space-between;
128
+ align-items: center;
129
+ padding-right: 20px;
130
+ }
131
+ .checkbox {
132
+ width: 88px;
133
+ height: 88px;
134
+ border: 6px solid #1D1D1D;
135
+ border-radius: 10px;
136
+ margin-left: 24px;
137
+ background: transparent;
138
+ }
139
+
140
+ /* Spacer area */
141
+ .spacer {
142
+ position: absolute;
143
+ top: 1120px;
144
+ left: 0;
145
+ right: 0;
146
+ bottom: 520px;
147
+ }
148
+
149
+ /* Ad banner above bottom nav */
150
+ .ad-banner {
151
+ position: absolute;
152
+ left: 0;
153
+ bottom: 360px;
154
+ width: 100%;
155
+ height: 180px;
156
+ background: #FFFFFF;
157
+ border-top: 1px solid #E3E3E3;
158
+ border-bottom: 1px solid #E3E3E3;
159
+ display: flex;
160
+ align-items: center;
161
+ padding: 0 32px;
162
+ box-sizing: border-box;
163
+ gap: 24px;
164
+ }
165
+ .ad-logo {
166
+ width: 130px; height: 130px;
167
+ background: #E0E0E0; border: 1px solid #BDBDBD;
168
+ display: flex; align-items: center; justify-content: center; color: #757575; font-size: 30px;
169
+ }
170
+ .ad-text {
171
+ flex: 1;
172
+ font-size: 44px;
173
+ color: #111;
174
+ }
175
+ .ad-open {
176
+ font-size: 44px;
177
+ color: #111;
178
+ margin-left: auto;
179
+ }
180
+ .ad-badge {
181
+ display: inline-block;
182
+ font-size: 32px;
183
+ color: #555;
184
+ border: 2px solid #888;
185
+ border-radius: 8px;
186
+ padding: 4px 10px;
187
+ margin-left: 12px;
188
+ }
189
+
190
+ /* Bottom navigation */
191
+ .bottom-nav {
192
+ position: absolute;
193
+ left: 0;
194
+ bottom: 0;
195
+ width: 100%;
196
+ height: 320px;
197
+ background: #101010;
198
+ color: #fff;
199
+ display: flex;
200
+ align-items: center;
201
+ justify-content: space-around;
202
+ }
203
+ .nav-item {
204
+ display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
205
+ color: #fff;
206
+ }
207
+ .nav-label { font-size: 34px; opacity: 0.8; }
208
+ .nav-item.active .nav-icon svg { stroke: #E53935; fill: #E53935; }
209
+ .nav-item.active .nav-label { color: #E53935; }
210
+
211
+ .progress-line {
212
+ position: absolute;
213
+ left: 0;
214
+ bottom: 320px;
215
+ width: 420px;
216
+ height: 12px;
217
+ background: #E53935;
218
+ }
219
+
220
+ /* Home indicator */
221
+ .home-indicator {
222
+ position: absolute;
223
+ bottom: 28px;
224
+ left: 50%;
225
+ transform: translateX(-50%);
226
+ width: 280px;
227
+ height: 16px;
228
+ background: #E0E0E0;
229
+ border-radius: 12px;
230
+ opacity: 0.95;
231
+ }
232
+ </style>
233
+ </head>
234
+ <body>
235
+ <div id="render-target">
236
+
237
+ <!-- Status bar -->
238
+ <div class="status-bar">
239
+ <div>3:52</div>
240
+ <div class="status-icons">
241
+ <div class="dot"></div>
242
+ <div class="dot"></div>
243
+ <div class="signal"></div>
244
+ <div class="dot"></div>
245
+ <div class="wifi"></div>
246
+ <div class="battery"></div>
247
+ </div>
248
+ </div>
249
+
250
+ <!-- Toolbar with search and hamburger -->
251
+ <div class="toolbar">
252
+ <div class="toolbar-right">
253
+ <div class="icon-btn">
254
+ <svg width="72" height="72" viewBox="0 0 24 24">
255
+ <circle cx="10" cy="10" r="7" fill="none" stroke="#FFFFFF" stroke-width="2"/>
256
+ <line x1="15" y1="15" x2="22" y2="22" stroke="#FFFFFF" stroke-width="2"/>
257
+ </svg>
258
+ </div>
259
+ <div class="icon-btn">
260
+ <svg width="72" height="72" viewBox="0 0 24 24">
261
+ <line x1="3" y1="6" x2="21" y2="6" stroke="#FFFFFF" stroke-width="2"/>
262
+ <line x1="3" y1="12" x2="21" y2="12" stroke="#FFFFFF" stroke-width="2"/>
263
+ <line x1="3" y1="18" x2="21" y2="18" stroke="#FFFFFF" stroke-width="2"/>
264
+ </svg>
265
+ </div>
266
+ </div>
267
+ </div>
268
+
269
+ <!-- Count title -->
270
+ <div class="count-title">(2)</div>
271
+
272
+ <!-- List -->
273
+ <div class="list">
274
+ <!-- Item 1 -->
275
+ <div class="item">
276
+ <div class="play-tile">
277
+ <svg width="72" height="72" viewBox="0 0 24 24">
278
+ <polygon points="6,4 20,12 6,20" fill="#111"/>
279
+ </svg>
280
+ </div>
281
+ <div class="file-info">
282
+ <div class="file-name">Quentin Clark.mp3</div>
283
+ <div class="meta-row">
284
+ <div>2023-12-08&nbsp;&nbsp;&nbsp;13:31, 234.3 KB</div>
285
+ <div>00:14s</div>
286
+ </div>
287
+ </div>
288
+ <div class="checkbox"></div>
289
+ </div>
290
+
291
+ <!-- Item 2 -->
292
+ <div class="item">
293
+ <div class="play-tile">
294
+ <svg width="72" height="72" viewBox="0 0 24 24">
295
+ <polygon points="6,4 20,12 6,20" fill="#111"/>
296
+ </svg>
297
+ </div>
298
+ <div class="file-info">
299
+ <div class="file-name">2023_12_08_12_46_58_1.mp3</div>
300
+ <div class="meta-row">
301
+ <div>2023-12-08&nbsp;&nbsp;&nbsp;12:47, 567.8 KB</div>
302
+ <div>00:36s</div>
303
+ </div>
304
+ </div>
305
+ <div class="checkbox"></div>
306
+ </div>
307
+ </div>
308
+
309
+ <!-- Spacer for empty area -->
310
+ <div class="spacer"></div>
311
+
312
+ <!-- Ad banner -->
313
+ <div class="ad-banner">
314
+ <div class="ad-logo">[IMG: Booking Logo]</div>
315
+ <div class="ad-text">Booking.com: Hotels &amp; Flights <span class="ad-badge">AD</span></div>
316
+ <div class="ad-open">OPEN</div>
317
+ </div>
318
+
319
+ <!-- Red progress line above bottom nav -->
320
+ <div class="progress-line"></div>
321
+
322
+ <!-- Bottom navigation -->
323
+ <div class="bottom-nav">
324
+ <div class="nav-item active">
325
+ <div class="nav-icon">
326
+ <svg width="120" height="120" viewBox="0 0 48 48">
327
+ <!-- Headphones -->
328
+ <path d="M24 10c-8 0-14 6-14 14h4c0-6 4-10 10-10s10 4 10 10h4c0-8-6-14-14-14z" fill="#E53935"/>
329
+ <rect x="8" y="26" width="8" height="14" rx="3" fill="#E53935"/>
330
+ <rect x="32" y="26" width="8" height="14" rx="3" fill="#E53935"/>
331
+ <!-- small play dot -->
332
+ <polygon points="22,30 30,34 22,38" fill="#FFFFFF"/>
333
+ </svg>
334
+ </div>
335
+ <div class="nav-label">Player</div>
336
+ </div>
337
+ <div class="nav-item">
338
+ <div class="nav-icon">
339
+ <svg width="120" height="120" viewBox="0 0 48 48">
340
+ <!-- Microphone -->
341
+ <rect x="18" y="10" width="12" height="20" rx="6" fill="none" stroke="#FFFFFF" stroke-width="2"/>
342
+ <path d="M12 24c0 7 5 12 12 12s12-5 12-12" fill="none" stroke="#FFFFFF" stroke-width="2"/>
343
+ <line x1="24" y1="36" x2="24" y2="42" stroke="#FFFFFF" stroke-width="2"/>
344
+ <line x1="18" y1="42" x2="30" y2="42" stroke="#FFFFFF" stroke-width="2"/>
345
+ </svg>
346
+ </div>
347
+ <div class="nav-label">Record</div>
348
+ </div>
349
+ <div class="nav-item">
350
+ <div class="nav-icon">
351
+ <svg width="120" height="120" viewBox="0 0 48 48">
352
+ <!-- Simple gear -->
353
+ <circle cx="24" cy="24" r="8" fill="none" stroke="#FFFFFF" stroke-width="2"/>
354
+ <path d="M24 8v6M24 34v6M8 24h6M34 24h6M13 13l4 4M31 31l4 4M35 13l-4 4M13 35l4-4" stroke="#FFFFFF" stroke-width="2"/>
355
+ </svg>
356
+ </div>
357
+ <div class="nav-label">Settings</div>
358
+ </div>
359
+ <div class="home-indicator"></div>
360
+ </div>
361
+
362
+ </div>
363
+ </body>
364
+ </html>
code/10176/10176_0.html ADDED
@@ -0,0 +1,408 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Duolingo Achievements UI</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: #0e1a1d;
13
+ color: #e9f1f4;
14
+ }
15
+
16
+ /* Status bar */
17
+ .status-bar {
18
+ height: 120px;
19
+ padding: 24px 36px;
20
+ display: flex;
21
+ align-items: center;
22
+ justify-content: space-between;
23
+ color: #cfe4ea;
24
+ font-size: 40px;
25
+ letter-spacing: 0.5px;
26
+ }
27
+ .status-right {
28
+ display: flex;
29
+ align-items: center;
30
+ gap: 28px;
31
+ }
32
+ .status-icon {
33
+ width: 36px;
34
+ height: 36px;
35
+ border-radius: 6px;
36
+ background: #2b3a3f;
37
+ }
38
+ .battery {
39
+ width: 110px;
40
+ height: 40px;
41
+ border: 3px solid #cfe4ea;
42
+ border-radius: 8px;
43
+ position: relative;
44
+ display: flex;
45
+ align-items: center;
46
+ padding: 4px;
47
+ }
48
+ .battery::after {
49
+ content: "";
50
+ position: absolute;
51
+ right: -14px;
52
+ top: 12px;
53
+ width: 12px;
54
+ height: 16px;
55
+ background: #cfe4ea;
56
+ border-radius: 3px;
57
+ }
58
+ .battery-fill {
59
+ height: 100%;
60
+ width: 85%;
61
+ background: #9de052;
62
+ border-radius: 4px;
63
+ }
64
+ .battery-text {
65
+ margin-left: 12px;
66
+ font-size: 34px;
67
+ }
68
+
69
+ /* Content wrapper */
70
+ .content {
71
+ padding: 0 40px 0 40px;
72
+ }
73
+
74
+ /* Find friends card */
75
+ .friends-card {
76
+ background: #122326;
77
+ border: 2px solid #1a2f33;
78
+ border-radius: 22px;
79
+ padding: 28px;
80
+ margin-top: 10px;
81
+ box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
82
+ }
83
+ .friends-row {
84
+ display: grid;
85
+ grid-template-columns: 120px 1fr;
86
+ gap: 26px;
87
+ align-items: center;
88
+ }
89
+ .contact-icon {
90
+ width: 120px;
91
+ height: 120px;
92
+ border-radius: 18px;
93
+ background: #f0b03a;
94
+ position: relative;
95
+ }
96
+ .contact-icon::before {
97
+ content: "";
98
+ position: absolute;
99
+ left: 16px; top: 18px;
100
+ width: 34px; height: 84px; background: #d9922f; border-radius: 8px;
101
+ }
102
+ .contact-icon::after {
103
+ content: "";
104
+ position: absolute;
105
+ right: 16px; top: 22px;
106
+ width: 70px; height: 74px; background: #ffd475; border-radius: 10px;
107
+ }
108
+ .friends-text h3 {
109
+ margin: 0;
110
+ font-size: 42px;
111
+ font-weight: 700;
112
+ color: #cfe4ea;
113
+ }
114
+ .friends-text p {
115
+ margin: 10px 0 22px;
116
+ font-size: 36px;
117
+ color: #adc9cf;
118
+ line-height: 1.3;
119
+ }
120
+ .primary-btn {
121
+ display: inline-block;
122
+ background: #5ab6fb;
123
+ color: #051015;
124
+ border-radius: 24px;
125
+ padding: 22px 36px;
126
+ font-size: 42px;
127
+ font-weight: 800;
128
+ box-shadow: 0 8px 0 #3c8ac7;
129
+ text-align: center;
130
+ }
131
+ .primary-btn:active { transform: translateY(3px); box-shadow: 0 5px 0 #3c8ac7; }
132
+
133
+ /* Achievements header */
134
+ .section-title {
135
+ font-size: 64px;
136
+ font-weight: 800;
137
+ margin: 48px 0 24px;
138
+ letter-spacing: 1px;
139
+ }
140
+
141
+ /* Achievements container */
142
+ .achievements-wrap {
143
+ background: #0d1a1c;
144
+ border: 2px solid #1a2f33;
145
+ border-radius: 28px;
146
+ padding: 28px;
147
+ }
148
+
149
+ /* Single achievement row */
150
+ .achievement-row {
151
+ display: grid;
152
+ grid-template-columns: 210px 1fr;
153
+ gap: 32px;
154
+ align-items: center;
155
+ padding: 16px 0;
156
+ border-bottom: 2px solid #182a2d;
157
+ }
158
+ .achievement-row:last-child { border-bottom: none; }
159
+
160
+ /* Left badge blocks (image replacement) */
161
+ .badge {
162
+ width: 180px;
163
+ height: 180px;
164
+ border-radius: 32px;
165
+ display: flex;
166
+ flex-direction: column;
167
+ align-items: center;
168
+ justify-content: center;
169
+ color: #0d1a1c;
170
+ font-weight: 900;
171
+ }
172
+ .badge.gold { background: #f4c542; box-shadow: inset 0 -12px 0 #e1a92f; }
173
+ .badge.red { background: #f15b4a; box-shadow: inset 0 -12px 0 #ca3e33; color: #0d1a1c; }
174
+ .badge.green { background: #72d65d; box-shadow: inset 0 -12px 0 #57b947; color: #0d1a1c; }
175
+ .badge .level {
176
+ margin-top: 100px;
177
+ font-size: 40px;
178
+ color: #0d1a1c;
179
+ }
180
+
181
+ /* Right content for achievement */
182
+ .ach-content .title {
183
+ font-size: 56px;
184
+ font-weight: 800;
185
+ margin-bottom: 10px;
186
+ }
187
+ .ach-content .subtitle {
188
+ font-size: 40px;
189
+ color: #a4c2c8;
190
+ margin-bottom: 20px;
191
+ }
192
+ .blue-cta {
193
+ display: inline-block;
194
+ background: #63bbfb;
195
+ box-shadow: 0 10px 0 #3a86be;
196
+ color: #041217;
197
+ padding: 22px 36px;
198
+ border-radius: 22px;
199
+ font-size: 42px;
200
+ font-weight: 900;
201
+ }
202
+
203
+ /* Progress bars */
204
+ .progress-wrap {
205
+ display: flex;
206
+ align-items: center;
207
+ gap: 20px;
208
+ }
209
+ .progress {
210
+ flex: 1;
211
+ height: 48px;
212
+ background: #2a3b40;
213
+ border-radius: 26px;
214
+ position: relative;
215
+ overflow: hidden;
216
+ }
217
+ .progress .fill {
218
+ height: 100%;
219
+ width: 62%;
220
+ background: #f2c23c;
221
+ border-radius: 26px;
222
+ box-shadow: inset 0 -8px 0 #d6a730;
223
+ }
224
+ .progress .fill.short { width: 45%; }
225
+ .progress .track {
226
+ position: absolute; right: 0; top: 0; bottom: 0; width: 34%;
227
+ background: #1f2f33;
228
+ }
229
+ .progress-value {
230
+ font-size: 44px;
231
+ color: #b5cfd5;
232
+ min-width: 120px;
233
+ text-align: right;
234
+ }
235
+
236
+ /* View more row */
237
+ .view-more {
238
+ display: flex;
239
+ justify-content: space-between;
240
+ align-items: center;
241
+ color: #cfe4ea;
242
+ font-size: 48px;
243
+ padding: 26px 10px 6px;
244
+ }
245
+ .chev {
246
+ width: 24px; height: 24px; border-top: 6px solid #cfe4ea; border-right: 6px solid #cfe4ea; transform: rotate(45deg); margin-right: 6px;
247
+ }
248
+
249
+ /* Bottom navigation */
250
+ .bottom-nav {
251
+ position: absolute;
252
+ left: 0;
253
+ bottom: 0;
254
+ width: 100%;
255
+ height: 200px;
256
+ background: #0d1a1c;
257
+ border-top: 2px solid #1a2f33;
258
+ display: flex;
259
+ align-items: center;
260
+ justify-content: space-around;
261
+ }
262
+ .nav-item {
263
+ width: 110px; height: 110px; border-radius: 26px;
264
+ display: flex; align-items: center; justify-content: center;
265
+ background: transparent;
266
+ }
267
+ .nav-item.active { outline: 6px solid #2f4c53; border-radius: 28px; }
268
+
269
+ /* Simple SVG icon styling */
270
+ svg { display: block; }
271
+ .icon-fill { fill: #e5f3f6; }
272
+ .icon-accent { fill: #f2c23c; }
273
+ </style>
274
+ </head>
275
+ <body>
276
+ <div id="render-target">
277
+
278
+ <!-- Status Bar -->
279
+ <div class="status-bar">
280
+ <div>5:49</div>
281
+ <div class="status-right">
282
+ <div class="status-icon"></div>
283
+ <div class="status-icon"></div>
284
+ <div class="status-icon"></div>
285
+ <div style="display:flex; align-items:center;">
286
+ <div class="battery">
287
+ <div class="battery-fill"></div>
288
+ </div>
289
+ <div class="battery-text">96%</div>
290
+ </div>
291
+ </div>
292
+ </div>
293
+
294
+ <div class="content">
295
+
296
+ <!-- Find friends card -->
297
+ <div class="friends-card">
298
+ <div class="friends-row">
299
+ <div class="contact-icon"></div>
300
+ <div class="friends-text">
301
+ <h3>Find friends on Duolingo</h3>
302
+ <p>Sync your contacts to easily find people you know on Duolingo.</p>
303
+ <div class="primary-btn">SYNC CONTACTS</div>
304
+ </div>
305
+ </div>
306
+ </div>
307
+
308
+ <!-- Achievements -->
309
+ <div class="section-title">Achievements</div>
310
+
311
+ <div class="achievements-wrap">
312
+
313
+ <!-- Photogenic -->
314
+ <div class="achievement-row">
315
+ <div class="badge gold">
316
+ <div style="position:absolute; top:40px; width:120px; height:80px; background:#ffd86c; border-radius:16px;"></div>
317
+ <div class="level">LEVEL 1</div>
318
+ </div>
319
+ <div class="ach-content">
320
+ <div class="title">Photogenic</div>
321
+ <div>
322
+ <div class="blue-cta">CLAIM REWARD</div>
323
+ </div>
324
+ </div>
325
+ </div>
326
+
327
+ <!-- Wildfire -->
328
+ <div class="achievement-row">
329
+ <div class="badge red">
330
+ <div style="position:absolute; top:48px; width:100px; height:110px; background:#ffb099; border-radius:40px 40px 60px 60px;"></div>
331
+ <div class="level">LEVEL 1</div>
332
+ </div>
333
+ <div class="ach-content">
334
+ <div class="title">Wildfire</div>
335
+ <div class="subtitle">Reach a 3 day streak</div>
336
+ <div class="progress-wrap">
337
+ <div class="progress">
338
+ <div class="fill"></div>
339
+ <div class="track"></div>
340
+ </div>
341
+ <div class="progress-value">2/3</div>
342
+ </div>
343
+ </div>
344
+ </div>
345
+
346
+ <!-- Sage -->
347
+ <div class="achievement-row">
348
+ <div class="badge green">
349
+ <div style="position:absolute; top:40px; width:120px; height:80px; background:#a4e9a0; border-radius:14px;"></div>
350
+ <div class="level">LEVEL 1</div>
351
+ </div>
352
+ <div class="ach-content">
353
+ <div class="title">Sage</div>
354
+ <div class="subtitle">Earn 100 XP</div>
355
+ <div class="progress-wrap">
356
+ <div class="progress">
357
+ <div class="fill short"></div>
358
+ </div>
359
+ <div class="progress-value">50/100</div>
360
+ </div>
361
+ </div>
362
+ </div>
363
+
364
+ </div>
365
+
366
+ <!-- View more -->
367
+ <div class="view-more">
368
+ <div>View 10 more</div>
369
+ <div class="chev"></div>
370
+ </div>
371
+
372
+ </div>
373
+
374
+ <!-- Bottom Navigation -->
375
+ <div class="bottom-nav">
376
+ <div class="nav-item">
377
+ <svg width="84" height="84" viewBox="0 0 24 24">
378
+ <path class="icon-fill" d="M12 3l9 8h-3v9h-5v-6H11v6H6v-9H3z"/>
379
+ </svg>
380
+ </div>
381
+ <div class="nav-item">
382
+ <svg width="84" height="84" viewBox="0 0 24 24">
383
+ <path class="icon-fill" d="M12 2l7 5v6c0 4.418-3.582 8-8 8s-8-3.582-8-8V7l9-5z"/>
384
+ </svg>
385
+ </div>
386
+ <div class="nav-item active">
387
+ <svg width="84" height="84" viewBox="0 0 24 24">
388
+ <circle class="icon-fill" cx="12" cy="8" r="4"/>
389
+ <path class="icon-fill" d="M4 22c0-4.418 3.582-8 8-8s8 3.582 8 8"/>
390
+ </svg>
391
+ </div>
392
+ <div class="nav-item">
393
+ <svg width="84" height="84" viewBox="0 0 24 24">
394
+ <path class="icon-fill" d="M4 7h16v12H4z"/>
395
+ <path class="icon-accent" d="M8 11h8v4H8z"/>
396
+ </svg>
397
+ </div>
398
+ <div class="nav-item">
399
+ <svg width="84" height="84" viewBox="0 0 24 24">
400
+ <path class="icon-fill" d="M12 2a6 6 0 016 6v4l2 3H4l2-3V8a6 6 0 016-6z"/>
401
+ <circle class="icon-accent" cx="12" cy="20" r="2"/>
402
+ </svg>
403
+ </div>
404
+ </div>
405
+
406
+ </div>
407
+ </body>
408
+ </html>
code/10176/10176_1.html ADDED
@@ -0,0 +1,433 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Duolingo Profile Mock</title>
5
+ <style>
6
+ body { margin: 0; padding: 0; background: transparent; }
7
+ #render-target {
8
+ width: 1080px;
9
+ height: 2400px;
10
+ position: relative;
11
+ overflow: hidden;
12
+ background: #0f1f25;
13
+ color: #e8f3f6;
14
+ font-family: "Segoe UI", Arial, sans-serif;
15
+ }
16
+
17
+ /* Status bar */
18
+ .status-bar {
19
+ position: absolute;
20
+ top: 0;
21
+ left: 0;
22
+ width: 1080px;
23
+ height: 96px;
24
+ padding: 0 36px;
25
+ box-sizing: border-box;
26
+ display: flex;
27
+ align-items: center;
28
+ justify-content: space-between;
29
+ color: #dfe8ec;
30
+ font-size: 34px;
31
+ letter-spacing: 0.5px;
32
+ }
33
+ .status-right {
34
+ display: flex;
35
+ align-items: center;
36
+ gap: 22px;
37
+ }
38
+ .dot { width: 10px; height: 10px; background:#cfe5ee; border-radius: 50%; display:inline-block; }
39
+
40
+ /* Header / avatar area */
41
+ .header-area {
42
+ position: absolute;
43
+ top: 96px;
44
+ left: 0;
45
+ width: 1080px;
46
+ height: 520px;
47
+ background: #172b31;
48
+ }
49
+ .gear {
50
+ position: absolute;
51
+ top: 70px;
52
+ right: 64px;
53
+ width: 64px;
54
+ height: 64px;
55
+ opacity: 0.95;
56
+ }
57
+ .avatar-wrap {
58
+ position: absolute;
59
+ left: 50%;
60
+ top: 40px;
61
+ transform: translateX(-50%);
62
+ width: 420px;
63
+ height: 420px;
64
+ border-radius: 220px;
65
+ border: 4px dashed #5f8692;
66
+ background: #2b4b56;
67
+ display: flex;
68
+ align-items: center;
69
+ justify-content: center;
70
+ color: #b8d1da;
71
+ box-shadow: inset 0 0 0 6px rgba(255,255,255,0.02);
72
+ }
73
+ .avatar-wrap span {
74
+ font-size: 28px;
75
+ opacity: 0.9;
76
+ }
77
+
78
+ /* Profile text section */
79
+ .content {
80
+ position: absolute;
81
+ top: 616px;
82
+ left: 0;
83
+ width: 100%;
84
+ padding: 0 48px;
85
+ box-sizing: border-box;
86
+ }
87
+ .name {
88
+ font-size: 62px;
89
+ font-weight: 800;
90
+ margin: 0 0 8px 0;
91
+ color: #f2fbff;
92
+ }
93
+ .sub {
94
+ font-size: 34px;
95
+ color: #b4c7cd;
96
+ margin: 8px 0;
97
+ }
98
+ .flag-row {
99
+ position: absolute;
100
+ right: 48px;
101
+ top: -14px;
102
+ display: flex;
103
+ gap: 18px;
104
+ }
105
+ .flag {
106
+ width: 90px;
107
+ height: 60px;
108
+ border-radius: 12px;
109
+ border: 2px solid #25424a;
110
+ overflow: hidden;
111
+ }
112
+ .flag.br { background:
113
+ radial-gradient(circle at 55% 55%, #0f4aa1 0 26px, transparent 27px) ,
114
+ linear-gradient(#009b3a,#009b3a);
115
+ background-size: 100% 100%;
116
+ position: relative;
117
+ }
118
+ .flag.br::after{ content:""; position:absolute; left:8px; right:8px; top:16px; bottom:16px;
119
+ transform: rotate(25deg);
120
+ background: #ffdf00; clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
121
+ opacity: 0.9;
122
+ }
123
+ .flag.fr { background: linear-gradient(90deg,#2552ff 0 33%,#ffffff 33% 66%,#ff4b4b 66%); }
124
+
125
+ .follow-row {
126
+ display: flex;
127
+ gap: 54px;
128
+ margin: 20px 0 28px 0;
129
+ font-size: 36px;
130
+ color: #cfe0e6;
131
+ }
132
+
133
+ /* Add friends */
134
+ .friends-row {
135
+ display: flex;
136
+ align-items: stretch;
137
+ gap: 22px;
138
+ margin-top: 12px;
139
+ }
140
+ .btn-add {
141
+ flex: 1;
142
+ background: #14262b;
143
+ border: 1px solid #29414a;
144
+ height: 130px;
145
+ border-radius: 28px;
146
+ display: flex;
147
+ align-items: center;
148
+ padding: 0 36px;
149
+ box-sizing: border-box;
150
+ gap: 22px;
151
+ }
152
+ .btn-add .label {
153
+ font-size: 42px;
154
+ letter-spacing: 1px;
155
+ color: #9ec9da;
156
+ font-weight: 800;
157
+ }
158
+ .share-btn {
159
+ width: 140px;
160
+ background: #14262b;
161
+ border: 1px solid #29414a;
162
+ border-radius: 28px;
163
+ display: flex;
164
+ align-items: center;
165
+ justify-content: center;
166
+ }
167
+
168
+ .divider {
169
+ width: 100%;
170
+ height: 1px;
171
+ background:#24373f;
172
+ margin: 36px 0 18px 0;
173
+ }
174
+
175
+ .section-title {
176
+ font-size: 54px;
177
+ font-weight: 800;
178
+ margin: 18px 0 24px 0;
179
+ }
180
+
181
+ /* Stats grid */
182
+ .stats-grid {
183
+ display: grid;
184
+ grid-template-columns: 1fr 1fr;
185
+ gap: 26px;
186
+ }
187
+ .stat-card {
188
+ background: #132227;
189
+ border: 1px solid #29424a;
190
+ height: 180px;
191
+ border-radius: 28px;
192
+ padding: 26px;
193
+ box-sizing: border-box;
194
+ display: flex;
195
+ align-items: center;
196
+ gap: 28px;
197
+ }
198
+ .stat-value {
199
+ font-size: 54px;
200
+ font-weight: 800;
201
+ margin-bottom: 4px;
202
+ }
203
+ .stat-label {
204
+ font-size: 32px;
205
+ color: #a8bec6;
206
+ }
207
+
208
+ /* Friend finder card */
209
+ .finder-card {
210
+ margin-top: 28px;
211
+ background: #132a31;
212
+ border: 1px solid #29414a;
213
+ border-radius: 28px;
214
+ padding: 26px;
215
+ display: flex;
216
+ gap: 26px;
217
+ align-items: center;
218
+ }
219
+ .book-img {
220
+ width: 160px;
221
+ height: 160px;
222
+ background: #E0E0E0;
223
+ border: 1px solid #BDBDBD;
224
+ border-radius: 16px;
225
+ color: #757575;
226
+ display: flex;
227
+ align-items: center;
228
+ justify-content: center;
229
+ text-align: center;
230
+ font-size: 26px;
231
+ line-height: 1.1;
232
+ }
233
+ .finder-card h3 {
234
+ margin: 0 0 6px 0;
235
+ font-size: 46px;
236
+ }
237
+ .finder-card p {
238
+ margin: 0;
239
+ color: #b4c7cd;
240
+ font-size: 32px;
241
+ }
242
+
243
+ /* Bottom tab bar */
244
+ .tabbar {
245
+ position: absolute;
246
+ bottom: 0;
247
+ left: 0;
248
+ width: 1080px;
249
+ height: 150px;
250
+ background: #0c1a1f;
251
+ border-top: 1px solid #20343b;
252
+ display: flex;
253
+ align-items: center;
254
+ justify-content: space-around;
255
+ padding-bottom: 6px;
256
+ box-sizing: border-box;
257
+ }
258
+ .tab {
259
+ width: 120px;
260
+ height: 120px;
261
+ border-radius: 26px;
262
+ display: flex;
263
+ align-items: center;
264
+ justify-content: center;
265
+ }
266
+ .tab.active {
267
+ background: rgba(67,141,169,0.25);
268
+ border: 1px solid #2d4b55;
269
+ }
270
+
271
+ /* Simple icon styling */
272
+ svg { display: block; }
273
+
274
+ </style>
275
+ </head>
276
+ <body>
277
+ <div id="render-target">
278
+
279
+ <!-- Status bar -->
280
+ <div class="status-bar">
281
+ <div>5:50</div>
282
+ <div class="status-right">
283
+ <!-- Simple placeholders for status icons -->
284
+ <span class="dot"></span>
285
+ <span class="dot" style="width:14px;height:14px;"></span>
286
+ <span class="dot"></span>
287
+ <div style="display:flex;align-items:center;gap:6px;">
288
+ <svg width="30" height="18" viewBox="0 0 30 18"><rect x="1" y="4" width="22" height="12" rx="3" fill="none" stroke="#dfe8ec" stroke-width="2"></rect><rect x="25" y="7" width="4" height="6" rx="1" fill="#dfe8ec"></rect></svg>
289
+ <div>96%</div>
290
+ </div>
291
+ </div>
292
+ </div>
293
+
294
+ <!-- Header / avatar area -->
295
+ <div class="header-area">
296
+ <!-- Settings gear -->
297
+ <svg class="gear" viewBox="0 0 24 24" fill="none" stroke="#e6f3f6" stroke-width="2">
298
+ <circle cx="12" cy="12" r="3"></circle>
299
+ <path d="M19.4 15a1 1 0 0 0 .2 1.1l.1.2a1 1 0 0 1-1.2 1.6l-.2-.1a1 1 0 0 0-1.2.2l-.6.6a1 1 0 0 1-1.6-1.2l.1-.2a1 1 0 0 0-.2-1.2l-.4-.2a1 1 0 0 0-1.1 0l-.4.2a1 1 0 0 0-.2 1.2l.1.2a1 1 0 0 1-1.6 1.2l-.6-.6a1 1 0 0 0-1.2-.2l-.2.1a1 1 0 0 1-1.2-1.6l.1-.2a1 1 0 0 0 .2-1.1l-.2-.4a1 1 0 0 0-1.2-.5l-.2.1A1 1 0 0 1 3 12l.2-.2a1 1 0 0 0 .5-1.2l-.2-.4a1 1 0 0 0-1.1-.2l-.2.1A1 1 0 1 1 1 7.9l.2-.1a1 1 0 0 0 1.2-.2l.6-.6A1 1 0 0 1 4.6 9l-.1.2a1 1 0 0 0 .2 1.2l.4.2a1 1 0 0 0 1.1 0l.4-.2a1 1 0 0 0 .2-1.2l-.1-.2A1 1 0 0 1 8.3 7l.6.6a1 1 0 0 0 1.2.2l.2-.1A1 1 0 1 1 12 10l-.2.1a1 1 0 0 0-.2 1.1l.2.4a1 1 0 0 0 1.2.5l.2-.1A1 1 0 0 1 16 13.7l-.2.2a1 1 0 0 0-.5 1.2l.2.4a1 1 0 0 0 1.1.2l.2-.1A1 1 0 0 1 19.4 15z"></path>
300
+ </svg>
301
+
302
+ <div class="avatar-wrap">
303
+ <span>[IMG: Silhouette Avatar]</span>
304
+ </div>
305
+ </div>
306
+
307
+ <!-- Content -->
308
+ <div class="content">
309
+ <div class="flag-row">
310
+ <div class="flag br" title="Brazil"></div>
311
+ <div class="flag fr" title="France"></div>
312
+ </div>
313
+ <h1 class="name">Fabio Teixeira</h1>
314
+ <div class="sub">FabioTeixe5546</div>
315
+ <div class="sub">Joined October 2023</div>
316
+
317
+ <div class="follow-row">
318
+ <div>0 Following</div>
319
+ <div>0 Followers</div>
320
+ </div>
321
+
322
+ <div class="friends-row">
323
+ <div class="btn-add">
324
+ <svg width="60" height="60" viewBox="0 0 24 24" fill="none" stroke="#9ec9da" stroke-width="2">
325
+ <circle cx="9" cy="8" r="4"></circle>
326
+ <path d="M3 20c0-3.3 2.7-6 6-6"></path>
327
+ <path d="M16 11v4"></path>
328
+ <path d="M14 13h4"></path>
329
+ </svg>
330
+ <div class="label">ADD FRIENDS</div>
331
+ </div>
332
+ <div class="share-btn">
333
+ <svg width="54" height="54" viewBox="0 0 24 24" fill="none" stroke="#9ec9da" stroke-width="2">
334
+ <path d="M4 13v6a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-6"></path>
335
+ <path d="M12 3v12"></path>
336
+ <path d="M7 8l5-5 5 5"></path>
337
+ </svg>
338
+ </div>
339
+ </div>
340
+
341
+ <div class="divider"></div>
342
+
343
+ <div class="section-title">Statistics</div>
344
+
345
+ <div class="stats-grid">
346
+ <div class="stat-card">
347
+ <svg width="64" height="64" viewBox="0 0 24 24" fill="#ffb24c">
348
+ <path d="M13 3s-1 2-1 3.5S14 9 14 11s-1.5 4-5 4c-2.2 0-4-1.8-4-4 0-2.7 2-4 2-4s-.1 1.7 1 2c.7.2 2-3 5-6z"></path>
349
+ <path d="M9 21c3.5 0 6-2.2 6-5 0-2-1.6-3.1-1.6-3.1-.2 2.6-2.1 3.8-4.4 3.8-1.1 0-1.9-.3-2.6-.8C6.5 18.5 7.4 21 9 21z" fill="#ffcc66"></path>
350
+ </svg>
351
+ <div>
352
+ <div class="stat-value">2</div>
353
+ <div class="stat-label">Day streak</div>
354
+ </div>
355
+ </div>
356
+
357
+ <div class="stat-card">
358
+ <svg width="64" height="64" viewBox="0 0 24 24" fill="#ffe04a">
359
+ <path d="M13 2L3 14h7l-1 8 10-12h-7l1-8z"></path>
360
+ </svg>
361
+ <div>
362
+ <div class="stat-value">50</div>
363
+ <div class="stat-label">Total XP</div>
364
+ </div>
365
+ </div>
366
+
367
+ <div class="stat-card">
368
+ <svg width="64" height="64" viewBox="0 0 24 24" fill="none" stroke="#9ec9da" stroke-width="2">
369
+ <path d="M12 2l7 4v6c0 5-3.5 8.5-7 10-3.5-1.5-7-5-7-10V6l7-4z"></path>
370
+ </svg>
371
+ <div>
372
+ <div class="stat-value" style="font-size:46px">No Current</div>
373
+ <div class="stat-label">Current league</div>
374
+ </div>
375
+ </div>
376
+
377
+ <div class="stat-card">
378
+ <svg width="64" height="64" viewBox="0 0 24 24" fill="none" stroke="#9ec9da" stroke-width="2">
379
+ <circle cx="12" cy="8" r="4"></circle>
380
+ <path d="M6 22l6-3 6 3-2-7 5-4h-6l-3-6-3 6H3l5 4-2 7z"></path>
381
+ </svg>
382
+ <div>
383
+ <div class="stat-value">0</div>
384
+ <div class="stat-label">Top 3 finishes</div>
385
+ </div>
386
+ </div>
387
+ </div>
388
+
389
+ <div class="finder-card">
390
+ <div class="book-img">[IMG: Contact Book]</div>
391
+ <div>
392
+ <h3>Find friends on Duolingo</h3>
393
+ <p>Sync your contacts to easily find people you know on Duolingo.</p>
394
+ </div>
395
+ </div>
396
+
397
+ </div>
398
+
399
+ <!-- Bottom tab bar -->
400
+ <div class="tabbar">
401
+ <div class="tab">
402
+ <svg width="72" height="72" viewBox="0 0 24 24" fill="none" stroke="#f1f7f9" stroke-width="2">
403
+ <path d="M3 11l9-8 9 8v9a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2v-5H9v5a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-9z"></path>
404
+ </svg>
405
+ </div>
406
+ <div class="tab">
407
+ <svg width="72" height="72" viewBox="0 0 24 24" fill="none" stroke="#dfe8ec" stroke-width="2">
408
+ <path d="M12 2l8 4v6c0 5-3.5 8.5-8 10-4.5-1.5-8-5-8-10V6l8-4z"></path>
409
+ </svg>
410
+ </div>
411
+ <div class="tab active">
412
+ <svg width="72" height="72" viewBox="0 0 24 24" fill="none" stroke="#9ec9da" stroke-width="2">
413
+ <circle cx="12" cy="8" r="4"></circle>
414
+ <path d="M4 22c0-4.4 3.6-8 8-8s8 3.6 8 8"></path>
415
+ </svg>
416
+ </div>
417
+ <div class="tab">
418
+ <svg width="72" height="72" viewBox="0 0 24 24" fill="none" stroke="#f1f7f9" stroke-width="2">
419
+ <rect x="4" y="4" width="16" height="12" rx="2"></rect>
420
+ <path d="M8 16v4l4-2 4 2v-4"></path>
421
+ </svg>
422
+ </div>
423
+ <div class="tab">
424
+ <svg width="72" height="72" viewBox="0 0 24 24" fill="none" stroke="#f1f7f9" stroke-width="2">
425
+ <path d="M10 21a2 2 0 1 0 4 0"></path>
426
+ <path d="M18 8a6 6 0 1 0-12 0c0 3-1 4-1 6a7 7 0 0 0 14 0c0-2-1-3-1-6z"></path>
427
+ </svg>
428
+ </div>
429
+ </div>
430
+
431
+ </div>
432
+ </body>
433
+ </html>
code/10176/10176_2.html ADDED
@@ -0,0 +1,281 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Account Settings Mock</title>
5
+ <style>
6
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
7
+ #render-target {
8
+ width: 1080px;
9
+ height: 2400px;
10
+ position: relative;
11
+ overflow: hidden;
12
+ background: #0f1920;
13
+ color: #E6EDF3;
14
+ }
15
+
16
+ /* Status bar */
17
+ .status-bar {
18
+ position: absolute;
19
+ top: 0;
20
+ left: 0;
21
+ right: 0;
22
+ height: 80px;
23
+ padding: 0 36px;
24
+ display: flex;
25
+ align-items: center;
26
+ justify-content: space-between;
27
+ color: #DDE6EC;
28
+ font-size: 34px;
29
+ opacity: 0.9;
30
+ }
31
+ .status-right {
32
+ display: flex;
33
+ gap: 18px;
34
+ align-items: center;
35
+ }
36
+ .icon-dot {
37
+ width: 10px;
38
+ height: 10px;
39
+ background: #C9D3DA;
40
+ border-radius: 50%;
41
+ }
42
+ .battery {
43
+ width: 48px;
44
+ height: 24px;
45
+ border: 3px solid #C9D3DA;
46
+ border-radius: 6px;
47
+ position: relative;
48
+ }
49
+ .battery::after {
50
+ content: "";
51
+ position: absolute;
52
+ right: -8px;
53
+ top: 5px;
54
+ width: 6px;
55
+ height: 14px;
56
+ background: #C9D3DA;
57
+ border-radius: 2px;
58
+ }
59
+ .battery-level {
60
+ position: absolute;
61
+ left: 3px;
62
+ top: 3px;
63
+ bottom: 3px;
64
+ width: 70%;
65
+ background: #C9D3DA;
66
+ border-radius: 2px;
67
+ }
68
+
69
+ /* App header */
70
+ .app-bar {
71
+ position: absolute;
72
+ top: 80px;
73
+ left: 0;
74
+ right: 0;
75
+ height: 120px;
76
+ display: flex;
77
+ align-items: center;
78
+ justify-content: center;
79
+ color: #CFE3EF;
80
+ }
81
+ .app-title {
82
+ font-weight: 700;
83
+ font-size: 56px;
84
+ letter-spacing: 1px;
85
+ }
86
+ .action-save {
87
+ position: absolute;
88
+ right: 36px;
89
+ top: 34px;
90
+ color: #59A7FF;
91
+ font-weight: 700;
92
+ font-size: 48px;
93
+ letter-spacing: 1px;
94
+ }
95
+ .action-close {
96
+ position: absolute;
97
+ left: 24px;
98
+ top: 34px;
99
+ width: 64px;
100
+ height: 64px;
101
+ }
102
+
103
+ /* Content */
104
+ .content {
105
+ position: absolute;
106
+ top: 220px;
107
+ left: 0;
108
+ right: 0;
109
+ bottom: 0;
110
+ padding: 0 48px 48px 48px;
111
+ overflow: hidden;
112
+ }
113
+
114
+ .avatar-wrap {
115
+ display: flex;
116
+ flex-direction: column;
117
+ align-items: center;
118
+ margin-top: 40px;
119
+ margin-bottom: 40px;
120
+ }
121
+ .avatar {
122
+ width: 240px;
123
+ height: 240px;
124
+ border-radius: 50%;
125
+ background: #523B34;
126
+ display: flex;
127
+ align-items: center;
128
+ justify-content: center;
129
+ font-size: 140px;
130
+ font-weight: 700;
131
+ color: #FFFFFF;
132
+ box-shadow: 0 0 0 6px rgba(255,255,255,0.04) inset;
133
+ }
134
+ .change-avatar {
135
+ margin-top: 28px;
136
+ color: #5AB0FF;
137
+ font-weight: 800;
138
+ font-size: 44px;
139
+ letter-spacing: 1px;
140
+ }
141
+
142
+ .label {
143
+ color: #8CA1AD;
144
+ font-size: 38px;
145
+ margin: 28px 8px 16px 8px;
146
+ }
147
+ .input {
148
+ width: 100%;
149
+ height: 120px;
150
+ border-radius: 28px;
151
+ background: #15232A;
152
+ border: 2px solid #23343D;
153
+ color: #DDE6EC;
154
+ font-size: 46px;
155
+ padding: 0 36px;
156
+ display: flex;
157
+ align-items: center;
158
+ box-sizing: border-box;
159
+ }
160
+ .dot-pass {
161
+ letter-spacing: 8px;
162
+ }
163
+
164
+ .btn-outline {
165
+ width: 100%;
166
+ height: 120px;
167
+ border-radius: 28px;
168
+ background: #132127;
169
+ border: 2px solid #2B3C45;
170
+ color: #5AB0FF;
171
+ font-size: 44px;
172
+ font-weight: 800;
173
+ letter-spacing: 2px;
174
+ display: flex;
175
+ align-items: center;
176
+ justify-content: center;
177
+ margin-top: 26px;
178
+ }
179
+
180
+ .section-title {
181
+ margin-top: 36px;
182
+ font-size: 58px;
183
+ font-weight: 800;
184
+ color: #DDE6EC;
185
+ }
186
+
187
+ .row {
188
+ margin-top: 28px;
189
+ display: flex;
190
+ align-items: center;
191
+ justify-content: space-between;
192
+ }
193
+ .row .title {
194
+ font-size: 48px;
195
+ color: #E3EDF4;
196
+ }
197
+
198
+ /* Toggle */
199
+ .toggle {
200
+ width: 220px;
201
+ height: 88px;
202
+ background: #3FA2FF;
203
+ border-radius: 44px;
204
+ position: relative;
205
+ box-shadow: inset 0 0 0 6px rgba(255,255,255,0.06);
206
+ }
207
+ .toggle .knob {
208
+ position: absolute;
209
+ right: 4px;
210
+ top: 4px;
211
+ width: 80px;
212
+ height: 80px;
213
+ background: #FFFFFF;
214
+ border-radius: 50%;
215
+ }
216
+
217
+ /* subtle separators */
218
+ .spacer { height: 10px; }
219
+ </style>
220
+ </head>
221
+ <body>
222
+ <div id="render-target">
223
+
224
+ <!-- Status bar -->
225
+ <div class="status-bar">
226
+ <div>5:52</div>
227
+ <div class="status-right">
228
+ <div class="icon-dot"></div>
229
+ <div class="icon-dot"></div>
230
+ <div class="battery">
231
+ <div class="battery-level"></div>
232
+ </div>
233
+ <div style="font-size:32px;">96%</div>
234
+ </div>
235
+ </div>
236
+
237
+ <!-- App header -->
238
+ <div class="app-bar">
239
+ <div class="app-title">Account</div>
240
+ <div class="action-save">SAVE</div>
241
+ <svg class="action-close" viewBox="0 0 24 24">
242
+ <path d="M5 5 L19 19 M19 5 L5 19" stroke="#CFE3EF" stroke-width="2.5" stroke-linecap="round"/>
243
+ </svg>
244
+ </div>
245
+
246
+ <!-- Content area -->
247
+ <div class="content">
248
+ <div class="avatar-wrap">
249
+ <div class="avatar">F</div>
250
+ <div class="change-avatar">CHANGE AVATAR</div>
251
+ </div>
252
+
253
+ <div class="label">Name</div>
254
+ <div class="input">Fabio Teixeira</div>
255
+
256
+ <div class="label">Username</div>
257
+ <div class="input">FabioTeixe5546</div>
258
+
259
+ <div class="label">Email</div>
260
+ <div class="input">fabioteixeira00123@gmail.com</div>
261
+
262
+ <div class="label">Password</div>
263
+ <div class="input dot-pass">••••••••</div>
264
+
265
+ <div class="btn-outline">DUOLINGO FOR SCHOOLS</div>
266
+ <div class="btn-outline">SIGN OUT</div>
267
+
268
+ <div class="section-title">General</div>
269
+
270
+ <div class="row">
271
+ <div class="title">Sound effects</div>
272
+ <div class="toggle">
273
+ <div class="knob"></div>
274
+ </div>
275
+ </div>
276
+
277
+ </div>
278
+
279
+ </div>
280
+ </body>
281
+ </html>
code/10176/10176_3.html ADDED
@@ -0,0 +1,209 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
5
+ <title>Account Settings Mock</title>
6
+ <style>
7
+ body { margin:0; padding:0; background:transparent; font-family: Arial, Helvetica, sans-serif; }
8
+ #render-target{
9
+ width:1080px; height:2400px;
10
+ position:relative; overflow:hidden;
11
+ background:#0f171b; color:#e6f1f5;
12
+ }
13
+
14
+ /* Status bar */
15
+ .status-bar{
16
+ position:absolute; left:0; top:0; width:100%; height:70px;
17
+ padding:0 32px; box-sizing:border-box;
18
+ display:flex; align-items:center; justify-content:space-between;
19
+ color:#d8e6ee; font-size:32px; letter-spacing:1px;
20
+ opacity:0.9;
21
+ }
22
+ .status-left{ display:flex; align-items:center; gap:16px; }
23
+ .dot{ width:8px; height:8px; background:#8aa2ad; border-radius:50%; display:inline-block; }
24
+ .status-right{ display:flex; align-items:center; gap:18px; }
25
+ .battery{
26
+ width:54px; height:24px; border:3px solid #d8e6ee; border-radius:5px; position:relative;
27
+ }
28
+ .battery::after{
29
+ content:""; position:absolute; right:-8px; top:6px; width:6px; height:12px; background:#d8e6ee; border-radius:2px;
30
+ }
31
+ .battery .level{ position:absolute; left:2px; top:2px; bottom:2px; width:70%; background:#d8e6ee; }
32
+ .wifi{ width:26px; height:26px; border:3px solid #d8e6ee; border-radius:50%; border-top-color:transparent; border-left-color:transparent; transform:rotate(45deg); box-sizing:border-box; }
33
+
34
+ /* Header */
35
+ .header{
36
+ position:absolute; left:0; top:70px; width:100%; height:110px;
37
+ display:flex; align-items:center; justify-content:center;
38
+ }
39
+ .header h1{
40
+ margin:0; font-size:54px; font-weight:800; letter-spacing:1px; color:#cfe7f6;
41
+ }
42
+ .save-btn{
43
+ position:absolute; right:32px; top:28px;
44
+ font-size:42px; color:#6fc3ff; font-weight:800; letter-spacing:1px;
45
+ }
46
+ .close{
47
+ position:absolute; left:26px; top:26px; width:72px; height:72px; display:flex; align-items:center; justify-content:center;
48
+ }
49
+ .close svg{ width:42px; height:42px; stroke:#a7c3d2; stroke-width:6; fill:none; }
50
+
51
+ /* Content area */
52
+ .content{
53
+ position:absolute; left:0; top:190px; right:0; bottom:0;
54
+ padding:24px 32px 32px; box-sizing:border-box;
55
+ overflow:hidden;
56
+ }
57
+
58
+ .label{
59
+ font-size:42px; color:#9db7c3; margin:26px 8px 18px;
60
+ }
61
+ .input{
62
+ height:120px; border-radius:32px;
63
+ background:#1a242a; border:2px solid #2a3a41; color:#eaf6ff;
64
+ display:flex; align-items:center; padding:0 30px; font-size:40px; letter-spacing:0.5px;
65
+ box-sizing:border-box;
66
+ }
67
+
68
+ .line-btn{
69
+ height:118px; border-radius:30px; margin-top:26px;
70
+ border:3px solid #2b4e5f; color:#78c6ff; font-weight:800; letter-spacing:2px;
71
+ display:flex; align-items:center; justify-content:center; font-size:40px; background:#101a1e;
72
+ }
73
+
74
+ .section-title{
75
+ font-size:58px; font-weight:800; margin:56px 8px 24px; color:#e5f2fb;
76
+ }
77
+
78
+ .card{
79
+ background:#0f191d; border:3px solid #273940; border-radius:34px;
80
+ padding:10px 0; box-sizing:border-box;
81
+ }
82
+
83
+ .row{
84
+ display:flex; align-items:center; justify-content:space-between;
85
+ padding:36px 28px; box-sizing:border-box;
86
+ border-bottom:1px solid #213239;
87
+ }
88
+ .row:last-child{ border-bottom:none; }
89
+ .row .name{ font-size:44px; color:#e8f4fb; }
90
+ .caption{ font-size:44px; color:#79c7ff; font-weight:700; }
91
+
92
+ /* Toggle mock similar to screenshot (pill + small rounded square) */
93
+ .toggle-wrap{ display:flex; align-items:center; gap:24px; }
94
+ .toggle{
95
+ width:190px; height:88px; background:#79c9ff; border-radius:50px; position:relative;
96
+ box-shadow: inset 0 0 0 6px rgba(20,40,50,0.25);
97
+ }
98
+ .toggle::before{
99
+ content:""; position:absolute; right:10px; top:10px; width:68px; height:68px; background:#e9f7ff; border-radius:50%;
100
+ box-shadow:0 2px 0 rgba(0,0,0,0.25);
101
+ }
102
+ .toggle-square{
103
+ width:110px; height:90px; border-radius:22px; border:8px solid #79c9ff; background:#0f171b;
104
+ }
105
+
106
+ .help{
107
+ margin-top:30px;
108
+ height:118px; border-radius:30px;
109
+ border:3px solid #2b4e5f; color:#78c6ff; font-weight:800; letter-spacing:2px;
110
+ display:flex; align-items:center; justify-content:center; font-size:42px; background:#101a1e;
111
+ }
112
+
113
+ .bottom-area{
114
+ position:absolute; left:0; right:0; bottom:18px;
115
+ padding:0 32px; box-sizing:border-box;
116
+ }
117
+ .manage{
118
+ height:124px; border-radius:34px; border:3px solid #2b4e5f;
119
+ display:flex; align-items:center; justify-content:center;
120
+ color:#78c6ff; font-size:48px; font-weight:800; letter-spacing:2px; background:#0f191d;
121
+ }
122
+
123
+ </style>
124
+ </head>
125
+ <body>
126
+ <div id="render-target">
127
+
128
+ <!-- Status bar -->
129
+ <div class="status-bar">
130
+ <div class="status-left">
131
+ <span>5:53</span>
132
+ <span class="dot"></span>
133
+ <span class="dot"></span>
134
+ <span class="dot"></span>
135
+ </div>
136
+ <div class="status-right">
137
+ <div class="wifi"></div>
138
+ <span>96%</span>
139
+ <div class="battery"><div class="level"></div></div>
140
+ </div>
141
+ </div>
142
+
143
+ <!-- Header -->
144
+ <div class="header">
145
+ <div class="close">
146
+ <svg viewBox="0 0 24 24">
147
+ <path d="M4 4 L20 20 M20 4 L4 20"></path>
148
+ </svg>
149
+ </div>
150
+ <h1>Account</h1>
151
+ <div class="save-btn">SAVE</div>
152
+ </div>
153
+
154
+ <!-- Content -->
155
+ <div class="content">
156
+
157
+ <div class="label">Email</div>
158
+ <div class="input">fabioteixeira00123@gmail.com</div>
159
+
160
+ <div class="label">Password</div>
161
+ <div class="input">••••••••</div>
162
+
163
+ <div class="line-btn">DUOLINGO FOR SCHOOLS</div>
164
+ <div class="line-btn">SIGN OUT</div>
165
+
166
+ <div class="section-title">General</div>
167
+
168
+ <div class="card">
169
+ <div class="row">
170
+ <div class="name">Sound effects</div>
171
+ <div class="toggle-wrap">
172
+ <div class="toggle"></div>
173
+ <div class="toggle-square"></div>
174
+ </div>
175
+ </div>
176
+
177
+ <div class="row">
178
+ <div class="name">Dark mode</div>
179
+ <div class="caption">System Default</div>
180
+ </div>
181
+
182
+ <div class="row">
183
+ <div class="name">Friends Quest</div>
184
+ <div class="toggle-wrap">
185
+ <div class="toggle"></div>
186
+ <div class="toggle-square"></div>
187
+ </div>
188
+ </div>
189
+
190
+ <div class="row">
191
+ <div class="name">Motivational messages</div>
192
+ <div class="toggle-wrap">
193
+ <div class="toggle"></div>
194
+ <div class="toggle-square"></div>
195
+ </div>
196
+ </div>
197
+ </div>
198
+
199
+ <div class="help">HELP CENTER</div>
200
+
201
+ </div>
202
+
203
+ <div class="bottom-area">
204
+ <div class="manage">MANAGE COURSES</div>
205
+ </div>
206
+
207
+ </div>
208
+ </body>
209
+ </html>
code/10176/10176_4.html ADDED
@@ -0,0 +1,143 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
5
+ <title>Settings UI Mock</title>
6
+ <style>
7
+ body { margin:0; padding:0; background:transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, Helvetica, sans-serif; }
8
+ #render-target{
9
+ width:1080px; height:2400px; position:relative; overflow:hidden;
10
+ background:#0f171b; color:#d6e2ea;
11
+ }
12
+
13
+ /* top bar */
14
+ .topbar{
15
+ position:absolute; left:0; top:0; width:100%; height:150px;
16
+ display:block; border-bottom:1px solid #1f2a31;
17
+ }
18
+ .topbar .title{
19
+ position:absolute; left:50%; top:50%; transform:translate(-50%,-50%);
20
+ font-weight:700; font-size:54px; letter-spacing:0.5px; color:#dce8ef;
21
+ }
22
+ .icon-btn{
23
+ position:absolute; top:48px; width:64px; height:64px; display:flex;
24
+ align-items:center; justify-content:center; cursor:default;
25
+ }
26
+ .icon-left{ left:34px; }
27
+ .icon-right{ right:34px; color:#6ec0ff; font-weight:800; font-size:46px; letter-spacing:2px; }
28
+
29
+ /* content area */
30
+ .content{
31
+ position:absolute; left:0; right:0; top:150px; bottom:0;
32
+ overflow-y:auto; padding:24px 36px 120px;
33
+ }
34
+
35
+ .label{
36
+ font-size:34px; color:#9eb1bd; margin:32px 10px 12px;
37
+ text-transform:capitalize; letter-spacing:1px;
38
+ }
39
+ .input{
40
+ background:#1a242a; border:2px solid #2d3a43; border-radius:30px;
41
+ padding:32px; color:#eaf3f9; font-size:44px; height:106px;
42
+ display:flex; align-items:center;
43
+ }
44
+
45
+ .wide-btn{
46
+ margin-top:26px; background:#162028; border:2px solid #2b3a43;
47
+ color:#78c2ff; border-radius:30px; height:112px;
48
+ display:flex; align-items:center; justify-content:center;
49
+ font-size:42px; font-weight:700; letter-spacing:3px;
50
+ }
51
+
52
+ .section-title{
53
+ margin:44px 10px 22px; font-size:64px; font-weight:800; color:#e7f0f6;
54
+ }
55
+
56
+ .card{
57
+ background:#111b21; border:2px solid #26343c; border-radius:34px;
58
+ overflow:hidden;
59
+ }
60
+ .row{
61
+ height:140px; display:flex; align-items:center; justify-content:space-between;
62
+ padding:0 30px; border-bottom:1px solid #24323a;
63
+ }
64
+ .row:last-child{ border-bottom:none; }
65
+ .row .text{ font-size:46px; color:#e2edf4; }
66
+ .right-note{ font-size:44px; color:#76c0ff; }
67
+
68
+ /* toggles */
69
+ .toggle{
70
+ width:188px; height:84px; border-radius:50px; position:relative;
71
+ background:#2a3740; border:2px solid #3a4a54;
72
+ transition:all .2s;
73
+ }
74
+ .toggle.on{ background:#79c5ff; border-color:#79c5ff; }
75
+ .knob{
76
+ width:76px; height:76px; background:#0f171b; border-radius:50%;
77
+ position:absolute; top:2px; left:2px; transition:left .2s;
78
+ box-shadow:0 2px 6px rgba(0,0,0,.5);
79
+ }
80
+ .toggle.on .knob{ left:110px; background:#ffffff; }
81
+
82
+ /* helper spacing buttons at bottom */
83
+ .footer-btn{
84
+ margin-top:28px; background:#142028; border:2px solid #2b3a43;
85
+ color:#78c2ff; border-radius:28px; height:114px;
86
+ display:flex; align-items:center; justify-content:center;
87
+ font-size:44px; font-weight:800; letter-spacing:3px;
88
+ }
89
+
90
+ /* subtle scroll indicator style for realism */
91
+ .content::-webkit-scrollbar{ width:8px; }
92
+ .content::-webkit-scrollbar-thumb{ background:#213039; border-radius:8px; }
93
+ </style>
94
+ </head>
95
+ <body>
96
+ <div id="render-target">
97
+ <div class="topbar">
98
+ <div class="icon-btn icon-left">
99
+ <svg width="42" height="42" viewBox="0 0 24 24" fill="none" stroke="#c9d6de" stroke-width="2.6" stroke-linecap="round">
100
+ <path d="M5 5L19 19M19 5L5 19"></path>
101
+ </svg>
102
+ </div>
103
+ <div class="title">Account</div>
104
+ <div class="icon-btn icon-right">SAVE</div>
105
+ </div>
106
+
107
+ <div class="content">
108
+ <div class="label">Email</div>
109
+ <div class="input">fabioteixeira00123@gmail.com</div>
110
+
111
+ <div class="label">Password</div>
112
+ <div class="input">••••••••</div>
113
+
114
+ <div class="wide-btn">DUOLINGO FOR SCHOOLS</div>
115
+ <div class="wide-btn">SIGN OUT</div>
116
+
117
+ <div class="section-title">General</div>
118
+
119
+ <div class="card">
120
+ <div class="row">
121
+ <div class="text">Sound effects</div>
122
+ <div class="toggle"><div class="knob"></div></div>
123
+ </div>
124
+ <div class="row">
125
+ <div class="text">Dark mode</div>
126
+ <div class="right-note">System Default</div>
127
+ </div>
128
+ <div class="row">
129
+ <div class="text">Friends Quest</div>
130
+ <div class="toggle on"><div class="knob"></div></div>
131
+ </div>
132
+ <div class="row">
133
+ <div class="text">Motivational messages</div>
134
+ <div class="toggle on"><div class="knob"></div></div>
135
+ </div>
136
+ </div>
137
+
138
+ <div class="footer-btn">HELP CENTER</div>
139
+ <div class="footer-btn">MANAGE COURSES</div>
140
+ </div>
141
+ </div>
142
+ </body>
143
+ </html>
code/10177/10177_0.html ADDED
@@ -0,0 +1,243 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>Playlist Screen Mock</title>
6
+ <style>
7
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
8
+ #render-target {
9
+ width: 1080px; height: 2400px; position: relative; overflow: hidden;
10
+ background: linear-gradient(180deg, #222 0%, #1a1a1a 30%, #101010 100%);
11
+ color: #fff;
12
+ }
13
+ .status-bar {
14
+ position: absolute; top: 0; left: 0; width: 100%; height: 110px;
15
+ display: flex; align-items: center; justify-content: space-between;
16
+ padding: 0 36px; color: #fff; font-weight: 600; font-size: 36px;
17
+ opacity: 0.95;
18
+ }
19
+ .status-icons { display: flex; align-items: center; gap: 26px; }
20
+ .icon { width: 42px; height: 42px; fill: #fff; }
21
+ .content { position: relative; padding: 120px 44px 240px; }
22
+ .header-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
23
+ .header-btn { width: 72px; height: 72px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.06); border-radius: 36px; }
24
+ .cover {
25
+ width: 800px; height: 800px; margin: 0 auto 36px;
26
+ background: #E0E0E0; border: 1px solid #BDBDBD; color: #757575;
27
+ display: flex; align-items: center; justify-content: center; font-size: 36px;
28
+ }
29
+ .title { text-align: center; font-size: 64px; font-weight: 800; margin-top: 8px; }
30
+ .sub-row { display: flex; align-items: center; justify-content: center; gap: 18px; margin: 12px 0 40px; }
31
+ .avatar-sm { width: 48px; height: 48px; border-radius: 50%; background: #546E7A; display: flex; align-items: center; justify-content: center; font-weight: 700; color: #e0e0e0; }
32
+ .username { color: #ffb74d; font-size: 34px; font-weight: 700; }
33
+ .actions { display: flex; justify-content: space-around; margin: 24px 0 36px; text-align: center; }
34
+ .action { width: 200px; }
35
+ .action .icon { width: 56px; height: 56px; }
36
+ .action label { display: block; margin-top: 12px; color: #d0d0d0; font-size: 30px; }
37
+ .play-actions { display: flex; gap: 32px; justify-content: center; margin: 24px 0 40px; }
38
+ .pill {
39
+ flex: 0 0 430px; height: 120px; border-radius: 60px; background: #2b2b2b;
40
+ display: flex; align-items: center; justify-content: center; gap: 18px;
41
+ font-size: 36px; font-weight: 700; color: #fff;
42
+ box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
43
+ }
44
+ .pill .icon { width: 48px; height: 48px; fill: #ffb74d; }
45
+ .separator { height: 2px; background: #2a2a2a; margin: 28px 0; }
46
+ .track-item {
47
+ display: flex; align-items: center; gap: 22px; padding: 24px 12px;
48
+ }
49
+ .track-thumb {
50
+ width: 120px; height: 120px; background: #E0E0E0; border: 1px solid #BDBDBD;
51
+ display: flex; align-items: center; justify-content: center; color: #757575; font-size: 24px;
52
+ }
53
+ .track-num { color: #ffb74d; font-weight: 800; font-size: 36px; margin-right: 10px; }
54
+ .track-text { flex: 1; }
55
+ .track-title { font-size: 40px; font-weight: 700; }
56
+ .track-sub { font-size: 32px; color: #bdbdbd; margin-top: 6px; }
57
+ .track-actions { display: flex; align-items: center; gap: 26px; }
58
+ .heart { width: 46px; height: 46px; fill: none; stroke: #ddd; stroke-width: 4px; }
59
+ .dots { width: 10px; height: 46px; display: flex; flex-direction: column; justify-content: center; gap: 10px; }
60
+ .dots span { width: 10px; height: 10px; background: #d0d0d0; border-radius: 50%; display: block; }
61
+ .profile-card { display: flex; align-items: center; gap: 24px; padding: 26px 12px; }
62
+ .avatar-lg { width: 120px; height: 120px; border-radius: 60px; background: #607D8B; color: #fff; font-weight: 800; font-size: 56px; display: flex; align-items: center; justify-content: center; }
63
+ .profile-text .name { font-size: 40px; font-weight: 700; }
64
+ .profile-text .subs { font-size: 30px; color: #ffb74d; margin-top: 6px; }
65
+ .tag { display: inline-block; padding: 16px 24px; background: #2b2b2b; border-radius: 16px; font-weight: 800; letter-spacing: 1px; margin: 18px 0 30px; }
66
+ .ad-carousel {
67
+ background: #1b1b1b; border-top: 1px solid #2a2a2a; border-bottom: 1px solid #2a2a2a;
68
+ padding: 20px; display: flex; align-items: center; gap: 16px;
69
+ }
70
+ .ad-img {
71
+ width: 160px; height: 140px; background: #E0E0E0; border: 1px solid #BDBDBD;
72
+ display: flex; align-items: center; justify-content: center; color: #757575; font-size: 24px; border-radius: 8px;
73
+ }
74
+ .ad-spacer { flex: 1; }
75
+ .ad-play { width: 72px; height: 72px; border-radius: 36px; background: #2b2b2b; display: flex; align-items: center; justify-content: center; }
76
+ .bottom-nav {
77
+ position: absolute; bottom: 0; left: 0; width: 100%; height: 240px; background: #141414;
78
+ border-top: 1px solid #2a2a2a; display: flex; flex-direction: column; justify-content: space-between;
79
+ }
80
+ .nav-row { display: flex; justify-content: space-around; align-items: center; height: 180px; padding: 0 24px; }
81
+ .nav-item { width: 180px; text-align: center; color: #dcdcdc; }
82
+ .nav-item .icon { width: 54px; height: 54px; margin: 0 auto 10px; }
83
+ .nav-item label { font-size: 26px; }
84
+ .active label { color: #ffb74d; font-weight: 700; }
85
+ .library-badge {
86
+ width: 64px; height: 64px; border-radius: 32px; border: 4px solid #ffb74d; color: #ffb74d; display: inline-flex; align-items: center; justify-content: center; font-weight: 800;
87
+ }
88
+ .home-indicator {
89
+ height: 8px; width: 320px; background: #fff; border-radius: 8px; margin: 0 auto 20px; opacity: 0.9;
90
+ }
91
+ </style>
92
+ </head>
93
+ <body>
94
+ <div id="render-target">
95
+
96
+ <!-- Status bar -->
97
+ <div class="status-bar">
98
+ <div>12:16</div>
99
+ <div class="status-icons">
100
+ <!-- Minimal mail icon -->
101
+ <svg class="icon" viewBox="0 0 24 24"><path d="M2 5h20v14H2z" fill="none" stroke="#fff" stroke-width="2"/><path d="M2 6l10 7 10-7" fill="none" stroke="#fff" stroke-width="2"/></svg>
102
+ <!-- Network icon -->
103
+ <svg class="icon" viewBox="0 0 24 24"><path d="M4 16h2v2H4zM9 12h2v6H9zM14 9h2v9h-2zM19 5h2v13h-2z" fill="#fff"/></svg>
104
+ <!-- Video icon -->
105
+ <svg class="icon" viewBox="0 0 24 24"><rect x="3" y="6" width="14" height="12" rx="2" fill="#fff"/><polygon points="18,9 23,12 18,15" fill="#fff"/></svg>
106
+ <!-- Settings dot -->
107
+ <svg class="icon" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10" fill="none" stroke="#fff" stroke-width="2"/><circle cx="12" cy="12" r="2" fill="#fff"/></svg>
108
+ <!-- Wi-Fi -->
109
+ <svg class="icon" viewBox="0 0 24 24"><path d="M2 8c10-7 20 0 20 0M6 12c6-4 12 0 12 0M10 16c2-1 4 0 4 0" fill="none" stroke="#fff" stroke-width="2"/><circle cx="12" cy="19" r="1.5" fill="#fff"/></svg>
110
+ <!-- Battery -->
111
+ <svg class="icon" viewBox="0 0 26 24"><rect x="3" y="6" width="18" height="12" rx="2" fill="none" stroke="#fff" stroke-width="2"/><rect x="22" y="10" width="3" height="4" fill="#fff"/></svg>
112
+ </div>
113
+ </div>
114
+
115
+ <div class="content">
116
+ <!-- Header controls -->
117
+ <div class="header-row">
118
+ <div class="header-btn">
119
+ <svg class="icon" viewBox="0 0 24 24"><path d="M15 4L7 12l8 8" fill="none" stroke="#fff" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>
120
+ </div>
121
+ <div class="header-btn">
122
+ <svg class="icon" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10" fill="none" stroke="#fff" stroke-width="2"/><rect x="11" y="7" width="2" height="6" fill="#fff"/><circle cx="12" cy="16" r="1.5" fill="#fff"/></svg>
123
+ </div>
124
+ </div>
125
+
126
+ <!-- Album cover -->
127
+ <div class="cover">[IMG: Concert Photo]</div>
128
+
129
+ <!-- Title and username -->
130
+ <div class="title">My Lo-fi</div>
131
+ <div class="sub-row">
132
+ <div class="avatar-sm">C</div>
133
+ <div class="username">dbwscratch.test.id8</div>
134
+ </div>
135
+
136
+ <!-- Action row -->
137
+ <div class="actions">
138
+ <div class="action">
139
+ <svg class="icon" viewBox="0 0 24 24"><path d="M3 4h18v12H7l-4 4z" fill="none" stroke="#fff" stroke-width="2"/></svg>
140
+ <label>Comments</label>
141
+ </div>
142
+ <div class="action">
143
+ <svg class="icon" viewBox="0 0 24 24"><path d="M12 3v10M7 8l5 5 5-5" fill="none" stroke="#fff" stroke-width="2"/><rect x="4" y="16" width="16" height="4" rx="2" fill="#fff"/></svg>
144
+ <label>Download</label>
145
+ </div>
146
+ <div class="action">
147
+ <svg class="icon" viewBox="0 0 24 24"><path d="M3 12l8-3v6l-8-3zM13 8l8-3v14l-8-3z" fill="#fff"/></svg>
148
+ <label>Share</label>
149
+ </div>
150
+ <div class="action">
151
+ <svg class="icon" viewBox="0 0 24 24"><circle cx="12" cy="12" r="5" fill="none" stroke="#fff" stroke-width="2"/><path d="M12 1v4M12 19v4M1 12h4M19 12h4M4.2 4.2l2.8 2.8M17 17l2.8 2.8M19.8 4.2L17 7M7 17l-2.8 2.8" stroke="#fff" stroke-width="2"/></svg>
152
+ <label>Edit</label>
153
+ </div>
154
+ </div>
155
+
156
+ <!-- Play / Shuffle -->
157
+ <div class="play-actions">
158
+ <div class="pill">
159
+ <svg class="icon" viewBox="0 0 24 24"><polygon points="6,4 20,12 6,20" fill="#ffb74d"/></svg>
160
+ <span>Play Playlist</span>
161
+ </div>
162
+ <div class="pill">
163
+ <svg class="icon" viewBox="0 0 24 24"><path d="M3 6h6l4 5h8M3 18h6l4-5h8" fill="none" stroke="#ffb74d" stroke-width="2"/><path d="M19 5v4M19 15v4" fill="none" stroke="#ffb74d" stroke-width="2"/></svg>
164
+ <span>Shuffle</span>
165
+ </div>
166
+ </div>
167
+
168
+ <div class="separator"></div>
169
+
170
+ <!-- Track list item -->
171
+ <div class="track-item">
172
+ <span class="track-num">1.</span>
173
+ <div class="track-thumb">[IMG: Album Art]</div>
174
+ <div class="track-text">
175
+ <div class="track-title">GOLd</div>
176
+ <div class="track-sub">Ryan</div>
177
+ </div>
178
+ <div class="track-actions">
179
+ <svg class="heart" viewBox="0 0 24 24"><path d="M12 21s-8-5.5-8-11a5 5 0 0 1 9-3 5 5 0 0 1 9 3c0 5.5-8 11-8 11z"/></svg>
180
+ <div class="dots"><span></span><span></span><span></span></div>
181
+ </div>
182
+ </div>
183
+
184
+ <div class="separator"></div>
185
+
186
+ <!-- Profile card -->
187
+ <div class="profile-card">
188
+ <div class="avatar-lg">C</div>
189
+ <div class="profile-text">
190
+ <div class="name">dbwscratch.test.id8</div>
191
+ <div class="subs">0 Followers</div>
192
+ </div>
193
+ </div>
194
+
195
+ <div class="tag">#OTHER</div>
196
+
197
+ <!-- Ad carousel -->
198
+ <div class="ad-carousel">
199
+ <div class="ad-img">[IMG: Myntra Logo Ad]</div>
200
+ <div class="ad-img">[IMG: Shoe Ad]</div>
201
+ <div class="ad-img">[IMG: Shoe Ad]</div>
202
+ <div class="ad-img">[IMG: Shoe Ad]</div>
203
+ <div class="ad-img">[IMG: Shoe Ad]</div>
204
+ <div class="ad-img">[IMG: Shoe Ad]</div>
205
+ <div class="ad-spacer"></div>
206
+ <div class="ad-play">
207
+ <svg class="icon" viewBox="0 0 24 24"><polygon points="8,5 19,12 8,19" fill="#fff"/></svg>
208
+ </div>
209
+ <div class="dots" style="margin-left:16px;"><span></span><span></span><span></span></div>
210
+ </div>
211
+
212
+ </div>
213
+
214
+ <!-- Bottom navigation -->
215
+ <div class="bottom-nav">
216
+ <div class="nav-row">
217
+ <div class="nav-item">
218
+ <svg class="icon" viewBox="0 0 24 24"><path d="M12 2c-2 3-3 4-3 6a5 5 0 0 0 10 0c0-2-1-3-3-6-1 2-2 3-4 0z" fill="#fff"/></svg>
219
+ <label>Discover</label>
220
+ </div>
221
+ <div class="nav-item">
222
+ <svg class="icon" viewBox="0 0 24 24"><rect x="4" y="5" width="16" height="2" fill="#fff"/><rect x="4" y="11" width="16" height="2" fill="#fff"/><rect x="4" y="17" width="12" height="2" fill="#fff"/></svg>
223
+ <label>Playlists</label>
224
+ </div>
225
+ <div class="nav-item">
226
+ <svg class="icon" viewBox="0 0 24 24"><circle cx="10" cy="10" r="6" fill="none" stroke="#fff" stroke-width="2"/><path d="M15 15l6 6" fill="none" stroke="#fff" stroke-width="2"/></svg>
227
+ <label>Search</label>
228
+ </div>
229
+ <div class="nav-item">
230
+ <svg class="icon" viewBox="0 0 24 24"><circle cx="12" cy="8" r="4" fill="#fff"/><path d="M4 22c2-5 14-5 16 0" fill="none" stroke="#fff" stroke-width="2"/></svg>
231
+ <label>Feed</label>
232
+ </div>
233
+ <div class="nav-item active">
234
+ <div class="library-badge">C</div>
235
+ <label>My Library</label>
236
+ </div>
237
+ </div>
238
+ <div class="home-indicator"></div>
239
+ </div>
240
+
241
+ </div>
242
+ </body>
243
+ </html>
code/10177/10177_1.html ADDED
@@ -0,0 +1,543 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>Chill - Weekly Jukebox</title>
6
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: "Roboto", "Segoe UI", Arial, sans-serif; }
9
+ #render-target {
10
+ position: relative;
11
+ width: 1080px;
12
+ height: 2400px;
13
+ overflow: hidden;
14
+ background: linear-gradient(180deg, #5b2b4f 0px, #3b2e43 380px, #2f3339 381px, #2f3339 100%);
15
+ color: #e7e9ec;
16
+ }
17
+
18
+ /* Status bar */
19
+ .status-bar {
20
+ position: absolute;
21
+ top: 20px;
22
+ left: 32px;
23
+ right: 32px;
24
+ height: 60px;
25
+ display: flex;
26
+ align-items: center;
27
+ justify-content: space-between;
28
+ color: #ffffff;
29
+ opacity: 0.9;
30
+ font-weight: 600;
31
+ letter-spacing: 0.5px;
32
+ }
33
+ .status-icons { display: flex; align-items: center; gap: 18px; }
34
+ .status-icons svg { opacity: 0.9; }
35
+
36
+ /* Floating buttons */
37
+ .fab {
38
+ position: absolute;
39
+ width: 96px;
40
+ height: 96px;
41
+ border-radius: 50%;
42
+ background: rgba(255,255,255,0.1);
43
+ backdrop-filter: blur(2px);
44
+ display: flex; align-items: center; justify-content: center;
45
+ }
46
+ .back-fab { left: 30px; top: 180px; }
47
+ .menu-fab { right: 30px; top: 520px; }
48
+
49
+ /* Hero banner */
50
+ .hero {
51
+ position: absolute;
52
+ left: 90px;
53
+ top: 120px;
54
+ width: 820px;
55
+ height: 460px;
56
+ border-radius: 26px;
57
+ overflow: hidden;
58
+ box-shadow: 0 20px 40px rgba(0,0,0,0.35);
59
+ background: #E0E0E0;
60
+ border: 1px solid #BDBDBD;
61
+ display: flex; align-items: center; justify-content: center;
62
+ color: #757575;
63
+ font-weight: 700;
64
+ font-size: 38px;
65
+ }
66
+ .hero span { padding: 0 20px; text-align: center; }
67
+
68
+ /* Title and description */
69
+ .title-area {
70
+ position: absolute;
71
+ left: 70px;
72
+ right: 70px;
73
+ top: 620px;
74
+ }
75
+ .playlist-title {
76
+ font-size: 64px;
77
+ font-weight: 700;
78
+ line-height: 1.15;
79
+ margin-bottom: 24px;
80
+ color: #e8eaee;
81
+ }
82
+ .playlist-desc {
83
+ font-size: 28px;
84
+ color: #c7cbd1;
85
+ line-height: 1.5;
86
+ max-width: 880px;
87
+ }
88
+
89
+ /* Controls row */
90
+ .controls {
91
+ margin-top: 38px;
92
+ display: flex;
93
+ align-items: center;
94
+ gap: 24px;
95
+ }
96
+ .control-circle {
97
+ width: 120px; height: 120px; border-radius: 60px;
98
+ border: 2px solid rgba(255,255,255,0.25);
99
+ display: flex; align-items: center; justify-content: center;
100
+ background: rgba(255,255,255,0.06);
101
+ }
102
+ .play-circle {
103
+ background: #66d1c2;
104
+ border: none;
105
+ }
106
+
107
+ /* Info row */
108
+ .info-row {
109
+ margin-top: 30px;
110
+ display: flex; align-items: center; gap: 26px;
111
+ color: #c7cbd1;
112
+ font-size: 28px;
113
+ }
114
+ .info-action {
115
+ width: 84px; height: 84px; border-radius: 42px;
116
+ border: 2px solid rgba(255,255,255,0.18);
117
+ display: flex; align-items: center; justify-content: center;
118
+ background: rgba(255,255,255,0.06);
119
+ }
120
+ .dot-sep { margin: 0 10px; opacity: 0.5; }
121
+
122
+ /* Tracks list */
123
+ .list {
124
+ position: absolute;
125
+ left: 40px;
126
+ right: 40px;
127
+ top: 980px;
128
+ bottom: 280px;
129
+ overflow: hidden;
130
+ }
131
+ .tracks {
132
+ width: 100%;
133
+ height: 100%;
134
+ overflow-y: hidden;
135
+ padding-right: 20px;
136
+ }
137
+ .track {
138
+ display: flex;
139
+ align-items: center;
140
+ justify-content: space-between;
141
+ padding: 34px 10px;
142
+ border-bottom: 1px solid rgba(255,255,255,0.06);
143
+ }
144
+ .t-left {
145
+ display: flex; align-items: center; gap: 24px;
146
+ }
147
+ .t-meta { max-width: 720px; }
148
+ .t-title {
149
+ font-size: 36px; font-weight: 700; color: #e7eaee; margin-bottom: 8px;
150
+ }
151
+ .t-sub { font-size: 26px; color: #b9bdc4; }
152
+ .t-right {
153
+ display: flex; align-items: center; gap: 28px;
154
+ color: #c7cbd1;
155
+ }
156
+ .icon-btn {
157
+ width: 100px; height: 100px; border-radius: 14px;
158
+ display: flex; align-items: center; justify-content: center;
159
+ background: transparent;
160
+ }
161
+ .more-vert { width: 16px; height: 64px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; }
162
+ .more-vert span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.6); }
163
+
164
+ /* Ad banner */
165
+ .ad-block {
166
+ margin: 22px 0 6px 0;
167
+ width: 100%;
168
+ height: 160px;
169
+ border: 1px solid #BDBDBD;
170
+ background: #E0E0E0;
171
+ display: flex; align-items: center; justify-content: center;
172
+ color: #757575; font-weight: 600; border-radius: 8px;
173
+ }
174
+
175
+ /* Now playing style item */
176
+ .now-playing {
177
+ display: flex; align-items: center; justify-content: space-between;
178
+ padding: 26px 10px;
179
+ }
180
+ .np-left { display: flex; align-items: center; gap: 24px; }
181
+ .album-art {
182
+ width: 120px; height: 120px;
183
+ background: #E0E0E0; border: 1px solid #BDBDBD; color: #757575;
184
+ display: flex; align-items: center; justify-content: center;
185
+ border-radius: 6px; font-size: 20px; font-weight: 600;
186
+ text-align: center; padding: 6px;
187
+ }
188
+ .np-title { font-size: 34px; font-weight: 700; color: #e7eaee; }
189
+ .np-sub { font-size: 24px; color: #b9bdc4; margin-top: 6px; }
190
+ .np-play {
191
+ width: 90px; height: 90px; border-radius: 50%;
192
+ border: 2px solid rgba(255,255,255,0.5);
193
+ display: flex; align-items: center; justify-content: center;
194
+ }
195
+
196
+ /* Bottom nav */
197
+ .bottom-nav {
198
+ position: absolute;
199
+ left: 0; right: 0; bottom: 0;
200
+ height: 220px;
201
+ background: rgba(20,22,25,0.45);
202
+ border-top: 1px solid rgba(255,255,255,0.08);
203
+ backdrop-filter: blur(4px);
204
+ display: flex; align-items: center; justify-content: space-around;
205
+ padding: 24px 40px 34px;
206
+ }
207
+ .nav-item {
208
+ width: 160px; height: 140px;
209
+ display: flex; flex-direction: column; align-items: center; justify-content: center;
210
+ color: #c7cbd1; font-size: 26px; gap: 12px; position: relative;
211
+ }
212
+ .nav-item svg { fill: none; stroke: #c7cbd1; stroke-width: 3.5; }
213
+ .nav-item.active { color: #ffffff; }
214
+ .nav-item.active .underline {
215
+ position: absolute; bottom: 16px; width: 80px; height: 6px; border-radius: 3px; background: #ffffff;
216
+ }
217
+ .pro-dot {
218
+ position: absolute; top: 14px; right: 44px; width: 18px; height: 18px; background: #f24e4e; border-radius: 50%;
219
+ border: 2px solid rgba(255,255,255,0.7);
220
+ }
221
+
222
+ /* Home pill */
223
+ .home-pill {
224
+ position: absolute;
225
+ bottom: 240px;
226
+ left: 50%;
227
+ transform: translateX(-50%);
228
+ width: 220px; height: 14px; border-radius: 7px;
229
+ background: rgba(255,255,255,0.6);
230
+ }
231
+
232
+ /* subtle accent lines */
233
+ .section-sep {
234
+ height: 2px; background: rgba(255,255,255,0.08); margin: 12px 0;
235
+ }
236
+ </style>
237
+ </head>
238
+ <body>
239
+ <div id="render-target">
240
+
241
+ <!-- Status bar -->
242
+ <div class="status-bar">
243
+ <div>12:18</div>
244
+ <div class="status-icons">
245
+ <!-- cellular -->
246
+ <svg width="28" height="28" viewBox="0 0 48 48">
247
+ <rect x="4" y="30" width="6" height="10" fill="#fff"/>
248
+ <rect x="14" y="24" width="6" height="16" fill="#fff" opacity="0.8"/>
249
+ <rect x="24" y="18" width="6" height="22" fill="#fff" opacity="0.6"/>
250
+ <rect x="34" y="12" width="6" height="28" fill="#fff" opacity="0.4"/>
251
+ </svg>
252
+ <!-- wifi -->
253
+ <svg width="28" height="28" viewBox="0 0 48 48">
254
+ <path d="M6 18 Q24 6 42 18" stroke="#fff" stroke-width="3" fill="none" />
255
+ <path d="M12 24 Q24 16 36 24" stroke="#fff" stroke-width="3" fill="none" />
256
+ <path d="M18 30 Q24 26 30 30" stroke="#fff" stroke-width="3" fill="none" />
257
+ <circle cx="24" cy="36" r="3.5" fill="#fff"/>
258
+ </svg>
259
+ <!-- battery -->
260
+ <svg width="38" height="28" viewBox="0 0 60 40">
261
+ <rect x="3" y="8" width="46" height="24" rx="4" ry="4" stroke="#fff" fill="none" stroke-width="3"/>
262
+ <rect x="50" y="14" width="7" height="12" rx="2" fill="#fff"/>
263
+ <rect x="6" y="11" width="30" height="18" rx="2" fill="#fff"/>
264
+ </svg>
265
+ </div>
266
+ </div>
267
+
268
+ <!-- Floating back button -->
269
+ <div class="fab back-fab">
270
+ <svg width="52" height="52" viewBox="0 0 48 48">
271
+ <path d="M30 10 L18 24 L30 38" stroke="#fff" stroke-width="4" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
272
+ </svg>
273
+ </div>
274
+
275
+ <!-- Hero banner -->
276
+ <div class="hero">
277
+ <span>[IMG: Playlist Banner — Weekly Jukebox]</span>
278
+ </div>
279
+
280
+ <!-- Menu fab -->
281
+ <div class="fab menu-fab">
282
+ <div class="more-vert">
283
+ <span></span><span></span><span></span>
284
+ </div>
285
+ </div>
286
+
287
+ <!-- Title and description -->
288
+ <div class="title-area">
289
+ <div class="playlist-title">Chill - Weekly Jukebox</div>
290
+ <div class="playlist-desc">
291
+ 25 songs with music from artists like Willie "the Lion" Smith, Joe Pass, Kurt Rosenwinkel, and more.
292
+ </div>
293
+
294
+ <div class="controls">
295
+ <div class="control-circle" title="Favorite">
296
+ <svg width="60" height="60" viewBox="0 0 48 48">
297
+ <path d="M24 40 L10 26 Q8 16 16 12 Q21 10 24 14 Q27 10 32 12 Q40 16 38 26 Z"
298
+ stroke="#ffffff" stroke-width="3.5" fill="none" stroke-linejoin="round"/>
299
+ </svg>
300
+ </div>
301
+ <div class="control-circle play-circle" title="Play">
302
+ <svg width="68" height="68" viewBox="0 0 48 48">
303
+ <path d="M18 12 L36 24 L18 36 Z" fill="#ffffff"/>
304
+ </svg>
305
+ </div>
306
+ </div>
307
+
308
+ <div class="info-row">
309
+ <div class="info-action" title="Download">
310
+ <svg width="44" height="44" viewBox="0 0 48 48">
311
+ <path d="M24 10 V28" stroke="#ffffff" stroke-width="3.5" />
312
+ <path d="M16 22 L24 30 L32 22" stroke="#ffffff" stroke-width="3.5" fill="none" />
313
+ <path d="M12 34 H36" stroke="#ffffff" stroke-width="3.5" />
314
+ </svg>
315
+ </div>
316
+ <div class="info-action" title="Share">
317
+ <svg width="44" height="44" viewBox="0 0 48 48">
318
+ <circle cx="14" cy="30" r="6" stroke="#fff" fill="none" stroke-width="3"/>
319
+ <circle cx="34" cy="18" r="6" stroke="#fff" fill="none" stroke-width="3"/>
320
+ <path d="M19 27 L29 21" stroke="#fff" stroke-width="3"/>
321
+ </svg>
322
+ </div>
323
+ <span>1h 32m</span>
324
+ <span class="dot-sep">•</span>
325
+ <span>25 Songs</span>
326
+ <span class="dot-sep">•</span>
327
+ <span>2,315 Fans</span>
328
+ </div>
329
+ </div>
330
+
331
+ <!-- Tracks list -->
332
+ <div class="list">
333
+ <div class="tracks">
334
+
335
+ <div class="track">
336
+ <div class="t-left">
337
+ <div class="t-meta">
338
+ <div class="t-title">Through for the Day</div>
339
+ <div class="t-sub">Willie "the Lion" Smith - Accent on Piano</div>
340
+ </div>
341
+ </div>
342
+ <div class="t-right">
343
+ <div class="icon-btn" title="Download">
344
+ <svg width="52" height="52" viewBox="0 0 48 48">
345
+ <path d="M24 10 V28" stroke="#cfd3d9" stroke-width="3.5" />
346
+ <path d="M16 22 L24 30 L32 22" stroke="#cfd3d9" stroke-width="3.5" fill="none" />
347
+ </svg>
348
+ </div>
349
+ <div class="more-vert"><span></span><span></span><span></span></div>
350
+ </div>
351
+ </div>
352
+
353
+ <div class="track">
354
+ <div class="t-left">
355
+ <div class="t-meta">
356
+ <div class="t-title">Groove Yard (Album Version)</div>
357
+ <div class="t-sub">Joe Pass - Virtuoso #2</div>
358
+ </div>
359
+ </div>
360
+ <div class="t-right">
361
+ <div class="icon-btn">
362
+ <svg width="52" height="52" viewBox="0 0 48 48">
363
+ <path d="M24 10 V28" stroke="#cfd3d9" stroke-width="3.5" />
364
+ <path d="M16 22 L24 30 L32 22" stroke="#cfd3d9" stroke-width="3.5" fill="none" />
365
+ </svg>
366
+ </div>
367
+ <div class="more-vert"><span></span><span></span><span></span></div>
368
+ </div>
369
+ </div>
370
+
371
+ <div class="track">
372
+ <div class="t-left">
373
+ <div class="t-meta">
374
+ <div class="t-title">Night And Day (Album Version)</div>
375
+ <div class="t-sub">Joe Pass - Virtuoso</div>
376
+ </div>
377
+ </div>
378
+ <div class="t-right">
379
+ <div class="icon-btn">
380
+ <svg width="52" height="52" viewBox="0 0 48 48">
381
+ <path d="M24 10 V28" stroke="#cfd3d9" stroke-width="3.5" />
382
+ <path d="M16 22 L24 30 L32 22" stroke="#cfd3d9" stroke-width="3.5" fill="none" />
383
+ </svg>
384
+ </div>
385
+ <div class="more-vert"><span></span><span></span><span></span></div>
386
+ </div>
387
+ </div>
388
+
389
+ <div class="track">
390
+ <div class="t-left">
391
+ <div class="t-meta">
392
+ <div class="t-title">Deep Song</div>
393
+ <div class="t-sub">Kurt Rosenwinkel - Deep Song</div>
394
+ </div>
395
+ </div>
396
+ <div class="t-right">
397
+ <div class="icon-btn">
398
+ <svg width="52" height="52" viewBox="0 0 48 48">
399
+ <path d="M24 10 V28" stroke="#cfd3d9" stroke-width="3.5" />
400
+ <path d="M16 22 L24 30 L32 22" stroke="#cfd3d9" stroke-width="3.5" fill="none" />
401
+ </svg>
402
+ </div>
403
+ <div class="more-vert"><span></span><span></span><span></span></div>
404
+ </div>
405
+ </div>
406
+
407
+ <div class="track">
408
+ <div class="t-left">
409
+ <div class="t-meta">
410
+ <div class="t-title">All The Things You Are (Album Version)</div>
411
+ <div class="t-sub">Joe Pass - Virtuoso</div>
412
+ </div>
413
+ </div>
414
+ <div class="t-right">
415
+ <div class="icon-btn">
416
+ <svg width="52" height="52" viewBox="0 0 48 48">
417
+ <path d="M24 10 V28" stroke="#cfd3d9" stroke-width="3.5" />
418
+ <path d="M16 22 L24 30 L32 22" stroke="#cfd3d9" stroke-width="3.5" fill="none" />
419
+ </svg>
420
+ </div>
421
+ <div class="more-vert"><span></span><span></span><span></span></div>
422
+ </div>
423
+ </div>
424
+
425
+ <div class="track">
426
+ <div class="t-left">
427
+ <div class="t-meta">
428
+ <div class="t-title">Concerning the UFO sighting near Highland,...</div>
429
+ <div class="t-sub">Sufjan Stevens - Illinois</div>
430
+ </div>
431
+ </div>
432
+ <div class="t-right">
433
+ <div class="icon-btn">
434
+ <svg width="52" height="52" viewBox="0 0 48 48">
435
+ <path d="M24 10 V28" stroke="#cfd3d9" stroke-width="3.5" />
436
+ <path d="M16 22 L24 30 L32 22" stroke="#cfd3d9" stroke-width="3.5" fill="none" />
437
+ </svg>
438
+ </div>
439
+ <div class="more-vert"><span></span><span></span><span></span></div>
440
+ </div>
441
+ </div>
442
+
443
+ <div class="track">
444
+ <div class="t-left">
445
+ <div class="t-meta">
446
+ <div class="t-title">Constellations (Demo Version)</div>
447
+ <div class="t-sub">Jack Johnson - In Between Dreams</div>
448
+ </div>
449
+ </div>
450
+ <div class="t-right">
451
+ <div class="icon-btn">
452
+ <svg width="52" height="52" viewBox="0 0 48 48">
453
+ <path d="M24 10 V28" stroke="#cfd3d9" stroke-width="3.5" />
454
+ <path d="M16 22 L24 30 L32 22" stroke="#cfd3d9" stroke-width="3.5" fill="none" />
455
+ </svg>
456
+ </div>
457
+ <div class="more-vert"><span></span><span></span><span></span></div>
458
+ </div>
459
+ </div>
460
+
461
+ <div class="track">
462
+ <div class="t-left">
463
+ <div class="t-meta">
464
+ <div class="t-title">Traffic In The Sky</div>
465
+ <div class="t-sub">Jack Johnson - On and On</div>
466
+ </div>
467
+ </div>
468
+ <div class="t-right">
469
+ <div class="icon-btn">
470
+ <svg width="52" height="52" viewBox="0 0 48 48">
471
+ <path d="M24 10 V28" stroke="#cfd3d9" stroke-width="3.5" />
472
+ <path d="M16 22 L24 30 L32 22" stroke="#cfd3d9" stroke-width="3.5" fill="none" />
473
+ </svg>
474
+ </div>
475
+ <div class="more-vert"><span></span><span></span><span></span></div>
476
+ </div>
477
+ </div>
478
+
479
+ <div class="ad-block">[IMG: Ad Banner — Food Delivery Promotion]</div>
480
+
481
+ <div class="now-playing">
482
+ <div class="np-left">
483
+ <div class="album-art">[IMG: Album Art]</div>
484
+ <div class="t-meta">
485
+ <div class="np-title">L-O-V-E (2003 Digital Remaster)</div>
486
+ <div class="np-sub">Nat King Cole — L-O-V-E</div>
487
+ </div>
488
+ </div>
489
+ <div class="np-play">
490
+ <svg width="52" height="52" viewBox="0 0 48 48">
491
+ <path d="M18 12 L36 24 L18 36 Z" fill="#ffffff"/>
492
+ </svg>
493
+ </div>
494
+ </div>
495
+
496
+ </div>
497
+ </div>
498
+
499
+ <!-- Bottom navigation -->
500
+ <div class="bottom-nav">
501
+ <div class="nav-item">
502
+ <svg width="52" height="52" viewBox="0 0 48 48">
503
+ <path d="M8 24 L24 10 L40 24" />
504
+ <path d="M14 24 V38 H34 V24" />
505
+ </svg>
506
+ <div>Home</div>
507
+ </div>
508
+ <div class="nav-item active">
509
+ <svg width="52" height="52" viewBox="0 0 48 48">
510
+ <circle cx="22" cy="22" r="14" />
511
+ <path d="M32 32 L40 40" />
512
+ </svg>
513
+ <div>Search</div>
514
+ <div class="underline"></div>
515
+ </div>
516
+ <div class="nav-item">
517
+ <svg width="52" height="52" viewBox="0 0 48 48">
518
+ <path d="M20 6 L12 26 H22 L18 42 L36 18 H26 L32 6 Z" />
519
+ </svg>
520
+ <div>For You</div>
521
+ </div>
522
+ <div class="nav-item">
523
+ <svg width="52" height="52" viewBox="0 0 48 48">
524
+ <circle cx="24" cy="24" r="18" />
525
+ <text x="24" y="30" text-anchor="middle" font-size="22" fill="#c7cbd1" font-weight="700">C</text>
526
+ </svg>
527
+ <div>My Library</div>
528
+ </div>
529
+ <div class="nav-item">
530
+ <div class="pro-dot"></div>
531
+ <svg width="52" height="52" viewBox="0 0 48 48">
532
+ <path d="M24 38 C20 30 12 26 12 18 C12 12 18 10 24 16 C30 10 36 12 36 18 C36 26 28 30 24 38 Z" />
533
+ </svg>
534
+ <div>Pro</div>
535
+ </div>
536
+ </div>
537
+
538
+ <!-- Home pill -->
539
+ <div class="home-pill"></div>
540
+
541
+ </div>
542
+ </body>
543
+ </html>
code/10177/10177_10.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>Compose - Dark UI</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: Roboto, Arial, sans-serif; }
9
+ #render-target {
10
+ width: 1080px; height: 2400px;
11
+ position: relative; overflow: hidden;
12
+ background: #121212; color: #ECECEC;
13
+ }
14
+
15
+ /* Status bar */
16
+ .status-bar {
17
+ height: 90px;
18
+ padding: 0 32px;
19
+ display: flex; align-items: center; justify-content: space-between;
20
+ color: #FFFFFF; font-size: 28px;
21
+ }
22
+ .status-left { display: flex; align-items: center; gap: 16px; }
23
+ .status-right { display: flex; align-items: center; gap: 28px; }
24
+ .status-icon svg { width: 36px; height: 36px; fill: #FFFFFF; }
25
+
26
+ /* App bar */
27
+ .app-bar {
28
+ height: 150px;
29
+ border-bottom: 1px solid #2A2A2A;
30
+ display: flex; align-items: center;
31
+ padding: 0 24px;
32
+ }
33
+ .app-left { display: flex; align-items: center; gap: 24px; }
34
+ .app-title { font-size: 44px; font-weight: 500; color: #EDEDED; }
35
+ .app-right { margin-left: auto; display: flex; align-items: center; gap: 28px; }
36
+ .app-icon svg { width: 44px; height: 44px; fill: #EDEDED; }
37
+
38
+ /* Content area */
39
+ .content { padding: 24px; }
40
+ .field {
41
+ padding: 18px 0;
42
+ border-bottom: 1px solid #2A2A2A;
43
+ }
44
+ .label { font-size: 26px; color: #9E9E9E; margin-bottom: 8px; }
45
+ .value { font-size: 32px; color: #EDEDED; }
46
+ .to-row { display: flex; align-items: center; justify-content: space-between; }
47
+ .caret svg { width: 30px; height: 30px; fill: #BDBDBD; }
48
+
49
+ /* Suggestion card */
50
+ .suggestion {
51
+ display: flex; align-items: center;
52
+ gap: 24px; padding: 26px 0;
53
+ border-bottom: 1px solid #2A2A2A;
54
+ }
55
+ .avatar {
56
+ width: 96px; height: 96px; border-radius: 50%;
57
+ background: #E0E0E0; border: 1px solid #BDBDBD;
58
+ display: flex; align-items: center; justify-content: center;
59
+ color: #757575; font-size: 22px;
60
+ }
61
+ .s-text .name { font-size: 34px; color: #EDEDED; }
62
+ .s-text .email { font-size: 26px; color: #A9A9A9; margin-top: 6px; }
63
+
64
+ /* Spacer to mimic large empty area above keyboard */
65
+ .spacer { height: 860px; }
66
+
67
+ /* Keyboard */
68
+ .keyboard {
69
+ position: absolute; left: 0; bottom: 0;
70
+ width: 100%; height: 930px;
71
+ background: #1A1A1A; border-top: 1px solid #2A2A2A;
72
+ box-sizing: border-box; padding: 24px;
73
+ }
74
+ .kb-tools {
75
+ height: 110px; display: flex; align-items: center;
76
+ justify-content: space-between; padding: 0 12px; color: #CFCFCF;
77
+ }
78
+ .tool { display: flex; align-items: center; gap: 10px; font-size: 26px; }
79
+ .tool-icon {
80
+ width: 48px; height: 48px; border-radius: 10px;
81
+ background: #2C2C2C; display: flex; align-items: center; justify-content: center;
82
+ }
83
+ .tool-icon svg { width: 28px; height: 28px; fill: #CFCFCF; }
84
+
85
+ .kb-row {
86
+ margin-top: 16px;
87
+ display: flex; justify-content: center; gap: 12px;
88
+ }
89
+ .key {
90
+ width: 92px; height: 120px; border-radius: 18px;
91
+ background: #2C2C2C; color: #E5E5E5; font-size: 34px;
92
+ display: flex; align-items: center; justify-content: center;
93
+ }
94
+ .key.wide { width: 180px; }
95
+ .space { flex: 1; height: 120px; background: #2C2C2C; border-radius: 18px; }
96
+ .key.alt { background: #2F3A4B; color: #EAF2FF; } /* subtle bluish for special keys */
97
+ .enter { width: 160px; height: 120px; border-radius: 28px; background: #5673FF; color: #FFFFFF; font-size: 34px; }
98
+ .bottom-bar {
99
+ position: absolute; left: 0; bottom: 22px;
100
+ width: 100%; display: flex; justify-content: center;
101
+ }
102
+ .gesture {
103
+ width: 320px; height: 12px; border-radius: 12px; background: #EDEDED; opacity: 0.85;
104
+ }
105
+ </style>
106
+ </head>
107
+ <body>
108
+ <div id="render-target">
109
+
110
+ <!-- Status bar -->
111
+ <div class="status-bar">
112
+ <div class="status-left">
113
+ <div style="font-weight: 500;">12:27</div>
114
+ </div>
115
+ <div class="status-right">
116
+ <div class="status-icon" title="Signal">
117
+ <svg viewBox="0 0 24 24"><path d="M2 20h2v-3H2v3zm4 0h2v-6H6v6zm4 0h2v-9h-2v9zm4 0h2v-12h-2v12zm4 0h2V4h-2v16z"/></svg>
118
+ </div>
119
+ <div class="status-icon" title="Wi‑Fi">
120
+ <svg viewBox="0 0 24 24"><path d="M12 18.5l-1.8-1.8a3 3 0 014 0L12 18.5zM4.5 11.5a12 12 0 0115 0l-1.8 1.8a9 9 0 00-11.4 0L4.5 11.5zm2.9-3a16 16 0 0119.2 0l-1.8 1.8a13 13 0 00-15.6 0L7.4 8.5z" /></svg>
121
+ </div>
122
+ <div class="status-icon" title="Battery">
123
+ <svg viewBox="0 0 24 24"><path d="M20 7h1v10h-1v2H4V5h16v2zm-2 0H6v10h12V7z"/></svg>
124
+ </div>
125
+ </div>
126
+ </div>
127
+
128
+ <!-- App bar -->
129
+ <div class="app-bar">
130
+ <div class="app-left">
131
+ <div class="app-icon" title="Back">
132
+ <svg viewBox="0 0 24 24"><path d="M15.5 5l-7 7 7 7 1.5-1.5L11.5 12l5.5-5.5L15.5 5z"/></svg>
133
+ </div>
134
+ <div class="app-title">Compose</div>
135
+ </div>
136
+ <div class="app-right">
137
+ <div class="app-icon" title="Attach">
138
+ <svg viewBox="0 0 24 24"><path d="M7 12a5 5 0 019.6-2.1l-6.1 6.1a3 3 0 11-4.2-4.2l7.8-7.8 1.4 1.4-7.8 7.8a1 1 0 101.4 1.4l6.1-6.1c1.6 2.4.8 5.7-1.6 7.3-2.4 1.6-5.7.8-7.3-1.6A5 5 0 017 12z"/></svg>
139
+ </div>
140
+ <div class="app-icon" title="Send">
141
+ <svg viewBox="0 0 24 24"><path d="M3 12l18-8-5 8 5 8-18-8zm10.5-.5l-6.7 3.1 1.9-3.1-1.9-3.1 6.7 3.1z"/></svg>
142
+ </div>
143
+ <div class="app-icon" title="More">
144
+ <svg viewBox="0 0 24 24"><path d="M12 6a2 2 0 110-4 2 2 0 010 4zm0 8a2 2 0 110-4 2 2 0 010 4zm0 8a2 2 0 110-4 2 2 0 010 4z"/></svg>
145
+ </div>
146
+ </div>
147
+ </div>
148
+
149
+ <!-- Content -->
150
+ <div class="content">
151
+ <div class="field">
152
+ <div class="label">From</div>
153
+ <div class="value">dbwscratch.test.id8@gmail.com</div>
154
+ </div>
155
+
156
+ <div class="field">
157
+ <div class="label">To</div>
158
+ <div class="to-row">
159
+ <div class="value">akashgahlot@google.com</div>
160
+ <div class="caret">
161
+ <svg viewBox="0 0 24 24"><path d="M7 10l5 5 5-5H7z"/></svg>
162
+ </div>
163
+ </div>
164
+ </div>
165
+
166
+ <div class="suggestion">
167
+ <div class="avatar">[IMG: Avatar]</div>
168
+ <div class="s-text">
169
+ <div class="name">akashgahlot@google.com</div>
170
+ <div class="email">akashgahlot@google.com</div>
171
+ </div>
172
+ </div>
173
+
174
+ <div class="spacer"></div>
175
+ </div>
176
+
177
+ <!-- Keyboard -->
178
+ <div class="keyboard">
179
+ <div class="kb-tools">
180
+ <div class="tool">
181
+ <div class="tool-icon">
182
+ <svg viewBox="0 0 24 24"><path d="M3 3h8v8H3V3zm10 0h8v8h-8V3zM3 13h8v8H3v-8zm10 0h8v8h-8v-8z"/></svg>
183
+ </div>
184
+ </div>
185
+ <div class="tool">
186
+ <div class="tool-icon">
187
+ <svg viewBox="0 0 24 24"><path d="M12 2a5 5 0 00-5 5c0 3.5 5 9 5 9s5-5.5 5-9a5 5 0 00-5-5zm0 7a2 2 0 110-4 2 2 0 010 4z"/></svg>
188
+ </div>
189
+ <span>GIF</span>
190
+ </div>
191
+ <div class="tool">
192
+ <div class="tool-icon">
193
+ <svg viewBox="0 0 24 24"><path d="M12 2l3 7h7l-5.5 4.5L18 21l-6-4-6 4 1.5-7.5L2 9h7l3-7z"/></svg>
194
+ </div>
195
+ </div>
196
+ <div class="tool">
197
+ <div class="tool-icon">
198
+ <svg viewBox="0 0 24 24"><path d="M12 3a9 9 0 100 18 9 9 0 000-18zm0 16a7 7 0 110-14 7 7 0 010 14z"/></svg>
199
+ </div>
200
+ </div>
201
+ <div class="tool">
202
+ <div class="tool-icon">
203
+ <svg viewBox="0 0 24 24"><path d="M4 4l16 8-16 8V4zm3 4.8v6.4L14.6 12 7 8.8z"/></svg>
204
+ </div>
205
+ </div>
206
+ </div>
207
+
208
+ <!-- Row 1 -->
209
+ <div class="kb-row">
210
+ <div class="key">q</div>
211
+ <div class="key">w</div>
212
+ <div class="key">e</div>
213
+ <div class="key">r</div>
214
+ <div class="key">t</div>
215
+ <div class="key">y</div>
216
+ <div class="key">u</div>
217
+ <div class="key">i</div>
218
+ <div class="key">o</div>
219
+ <div class="key">p</div>
220
+ </div>
221
+ <!-- Row 2 -->
222
+ <div class="kb-row">
223
+ <div class="key">a</div>
224
+ <div class="key">s</div>
225
+ <div class="key">d</div>
226
+ <div class="key">f</div>
227
+ <div class="key">g</div>
228
+ <div class="key">h</div>
229
+ <div class="key">j</div>
230
+ <div class="key">k</div>
231
+ <div class="key">l</div>
232
+ </div>
233
+ <!-- Row 3 -->
234
+ <div class="kb-row">
235
+ <div class="key wide">⇧</div>
236
+ <div class="key">z</div>
237
+ <div class="key">x</div>
238
+ <div class="key">c</div>
239
+ <div class="key">v</div>
240
+ <div class="key">b</div>
241
+ <div class="key">n</div>
242
+ <div class="key">m</div>
243
+ <div class="key wide">⌫</div>
244
+ </div>
245
+ <!-- Row 4 -->
246
+ <div class="kb-row">
247
+ <div class="key alt">?123</div>
248
+ <div class="key">@</div>
249
+ <div class="key">☺</div>
250
+ <div class="space"></div>
251
+ <div class="key">.</div>
252
+ <div class="enter">↩︎</div>
253
+ </div>
254
+
255
+ <div class="bottom-bar">
256
+ <div class="gesture"></div>
257
+ </div>
258
+ </div>
259
+
260
+ </div>
261
+ </body>
262
+ </html>
code/10177/10177_12.html ADDED
@@ -0,0 +1,289 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>UI Recreation</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
9
+ #render-target {
10
+ width: 1080px; height: 2400px; position: relative; overflow: hidden;
11
+ background: linear-gradient(#0c0d10, #1f242a 35%, #262b31 100%);
12
+ border-radius: 36px;
13
+ box-shadow: 0 20px 60px rgba(0,0,0,0.45);
14
+ color: #e8edf2;
15
+ }
16
+
17
+ /* Status bar */
18
+ .status-bar {
19
+ position: absolute; top: 18px; left: 24px; right: 24px; height: 48px; color: #e9eaed; font-size: 34px; display: flex; align-items: center; justify-content: space-between; opacity: 0.9;
20
+ }
21
+ .status-icons { display: flex; align-items: center; gap: 22px; }
22
+ .status-icons svg { width: 36px; height: 36px; stroke: #e9eaed; fill: none; }
23
+
24
+ /* Top controls */
25
+ .back-btn {
26
+ position: absolute; top: 140px; left: 28px; width: 88px; height: 88px; border-radius: 44px;
27
+ background: rgba(12,13,16,0.6); display: flex; align-items: center; justify-content: center;
28
+ }
29
+ .back-btn svg { width: 40px; height: 40px; stroke: #ffffff; fill: none; stroke-width: 5; }
30
+
31
+ .menu-bubble {
32
+ position: absolute; top: 280px; right: 36px; width: 110px; height: 110px; border-radius: 55px;
33
+ background: #0f1216; box-shadow: 0 6px 18px rgba(0,0,0,0.45);
34
+ display: flex; align-items: center; justify-content: center;
35
+ }
36
+ .menu-bubble .dots { display: flex; flex-direction: column; gap: 10px; }
37
+ .menu-bubble .dot {
38
+ width: 12px; height: 12px; border-radius: 50%; background: #e8edf2;
39
+ }
40
+
41
+ /* Album/playlist cover */
42
+ .cover {
43
+ position: absolute; top: 260px; left: 120px; width: 720px; height: 720px;
44
+ background: #3a3e47; border: 1px solid #2f333a; border-radius: 30px;
45
+ display: flex; align-items: center; justify-content: center; color: #c9cfd6; font-size: 34px;
46
+ }
47
+
48
+ /* Action bubbles (edit/play) */
49
+ .action-bubbles { position: absolute; top: 600px; left: 870px; display: flex; flex-direction: column; gap: 36px; }
50
+ .bubble {
51
+ width: 120px; height: 120px; border-radius: 60px; display: flex; align-items: center; justify-content: center;
52
+ box-shadow: 0 8px 20px rgba(0,0,0,0.35);
53
+ }
54
+ .bubble.edit { background: #ffffff; }
55
+ .bubble.play { background: #57c9b6; }
56
+ .bubble svg { width: 50px; height: 50px; stroke-width: 4; }
57
+ .bubble.edit svg { stroke: #2a2f36; fill: none; }
58
+ .bubble.play svg { stroke: none; fill: #ffffff; }
59
+
60
+ /* Titles and description */
61
+ .title {
62
+ position: absolute; top: 1040px; left: 70px; font-size: 74px; font-weight: 700; letter-spacing: 0.2px;
63
+ }
64
+ .subtitle {
65
+ position: absolute; top: 1142px; left: 70px; font-size: 36px; color: #b9c0c8;
66
+ }
67
+
68
+ /* Small actions row */
69
+ .meta-row {
70
+ position: absolute; top: 1240px; left: 70px; display: flex; align-items: center; gap: 28px;
71
+ }
72
+ .circle-btn {
73
+ width: 88px; height: 88px; border-radius: 44px; border: 2px solid #3b4149; color: #e8edf2;
74
+ display: flex; align-items: center; justify-content: center; opacity: 0.95;
75
+ }
76
+ .circle-btn svg { width: 40px; height: 40px; stroke: #e8edf2; fill: none; stroke-width: 4; }
77
+ .meta-text { font-size: 32px; color: #c3c9d0; margin-left: 18px; }
78
+
79
+ /* Track item */
80
+ .track {
81
+ position: absolute; top: 1420px; left: 70px; right: 70px; display: flex; align-items: center; justify-content: space-between;
82
+ }
83
+ .track .left { display: flex; flex-direction: column; }
84
+ .track .title { position: static; font-size: 46px; font-weight: 600; color: #eef2f6; }
85
+ .track .artist { font-size: 32px; color: #b8bec6; margin-top: 8px; }
86
+ .track .right { display: flex; align-items: center; gap: 34px; }
87
+ .track .icon { width: 46px; height: 46px; }
88
+ .track .icon svg { width: 46px; height: 46px; stroke: #cfd5dc; fill: none; stroke-width: 4; }
89
+ .vertical-dots { display: flex; flex-direction: column; gap: 8px; }
90
+ .vertical-dots .dot { width: 10px; height: 10px; border-radius: 50%; background: #cfd5dc; }
91
+
92
+ /* Add buttons */
93
+ .add-more {
94
+ position: absolute; top: 1660px; left: 70px; width: 940px; height: 126px; border-radius: 22px;
95
+ background: #2a3037; display: flex; align-items: center; justify-content: center; gap: 22px; color: #7ad0c1; font-size: 42px; font-weight: 600;
96
+ }
97
+ .add-more .plus, .add-videos .plus { width: 44px; height: 44px; border-radius: 22px; border: 3px solid currentColor; display: flex; align-items: center; justify-content: center; }
98
+ .add-videos {
99
+ position: absolute; top: 1860px; left: 70px; width: 940px; height: 140px; border-radius: 26px;
100
+ background: #61d1bf; color: #ffffff; display: flex; align-items: center; justify-content: center; gap: 22px; font-size: 46px; font-weight: 700;
101
+ box-shadow: 0 10px 24px rgba(0,0,0,0.25);
102
+ }
103
+ .badge {
104
+ font-size: 26px; padding: 6px 12px; border-radius: 16px; background: rgba(255,255,255,0.25); color: #ffffff; letter-spacing: 0.4px;
105
+ }
106
+
107
+ /* Ad banner placeholder */
108
+ .ad-banner {
109
+ position: absolute; top: 1940px; left: 0; width: 1080px; height: 150px;
110
+ background: #E0E0E0; border: 1px solid #BDBDBD; color: #757575;
111
+ display: flex; align-items: center; justify-content: center; font-size: 32px;
112
+ }
113
+
114
+ /* Mini player */
115
+ .mini-player {
116
+ position: absolute; top: 2100px; left: 0; width: 1080px; height: 130px; background: #2a2f36; display: flex; align-items: center; padding: 0 24px; box-sizing: border-box;
117
+ }
118
+ .mini-cover {
119
+ width: 96px; height: 96px; margin-right: 22px; background: #E0E0E0; border: 1px solid #BDBDBD; color: #757575;
120
+ display: flex; align-items: center; justify-content: center; font-size: 20px;
121
+ }
122
+ .mini-info { flex: 1; }
123
+ .mini-info .t { font-size: 36px; color: #eef2f6; }
124
+ .mini-info .s { font-size: 28px; color: #b8bec6; margin-top: 6px; }
125
+ .mini-play { width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; }
126
+ .mini-play svg { width: 50px; height: 50px; fill: none; stroke: #e8edf2; stroke-width: 5; }
127
+
128
+ /* Home indicator */
129
+ .home-indicator {
130
+ position: absolute; top: 2242px; left: 50%; transform: translateX(-50%);
131
+ width: 260px; height: 10px; border-radius: 6px; background: #bfc5cc; opacity: 0.65;
132
+ }
133
+
134
+ /* Bottom navigation */
135
+ .bottom-nav {
136
+ position: absolute; bottom: 0; left: 0; width: 1080px; height: 140px; background: #242a30; display: flex; align-items: center; justify-content: space-around; padding-bottom: 6px;
137
+ }
138
+ .nav-item { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: #c7cdd4; }
139
+ .nav-item svg { width: 44px; height: 44px; stroke: #c7cdd4; fill: none; stroke-width: 4; }
140
+ .nav-item span { font-size: 30px; }
141
+ .active span { color: #e8edf2; position: relative; }
142
+ .active span::after {
143
+ content: ""; position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%);
144
+ width: 60px; height: 6px; border-radius: 3px; background: #e8edf2;
145
+ }
146
+ .nav-item .round {
147
+ width: 44px; height: 44px; border-radius: 22px; background: #5f7f8f; color: #e8edf2; font-weight: 700; font-size: 28px;
148
+ display: flex; align-items: center; justify-content: center;
149
+ }
150
+ .pro-dot {
151
+ position: absolute; top: 6px; right: -4px; width: 16px; height: 16px; border-radius: 8px; background: #ff4d4d;
152
+ }
153
+ </style>
154
+ </head>
155
+ <body>
156
+ <div id="render-target">
157
+
158
+ <!-- Status bar -->
159
+ <div class="status-bar">
160
+ <div>12:28</div>
161
+ <div class="status-icons">
162
+ <!-- wifi -->
163
+ <svg viewBox="0 0 24 24"><path d="M2 8s5-4 10-4 10 4 10 4"/><path d="M5 12s4-3 7-3 7 3 7 3"/><path d="M8 16s3-2 4-2 4 2 4 2"/><circle cx="12" cy="19" r="1.5" fill="#e9eaed"/></svg>
164
+ <!-- battery -->
165
+ <svg viewBox="0 0 28 24">
166
+ <rect x="2" y="5" width="20" height="14" rx="2" ry="2" stroke="#e9eaed"></rect>
167
+ <rect x="4" y="7" width="14" height="10" fill="#e9eaed" stroke="none"></rect>
168
+ <rect x="23" y="9" width="3" height="6" rx="1" ry="1" stroke="#e9eaed"></rect>
169
+ </svg>
170
+ </div>
171
+ </div>
172
+
173
+ <!-- Back button -->
174
+ <div class="back-btn">
175
+ <svg viewBox="0 0 24 24"><path d="M15 5l-7 7 7 7"/></svg>
176
+ </div>
177
+
178
+ <!-- Vertical dots menu bubble -->
179
+ <div class="menu-bubble">
180
+ <div class="dots">
181
+ <div class="dot"></div>
182
+ <div class="dot"></div>
183
+ <div class="dot"></div>
184
+ </div>
185
+ </div>
186
+
187
+ <!-- Cover placeholder -->
188
+ <div class="cover">[IMG: Playlist Cover]</div>
189
+
190
+ <!-- Edit and Play bubbles -->
191
+ <div class="action-bubbles">
192
+ <div class="bubble edit">
193
+ <svg viewBox="0 0 24 24"><path d="M3 17l2.5 2.5L17.5 8.5l-2.5-2.5L3 17z"/><path d="M19 5l0 0"/></svg>
194
+ </div>
195
+ <div class="bubble play">
196
+ <svg viewBox="0 0 24 24"><path d="M8 5l12 7-12 7z"/></svg>
197
+ </div>
198
+ </div>
199
+
200
+ <!-- Title and subtitle -->
201
+ <div class="title">Chill List</div>
202
+ <div class="subtitle">1 song with music from artists like Joe Pass.</div>
203
+
204
+ <!-- Meta / small actions -->
205
+ <div class="meta-row">
206
+ <div class="circle-btn">
207
+ <svg viewBox="0 0 24 24"><path d="M7 17l5 5 5-5"/><path d="M12 3v19"/></svg>
208
+ </div>
209
+ <div class="circle-btn">
210
+ <svg viewBox="0 0 24 24"><path d="M4 12v7a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-7"/><path d="M16 6l-4-4-4 4"/><path d="M12 2v14"/></svg>
211
+ </div>
212
+ <div class="meta-text">3m 32s • 1 Songs</div>
213
+ </div>
214
+
215
+ <!-- Track item -->
216
+ <div class="track">
217
+ <div class="left">
218
+ <div class="title">Night And Day (Album Version)</div>
219
+ <div class="artist">Joe Pass - Virtuoso</div>
220
+ </div>
221
+ <div class="right">
222
+ <div class="icon">
223
+ <svg viewBox="0 0 24 24"><path d="M7 17l5 5 5-5"/><path d="M12 3v19"/></svg>
224
+ </div>
225
+ <div class="vertical-dots">
226
+ <div class="dot"></div>
227
+ <div class="dot"></div>
228
+ <div class="dot"></div>
229
+ </div>
230
+ </div>
231
+ </div>
232
+
233
+ <!-- Add buttons -->
234
+ <div class="add-more">
235
+ <div class="plus">+</div>
236
+ Add More
237
+ </div>
238
+
239
+ <div class="add-videos">
240
+ <div class="plus">+</div>
241
+ Add Videos <span class="badge">PRO</span>
242
+ </div>
243
+
244
+ <!-- Ad banner -->
245
+ <div class="ad-banner">[IMG: Ad Banner - Facebook]</div>
246
+
247
+ <!-- Mini player -->
248
+ <div class="mini-player">
249
+ <div class="mini-cover">[IMG: Album Art]</div>
250
+ <div class="mini-info">
251
+ <div class="t">L-O-V-E (2003 Digital Remaster)</div>
252
+ <div class="s">Nat King Cole — L-O-V-E</div>
253
+ </div>
254
+ <div class="mini-play">
255
+ <svg viewBox="0 0 24 24"><path d="M8 5l12 7-12 7z"/></svg>
256
+ </div>
257
+ </div>
258
+
259
+ <!-- Home indicator -->
260
+ <div class="home-indicator"></div>
261
+
262
+ <!-- Bottom navigation -->
263
+ <div class="bottom-nav">
264
+ <div class="nav-item">
265
+ <svg viewBox="0 0 24 24"><path d="M3 11l9-8 9 8"/><path d="M5 12v8h14v-8"/></svg>
266
+ <span>Home</span>
267
+ </div>
268
+ <div class="nav-item">
269
+ <svg viewBox="0 0 24 24"><circle cx="11" cy="11" r="6"/><path d="M20 20l-3.5-3.5"/></svg>
270
+ <span>Search</span>
271
+ </div>
272
+ <div class="nav-item">
273
+ <svg viewBox="0 0 24 24"><path d="M13 3l-2 8 8-2-5 12"/></svg>
274
+ <span>For You</span>
275
+ </div>
276
+ <div class="nav-item active" style="position: relative;">
277
+ <div class="round">C</div>
278
+ <span>My Library</span>
279
+ </div>
280
+ <div class="nav-item" style="position: relative;">
281
+ <svg viewBox="0 0 24 24"><path d="M6 19c6-4 9-10 9-14"/><path d="M15 5c0 4 3 8 3 8"/></svg>
282
+ <span>Pro</span>
283
+ <div class="pro-dot"></div>
284
+ </div>
285
+ </div>
286
+
287
+ </div>
288
+ </body>
289
+ </html>
code/10177/10177_5.html ADDED
@@ -0,0 +1,360 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Playlist Options Modal</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: "Inter", Arial, sans-serif; }
9
+ #render-target {
10
+ position: relative;
11
+ overflow: hidden;
12
+ width: 1080px;
13
+ height: 2400px;
14
+ background: #0d0f12;
15
+ border-radius: 0;
16
+ box-shadow: none;
17
+ }
18
+
19
+ /* Background / underlying content hints */
20
+ .top-status {
21
+ position: absolute;
22
+ top: 24px;
23
+ left: 36px;
24
+ right: 36px;
25
+ height: 48px;
26
+ color: #ffffff;
27
+ display: flex;
28
+ align-items: center;
29
+ justify-content: space-between;
30
+ opacity: 0.95;
31
+ font-size: 38px;
32
+ letter-spacing: 0.5px;
33
+ }
34
+ .status-icons { display: flex; gap: 28px; align-items: center; }
35
+ .status-dot {
36
+ width: 18px; height: 18px; background: #fff; border-radius: 50%;
37
+ }
38
+
39
+ /* Dimmed cards behind modal */
40
+ .bg-card {
41
+ position: absolute;
42
+ width: 920px;
43
+ height: 540px;
44
+ left: 80px;
45
+ top: 220px;
46
+ background: #1f2227;
47
+ border-radius: 28px;
48
+ opacity: 0.5;
49
+ box-shadow: 0 40px 80px rgba(0,0,0,0.55);
50
+ }
51
+ .bg-card.small {
52
+ top: 420px;
53
+ width: 720px;
54
+ height: 380px;
55
+ left: 180px;
56
+ opacity: 0.7;
57
+ }
58
+
59
+ /* Back chevron (underlay) */
60
+ .back-btn {
61
+ position: absolute;
62
+ top: 160px;
63
+ left: 36px;
64
+ width: 56px;
65
+ height: 56px;
66
+ display: flex;
67
+ align-items: center;
68
+ justify-content: center;
69
+ opacity: 0.7;
70
+ }
71
+ .back-btn svg { width: 40px; height: 40px; stroke: #9aa0a6; stroke-width: 4; fill: none; }
72
+
73
+ /* Vertical ellipsis (underlay) */
74
+ .ellipsis {
75
+ position: absolute;
76
+ top: 180px;
77
+ right: 48px;
78
+ width: 16px;
79
+ height: 60px;
80
+ display: flex;
81
+ flex-direction: column;
82
+ justify-content: space-between;
83
+ opacity: 0.4;
84
+ }
85
+ .ellipsis span {
86
+ width: 12px; height: 12px; background: #9aa0a6; border-radius: 50%;
87
+ }
88
+
89
+ /* Overlay scrim */
90
+ .scrim {
91
+ position: absolute;
92
+ inset: 0;
93
+ background: radial-gradient(ellipse at center, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.75) 60%, rgba(0,0,0,0.9) 100%);
94
+ }
95
+
96
+ /* Main modal */
97
+ .modal {
98
+ position: absolute;
99
+ left: 40px;
100
+ right: 40px;
101
+ top: 520px;
102
+ background: #2a2d33;
103
+ border-radius: 28px;
104
+ box-shadow: 0 28px 80px rgba(0,0,0,0.65);
105
+ padding: 40px 36px 220px;
106
+ color: #e9ecef;
107
+ }
108
+
109
+ .cover {
110
+ width: 520px;
111
+ height: 520px;
112
+ margin: -160px auto 16px;
113
+ background: #E0E0E0;
114
+ border: 1px solid #BDBDBD;
115
+ border-radius: 24px;
116
+ display: flex;
117
+ align-items: center;
118
+ justify-content: center;
119
+ color: #757575;
120
+ box-shadow: 0 16px 36px rgba(0,0,0,0.6);
121
+ font-size: 32px;
122
+ font-weight: 600;
123
+ }
124
+ .title {
125
+ text-align: center;
126
+ font-size: 52px;
127
+ font-weight: 700;
128
+ margin-top: 28px;
129
+ letter-spacing: 0.3px;
130
+ color: #f2f4f7;
131
+ }
132
+ .subtitle {
133
+ text-align: center;
134
+ font-size: 34px;
135
+ color: #aeb4bc;
136
+ margin-top: 10px;
137
+ }
138
+
139
+ .options {
140
+ margin-top: 36px;
141
+ display: flex;
142
+ flex-direction: column;
143
+ gap: 34px;
144
+ }
145
+ .option {
146
+ display: flex;
147
+ align-items: center;
148
+ gap: 32px;
149
+ padding: 10px 4px;
150
+ }
151
+ .option svg {
152
+ width: 44px; height: 44px;
153
+ stroke: #d1d5db; stroke-width: 3; fill: none;
154
+ }
155
+ .option .text { font-size: 40px; color: #e9ecef; }
156
+ .option.muted .text { color: #d8dde3; }
157
+ .option.play svg { stroke: none; fill: #22c9a1; }
158
+ .option.play .text { color: #22c9a1; }
159
+
160
+ /* Cancel bar */
161
+ .cancel-bar {
162
+ position: absolute;
163
+ left: 40px;
164
+ right: 40px;
165
+ bottom: 240px;
166
+ height: 140px;
167
+ background: #2a2d33;
168
+ border-radius: 28px;
169
+ box-shadow: 0 20px 48px rgba(0,0,0,0.6);
170
+ display: flex;
171
+ align-items: center;
172
+ justify-content: center;
173
+ color: #e9ecef;
174
+ font-size: 44px;
175
+ font-weight: 600;
176
+ }
177
+
178
+ /* Bottom navigation (underlay preview) */
179
+ .bottom-nav {
180
+ position: absolute;
181
+ left: 0;
182
+ right: 0;
183
+ bottom: 120px;
184
+ height: 120px;
185
+ display: flex;
186
+ justify-content: space-around;
187
+ align-items: center;
188
+ color: #9aa0a6;
189
+ font-size: 32px;
190
+ opacity: 0.6;
191
+ }
192
+ .bottom-nav .active { color: #e9ecef; }
193
+ .bottom-nav svg { width: 36px; height: 36px; stroke: currentColor; stroke-width: 3; fill: none; display: block; margin: 0 auto 8px; }
194
+
195
+ /* Gesture Home bar */
196
+ .home-handle {
197
+ position: absolute;
198
+ bottom: 40px;
199
+ left: 50%;
200
+ transform: translateX(-50%);
201
+ width: 320px; height: 14px;
202
+ background: #e0e3e7;
203
+ border-radius: 16px;
204
+ opacity: 0.85;
205
+ }
206
+ </style>
207
+ </head>
208
+ <body>
209
+ <div id="render-target">
210
+
211
+ <!-- Status bar (simplified) -->
212
+ <div class="top-status">
213
+ <div>12:23</div>
214
+ <div class="status-icons">
215
+ <div class="status-dot" title="signal"></div>
216
+ <div class="status-dot" title="mail"></div>
217
+ <div class="status-dot" title="youtube"></div>
218
+ <div class="status-dot" title="settings"></div>
219
+ <div class="status-dot" title="wifi"></div>
220
+ <div class="status-dot" title="battery"></div>
221
+ </div>
222
+ </div>
223
+
224
+ <!-- Underlay hints -->
225
+ <div class="bg-card"></div>
226
+ <div class="bg-card small"></div>
227
+ <div class="back-btn">
228
+ <svg viewBox="0 0 40 40"><path d="M26 6 L10 20 L26 34"/></svg>
229
+ </div>
230
+ <div class="ellipsis">
231
+ <span></span><span></span><span></span>
232
+ </div>
233
+
234
+ <!-- Overlay scrim -->
235
+ <div class="scrim"></div>
236
+
237
+ <!-- Main modal -->
238
+ <div class="modal">
239
+ <div class="cover">[IMG: Playlist cover with musical note]</div>
240
+ <div class="title">Chill List</div>
241
+ <div class="subtitle">Just Updated</div>
242
+
243
+ <div class="options">
244
+ <div class="option play">
245
+ <svg viewBox="0 0 44 44"><path d="M10 6 L36 22 L10 38 Z"/></svg>
246
+ <div class="text">Play Now</div>
247
+ </div>
248
+
249
+ <div class="option">
250
+ <svg viewBox="0 0 44 44"><path d="M10 10 L34 34"/><path d="M34 10 L10 34"/></svg>
251
+ <div class="text">Remove from Library</div>
252
+ </div>
253
+
254
+ <div class="option">
255
+ <svg viewBox="0 0 44 44">
256
+ <path d="M12 8 C18 8 22 10 22 16 L22 34" />
257
+ <circle cx="30" cy="30" r="4" />
258
+ <path d="M30 20 L30 40" />
259
+ <path d="M22 34 L14 34" />
260
+ </svg>
261
+ <div class="text">Add to Playlist</div>
262
+ </div>
263
+
264
+ <div class="option">
265
+ <svg viewBox="0 0 44 44">
266
+ <path d="M10 14 H30" />
267
+ <path d="M10 22 H26" />
268
+ <path d="M10 30 H22" />
269
+ <path d="M34 18 V26" />
270
+ <path d="M30 22 H38" />
271
+ </svg>
272
+ <div class="text">Add to Queue</div>
273
+ </div>
274
+
275
+ <div class="option">
276
+ <svg viewBox="0 0 44 44">
277
+ <path d="M22 28 a10 10 0 0 1 10 -10" />
278
+ <path d="M22 32 a14 14 0 0 1 14 -14" />
279
+ <circle cx="22" cy="34" r="2" />
280
+ </svg>
281
+ <div class="text">Playlist Radio</div>
282
+ </div>
283
+
284
+ <div class="option">
285
+ <svg viewBox="0 0 44 44">
286
+ <path d="M22 8 V28" />
287
+ <path d="M16 22 L22 28 L28 22" />
288
+ <path d="M12 34 H32" />
289
+ </svg>
290
+ <div class="text">Download</div>
291
+ </div>
292
+
293
+ <div class="option">
294
+ <svg viewBox="0 0 44 44">
295
+ <path d="M22 10 V28" />
296
+ <path d="M16 16 L22 10 L28 16" />
297
+ <path d="M12 30 H32 V36 H12 Z" />
298
+ </svg>
299
+ <div class="text">Share</div>
300
+ </div>
301
+
302
+ <div class="option">
303
+ <svg viewBox="0 0 44 44">
304
+ <path d="M12 30 L32 10" />
305
+ <path d="M30 8 L36 14" />
306
+ <path d="M10 32 H18 V36 H10 Z" />
307
+ </svg>
308
+ <div class="text">Edit Playlist</div>
309
+ </div>
310
+
311
+ <div class="option">
312
+ <svg viewBox="0 0 44 44">
313
+ <path d="M22 10 L30 34 H14 Z" />
314
+ <path d="M18 24 H26" />
315
+ </svg>
316
+ <div class="text">Rename Playlist</div>
317
+ </div>
318
+
319
+ <div class="option">
320
+ <svg viewBox="0 0 44 44">
321
+ <path d="M14 14 H30 V12 H26 V10 H18 V12 H14 Z" />
322
+ <path d="M14 14 V34 H30 V14 Z" />
323
+ </svg>
324
+ <div class="text">Delete Playlist</div>
325
+ </div>
326
+ </div>
327
+ </div>
328
+
329
+ <!-- Cancel bar -->
330
+ <div class="cancel-bar">Cancel</div>
331
+
332
+ <!-- Bottom navigation (underlay preview) -->
333
+ <div class="bottom-nav">
334
+ <div>
335
+ <svg viewBox="0 0 36 36"><path d="M6 18 L18 6 L30 18 V30 H22 V22 H14 V30 H6 Z"/></svg>
336
+ Home
337
+ </div>
338
+ <div>
339
+ <svg viewBox="0 0 36 36"><circle cx="16" cy="16" r="10"/><path d="M26 26 L32 32"/></svg>
340
+ Search
341
+ </div>
342
+ <div>
343
+ <svg viewBox="0 0 36 36"><path d="M8 12 H28"/><path d="M8 18 H24"/><path d="M8 24 H20"/></svg>
344
+ For You
345
+ </div>
346
+ <div class="active">
347
+ <svg viewBox="0 0 36 36"><path d="M8 10 H28 V28 H8 Z"/><path d="M8 18 H28"/></svg>
348
+ My Library
349
+ </div>
350
+ <div>
351
+ <svg viewBox="0 0 36 36"><path d="M10 26 H26"/><path d="M18 10 L26 18 L10 18 Z"/></svg>
352
+ Pro
353
+ </div>
354
+ </div>
355
+
356
+ <!-- Home gesture handle -->
357
+ <div class="home-handle"></div>
358
+ </div>
359
+ </body>
360
+ </html>
code/10177/10177_8.html ADDED
@@ -0,0 +1,338 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>Mobile UI - Share Sheet</title>
6
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
9
+ #render-target {
10
+ position: relative;
11
+ overflow: hidden;
12
+ width: 1080px;
13
+ height: 2400px;
14
+ background: linear-gradient(#0b0b0c, #151617);
15
+ }
16
+
17
+ /* Status bar */
18
+ .status-bar {
19
+ position: absolute;
20
+ top: 0;
21
+ left: 0;
22
+ height: 96px;
23
+ width: 100%;
24
+ color: #f1f1f1;
25
+ display: flex;
26
+ align-items: center;
27
+ padding: 0 36px;
28
+ font-size: 36px;
29
+ letter-spacing: 0.5px;
30
+ }
31
+ .status-left { flex: 1; }
32
+ .status-right { display: flex; gap: 28px; align-items: center; }
33
+ .status-icon svg { width: 44px; height: 44px; fill: #eaeaea; opacity: 0.9; }
34
+
35
+ /* Back button */
36
+ .back-btn {
37
+ position: absolute;
38
+ top: 140px;
39
+ left: 36px;
40
+ width: 72px;
41
+ height: 72px;
42
+ border-radius: 36px;
43
+ display: flex;
44
+ align-items: center;
45
+ justify-content: center;
46
+ color: #d9d9d9;
47
+ opacity: 0.8;
48
+ }
49
+ .back-btn svg { width: 36px; height: 36px; fill: #d9d9d9; }
50
+
51
+ /* Main card / album art */
52
+ .album-art {
53
+ position: absolute;
54
+ top: 220px;
55
+ left: 120px;
56
+ width: 720px;
57
+ height: 720px;
58
+ background: #2a2b2e;
59
+ border: 1px solid #1f2022;
60
+ border-radius: 36px;
61
+ color: #9aa0a6;
62
+ display: flex;
63
+ align-items: center;
64
+ justify-content: center;
65
+ font-size: 36px;
66
+ letter-spacing: 0.3px;
67
+ }
68
+
69
+ /* Vertical menu on top right */
70
+ .top-menu {
71
+ position: absolute;
72
+ top: 240px;
73
+ right: 80px;
74
+ width: 84px;
75
+ height: 84px;
76
+ border-radius: 42px;
77
+ background: rgba(0,0,0,0.35);
78
+ display: flex;
79
+ align-items: center;
80
+ justify-content: center;
81
+ }
82
+ .dots { display: flex; flex-direction: column; gap: 10px; }
83
+ .dots span {
84
+ width: 10px; height: 10px; border-radius: 50%;
85
+ background: #8c8c8c;
86
+ }
87
+
88
+ /* Floating action buttons */
89
+ .fab {
90
+ position: absolute;
91
+ top: 970px;
92
+ right: 240px;
93
+ width: 140px;
94
+ height: 140px;
95
+ border-radius: 70px;
96
+ box-shadow: 0 8px 18px rgba(0,0,0,0.45);
97
+ display: flex;
98
+ align-items: center;
99
+ justify-content: center;
100
+ }
101
+ .fab.edit { background: #bdbdbd; }
102
+ .fab.play { right: 80px; background: #157a70; }
103
+ .fab svg { width: 56px; height: 56px; fill: #1d1d1f; }
104
+ .fab.play svg { fill: #e9f5f3; }
105
+
106
+ /* Title and description */
107
+ .list-title {
108
+ position: absolute;
109
+ top: 1120px;
110
+ left: 120px;
111
+ font-size: 76px;
112
+ color: #cfcfcf;
113
+ font-weight: 700;
114
+ }
115
+ .list-desc {
116
+ position: absolute;
117
+ top: 1220px;
118
+ left: 120px;
119
+ font-size: 34px;
120
+ color: #a0a0a0;
121
+ width: 820px;
122
+ }
123
+
124
+ /* Action row (download/share + duration) */
125
+ .action-row {
126
+ position: absolute;
127
+ top: 1300px;
128
+ left: 120px;
129
+ display: flex;
130
+ align-items: center;
131
+ gap: 36px;
132
+ color: #9a9a9a;
133
+ font-size: 34px;
134
+ }
135
+ .circle-icon {
136
+ width: 84px; height: 84px;
137
+ border-radius: 42px;
138
+ border: 1px solid #2d2e31;
139
+ display: flex; align-items: center; justify-content: center;
140
+ background: rgba(255,255,255,0.04);
141
+ }
142
+ .circle-icon svg { width: 40px; height: 40px; fill: #bfbfbf; }
143
+
144
+ /* Single song row */
145
+ .song-row {
146
+ position: absolute;
147
+ top: 1400px;
148
+ left: 120px;
149
+ right: 120px;
150
+ padding: 24px 0;
151
+ border-bottom: 1px solid rgba(255,255,255,0.06);
152
+ }
153
+ .song-title { font-size: 40px; color: #d9d9d9; margin-bottom: 8px; }
154
+ .song-sub { font-size: 32px; color: #9a9a9a; }
155
+ .song-actions {
156
+ position: absolute;
157
+ right: 0;
158
+ top: 16px;
159
+ display: flex;
160
+ align-items: center;
161
+ gap: 42px;
162
+ }
163
+ .song-actions .circle-icon { width: 72px; height: 72px; }
164
+
165
+ /* Bottom share sheet */
166
+ .sheet {
167
+ position: absolute;
168
+ left: 0;
169
+ bottom: 0;
170
+ width: 100%;
171
+ height: 920px;
172
+ background: #1e1f22;
173
+ border-top-left-radius: 44px;
174
+ border-top-right-radius: 44px;
175
+ box-shadow: 0 -10px 24px rgba(0,0,0,0.6);
176
+ color: #e9e9e9;
177
+ }
178
+ .sheet-header {
179
+ padding: 36px 40px 20px;
180
+ font-size: 44px;
181
+ font-weight: 700;
182
+ }
183
+ .sheet-list { padding: 0 24px; }
184
+ .sheet-item {
185
+ display: flex;
186
+ align-items: center;
187
+ gap: 28px;
188
+ padding: 28px 20px;
189
+ border-radius: 16px;
190
+ color: #e6e6e6;
191
+ }
192
+ .sheet-item.highlight { background: #7f7f80; }
193
+ .app-icon {
194
+ width: 78px; height: 78px; border-radius: 39px;
195
+ background: #E0E0E0; border: 1px solid #BDBDBD;
196
+ display: flex; align-items: center; justify-content: center;
197
+ color: #454545; font-size: 28px; font-weight: 700;
198
+ }
199
+ .sheet-text { display: flex; flex-direction: column; }
200
+ .sheet-text .title { font-size: 40px; }
201
+ .sheet-text .sub { font-size: 28px; color: #b6b6b6; margin-top: 6px; }
202
+
203
+ .sheet-footer {
204
+ position: absolute;
205
+ bottom: 84px;
206
+ right: 40px;
207
+ display: flex; gap: 60px;
208
+ font-size: 38px;
209
+ color: #cfd9ff;
210
+ }
211
+
212
+ /* Bottom navigation pill */
213
+ .home-pill {
214
+ position: absolute;
215
+ bottom: 28px;
216
+ left: 50%;
217
+ transform: translateX(-50%);
218
+ width: 300px;
219
+ height: 14px;
220
+ border-radius: 7px;
221
+ background: #bfbfbf;
222
+ opacity: 0.7;
223
+ }
224
+ </style>
225
+ </head>
226
+ <body>
227
+ <div id="render-target">
228
+
229
+ <!-- Status bar -->
230
+ <div class="status-bar">
231
+ <div class="status-left">12:25</div>
232
+ <div class="status-right">
233
+ <div class="status-icon">
234
+ <!-- simple wifi -->
235
+ <svg viewBox="0 0 24 24"><path d="M12 18.5c.9 0 1.5.6 1.5 1.5S12.9 21.5 12 21.5 10.5 20.9 10.5 20s.6-1.5 1.5-1.5zm-6.6-7.7c4.5-3.7 10.7-3.7 15.2 0l-1.7 1.7c-3.6-2.9-8.3-2.9-11.9 0l-1.6-1.7zm3.8 3.9c2.7-2.2 6.5-2.2 9.1 0l-1.6 1.6c-1.9-1.6-4.9-1.6-6.8 0l-1.7-1.6z"/></svg>
236
+ </div>
237
+ <div class="status-icon">
238
+ <!-- battery -->
239
+ <svg viewBox="0 0 24 24"><path d="M18 6h2v12h-2V6zM3 7.5C3 6.7 3.7 6 4.5 6h11c.8 0 1.5.7 1.5 1.5v9c0 .8-.7 1.5-1.5 1.5h-11C3.7 18 3 17.3 3 16.5v-9z"/><rect x="5" y="9" width="9" height="6" fill="#eaeaea"/></svg>
240
+ </div>
241
+ </div>
242
+ </div>
243
+
244
+ <!-- Back button -->
245
+ <div class="back-btn">
246
+ <svg viewBox="0 0 24 24"><path d="M15.5 5l-7 7 7 7-2 2-9-9 9-9 2 2z"/></svg>
247
+ </div>
248
+
249
+ <!-- Album art placeholder -->
250
+ <div class="album-art">[IMG: Album Art]</div>
251
+
252
+ <!-- Vertical menu -->
253
+ <div class="top-menu">
254
+ <div class="dots">
255
+ <span></span><span></span><span></span>
256
+ </div>
257
+ </div>
258
+
259
+ <!-- Floating action buttons -->
260
+ <div class="fab edit">
261
+ <!-- pencil -->
262
+ <svg viewBox="0 0 24 24"><path d="M3 17.25V21h3.75L17.8 9.94l-3.75-3.75L3 17.25zm18.7-10.8c.4-.4.4-1 0-1.4l-2.8-2.8c-.4-.4-1-.4-1.4 0l-2.2 2.2 3.75 3.75 2.65-2.95z"/></svg>
263
+ </div>
264
+ <div class="fab play">
265
+ <!-- play -->
266
+ <svg viewBox="0 0 24 24"><path d="M8 5l12 7-12 7V5z"/></svg>
267
+ </div>
268
+
269
+ <!-- Playlist title and description -->
270
+ <div class="list-title">Chill List</div>
271
+ <div class="list-desc">1 song with music from artists like Joe Pass.</div>
272
+
273
+ <!-- Action row -->
274
+ <div class="action-row">
275
+ <div class="circle-icon">
276
+ <!-- download -->
277
+ <svg viewBox="0 0 24 24"><path d="M12 3v10.2l3.6-3.6 1.4 1.4-6 6-6-6 1.4-1.4L10 13.2V3h2zM4 19h16v2H4v-2z"/></svg>
278
+ </div>
279
+ <div class="circle-icon">
280
+ <!-- share -->
281
+ <svg viewBox="0 0 24 24"><path d="M18 16.1c-.9 0-1.7.4-2.2 1l-7.3-4.1c.1-.3.1-.6.1-.9s0-.6-.1-.9l7.3-4.1c.6.6 1.3 1 2.2 1 1.7 0 3-1.3 3-3s-1.3-3-3-3-3 1.3-3 3c0 .2 0 .4.1.6L7.8 8.5C7.2 7.9 6.2 7.5 5.2 7.5 3.5 7.5 2.2 8.8 2.2 10.5s1.3 3 3 3c1 0 2-.4 2.6-1l7.2 4.1c-.1.2-.1.4-.1.7 0 1.7 1.3 3 3 3s3-1.3 3-3-1.3-2.7-3-2.7z"/></svg>
282
+ </div>
283
+ <div>3m 32s • 1 Songs</div>
284
+ </div>
285
+
286
+ <!-- Song row -->
287
+ <div class="song-row">
288
+ <div class="song-title">Night And Day (Album Version)</div>
289
+ <div class="song-sub">Joe Pass - Virtuoso</div>
290
+ <div class="song-actions">
291
+ <div class="circle-icon">
292
+ <svg viewBox="0 0 24 24"><path d="M12 3v10.2l3.6-3.6 1.4 1.4-6 6-6-6 1.4-1.4L10 13.2V3h2z"/></svg>
293
+ </div>
294
+ <div class="circle-icon" style="background: transparent;">
295
+ <!-- vertical dots -->
296
+ <svg viewBox="0 0 24 24"><circle cx="12" cy="5" r="2"/><circle cx="12" cy="12" r="2"/><circle cx="12" cy="19" r="2"/></svg>
297
+ </div>
298
+ </div>
299
+ </div>
300
+
301
+ <!-- Bottom share sheet -->
302
+ <div class="sheet">
303
+ <div class="sheet-header">Share</div>
304
+ <div class="sheet-list">
305
+ <div class="sheet-item highlight">
306
+ <div class="app-icon">G</div>
307
+ <div class="sheet-text">
308
+ <div class="title">Gmail</div>
309
+ </div>
310
+ </div>
311
+
312
+ <div class="sheet-item">
313
+ <div class="app-icon">R</div>
314
+ <div class="sheet-text">
315
+ <div class="title">Reminder</div>
316
+ <div class="sub">Create Reminder</div>
317
+ </div>
318
+ </div>
319
+
320
+ <div class="sheet-item">
321
+ <div class="app-icon">N</div>
322
+ <div class="sheet-text">
323
+ <div class="title">Nearby Share</div>
324
+ </div>
325
+ </div>
326
+ </div>
327
+
328
+ <div class="sheet-footer">
329
+ <div>Just once</div>
330
+ <div>Always</div>
331
+ </div>
332
+
333
+ <div class="home-pill"></div>
334
+ </div>
335
+
336
+ </div>
337
+ </body>
338
+ </html>
code/10177/10177_9.html ADDED
@@ -0,0 +1,314 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Compose Email UI</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
9
+ #render-target {
10
+ width: 1080px;
11
+ height: 2400px;
12
+ position: relative;
13
+ overflow: hidden;
14
+ background: #1A1A1A;
15
+ color: #EDEDED;
16
+ }
17
+
18
+ /* Status bar */
19
+ .status-bar {
20
+ position: absolute;
21
+ top: 0;
22
+ left: 0;
23
+ width: 1080px;
24
+ height: 96px;
25
+ padding: 0 32px;
26
+ display: flex;
27
+ align-items: center;
28
+ justify-content: space-between;
29
+ font-size: 36px;
30
+ color: #FFFFFF;
31
+ }
32
+ .status-icons {
33
+ display: flex;
34
+ align-items: center;
35
+ gap: 24px;
36
+ }
37
+ .status-icons svg { fill: none; stroke: #FFFFFF; stroke-width: 3; }
38
+
39
+ /* Header */
40
+ .header {
41
+ position: absolute;
42
+ top: 96px;
43
+ left: 0;
44
+ width: 1080px;
45
+ height: 160px;
46
+ border-bottom: 1px solid #2A2A2A;
47
+ display: flex;
48
+ align-items: center;
49
+ padding: 0 24px;
50
+ gap: 24px;
51
+ }
52
+ .header-title {
53
+ font-size: 48px;
54
+ font-weight: 600;
55
+ flex: 1;
56
+ }
57
+ .header-actions {
58
+ display: flex;
59
+ align-items: center;
60
+ gap: 30px;
61
+ }
62
+ .icon-button {
63
+ width: 72px;
64
+ height: 72px;
65
+ display: inline-flex;
66
+ align-items: center;
67
+ justify-content: center;
68
+ border-radius: 36px;
69
+ }
70
+ .icon-button svg { stroke: #EDEDED; fill: none; stroke-width: 4; }
71
+
72
+ /* Fields */
73
+ .fields {
74
+ position: absolute;
75
+ top: 256px;
76
+ left: 0;
77
+ width: 1080px;
78
+ padding: 0 32px;
79
+ }
80
+ .row {
81
+ padding: 28px 0;
82
+ border-bottom: 1px solid #2A2A2A;
83
+ display: flex;
84
+ align-items: center;
85
+ }
86
+ .label {
87
+ width: 140px;
88
+ font-size: 34px;
89
+ color: #B0B0B0;
90
+ }
91
+ .value {
92
+ font-size: 36px;
93
+ color: #EDEDED;
94
+ flex: 1;
95
+ }
96
+ .dropdown {
97
+ width: 48px;
98
+ height: 48px;
99
+ }
100
+ .subject {
101
+ font-size: 40px;
102
+ padding: 32px 0;
103
+ border-bottom: 1px solid #2A2A2A;
104
+ }
105
+ .body-text {
106
+ font-size: 36px;
107
+ line-height: 1.5;
108
+ color: #EDEDED;
109
+ padding: 32px 0 24px 0;
110
+ white-space: pre-wrap;
111
+ }
112
+
113
+ /* Keyboard */
114
+ .keyboard {
115
+ position: absolute;
116
+ left: 0;
117
+ bottom: 96px; /* leave space for gesture pill */
118
+ width: 1080px;
119
+ height: 880px;
120
+ background: #2B2B2B;
121
+ border-top: 1px solid #3A3A3A;
122
+ }
123
+ .kbd-topbar {
124
+ height: 110px;
125
+ display: flex;
126
+ align-items: center;
127
+ gap: 24px;
128
+ padding: 0 24px;
129
+ }
130
+ .kbd-top-icon {
131
+ width: 84px;
132
+ height: 84px;
133
+ background: #3A3A3A;
134
+ border-radius: 20px;
135
+ display: flex;
136
+ align-items: center;
137
+ justify-content: center;
138
+ color: #DADADA;
139
+ font-size: 28px;
140
+ }
141
+ .keys {
142
+ padding: 12px 18px 18px 18px;
143
+ display: flex;
144
+ flex-direction: column;
145
+ gap: 18px;
146
+ }
147
+ .row-keys {
148
+ display: grid;
149
+ grid-template-columns: repeat(10, 1fr);
150
+ gap: 16px;
151
+ }
152
+ .row-keys.nine { grid-template-columns: repeat(9, 1fr); }
153
+ .row-keys.bottom { grid-template-columns: 1.4fr 1fr 1fr 6fr 1fr 1.6fr; }
154
+ .key {
155
+ height: 120px;
156
+ border-radius: 18px;
157
+ background: #3A3A3A;
158
+ color: #EDEDED;
159
+ font-size: 44px;
160
+ display: flex;
161
+ align-items: center;
162
+ justify-content: center;
163
+ }
164
+ .key.special { background: #4A4A4A; color: #FFFFFF; }
165
+ .key.space { background: #3A3A3A; color: #D0D0D0; font-size: 36px; }
166
+ .key svg { stroke: #EDEDED; fill: none; stroke-width: 4; }
167
+
168
+ /* Gesture pill */
169
+ .gesture-pill {
170
+ position: absolute;
171
+ bottom: 24px;
172
+ left: 50%;
173
+ transform: translateX(-50%);
174
+ width: 220px;
175
+ height: 12px;
176
+ border-radius: 12px;
177
+ background: #E6E6E6;
178
+ opacity: 0.85;
179
+ }
180
+ </style>
181
+ </head>
182
+ <body>
183
+ <div id="render-target">
184
+
185
+ <!-- Status bar -->
186
+ <div class="status-bar">
187
+ <div>12:25</div>
188
+ <div class="status-icons">
189
+ <!-- Signal -->
190
+ <svg width="40" height="40" viewBox="0 0 40 40">
191
+ <path d="M6 30h4M12 26h4M18 22h4M24 18h4M30 14h4"></path>
192
+ </svg>
193
+ <!-- Wifi -->
194
+ <svg width="40" height="40" viewBox="0 0 40 40">
195
+ <path d="M6 14c8-6 20-6 28 0"></path>
196
+ <path d="M10 20c6-4 14-4 20 0"></path>
197
+ <path d="M14 26c4-3 8-3 12 0"></path>
198
+ <circle cx="20" cy="30" r="2"></circle>
199
+ </svg>
200
+ <!-- Battery -->
201
+ <svg width="56" height="40" viewBox="0 0 56 40">
202
+ <rect x="4" y="8" width="42" height="24" rx="4" stroke="#FFFFFF"></rect>
203
+ <rect x="46" y="14" width="6" height="12" rx="2" stroke="#FFFFFF"></rect>
204
+ <rect x="8" y="12" width="32" height="16" fill="#FFFFFF" stroke="none"></rect>
205
+ </svg>
206
+ </div>
207
+ </div>
208
+
209
+ <!-- Header -->
210
+ <div class="header">
211
+ <!-- Back -->
212
+ <div class="icon-button">
213
+ <svg width="60" height="60" viewBox="0 0 60 60">
214
+ <path d="M36 12 L18 30 L36 48"></path>
215
+ </svg>
216
+ </div>
217
+ <div class="header-title">Compose</div>
218
+ <div class="header-actions">
219
+ <!-- Attach -->
220
+ <div class="icon-button">
221
+ <svg width="60" height="60" viewBox="0 0 60 60">
222
+ <path d="M20 34c0 8 6 12 12 12s12-4 12-12V22c0-6-4-10-10-10s-10 4-10 10v16"></path>
223
+ </svg>
224
+ </div>
225
+ <!-- Send -->
226
+ <div class="icon-button">
227
+ <svg width="60" height="60" viewBox="0 0 60 60">
228
+ <path d="M10 30 L50 14 L40 30 L50 46 Z"></path>
229
+ </svg>
230
+ </div>
231
+ <!-- Kebab -->
232
+ <div class="icon-button">
233
+ <svg width="16" height="60" viewBox="0 0 16 60">
234
+ <circle cx="8" cy="14" r="4" fill="#EDEDED" stroke="none"></circle>
235
+ <circle cx="8" cy="30" r="4" fill="#EDEDED" stroke="none"></circle>
236
+ <circle cx="8" cy="46" r="4" fill="#EDEDED" stroke="none"></circle>
237
+ </svg>
238
+ </div>
239
+ </div>
240
+ </div>
241
+
242
+ <!-- Fields -->
243
+ <div class="fields">
244
+ <div class="row">
245
+ <div class="label">From</div>
246
+ <div class="value">dbwscratch.test.id8@gmail.com</div>
247
+ </div>
248
+ <div class="row">
249
+ <div class="label">To</div>
250
+ <div class="value"></div>
251
+ <svg class="dropdown" viewBox="0 0 24 24">
252
+ <path d="M4 9 L12 15 L20 9" stroke="#B0B0B0" stroke-width="3" fill="none"></path>
253
+ </svg>
254
+ </div>
255
+ <div class="subject">Check out 'Chill List' on JioSaavn!</div>
256
+ <div class="body-text">
257
+ Listen to 'Chill List' on JioSaavn at
258
+ https://www.saavn.com/s/playlist/afd8554d0e2a42a63cf0e911da93fb28/chill_list/OA1Bzp2RN99zUTe4uMO3Gg__?referrer=svn_source=share&svn_medium=system&utm_source=share&utm_medium=system
259
+ </div>
260
+ </div>
261
+
262
+ <!-- Keyboard -->
263
+ <div class="keyboard">
264
+ <div class="kbd-topbar">
265
+ <div class="kbd-top-icon">▦</div>
266
+ <div class="kbd-top-icon">☺</div>
267
+ <div class="kbd-top-icon">GIF</div>
268
+ <div class="kbd-top-icon">⚙</div>
269
+ <div class="kbd-top-icon">G↔︎</div>
270
+ <div class="kbd-top-icon">🎨</div>
271
+ <div class="kbd-top-icon">🎤</div>
272
+ </div>
273
+ <div class="keys">
274
+ <div class="row-keys">
275
+ <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>
276
+ </div>
277
+ <div class="row-keys nine">
278
+ <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>
279
+ </div>
280
+ <div class="row-keys">
281
+ <div class="key special">
282
+ <svg width="40" height="40" viewBox="0 0 40 40">
283
+ <path d="M20 30 V10 M10 20 L20 10 L30 20"></path>
284
+ </svg>
285
+ </div>
286
+ <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>
287
+ <div class="key special">
288
+ <svg width="40" height="40" viewBox="0 0 40 40">
289
+ <path d="M10 12 L30 28"></path>
290
+ <path d="M30 12 L10 28"></path>
291
+ </svg>
292
+ </div>
293
+ </div>
294
+ <div class="row-keys bottom">
295
+ <div class="key special">?123</div>
296
+ <div class="key">@</div>
297
+ <div class="key">☺</div>
298
+ <div class="key space">space</div>
299
+ <div class="key">.</div>
300
+ <div class="key special">
301
+ <svg width="48" height="48" viewBox="0 0 48 48">
302
+ <path d="M14 10 L30 24 L14 38"></path>
303
+ </svg>
304
+ </div>
305
+ </div>
306
+ </div>
307
+ </div>
308
+
309
+ <!-- Gesture pill -->
310
+ <div class="gesture-pill"></div>
311
+
312
+ </div>
313
+ </body>
314
+ </html>
code/10179/10179_0.html ADDED
@@ -0,0 +1,298 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Android Home UI Mock</title>
5
+ <style>
6
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
7
+ #render-target {
8
+ width: 1080px;
9
+ height: 2400px;
10
+ position: relative;
11
+ overflow: hidden;
12
+ background: radial-gradient(1200px 900px at 50% 40%, #1b1b1b 0%, #121212 60%, #0f0f0f 100%);
13
+ }
14
+
15
+ /* Status bar */
16
+ .status-bar {
17
+ position: absolute;
18
+ top: 0;
19
+ left: 0;
20
+ width: 1080px;
21
+ height: 110px;
22
+ color: #ffffff;
23
+ display: flex;
24
+ align-items: center;
25
+ padding: 0 30px;
26
+ font-size: 40px;
27
+ letter-spacing: 0.5px;
28
+ }
29
+ .status-left { flex: 1; }
30
+ .status-center {
31
+ width: 260px;
32
+ text-align: center;
33
+ position: relative;
34
+ }
35
+ .page-dots {
36
+ position: absolute;
37
+ top: 18px;
38
+ left: 50%;
39
+ transform: translateX(-50%);
40
+ display: flex;
41
+ gap: 16px;
42
+ }
43
+ .dot {
44
+ width: 16px;
45
+ height: 16px;
46
+ border-radius: 50%;
47
+ background: #9e9e9e;
48
+ opacity: 0.6;
49
+ }
50
+ .dot.active { opacity: 1; background: #ffffff; }
51
+ .status-right {
52
+ display: flex;
53
+ gap: 18px;
54
+ align-items: center;
55
+ font-size: 30px;
56
+ }
57
+ .status-icon {
58
+ width: 38px;
59
+ height: 38px;
60
+ border-radius: 8px;
61
+ background: rgba(255,255,255,0.12);
62
+ }
63
+
64
+ /* App icons grid (top row) */
65
+ .apps-top {
66
+ position: absolute;
67
+ top: 190px;
68
+ left: 68px;
69
+ display: flex;
70
+ gap: 140px;
71
+ align-items: flex-start;
72
+ }
73
+ .app {
74
+ width: 180px;
75
+ text-align: center;
76
+ color: #ffffff;
77
+ font-size: 34px;
78
+ }
79
+ .app .icon {
80
+ width: 170px;
81
+ height: 170px;
82
+ border-radius: 50%;
83
+ background: #ffffff;
84
+ box-shadow: 0 8px 20px rgba(0,0,0,0.35);
85
+ margin: 0 auto 22px;
86
+ position: relative;
87
+ }
88
+
89
+ /* Simple SVGs inside icons */
90
+ .icon svg {
91
+ position: absolute;
92
+ left: 50%;
93
+ top: 50%;
94
+ transform: translate(-50%,-50%);
95
+ }
96
+
97
+ /* Bottom dock */
98
+ .dock {
99
+ position: absolute;
100
+ bottom: 260px;
101
+ left: 0;
102
+ width: 1080px;
103
+ display: flex;
104
+ justify-content: space-around;
105
+ padding: 0 80px;
106
+ }
107
+ .dock .icon {
108
+ width: 170px;
109
+ height: 170px;
110
+ border-radius: 50%;
111
+ background: #ffffff;
112
+ box-shadow: 0 8px 22px rgba(0,0,0,0.35);
113
+ position: relative;
114
+ }
115
+
116
+ /* Google search bar */
117
+ .search-bar {
118
+ position: absolute;
119
+ bottom: 120px;
120
+ left: 70px;
121
+ width: 940px;
122
+ height: 140px;
123
+ background: #2b2b2b;
124
+ border-radius: 72px;
125
+ box-shadow: 0 10px 24px rgba(0,0,0,0.5);
126
+ display: flex;
127
+ align-items: center;
128
+ padding: 0 34px;
129
+ color: #e0e0e0;
130
+ font-size: 42px;
131
+ }
132
+ .search-left {
133
+ display: flex;
134
+ align-items: center;
135
+ gap: 22px;
136
+ }
137
+ .g-badge {
138
+ width: 82px;
139
+ height: 82px;
140
+ border-radius: 50%;
141
+ background: #ffffff;
142
+ display: flex;
143
+ align-items: center;
144
+ justify-content: center;
145
+ font-weight: bold;
146
+ color: #4285F4;
147
+ font-size: 40px;
148
+ }
149
+ .search-actions {
150
+ margin-left: auto;
151
+ display: flex;
152
+ gap: 26px;
153
+ }
154
+ .action-btn {
155
+ width: 80px;
156
+ height: 80px;
157
+ border-radius: 22px;
158
+ background: rgba(255,255,255,0.08);
159
+ display: flex;
160
+ align-items: center;
161
+ justify-content: center;
162
+ }
163
+
164
+ /* Navigation handle */
165
+ .nav-handle {
166
+ position: absolute;
167
+ bottom: 24px;
168
+ left: 50%;
169
+ transform: translateX(-50%);
170
+ width: 320px;
171
+ height: 12px;
172
+ border-radius: 8px;
173
+ background: #e9e9e9;
174
+ opacity: 0.9;
175
+ }
176
+ </style>
177
+ </head>
178
+ <body>
179
+ <div id="render-target">
180
+
181
+ <!-- STATUS BAR -->
182
+ <div class="status-bar">
183
+ <div class="status-left">10:44</div>
184
+ <div class="status-center">
185
+ <div class="page-dots">
186
+ <div class="dot"></div>
187
+ <div class="dot active"></div>
188
+ </div>
189
+ </div>
190
+ <div class="status-right">
191
+ <div class="status-icon"></div>
192
+ <div class="status-icon"></div>
193
+ <div class="status-icon"></div>
194
+ </div>
195
+ </div>
196
+
197
+ <!-- TOP ROW APPS -->
198
+ <div class="apps-top">
199
+ <!-- Houzz -->
200
+ <div class="app">
201
+ <div class="icon">
202
+ <svg width="120" height="120" viewBox="0 0 120 120">
203
+ <!-- simple green house-like logo -->
204
+ <rect x="20" y="50" width="30" height="45" fill="#34C759"></rect>
205
+ <polygon points="35,26 70,50 70,95 50,95 50,65 35,65" fill="#34C759"></polygon>
206
+ </svg>
207
+ </div>
208
+ <div>Houzz</div>
209
+ </div>
210
+
211
+ <!-- Pepperfry -->
212
+ <div class="app">
213
+ <div class="icon">
214
+ <svg width="120" height="120" viewBox="0 0 120 120">
215
+ <!-- a simple orange chair -->
216
+ <rect x="28" y="40" width="64" height="32" rx="6" fill="#ff7a2e"></rect>
217
+ <rect x="40" y="72" width="40" height="18" rx="4" fill="#ff9a57"></rect>
218
+ <rect x="34" y="90" width="8" height="18" fill="#cc5f22"></rect>
219
+ <rect x="78" y="90" width="8" height="18" fill="#cc5f22"></rect>
220
+ </svg>
221
+ </div>
222
+ <div>Pepperfry</div>
223
+ </div>
224
+ </div>
225
+
226
+ <!-- BOTTOM DOCK ICONS -->
227
+ <div class="dock">
228
+ <!-- Phone -->
229
+ <div class="icon">
230
+ <svg width="110" height="110" viewBox="0 0 110 110">
231
+ <path d="M28 32c2-4 7-6 10-3l9 9c3 3 2 7-1 10l-4 3c6 10 15 18 25 24l3-4c3-3 7-4 10-1l9 9c3 3 1 8-3 10-9 4-21 1-36-10S24 58 20 49c-5-13-3-25 8-31z" fill="#3A77FF"></path>
232
+ </svg>
233
+ </div>
234
+
235
+ <!-- Pepperfry (dock) -->
236
+ <div class="icon">
237
+ <svg width="110" height="110" viewBox="0 0 120 120">
238
+ <rect x="30" y="42" width="60" height="30" rx="6" fill="#ff7a2e"></rect>
239
+ <rect x="42" y="72" width="36" height="16" rx="4" fill="#ff9a57"></rect>
240
+ <rect x="36" y="88" width="8" height="18" fill="#cc5f22"></rect>
241
+ <rect x="76" y="88" width="8" height="18" fill="#cc5f22"></rect>
242
+ </svg>
243
+ </div>
244
+
245
+ <!-- Chrome -->
246
+ <div class="icon">
247
+ <svg width="120" height="120" viewBox="0 0 120 120">
248
+ <!-- simplified chrome-like emblem -->
249
+ <circle cx="60" cy="60" r="50" fill="#EA4335"></circle>
250
+ <path d="M60 10 A50 50 0 0 1 110 60 L80 60 Z" fill="#FBBC04"></path>
251
+ <path d="M60 110 A50 50 0 0 1 10 60 L40 60 Z" fill="#34A853"></path>
252
+ <circle cx="60" cy="60" r="26" fill="#4285F4"></circle>
253
+ <circle cx="60" cy="60" r="16" fill="#ffffff"></circle>
254
+ </svg>
255
+ </div>
256
+
257
+ <!-- Camera -->
258
+ <div class="icon">
259
+ <svg width="110" height="110" viewBox="0 0 120 120">
260
+ <rect x="22" y="42" width="76" height="48" rx="8" fill="#4f4f4f"></rect>
261
+ <rect x="36" y="30" width="18" height="14" rx="4" fill="#666"></rect>
262
+ <circle cx="60" cy="66" r="16" fill="#9ec1ff"></circle>
263
+ <circle cx="60" cy="66" r="10" fill="#2f5fd3"></circle>
264
+ </svg>
265
+ </div>
266
+ </div>
267
+
268
+ <!-- Google Search Bar -->
269
+ <div class="search-bar">
270
+ <div class="search-left">
271
+ <div class="g-badge">G</div>
272
+ <div>Search</div>
273
+ </div>
274
+ <div class="search-actions">
275
+ <div class="action-btn">
276
+ <!-- Mic -->
277
+ <svg width="40" height="40" viewBox="0 0 24 24">
278
+ <path d="M12 3a3 3 0 0 1 3 3v6a3 3 0 0 1-6 0V6a3 3 0 0 1 3-3z" fill="#ff4b4b"></path>
279
+ <path d="M6 11a6 6 0 0 0 12 0h-2a4 4 0 0 1-8 0H6zM11 20h2v-2h-2v2z" fill="#ffffff"></path>
280
+ </svg>
281
+ </div>
282
+ <div class="action-btn">
283
+ <!-- Lens/Camera -->
284
+ <svg width="40" height="40" viewBox="0 0 24 24">
285
+ <rect x="4" y="7" width="16" height="12" rx="3" fill="#ffffff" opacity="0.8"></rect>
286
+ <circle cx="12" cy="13" r="4" fill="#4c87ff"></circle>
287
+ <rect x="8" y="5" width="4" height="3" rx="1" fill="#ffffff" opacity="0.8"></rect>
288
+ </svg>
289
+ </div>
290
+ </div>
291
+ </div>
292
+
293
+ <!-- Navigation Handle -->
294
+ <div class="nav-handle"></div>
295
+
296
+ </div>
297
+ </body>
298
+ </html>
code/10179/10179_3.html ADDED
@@ -0,0 +1,289 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
5
+ <title>Search UI with Keyboard</title>
6
+ <style>
7
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
8
+ #render-target {
9
+ position: relative;
10
+ width: 1080px;
11
+ height: 2400px;
12
+ overflow: hidden;
13
+ background: #FFFFFF;
14
+ }
15
+
16
+ /* Status bar (dark) */
17
+ .status-bar {
18
+ position: absolute;
19
+ top: 0;
20
+ left: 0;
21
+ width: 1080px;
22
+ height: 140px;
23
+ background: #241F26;
24
+ color: #fff;
25
+ }
26
+ .status-content {
27
+ position: absolute;
28
+ top: 36px;
29
+ left: 40px;
30
+ right: 40px;
31
+ height: 68px;
32
+ display: flex;
33
+ align-items: center;
34
+ justify-content: space-between;
35
+ font-weight: 600;
36
+ font-size: 44px;
37
+ letter-spacing: 1px;
38
+ }
39
+ .status-icons {
40
+ display: flex;
41
+ align-items: center;
42
+ gap: 26px;
43
+ }
44
+ .dot {
45
+ width: 14px; height: 14px; border-radius: 50%; background: #fff; opacity: .9;
46
+ }
47
+ .battery {
48
+ width: 40px; height: 20px; border: 2px solid #fff; border-radius: 3px; position: relative;
49
+ }
50
+ .battery::after {
51
+ content: ""; position: absolute; right: -8px; top: 4px; width: 6px; height: 12px; background: #fff; border-radius: 2px;
52
+ }
53
+
54
+ /* Search area */
55
+ .search-area {
56
+ position: absolute;
57
+ top: 140px;
58
+ left: 0;
59
+ width: 1080px;
60
+ padding: 28px 40px 20px;
61
+ background: #FFFFFF;
62
+ }
63
+ .search-row {
64
+ display: flex;
65
+ align-items: center;
66
+ gap: 24px;
67
+ }
68
+ .icon-btn {
69
+ width: 64px;
70
+ height: 64px;
71
+ display: inline-flex;
72
+ align-items: center;
73
+ justify-content: center;
74
+ color: #4A4A4A;
75
+ }
76
+ .search-input {
77
+ flex: 1;
78
+ font-size: 54px;
79
+ color: #1b1b1b;
80
+ }
81
+ .search-underline {
82
+ margin-top: 20px;
83
+ height: 6px;
84
+ background: #C9C9C9;
85
+ width: 100%;
86
+ }
87
+
88
+ .suggestion {
89
+ position: absolute;
90
+ top: 340px;
91
+ left: 40px;
92
+ right: 40px;
93
+ font-size: 48px;
94
+ color: #1b1b1b;
95
+ }
96
+
97
+ /* Keyboard */
98
+ .keyboard {
99
+ position: absolute;
100
+ left: 0;
101
+ bottom: 0;
102
+ width: 1080px;
103
+ height: 900px;
104
+ background: #1C1C21;
105
+ box-shadow: 0 -6px 18px rgba(0,0,0,0.25);
106
+ color: #EDEDED;
107
+ }
108
+ .kb-suggest {
109
+ height: 110px;
110
+ border-bottom: 1px solid #2a2a30;
111
+ display: flex;
112
+ align-items: center;
113
+ justify-content: center;
114
+ color: #D9D9D9;
115
+ font-size: 44px;
116
+ position: relative;
117
+ }
118
+ .kb-suggest .mic {
119
+ position: absolute;
120
+ right: 28px;
121
+ top: 24px;
122
+ width: 64px; height: 64px;
123
+ display: flex; align-items: center; justify-content: center;
124
+ color: #CFCFE6;
125
+ }
126
+
127
+ .row {
128
+ padding: 18px 22px;
129
+ display: flex;
130
+ justify-content: space-between;
131
+ gap: 14px;
132
+ }
133
+ .key {
134
+ flex: 1;
135
+ max-width: 92px;
136
+ height: 120px;
137
+ border-radius: 16px;
138
+ background: #2C2C32;
139
+ display: flex;
140
+ align-items: center;
141
+ justify-content: center;
142
+ color: #F1F1F1;
143
+ font-size: 46px;
144
+ }
145
+ .row.row2 .key { max-width: 100px; }
146
+ .special { max-width: 140px; }
147
+ .spacebar {
148
+ flex: 1;
149
+ height: 120px;
150
+ border-radius: 18px;
151
+ background: #2C2C32;
152
+ }
153
+ .key-wide { max-width: 180px; }
154
+ .search-btn {
155
+ width: 140px; height: 140px;
156
+ border-radius: 70px;
157
+ background: #DCD8FF;
158
+ color: #2C2C32;
159
+ display: flex; align-items: center; justify-content: center;
160
+ margin-left: 12px;
161
+ }
162
+
163
+ /* Simple SVG icons */
164
+ .svg {
165
+ width: 48px; height: 48px; fill: #4A4A4A;
166
+ }
167
+ .svg-white { fill: #EDEDED; width: 44px; height: 44px; }
168
+ .clear {
169
+ font-size: 60px;
170
+ color: #6A6A6A;
171
+ line-height: 1;
172
+ }
173
+ </style>
174
+ </head>
175
+ <body>
176
+ <div id="render-target">
177
+
178
+ <!-- Dark status bar -->
179
+ <div class="status-bar">
180
+ <div class="status-content">
181
+ <div>10:46</div>
182
+ <div class="status-icons">
183
+ <div class="dot"></div>
184
+ <div class="dot"></div>
185
+ <div class="dot"></div>
186
+ <svg class="svg" viewBox="0 0 24 24">
187
+ <path fill="#fff" d="M12 3C7 3 3 7 3 12h3a6 6 0 0 1 12 0h3c0-5-4-9-9-9zm-9 9c0 5 4 9 9 9s9-4 9-9h-3a6 6 0 0 1-12 0H3z"/>
188
+ </svg>
189
+ <div class="battery"></div>
190
+ </div>
191
+ </div>
192
+ </div>
193
+
194
+ <!-- Search bar area -->
195
+ <div class="search-area">
196
+ <div class="search-row">
197
+ <div class="icon-btn">
198
+ <svg class="svg" viewBox="0 0 24 24">
199
+ <path d="M15.5 19l-7-7 7-7" stroke="#4A4A4A" stroke-width="2.5" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
200
+ </svg>
201
+ </div>
202
+ <div class="search-input">2 seater recliners</div>
203
+ <div class="icon-btn">
204
+ <div class="clear">&times;</div>
205
+ </div>
206
+ </div>
207
+ <div class="search-underline"></div>
208
+ </div>
209
+
210
+ <!-- Suggestion -->
211
+ <div class="suggestion">2 seater recliners</div>
212
+
213
+ <!-- Keyboard -->
214
+ <div class="keyboard">
215
+ <div class="kb-suggest">
216
+ recliners
217
+ <div class="mic">
218
+ <svg class="svg-white" viewBox="0 0 24 24">
219
+ <path d="M12 14a3 3 0 0 0 3-3V6a3 3 0 0 0-6 0v5a3 3 0 0 0 3 3zm5-3a5 5 0 0 1-10 0H5a7 7 0 0 0 6 6.92V21h2v-3.08A7 7 0 0 0 19 11h-2z"/>
220
+ </svg>
221
+ </div>
222
+ </div>
223
+
224
+ <!-- Row 1 -->
225
+ <div class="row">
226
+ <div class="key">q</div>
227
+ <div class="key">w</div>
228
+ <div class="key">e</div>
229
+ <div class="key">r</div>
230
+ <div class="key">t</div>
231
+ <div class="key">y</div>
232
+ <div class="key">u</div>
233
+ <div class="key">i</div>
234
+ <div class="key">o</div>
235
+ <div class="key">p</div>
236
+ </div>
237
+
238
+ <!-- Row 2 -->
239
+ <div class="row row2" style="padding-left: 60px; padding-right: 60px;">
240
+ <div class="key">a</div>
241
+ <div class="key">s</div>
242
+ <div class="key">d</div>
243
+ <div class="key">f</div>
244
+ <div class="key">g</div>
245
+ <div class="key">h</div>
246
+ <div class="key">j</div>
247
+ <div class="key">k</div>
248
+ <div class="key">l</div>
249
+ </div>
250
+
251
+ <!-- Row 3 -->
252
+ <div class="row" style="padding-left: 30px; padding-right: 30px;">
253
+ <div class="key special">
254
+ <svg class="svg-white" viewBox="0 0 24 24">
255
+ <path d="M4 16l8-8 8 8" stroke="#EDEDED" stroke-width="2.5" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
256
+ </svg>
257
+ </div>
258
+ <div class="key">z</div>
259
+ <div class="key">x</div>
260
+ <div class="key">c</div>
261
+ <div class="key">v</div>
262
+ <div class="key">b</div>
263
+ <div class="key">n</div>
264
+ <div class="key">m</div>
265
+ <div class="key special">
266
+ <svg class="svg-white" viewBox="0 0 24 24">
267
+ <path d="M6 6h12v12H6z" fill="none"/>
268
+ <path d="M18 8l-6 6-6-6" fill="none" stroke="#EDEDED" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round" transform="rotate(180 12 12)"/>
269
+ </svg>
270
+ </div>
271
+ </div>
272
+
273
+ <!-- Row 4 -->
274
+ <div class="row" style="align-items: center;">
275
+ <div class="key key-wide">?123</div>
276
+ <div class="key key-wide">,</div>
277
+ <div class="spacebar"></div>
278
+ <div class="key key-wide">.</div>
279
+ <div class="search-btn">
280
+ <svg viewBox="0 0 24 24" width="56" height="56" fill="#2C2C32">
281
+ <path d="M15.5 14h-.8l-.3-.3A6 6 0 1 0 14 15.5l.3.3v.8l5 5 1.5-1.5-5-5zm-5.5 0a4.5 4.5 0 1 1 0-9 4.5 4.5 0 0 1 0 9z"/>
282
+ </svg>
283
+ </div>
284
+ </div>
285
+ </div>
286
+
287
+ </div>
288
+ </body>
289
+ </html>
code/10179/10179_4.html ADDED
@@ -0,0 +1,358 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>2 seater recliners - 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: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }
8
+ #render-target {
9
+ width: 1080px;
10
+ height: 2400px;
11
+ position: relative;
12
+ overflow: hidden;
13
+ background: #ffffff;
14
+ border-radius: 24px;
15
+ box-shadow: 0 6px 24px rgba(0,0,0,0.15);
16
+ }
17
+ /* Status bar */
18
+ .status-bar {
19
+ height: 120px;
20
+ background: #2d2732;
21
+ color: #ffffff;
22
+ display: flex;
23
+ align-items: center;
24
+ padding: 0 36px;
25
+ font-weight: 600;
26
+ font-size: 34px;
27
+ letter-spacing: 0.4px;
28
+ }
29
+ .status-right {
30
+ margin-left: auto;
31
+ display: flex;
32
+ align-items: center;
33
+ gap: 26px;
34
+ }
35
+ .dot { width: 12px; height: 12px; background:#ffffff; border-radius: 50%; opacity: 0.7; }
36
+ .battery {
37
+ width: 60px; height: 28px; border: 4px solid #fff; border-radius: 6px; position: relative;
38
+ }
39
+ .battery::after {
40
+ content: ""; position: absolute; right: -10px; top: 8px; width: 8px; height: 12px; background: #fff; border-radius: 2px;
41
+ }
42
+ .battery .level { width: 34px; height: 18px; background: #8bc34a; position: absolute; left: 6px; top: 3px; border-radius: 3px; }
43
+
44
+ /* App header */
45
+ .app-header {
46
+ height: 112px;
47
+ background: #fff;
48
+ display: flex;
49
+ align-items: center;
50
+ padding: 0 24px;
51
+ border-bottom: 1px solid #e6e6e6;
52
+ }
53
+ .title { font-size: 44px; font-weight: 700; color: #1b1b1b; margin-left: 18px; }
54
+ .header-actions { margin-left: auto; display: flex; gap: 34px; }
55
+ .icon-btn { width: 64px; height: 64px; display: inline-flex; align-items: center; justify-content: center; border-radius: 18px; }
56
+ .icon { width: 48px; height: 48px; fill: none; stroke: #333; stroke-width: 4px; }
57
+
58
+ /* Filters bar */
59
+ .filters {
60
+ display: flex;
61
+ padding: 0;
62
+ height: 120px;
63
+ background: #ffffff;
64
+ border-bottom: 1px solid #eee;
65
+ }
66
+ .filter-item {
67
+ flex: 1;
68
+ padding: 20px 30px;
69
+ display: flex;
70
+ flex-direction: column;
71
+ justify-content: center;
72
+ gap: 8px;
73
+ border-right: 1px solid #f0f0f0;
74
+ }
75
+ .filter-item:last-child { border-right: none; }
76
+ .filter-title { font-size: 36px; color: #333; display: flex; align-items: center; gap: 16px; font-weight: 700; }
77
+ .filter-sub { font-size: 28px; color: #7a7a7a; }
78
+
79
+ .content {
80
+ padding: 24px 24px 0 24px;
81
+ }
82
+ .section-title {
83
+ font-size: 40px;
84
+ font-weight: 800;
85
+ color: #222;
86
+ margin: 18px 0 12px;
87
+ }
88
+
89
+ /* Product grid */
90
+ .grid { display: flex; gap: 24px; }
91
+ .card {
92
+ width: calc(50% - 12px);
93
+ }
94
+ .img-box {
95
+ width: 100%;
96
+ height: 540px;
97
+ background: #E0E0E0;
98
+ border: 1px solid #BDBDBD;
99
+ border-radius: 12px;
100
+ display: flex; align-items: center; justify-content: center;
101
+ color: #757575; font-size: 34px; text-align: center; position: relative;
102
+ }
103
+ .tag-new {
104
+ position: absolute;
105
+ left: 0; top: 0;
106
+ background: #ff8a3d;
107
+ color: #fff;
108
+ font-weight: 800;
109
+ font-size: 30px;
110
+ padding: 10px 16px;
111
+ border-top-left-radius: 12px;
112
+ border-bottom-right-radius: 10px;
113
+ }
114
+ .fav-circle {
115
+ position: absolute;
116
+ right: 16px; bottom: 16px;
117
+ width: 66px; height: 66px;
118
+ background: #ffffff;
119
+ border-radius: 50%;
120
+ box-shadow: 0 2px 8px rgba(0,0,0,0.2);
121
+ display: flex; align-items: center; justify-content: center;
122
+ border: 1px solid #ddd;
123
+ }
124
+ .heart {
125
+ width: 34px; height: 34px; stroke: #777; stroke-width: 4px; fill: none;
126
+ }
127
+ .card-title {
128
+ font-size: 36px;
129
+ font-weight: 800;
130
+ color: #222;
131
+ line-height: 1.25;
132
+ margin-top: 18px;
133
+ }
134
+ .brand { font-size: 30px; color: #555; margin-top: 10px; }
135
+ .deal { font-size: 32px; color: #1aa34a; font-weight: 800; margin-top: 12px; }
136
+ .price {
137
+ font-size: 44px; font-weight: 900; color: #1b1b1b; margin-top: 6px;
138
+ }
139
+ .old-price { font-size: 34px; color: #9e9e9e; text-decoration: line-through; margin-left: 14px; font-weight: 600; }
140
+ .save { font-size: 30px; color: #2e7d32; margin-top: 10px; }
141
+
142
+ /* Banner */
143
+ .banner {
144
+ margin: 24px 0;
145
+ width: 100%;
146
+ height: 230px;
147
+ border-radius: 12px;
148
+ background: #E0E0E0;
149
+ border: 1px solid #BDBDBD;
150
+ display: flex; align-items: center; justify-content: center; color: #555; font-size: 34px; position: relative;
151
+ }
152
+ .banner-overlay {
153
+ position: absolute; right: 24px; top: 24px;
154
+ color: #1f1f1f; font-size: 40px; font-weight: 800;
155
+ }
156
+
157
+ /* Tiles below banner */
158
+ .tiles {
159
+ display: flex; gap: 24px;
160
+ }
161
+ .tile {
162
+ width: calc(50% - 12px);
163
+ height: 360px;
164
+ border-radius: 12px;
165
+ background: #E0E0E0;
166
+ border: 1px solid #BDBDBD;
167
+ display: flex; align-items: center; justify-content: center; color: #666; font-size: 32px; position: relative;
168
+ }
169
+ .ribbon {
170
+ position: absolute; left: 0; top: 0;
171
+ background: #ff6e66; color: #fff; font-weight: 800; font-size: 30px;
172
+ padding: 12px 18px; border-top-left-radius: 12px; border-bottom-right-radius: 12px;
173
+ }
174
+
175
+ /* Floating chat */
176
+ .chat {
177
+ position: absolute;
178
+ right: 24px;
179
+ top: 1460px;
180
+ background: #ff7c2f;
181
+ color: #fff;
182
+ font-weight: 800;
183
+ font-size: 34px;
184
+ padding: 18px 26px;
185
+ border-radius: 18px;
186
+ box-shadow: 0 6px 16px rgba(0,0,0,0.25);
187
+ display: inline-flex; align-items: center; gap: 16px;
188
+ }
189
+ .chat-bubble {
190
+ width: 38px; height: 32px;
191
+ border: 3px solid #fff; border-radius: 6px; position: relative;
192
+ }
193
+ .chat-bubble::after {
194
+ content: ""; position: absolute; bottom: -8px; left: 8px; width: 16px; height: 16px;
195
+ border-left: 3px solid #fff; border-bottom: 3px solid #fff; transform: rotate(45deg);
196
+ }
197
+
198
+ /* Bottom navigation */
199
+ .bottom-nav {
200
+ position: absolute; bottom: 120px; left: 0; right: 0;
201
+ height: 160px; border-top: 1px solid #e9e9e9; background: #fff;
202
+ display: flex; align-items: center; justify-content: space-around;
203
+ }
204
+ .nav-item {
205
+ display: flex; flex-direction: column; align-items: center; gap: 12px; color: #333; font-size: 30px;
206
+ }
207
+ .nav-item .icon { stroke: #333; }
208
+ .nav-item.active { color: #ff7c2f; font-weight: 800; }
209
+ .nav-item.active .icon { stroke: #ff7c2f; }
210
+ .home-pill {
211
+ position: absolute; bottom: 40px; left: 50%;
212
+ transform: translateX(-50%);
213
+ width: 240px; height: 16px; background: #000; opacity: 0.75; border-radius: 8px;
214
+ }
215
+ </style>
216
+ </head>
217
+ <body>
218
+ <div id="render-target">
219
+
220
+ <!-- Status Bar -->
221
+ <div class="status-bar">
222
+ 10:46
223
+ <div class="status-right">
224
+ <div class="dot"></div>
225
+ <div class="dot"></div>
226
+ <div class="battery"><div class="level"></div></div>
227
+ </div>
228
+ </div>
229
+
230
+ <!-- App Header -->
231
+ <div class="app-header">
232
+ <div class="icon-btn" aria-label="Back">
233
+ <svg class="icon" viewBox="0 0 24 24"><path d="M15 5l-7 7 7 7" /></svg>
234
+ </div>
235
+ <div class="title">2 seater recliners</div>
236
+ <div class="header-actions">
237
+ <div class="icon-btn" aria-label="Search">
238
+ <svg class="icon" viewBox="0 0 24 24"><circle cx="11" cy="11" r="7"/><path d="M20 20l-4-4"/></svg>
239
+ </div>
240
+ <div class="icon-btn" aria-label="Wishlist">
241
+ <svg class="icon" viewBox="0 0 24 24"><path d="M12 20s-7-4.5-7-9.5a4.5 4.5 0 019 0 4.5 4.5 0 019 0C21 15.5 12 20 12 20z"/></svg>
242
+ </div>
243
+ <div class="icon-btn" aria-label="Cart">
244
+ <svg class="icon" viewBox="0 0 24 24"><path d="M3 6h2l3 12h10l3-9H7"/><circle cx="10" cy="20" r="2"/><circle cx="18" cy="20" r="2"/></svg>
245
+ </div>
246
+ </div>
247
+ </div>
248
+
249
+ <!-- Filters Bar -->
250
+ <div class="filters">
251
+ <div class="filter-item">
252
+ <div class="filter-title">
253
+ Categories
254
+ <svg width="26" height="26" viewBox="0 0 24 24"><path d="M6 9l6 6 6-6" stroke="#777" stroke-width="3" fill="none"/></svg>
255
+ </div>
256
+ <div class="filter-sub">(30)</div>
257
+ </div>
258
+ <div class="filter-item">
259
+ <div class="filter-title">Sort By</div>
260
+ <div class="filter-sub">Relevance</div>
261
+ </div>
262
+ <div class="filter-item">
263
+ <div class="filter-title">Filter</div>
264
+ <div class="filter-sub">0 Filters Applied</div>
265
+ </div>
266
+ </div>
267
+
268
+ <div class="content">
269
+ <div class="section-title">Showing Results for "2 seater recliners"</div>
270
+
271
+ <!-- Product Grid -->
272
+ <div class="grid">
273
+ <!-- Card 1 -->
274
+ <div class="card">
275
+ <div class="img-box">
276
+ <div class="tag-new">New</div>
277
+ [IMG: Brown 2-seater recliner sofa in room]
278
+ <div class="fav-circle">
279
+ <svg class="heart" viewBox="0 0 24 24"><path d="M12 20s-7-4.5-7-9.5a4.5 4.5 0 019 0 4.5 4.5 0 019 0C21 15.5 12 20 12 20z"/></svg>
280
+ </div>
281
+ </div>
282
+ <div class="card-title">Milan Fabric 2 Seater Manual Recliner Sofa in Brown Colour</div>
283
+ <div class="brand">By Royaloak</div>
284
+ <div class="deal">Today's Deal</div>
285
+ <div class="price">&#8377;61,000 <span class="old-price">&#8377;100,000</span></div>
286
+ <div class="save">You Save &#8377;39,000 (39% off)</div>
287
+ </div>
288
+
289
+ <!-- Card 2 -->
290
+ <div class="card">
291
+ <div class="img-box">
292
+ <div class="tag-new">New</div>
293
+ [IMG: Baleno fabric 2-seater manual recliner in brown]
294
+ <div class="fav-circle">
295
+ <svg class="heart" viewBox="0 0 24 24"><path d="M12 20s-7-4.5-7-9.5a4.5 4.5 0 019 0 4.5 4.5 0 019 0C21 15.5 12 20 12 20z"/></svg>
296
+ </div>
297
+ </div>
298
+ <div class="card-title">Baleno Fabric 2 Seater Manual Recliner in Brown Colour</div>
299
+ <div class="brand">By Royaloak</div>
300
+ <div class="deal">Today's Deal</div>
301
+ <div class="price">&#8377;35,000 <span class="old-price">&#8377;65,000</span></div>
302
+ <div class="save">You Save &#8377;30,000 (46% off)</div>
303
+ </div>
304
+ </div>
305
+
306
+ <!-- Winter Sale Banner -->
307
+ <div class="banner">
308
+ [IMG: Snuggle-up winter sale promotion with free shipping and cashback]
309
+ <div class="banner-overlay">Upto 75% OFF</div>
310
+ </div>
311
+
312
+ <!-- Tiles -->
313
+ <div class="tiles">
314
+ <div class="tile">
315
+ <div class="ribbon">Extra 5% Coupon Inside</div>
316
+ [IMG: Living room decor art frame]
317
+ </div>
318
+ <div class="tile">
319
+ [IMG: World map wall art with brick texture]
320
+ </div>
321
+ </div>
322
+ </div>
323
+
324
+ <!-- Floating Chat -->
325
+ <div class="chat">
326
+ <div class="chat-bubble"></div>
327
+ Let's Chat
328
+ </div>
329
+
330
+ <!-- Bottom Navigation -->
331
+ <div class="bottom-nav">
332
+ <div class="nav-item active">
333
+ <svg class="icon" viewBox="0 0 24 24"><path d="M3 11l9-7 9 7v9H3z" /></svg>
334
+ Home
335
+ </div>
336
+ <div class="nav-item">
337
+ <svg class="icon" viewBox="0 0 24 24"><circle cx="12" cy="8" r="4"/><path d="M4 21c0-4 4-7 8-7s8 3 8 7"/></svg>
338
+ My Account
339
+ </div>
340
+ <div class="nav-item">
341
+ <svg class="icon" viewBox="0 0 24 24"><rect x="4" y="6" width="16" height="12" rx="2"/><path d="M4 10h16"/></svg>
342
+ Gift Cards
343
+ </div>
344
+ <div class="nav-item">
345
+ <svg class="icon" viewBox="0 0 24 24"><path d="M5 3h14v6H5zM5 12h7v9H5zM14 12h5v9h-5z"/></svg>
346
+ Stores
347
+ </div>
348
+ <div class="nav-item">
349
+ <svg class="icon" viewBox="0 0 24 24"><circle cx="6" cy="7" r="3"/><circle cx="18" cy="7" r="3"/><circle cx="6" cy="17" r="3"/><circle cx="18" cy="17" r="3"/></svg>
350
+ Categories
351
+ </div>
352
+ </div>
353
+
354
+ <!-- iOS-like home pill -->
355
+ <div class="home-pill"></div>
356
+ </div>
357
+ </body>
358
+ </html>
code/1018/1018_1.html ADDED
@@ -0,0 +1,309 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Product Detail UI</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
9
+ #render-target {
10
+ width: 1080px;
11
+ height: 2400px;
12
+ position: relative;
13
+ overflow: hidden;
14
+ background: #ffffff;
15
+ }
16
+
17
+ /* Top status and search */
18
+ .status-bar {
19
+ height: 64px;
20
+ padding: 0 32px;
21
+ display: flex;
22
+ align-items: center;
23
+ justify-content: space-between;
24
+ color: #333;
25
+ font-size: 28px;
26
+ }
27
+ .status-icons { display: flex; gap: 22px; align-items: center; }
28
+ .dot { width: 10px; height: 10px; background: #777; border-radius: 50%; display: inline-block; }
29
+ .battery {
30
+ width: 28px; height: 16px; border: 2px solid #555; position: relative; border-radius: 3px;
31
+ }
32
+ .battery::after {
33
+ content: ""; position: absolute; right: -6px; top: 4px; width: 4px; height: 8px; background: #555; border-radius: 1px;
34
+ }
35
+ .battery .lvl { position: absolute; left: 2px; top: 2px; right: 2px; bottom: 2px; background: #5e5e5e; border-radius: 2px; }
36
+
37
+ .search-bar-wrap {
38
+ height: 120px;
39
+ padding: 0 24px;
40
+ display: flex;
41
+ align-items: center;
42
+ gap: 18px;
43
+ }
44
+ .icon-btn {
45
+ width: 72px; height: 72px; border-radius: 36px; display: flex; align-items: center; justify-content: center;
46
+ }
47
+ .search-bar {
48
+ flex: 1;
49
+ height: 88px;
50
+ background: #F1F3F5;
51
+ border: 1px solid #DADCE0;
52
+ border-radius: 18px;
53
+ display: flex;
54
+ align-items: center;
55
+ padding: 0 24px;
56
+ color: #777;
57
+ font-size: 34px;
58
+ justify-content: space-between;
59
+ }
60
+ .cart-icon { width: 72px; height: 72px; display: flex; align-items: center; justify-content: center; }
61
+
62
+ /* Content */
63
+ .content {
64
+ padding: 16px 36px 140px 36px;
65
+ }
66
+ .img-placeholder {
67
+ width: 140px; height: 140px; border-radius: 70px;
68
+ background: #E0E0E0; border: 1px solid #BDBDBD;
69
+ display: flex; align-items: center; justify-content: center;
70
+ color: #757575; font-size: 26px; text-align: center;
71
+ margin-top: 12px;
72
+ }
73
+ .slider-dots { display: flex; gap: 14px; justify-content: center; margin: 24px 0 12px; }
74
+ .slider-dots span {
75
+ width: 22px; height: 22px; border-radius: 11px;
76
+ background: #C9C9C9;
77
+ opacity: 0.5;
78
+ }
79
+ .slider-dots span.active { opacity: 1; background: #8f8f8f; }
80
+
81
+ .link { color: #2E6CF6; font-weight: 700; font-size: 40px; margin-top: 16px; }
82
+ .title { font-size: 38px; line-height: 50px; color: #111; margin-top: 10px; }
83
+ .rating-row {
84
+ display: flex; align-items: center; gap: 12px; margin-top: 20px; font-size: 32px; color: #2e2e2e;
85
+ }
86
+ .stars { display: flex; gap: 6px; }
87
+ .assured {
88
+ margin-left: auto;
89
+ width: 180px; height: 60px;
90
+ background: #E0E0E0; border: 1px solid #BDBDBD; color: #757575;
91
+ display: flex; align-items: center; justify-content: center; font-size: 22px; border-radius: 12px;
92
+ }
93
+
94
+ .deal-tag {
95
+ display: inline-block; margin-top: 34px; background: #6B3CE7; color: #fff;
96
+ padding: 12px 18px; border-radius: 12px; font-size: 30px; font-weight: 700;
97
+ }
98
+ .price-row {
99
+ margin-top: 22px; display: flex; align-items: baseline; gap: 18px; flex-wrap: wrap;
100
+ }
101
+ .off { color: #21A334; font-size: 62px; font-weight: 800; }
102
+ .mrp { color: #9A9A9A; font-size: 40px; text-decoration: line-through; }
103
+ .price { color: #000; font-size: 64px; font-weight: 800; }
104
+ .emi { margin-top: 8px; font-size: 32px; color: #333; }
105
+ .emi .plans { color: #2E6CF6; font-weight: 700; }
106
+
107
+ .divider { height: 16px; background: #F3F3F7; margin: 28px -36px; }
108
+
109
+ .size-header { display: flex; align-items: center; justify-content: space-between; }
110
+ .size-header .label { font-size: 40px; color: #333; font-weight: 700; }
111
+ .size-chart { color: #2E6CF6; font-size: 32px; display: flex; align-items: center; gap: 10px; }
112
+ .size-list { display: flex; gap: 26px; margin-top: 24px; flex-wrap: wrap; }
113
+ .size-chip {
114
+ width: 140px; height: 140px; border: 3px solid #1E1E1E; border-radius: 70px;
115
+ display: flex; align-items: center; justify-content: center; font-size: 40px; color: #1E1E1E; font-weight: 700;
116
+ background: #fff;
117
+ }
118
+ .size-chip.disabled { color: #BDBDBD; border-color: #D0D0D0; background: #F3F3F3; }
119
+
120
+ .info-card {
121
+ margin-top: 28px;
122
+ background: #F7F1E8;
123
+ border: 1px solid #E6D9C6;
124
+ border-radius: 18px;
125
+ padding: 22px 24px;
126
+ font-size: 32px;
127
+ color: #555;
128
+ display: flex; gap: 16px; align-items: center;
129
+ }
130
+ .cube { width: 44px; height: 44px; border: 2px solid #B9B5AB; }
131
+ .info-card .link { font-size: 32px; font-weight: 700; }
132
+
133
+ .delivery-row {
134
+ display: flex; align-items: center; justify-content: space-between;
135
+ margin-top: 34px; font-size: 36px; color: #333;
136
+ }
137
+ .change-btn { color: #2E6CF6; font-weight: 700; font-size: 34px; padding: 16px 24px; border: 1px solid #DADCE0; border-radius: 12px; }
138
+
139
+ .shipping {
140
+ margin-top: 26px; font-size: 34px; color: #333;
141
+ }
142
+ .shipping .green { color: #12B312; font-weight: 800; }
143
+ .shipping .strike { text-decoration: line-through; color: #9A9A9A; }
144
+ .shipping .muted { color: #777; }
145
+ .shipping .countdown { color: #D52020; font-weight: 700; }
146
+
147
+ .floating-badge {
148
+ position: absolute; right: 36px; top: 1550px;
149
+ width: 120px; height: 120px; border-radius: 60px;
150
+ background: #E0E0E0; border: 1px solid #BDBDBD; color: #757575;
151
+ display: flex; align-items: center; justify-content: center; font-size: 22px;
152
+ box-shadow: 0 6px 16px rgba(0,0,0,0.2);
153
+ }
154
+
155
+ /* Bottom actions */
156
+ .bottom-bar {
157
+ position: absolute; left: 0; right: 0; bottom: 0;
158
+ padding: 16px 24px 40px 24px;
159
+ background: #ffffff;
160
+ box-shadow: 0 -8px 20px rgba(0,0,0,0.08);
161
+ }
162
+ .actions { display: grid; grid-template-columns: 1fr 1.6fr 1.6fr; gap: 20px; }
163
+ .btn {
164
+ height: 120px; border-radius: 20px; font-size: 36px; font-weight: 700;
165
+ display: flex; align-items: center; justify-content: center; gap: 18px; border: 1px solid #E0E0E0; color: #2E2E2E; background: #fff;
166
+ }
167
+ .btn.buy { background: #FFC42A; border-color: #FFC42A; color: #111; }
168
+ .home-indicator { height: 8px; width: 200px; background: #111; border-radius: 4px; margin: 26px auto 0; opacity: 0.8; }
169
+
170
+ /* SVG helpers */
171
+ .svg-24 { width: 40px; height: 40px; }
172
+ .svg-32 { width: 54px; height: 54px; }
173
+ .green-fill path { fill: #15A54A; }
174
+ </style>
175
+ </head>
176
+ <body>
177
+ <div id="render-target">
178
+ <!-- Status bar -->
179
+ <div class="status-bar">
180
+ <div>11:29</div>
181
+ <div class="status-icons">
182
+ <span class="dot"></span>
183
+ <span class="dot"></span>
184
+ <span class="dot"></span>
185
+ <span class="dot"></span>
186
+ <svg class="svg-24" viewBox="0 0 24 24">
187
+ <path d="M3 18h18v-2H3v2zm2-5h14v-2H5v2zm4-5h6V6H9v2z" fill="#666"/>
188
+ </svg>
189
+ <div class="battery"><div class="lvl"></div></div>
190
+ </div>
191
+ </div>
192
+
193
+ <!-- Search bar -->
194
+ <div class="search-bar-wrap">
195
+ <div class="icon-btn">
196
+ <svg class="svg-32" viewBox="0 0 24 24">
197
+ <path d="M15 18l-6-6 6-6" stroke="#333" stroke-width="2.5" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
198
+ </svg>
199
+ </div>
200
+ <div class="search-bar">
201
+ <span>Search for products</span>
202
+ <svg class="svg-32" viewBox="0 0 24 24">
203
+ <path d="M12 3c3.866 0 7 3.134 7 7 0 3.06-1.949 5.658-4.666 6.61L15 22l-3-2-3 2 1.666-5.39C7.95 15.658 6 13.06 6 10c0-3.866 3.134-7 6-7z" fill="#777"/>
204
+ </svg>
205
+ </div>
206
+ <div class="cart-icon">
207
+ <svg class="svg-32" viewBox="0 0 24 24">
208
+ <path d="M7 7h13l-2 8H8L7 7zm0 0L5 3H2" stroke="#333" stroke-width="2.2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
209
+ </svg>
210
+ </div>
211
+ </div>
212
+
213
+ <div class="content">
214
+ <div class="img-placeholder">[IMG: New Arrival Badge]</div>
215
+
216
+ <div class="slider-dots">
217
+ <span class="active"></span>
218
+ <span></span><span></span><span></span><span></span>
219
+ </div>
220
+
221
+ <div class="link">View more from NIKE</div>
222
+ <div class="title"><strong>NIKE</strong> Revolution 5 Running Shoes For Women (Multicolor)</div>
223
+
224
+ <div class="rating-row">
225
+ <div class="stars">
226
+ <svg class="svg-24 green-fill" viewBox="0 0 24 24"><path d="M12 17.27l6.18 3.73-1.64-7.03L21 9.24l-7.19-.62L12 2 10.19 8.62 3 9.24l4.46 4.73L5.82 21z"/></svg>
227
+ <svg class="svg-24 green-fill" viewBox="0 0 24 24"><path d="M12 17.27l6.18 3.73-1.64-7.03L21 9.24l-7.19-.62L12 2 10.19 8.62 3 9.24l4.46 4.73L5.82 21z"/></svg>
228
+ <svg class="svg-24 green-fill" viewBox="0 0 24 24"><path d="M12 17.27l6.18 3.73-1.64-7.03L21 9.24l-7.19-.62L12 2 10.19 8.62 3 9.24l4.46 4.73L5.82 21z"/></svg>
229
+ <svg class="svg-24 green-fill" viewBox="0 0 24 24"><path d="M12 17.27l6.18 3.73-1.64-7.03L21 9.24l-7.19-.62L12 2 10.19 8.62 3 9.24l4.46 4.73L5.82 21z"/></svg>
230
+ <svg class="svg-24 green-fill" viewBox="0 0 24 24"><path d="M12 17.27l6.18 3.73-1.64-7.03L21 9.24l-7.19-.62L12 2 10.19 8.62 3 9.24l4.46 4.73L5.82 21z"/></svg>
231
+ </div>
232
+ <span style="color:#2E6CF6;font-weight:700;">Very Good</span>
233
+ <span>• 49 ratings</span>
234
+ <div class="assured">[IMG: Plus Assured]</div>
235
+ </div>
236
+
237
+ <div class="deal-tag">Big Saving Deal</div>
238
+
239
+ <div class="price-row">
240
+ <div class="off">30% off</div>
241
+ <div class="mrp">₹3,695</div>
242
+ <div class="price">₹2,586</div>
243
+ </div>
244
+ <div class="emi">EMI from ₹127/month. <span class="plans">View Plans</span></div>
245
+
246
+ <div class="divider"></div>
247
+
248
+ <div class="size-header">
249
+ <div class="label">Size- UK/India</div>
250
+ <div class="size-chart">
251
+ <svg class="svg-24" viewBox="0 0 24 24">
252
+ <path d="M4 18h16v-2H4v2zm0-5h16v-2H4v2zm0-5h16V6H4v2z" fill="#2E6CF6"/>
253
+ </svg>
254
+ Size Chart
255
+ </div>
256
+ </div>
257
+ <div class="size-list">
258
+ <div class="size-chip">2.5</div>
259
+ <div class="size-chip">3.5</div>
260
+ <div class="size-chip">4.5</div>
261
+ <div class="size-chip">5.5</div>
262
+ <div class="size-chip">6.5</div>
263
+ <div class="size-chip disabled">7.5</div>
264
+ </div>
265
+
266
+ <div class="info-card">
267
+ <div class="cube"></div>
268
+ <div>Don't worry, we have a <strong>10-day</strong> return policy on this item. <span class="link">See Details</span></div>
269
+ </div>
270
+
271
+ <div class="divider"></div>
272
+
273
+ <div class="delivery-row">
274
+ <div>Deliver to: <strong>New Delhi - 110054</strong></div>
275
+ <div class="change-btn">Change</div>
276
+ </div>
277
+
278
+ <div class="shipping">
279
+ <div>
280
+ <svg class="svg-24" viewBox="0 0 24 24" style="vertical-align: middle;">
281
+ <path d="M3 7h12v8H3V7zm12 3h4l2 3v2h-6v-5zM6 19a2 2 0 110-4 2 2 0 010 4zm10 0a2 2 0 110-4 2 2 0 010 4z" fill="#8C8C8C"/>
282
+ </svg>
283
+ <span class="green">FREE Delivery</span> <span class="strike">₹40</span> | Delivery by <strong>1 Nov, Wednesday</strong>
284
+ </div>
285
+ <div class="muted" style="margin-top:8px;">If ordered within <span class="countdown">28m 17s</span></div>
286
+ </div>
287
+ </div>
288
+
289
+ <div class="floating-badge">[IMG: Flipkart Badge]</div>
290
+
291
+ <!-- Bottom action bar -->
292
+ <div class="bottom-bar">
293
+ <div class="actions">
294
+ <div class="btn">
295
+ <svg class="svg-32" viewBox="0 0 24 24">
296
+ <path d="M7 7h13l-2 8H8L7 7zm-2-4H2" stroke="#333" stroke-width="2.2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
297
+ <path d="M19 4h3" stroke="#333" stroke-width="2.2" stroke-linecap="round"/>
298
+ <path d="M5 2v6" stroke="#333" stroke-width="2.2" stroke-linecap="round"/>
299
+ </svg>
300
+ <span>Add</span>
301
+ </div>
302
+ <div class="btn">Pay with EMI</div>
303
+ <div class="btn buy">Buy now</div>
304
+ </div>
305
+ <div class="home-indicator"></div>
306
+ </div>
307
+ </div>
308
+ </body>
309
+ </html>