yhzheng1031 commited on
Commit
f4fbb15
·
verified ·
1 Parent(s): a610b55

Add files using upload-large-folder tool

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. code/7294/7294_1.html +232 -0
  2. code/7333/7333_5.html +172 -0
  3. code/7333/7333_6.html +244 -0
  4. code/7333/7333_8.html +203 -0
  5. code/7336/7336_1.html +248 -0
  6. code/7336/7336_2.html +261 -0
  7. code/7336/7336_3.html +248 -0
  8. code/7336/7336_4.html +431 -0
  9. code/7339/7339_0.html +308 -0
  10. code/7339/7339_1.html +553 -0
  11. code/7339/7339_2.html +435 -0
  12. code/7339/7339_3.html +299 -0
  13. code/7339/7339_4.html +198 -0
  14. code/7339/7339_5.html +220 -0
  15. code/7339/7339_6.html +185 -0
  16. code/7339/7339_7.html +255 -0
  17. code/7339/7339_8.html +254 -0
  18. code/734/734_1.html +247 -0
  19. code/734/734_2.html +233 -0
  20. code/734/734_3.html +321 -0
  21. code/734/734_4.html +169 -0
  22. code/734/734_5.html +361 -0
  23. code/734/734_6.html +278 -0
  24. code/734/734_7.html +417 -0
  25. code/7340/7340_0.html +289 -0
  26. code/7340/7340_1.html +216 -0
  27. code/7340/7340_2.html +280 -0
  28. code/7340/7340_3.html +241 -0
  29. code/7341/7341_0.html +204 -0
  30. code/7341/7341_1.html +347 -0
  31. code/7341/7341_2.html +244 -0
  32. code/7341/7341_3.html +72 -0
  33. code/7341/7341_4.html +73 -0
  34. code/7341/7341_5.html +108 -0
  35. code/7342/7342_1.html +350 -0
  36. code/7342/7342_2.html +458 -0
  37. code/7342/7342_3.html +419 -0
  38. code/7342/7342_4.html +274 -0
  39. code/7342/7342_5.html +425 -0
  40. code/7342/7342_6.html +388 -0
  41. code/7342/7342_7.html +270 -0
  42. code/7345/7345_1.html +364 -0
  43. code/7345/7345_2.html +280 -0
  44. code/7345/7345_3.html +379 -0
  45. code/7345/7345_4.html +224 -0
  46. code/7345/7345_5.html +460 -0
  47. code/7345/7345_6.html +382 -0
  48. code/7345/7345_7.html +238 -0
  49. code/7345/7345_8.html +261 -0
  50. code/7349/7349_0.html +300 -0
code/7294/7294_1.html ADDED
@@ -0,0 +1,232 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Shopping 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: #121212;
13
+ color: #fff;
14
+ }
15
+
16
+ /* Status bar */
17
+ .status-bar {
18
+ position: absolute;
19
+ top: 0;
20
+ left: 0;
21
+ width: 1080px;
22
+ height: 120px;
23
+ background: #3a3a3a;
24
+ display: flex;
25
+ align-items: center;
26
+ padding: 0 40px;
27
+ box-sizing: border-box;
28
+ font-size: 36px;
29
+ letter-spacing: 0.5px;
30
+ }
31
+ .status-right {
32
+ margin-left: auto;
33
+ display: flex;
34
+ align-items: center;
35
+ gap: 26px;
36
+ color: #ddd;
37
+ font-size: 30px;
38
+ }
39
+ .icon-cloud, .icon-signal, .icon-wifi, .icon-battery {
40
+ width: 36px; height: 36px; border-radius: 6px; background: #5a5a5a;
41
+ }
42
+
43
+ /* App bar */
44
+ .app-bar {
45
+ position: absolute;
46
+ top: 120px;
47
+ left: 0;
48
+ width: 1080px;
49
+ height: 160px;
50
+ display: flex;
51
+ align-items: center;
52
+ padding: 0 40px;
53
+ box-sizing: border-box;
54
+ }
55
+ .hamburger {
56
+ width: 88px; height: 88px; display: flex; align-items: center; justify-content: center;
57
+ margin-right: 24px;
58
+ }
59
+ .hamburger svg { width: 64px; height: 64px; }
60
+ .title {
61
+ font-size: 72px;
62
+ font-weight: 700;
63
+ color: #efefef;
64
+ }
65
+
66
+ /* Task list */
67
+ .list {
68
+ position: absolute;
69
+ top: 300px;
70
+ left: 0;
71
+ width: 1080px;
72
+ padding: 0 30px;
73
+ box-sizing: border-box;
74
+ }
75
+ .task {
76
+ background: #1d1d1d;
77
+ border-radius: 28px;
78
+ margin: 18px 0;
79
+ padding: 30px 30px 30px 140px;
80
+ position: relative;
81
+ }
82
+ .task .circle {
83
+ position: absolute;
84
+ left: 30px;
85
+ top: 36px;
86
+ width: 88px; height: 88px;
87
+ border-radius: 44px;
88
+ border: 8px solid #9e9e9e;
89
+ box-sizing: border-box;
90
+ }
91
+ .task.completed {
92
+ background: #222;
93
+ }
94
+ .task.completed .circle {
95
+ border: none;
96
+ background: #ffb300;
97
+ display: flex; align-items: center; justify-content: center;
98
+ box-shadow: 0 6px 16px rgba(0,0,0,0.35);
99
+ }
100
+ .task.completed .circle svg {
101
+ width: 48px; height: 48px; fill: none; stroke: #111; stroke-width: 10; stroke-linecap: round; stroke-linejoin: round;
102
+ }
103
+ .task-title {
104
+ font-size: 56px;
105
+ color: #ededed;
106
+ }
107
+ .task.completed .task-title {
108
+ color: #bdbdbd;
109
+ text-decoration: line-through;
110
+ }
111
+ .task-sub {
112
+ display: flex; align-items: center; gap: 12px;
113
+ font-size: 34px;
114
+ color: #cfcfcf;
115
+ margin-top: 16px;
116
+ }
117
+ .task-sub svg { width: 40px; height: 40px; fill: none; stroke: #cfcfcf; stroke-width: 6; }
118
+
119
+ /* Floating action button */
120
+ .fab {
121
+ position: absolute;
122
+ right: 72px;
123
+ bottom: 160px;
124
+ width: 170px; height: 170px;
125
+ border-radius: 85px;
126
+ background: #ffb300;
127
+ box-shadow: 0 16px 28px rgba(0,0,0,0.5);
128
+ display: flex; align-items: center; justify-content: center;
129
+ }
130
+ .fab svg { width: 80px; height: 80px; fill: none; stroke: #111; stroke-width: 16; stroke-linecap: round; }
131
+
132
+ /* Context menu */
133
+ .context-menu {
134
+ position: absolute;
135
+ top: 320px;
136
+ right: 60px;
137
+ width: 540px;
138
+ background: #2a2a2a;
139
+ border-radius: 22px;
140
+ box-shadow: 0 18px 40px rgba(0,0,0,0.6);
141
+ padding: 28px 32px;
142
+ }
143
+ .menu-item {
144
+ font-size: 46px;
145
+ color: #f0f0f0;
146
+ padding: 24px 6px;
147
+ border-radius: 12px;
148
+ }
149
+ .menu-item + .menu-item { margin-top: 6px; }
150
+ </style>
151
+ </head>
152
+ <body>
153
+ <div id="render-target">
154
+
155
+ <!-- Status bar -->
156
+ <div class="status-bar">
157
+ <div>12:25</div>
158
+ <div class="status-right">
159
+ <div class="icon-cloud"></div>
160
+ <div>88°</div>
161
+ <div class="icon-signal"></div>
162
+ <div class="icon-wifi"></div>
163
+ <div class="icon-battery"></div>
164
+ </div>
165
+ </div>
166
+
167
+ <!-- App bar with title -->
168
+ <div class="app-bar">
169
+ <div class="hamburger">
170
+ <svg viewBox="0 0 24 24">
171
+ <rect x="2" y="4" width="20" height="2" fill="#fff"></rect>
172
+ <rect x="2" y="11" width="20" height="2" fill="#fff"></rect>
173
+ <rect x="2" y="18" width="20" height="2" fill="#fff"></rect>
174
+ </svg>
175
+ </div>
176
+ <div class="title">Shopping</div>
177
+ </div>
178
+
179
+ <!-- Task list -->
180
+ <div class="list">
181
+ <!-- Completed task -->
182
+ <div class="task completed">
183
+ <div class="circle">
184
+ <svg viewBox="0 0 24 24">
185
+ <path d="M5 13l4 4 10-10"></path>
186
+ </svg>
187
+ </div>
188
+ <div class="task-title">Buy New Balance</div>
189
+ <div class="task-sub">
190
+ <svg viewBox="0 0 24 24">
191
+ <rect x="3" y="5" width="18" height="16" stroke="#cfcfcf"></rect>
192
+ <line x1="3" y1="9" x2="21" y2="9" stroke="#cfcfcf"></line>
193
+ <line x1="8" y1="2" x2="8" y2="6" stroke="#cfcfcf"></line>
194
+ <line x1="16" y1="2" x2="16" y2="6" stroke="#cfcfcf"></line>
195
+ </svg>
196
+ <span>Sa, Dec 23 02:00</span>
197
+ </div>
198
+ </div>
199
+
200
+ <!-- Unchecked tasks -->
201
+ <div class="task">
202
+ <div class="circle"></div>
203
+ <div class="task-title">Buy groceries</div>
204
+ </div>
205
+
206
+ <div class="task">
207
+ <div class="circle"></div>
208
+ <div class="task-title">Buy Milk and Chi...</div>
209
+ </div>
210
+ </div>
211
+
212
+ <!-- Context menu overlay -->
213
+ <div class="context-menu">
214
+ <div class="menu-item">Delete all completed tasks</div>
215
+ <div class="menu-item">Uncheck all</div>
216
+ <div class="menu-item">Copy</div>
217
+ <div class="menu-item">Paste</div>
218
+ <div class="menu-item">Rename list</div>
219
+ <div class="menu-item">Delete list</div>
220
+ </div>
221
+
222
+ <!-- Floating Action Button -->
223
+ <div class="fab">
224
+ <svg viewBox="0 0 24 24">
225
+ <line x1="12" y1="4" x2="12" y2="20"></line>
226
+ <line x1="4" y1="12" x2="20" y2="12"></line>
227
+ </svg>
228
+ </div>
229
+
230
+ </div>
231
+ </body>
232
+ </html>
code/7333/7333_5.html ADDED
@@ -0,0 +1,172 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Blinkit Play Listing Mock</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: Roboto, Arial, sans-serif; }
9
+ #render-target {
10
+ width: 1080px; height: 2400px; position: relative; overflow: hidden;
11
+ background: #f6f6f6; border-radius: 0; box-shadow: none;
12
+ color: #222;
13
+ }
14
+ /* Status bar */
15
+ .status-bar {
16
+ position: absolute; top: 0; left: 0; width: 100%; height: 120px;
17
+ background: #000; color: #fff;
18
+ }
19
+ .status-content {
20
+ height: 100%; padding: 0 36px; display: flex; align-items: center; justify-content: space-between;
21
+ }
22
+ .time { font-size: 44px; font-weight: 500; letter-spacing: 1px; }
23
+ .status-icons { display: flex; gap: 28px; align-items: center; }
24
+ /* Hero media */
25
+ .hero {
26
+ position: absolute; top: 120px; left: 0; width: 1080px; height: 850px;
27
+ }
28
+ .img-placeholder {
29
+ width: 100%; height: 100%;
30
+ background: #E0E0E0; border: 1px solid #BDBDBD;
31
+ display: flex; align-items: center; justify-content: center; color: #757575;
32
+ font-size: 34px;
33
+ }
34
+ .hero-overlay {
35
+ position: absolute; top: 24px; left: 24px; right: 24px; display: flex; justify-content: space-between; align-items: center;
36
+ }
37
+ .hero-brand { color: #fff; font-size: 42px; font-weight: 700; text-shadow: 0 2px 6px rgba(0,0,0,0.35); }
38
+ .notif {
39
+ position: absolute; top: 150px; right: 30px; width: 76px; height: 76px;
40
+ border-radius: 38px; background: rgba(160,160,160,0.9); color: #fff; display: flex; align-items: center; justify-content: center;
41
+ font-size: 36px; font-weight: 700;
42
+ }
43
+ /* App card */
44
+ .app-card {
45
+ position: absolute; top: 970px; left: 0; width: 1080px;
46
+ background: #fff; box-shadow: 0 6px 26px rgba(0,0,0,0.15); border-top: 1px solid rgba(0,0,0,0.08);
47
+ }
48
+ .app-card-inner {
49
+ padding: 40px; display: flex; align-items: center; gap: 40px;
50
+ }
51
+ .app-icon {
52
+ width: 300px; height: 300px; border-radius: 48px; overflow: hidden;
53
+ background: #E0E0E0; border: 1px solid #BDBDBD; display: flex; align-items: center; justify-content: center; color: #757575; font-size: 34px; text-align: center;
54
+ }
55
+ .app-info { flex: 1; }
56
+ .app-title { font-size: 72px; font-weight: 500; margin: 10px 0 18px; color: #222; }
57
+ .store-row { display: flex; align-items: center; gap: 16px; color: #666; font-size: 34px; margin-bottom: 26px; }
58
+ .install-btn {
59
+ width: 640px; height: 120px; background: #1E8E3E; color: #fff;
60
+ border-radius: 18px; display: flex; align-items: center; justify-content: center;
61
+ font-size: 44px; font-weight: 600; box-shadow: 0 6px 12px rgba(30,142,62,0.3);
62
+ }
63
+ /* Gallery */
64
+ .gallery {
65
+ position: absolute; top: 1430px; left: 0; width: 1080px; height: 870px;
66
+ background: #efefef; border-top: 1px solid rgba(0,0,0,0.06);
67
+ }
68
+ .gallery-inner {
69
+ padding: 28px 30px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
70
+ }
71
+ .shot {
72
+ background: #fff; border-radius: 28px; box-shadow: 0 4px 16px rgba(0,0,0,0.08); padding: 18px;
73
+ }
74
+ .shot .img-placeholder {
75
+ height: 650px; border-radius: 22px; font-size: 28px;
76
+ }
77
+ /* Bottom safe area */
78
+ .safe-area {
79
+ position: absolute; bottom: 0; left: 0; width: 1080px; height: 100px; background: #fff; border-top: 1px solid rgba(0,0,0,0.08);
80
+ }
81
+ .safe-inner { height: 100%; display: flex; align-items: center; justify-content: center; }
82
+ .home-pill {
83
+ width: 360px; height: 12px; background: #dadada; border-radius: 6px;
84
+ }
85
+ .safe-info {
86
+ position: absolute; left: 16px; bottom: 26px; width: 40px; height: 40px; border-radius: 20px; background: #d6f4f4; color: #0a6; display: flex; align-items: center; justify-content: center; font-weight: 700;
87
+ border: 1px solid #cde;
88
+ }
89
+ /* Utility */
90
+ .muted-icon { opacity: 0.95; }
91
+ </style>
92
+ </head>
93
+ <body>
94
+ <div id="render-target">
95
+ <!-- Status bar -->
96
+ <div class="status-bar">
97
+ <div class="status-content">
98
+ <div class="time">12:13</div>
99
+ <div class="status-icons">
100
+ <!-- Wi-Fi -->
101
+ <svg width="40" height="40" viewBox="0 0 24 24" aria-label="WiFi">
102
+ <path d="M12 18.5a1.8 1.8 0 1 0 0.001 0z" fill="#ffffff"></path>
103
+ <path d="M2 9.5c5.5-5 14.5-5 20 0" stroke="#ffffff" stroke-width="2" fill="none" stroke-linecap="round"></path>
104
+ <path d="M5 12.5c4-3.5 10-3.5 14 0" stroke="#ffffff" stroke-width="2" fill="none" stroke-linecap="round"></path>
105
+ <path d="M8 15.5c2.5-2 6-2 8 0" stroke="#ffffff" stroke-width="2" fill="none" stroke-linecap="round"></path>
106
+ </svg>
107
+ <!-- Battery -->
108
+ <svg width="40" height="40" viewBox="0 0 24 24" aria-label="Battery">
109
+ <rect x="2" y="6" width="18" height="12" rx="2" ry="2" fill="none" stroke="#ffffff" stroke-width="2"></rect>
110
+ <rect x="4" y="8" width="12" height="8" fill="#ffffff"></rect>
111
+ <rect x="20" y="10" width="2" height="6" fill="#ffffff"></rect>
112
+ </svg>
113
+ </div>
114
+ </div>
115
+ </div>
116
+
117
+ <!-- Hero section -->
118
+ <div class="hero">
119
+ <div class="img-placeholder">[IMG: Promo video – hand holding smartphone on desk]</div>
120
+ <div class="hero-overlay">
121
+ <div class="hero-brand">blinkit</div>
122
+ <!-- Mute icon -->
123
+ <svg class="muted-icon" width="44" height="44" viewBox="0 0 24 24" aria-label="Muted">
124
+ <path d="M4 10h4l6-4v12l-6-4H4z" fill="#ffffff"></path>
125
+ <path d="M2 2l20 20" stroke="#ffffff" stroke-width="2"></path>
126
+ </svg>
127
+ </div>
128
+ <div class="notif">4</div>
129
+ </div>
130
+
131
+ <!-- App info card -->
132
+ <div class="app-card">
133
+ <div class="app-card-inner">
134
+ <div class="app-icon">[IMG: App Icon]</div>
135
+ <div class="app-info">
136
+ <div class="app-title">Blinkit</div>
137
+ <div class="store-row">
138
+ <svg width="32" height="32" viewBox="0 0 24 24" aria-label="Play">
139
+ <polygon points="4,4 20,12 4,20" fill="#4CAF50"></polygon>
140
+ </svg>
141
+ <span>Google Play</span>
142
+ </div>
143
+ <div class="install-btn">Install</div>
144
+ </div>
145
+ </div>
146
+ </div>
147
+
148
+ <!-- Gallery area -->
149
+ <div class="gallery">
150
+ <div class="gallery-inner">
151
+ <div class="shot">
152
+ <div class="img-placeholder">[IMG: Feature card – Free delivery promotion]</div>
153
+ </div>
154
+ <div class="shot">
155
+ <div class="img-placeholder">[IMG: Feature card – 5000+ products from top brands]</div>
156
+ </div>
157
+ <div class="shot">
158
+ <div class="img-placeholder">[IMG: Feature card – Curated stores for specific needs]</div>
159
+ </div>
160
+ </div>
161
+ </div>
162
+
163
+ <!-- Bottom safe area -->
164
+ <div class="safe-area">
165
+ <div class="safe-inner">
166
+ <div class="home-pill"></div>
167
+ </div>
168
+ <div class="safe-info">i</div>
169
+ </div>
170
+ </div>
171
+ </body>
172
+ </html>
code/7333/7333_6.html ADDED
@@ -0,0 +1,244 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>Mobile UI Render</title>
6
+ <style>
7
+ body {
8
+ margin: 0;
9
+ padding: 0;
10
+ background: transparent;
11
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, 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: 120px;
29
+ background: #000000;
30
+ color: #ffffff;
31
+ }
32
+ .status-time {
33
+ position: absolute;
34
+ left: 44px;
35
+ top: 32px;
36
+ font-size: 44px;
37
+ font-weight: 500;
38
+ letter-spacing: 0.5px;
39
+ }
40
+ .status-icons {
41
+ position: absolute;
42
+ right: 36px;
43
+ top: 34px;
44
+ display: flex;
45
+ gap: 28px;
46
+ align-items: center;
47
+ }
48
+ .status-icons svg {
49
+ width: 48px;
50
+ height: 48px;
51
+ }
52
+
53
+ /* Hero area with video background placeholder and overlay */
54
+ .hero {
55
+ position: absolute;
56
+ top: 120px;
57
+ left: 0;
58
+ width: 1080px;
59
+ height: 1120px;
60
+ }
61
+ .img-placeholder {
62
+ background: #E0E0E0;
63
+ border: 1px solid #BDBDBD;
64
+ display: flex;
65
+ justify-content: center;
66
+ align-items: center;
67
+ color: #757575;
68
+ font-size: 40px;
69
+ text-align: center;
70
+ }
71
+ .hero .video-placeholder {
72
+ width: 1080px;
73
+ height: 1120px;
74
+ }
75
+ .hero-overlay {
76
+ position: absolute;
77
+ left: 0;
78
+ top: 0;
79
+ width: 1080px;
80
+ height: 1120px;
81
+ background: linear-gradient(to bottom, rgba(255,255,255,0.70) 0%, rgba(255,255,255,0.86) 40%, rgba(255,255,255,0.96) 70%, #ffffff 100%);
82
+ pointer-events: none;
83
+ }
84
+
85
+ /* Close button */
86
+ .close-btn {
87
+ position: absolute;
88
+ right: 36px;
89
+ top: 180px;
90
+ width: 88px;
91
+ height: 88px;
92
+ background: #ffffff;
93
+ border-radius: 50%;
94
+ box-shadow: 0 4px 14px rgba(0,0,0,0.18);
95
+ display: flex;
96
+ justify-content: center;
97
+ align-items: center;
98
+ }
99
+ .close-btn svg {
100
+ width: 48px;
101
+ height: 48px;
102
+ stroke: #333;
103
+ stroke-width: 10;
104
+ }
105
+
106
+ /* App icon placeholder */
107
+ .app-icon {
108
+ position: absolute;
109
+ top: 820px;
110
+ left: 50%;
111
+ transform: translateX(-50%);
112
+ width: 256px;
113
+ height: 256px;
114
+ border-radius: 56px;
115
+ box-shadow: 0 10px 24px rgba(0,0,0,0.18);
116
+ font-size: 34px;
117
+ line-height: 1.2;
118
+ padding: 0 24px;
119
+ }
120
+
121
+ /* Content area */
122
+ .content {
123
+ position: absolute;
124
+ top: 1290px;
125
+ left: 0;
126
+ width: 1080px;
127
+ background: #ffffff;
128
+ }
129
+ .headline {
130
+ margin: 0 120px;
131
+ font-size: 72px;
132
+ line-height: 1.2;
133
+ font-weight: 500;
134
+ color: #111111;
135
+ }
136
+ .cta {
137
+ width: 540px;
138
+ height: 120px;
139
+ margin: 60px auto 0 auto;
140
+ border-radius: 24px;
141
+ background: #2E7D32;
142
+ color: #ffffff;
143
+ font-size: 44px;
144
+ font-weight: 600;
145
+ display: flex;
146
+ justify-content: center;
147
+ align-items: center;
148
+ box-shadow: 0 8px 20px rgba(0,0,0,0.12);
149
+ }
150
+
151
+ /* Info icon near bottom-left */
152
+ .info-badge {
153
+ position: absolute;
154
+ left: 24px;
155
+ bottom: 180px;
156
+ width: 48px;
157
+ height: 48px;
158
+ border-radius: 50%;
159
+ border: 3px solid #2EA7FF;
160
+ color: #2EA7FF;
161
+ display: flex;
162
+ justify-content: center;
163
+ align-items: center;
164
+ font-weight: 700;
165
+ font-size: 30px;
166
+ background: #ffffff;
167
+ }
168
+
169
+ /* Bottom navigation bar */
170
+ .bottom-bar {
171
+ position: absolute;
172
+ left: 0;
173
+ bottom: 0;
174
+ width: 1080px;
175
+ height: 140px;
176
+ background: #000000;
177
+ }
178
+ .home-pill {
179
+ position: absolute;
180
+ left: 50%;
181
+ top: 48px;
182
+ transform: translateX(-50%);
183
+ width: 300px;
184
+ height: 16px;
185
+ border-radius: 12px;
186
+ background: #BDBDBD;
187
+ opacity: 0.9;
188
+ }
189
+ </style>
190
+ </head>
191
+ <body>
192
+ <div id="render-target">
193
+ <!-- Status Bar -->
194
+ <div class="status-bar">
195
+ <div class="status-time">12:13</div>
196
+ <div class="status-icons">
197
+ <!-- WiFi icon -->
198
+ <svg viewBox="0 0 24 24" fill="none">
199
+ <path d="M2 8c5-4 15-4 20 0" stroke="#fff" stroke-width="2" stroke-linecap="round"/>
200
+ <path d="M5 12c3-3 11-3 14 0" stroke="#fff" stroke-width="2" stroke-linecap="round"/>
201
+ <path d="M9 16c2-2 4-2 6 0" stroke="#fff" stroke-width="2" stroke-linecap="round"/>
202
+ <circle cx="12" cy="19" r="1.5" fill="#fff"/>
203
+ </svg>
204
+ <!-- Battery icon -->
205
+ <svg viewBox="0 0 28 24" fill="none">
206
+ <rect x="1" y="5" width="22" height="14" rx="2" stroke="#fff" stroke-width="2"/>
207
+ <rect x="3" y="7" width="12" height="10" rx="1" fill="#fff"/>
208
+ <rect x="23" y="9" width="4" height="6" rx="1" fill="#fff"/>
209
+ </svg>
210
+ </div>
211
+ </div>
212
+
213
+ <!-- Hero with video placeholder -->
214
+ <div class="hero">
215
+ <div class="img-placeholder video-placeholder">[IMG: Video background]</div>
216
+ <div class="hero-overlay"></div>
217
+ </div>
218
+
219
+ <!-- Close button -->
220
+ <div class="close-btn">
221
+ <svg viewBox="0 0 24 24">
222
+ <path d="M4 4l16 16M20 4L4 20" fill="none" stroke-linecap="round"/>
223
+ </svg>
224
+ </div>
225
+
226
+ <!-- App icon placeholder -->
227
+ <div class="img-placeholder app-icon">[IMG: Blinkit app icon]</div>
228
+
229
+ <!-- Content -->
230
+ <div class="content">
231
+ <h1 class="headline">Blinkit: Grocery in minutes</h1>
232
+ <div class="cta">Install</div>
233
+ </div>
234
+
235
+ <!-- Info icon -->
236
+ <div class="info-badge">i</div>
237
+
238
+ <!-- Bottom navigation bar -->
239
+ <div class="bottom-bar">
240
+ <div class="home-pill"></div>
241
+ </div>
242
+ </div>
243
+ </body>
244
+ </html>
code/7333/7333_8.html ADDED
@@ -0,0 +1,203 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <style>
6
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; color: #333; }
7
+ #render-target { width: 1080px; height: 2400px; position: relative; overflow: hidden; background: #ffffff; }
8
+
9
+ /* Status bar */
10
+ .status-bar { position: absolute; top: 0; left: 0; width: 1080px; height: 140px; background: #0A6EA8; color: #fff; }
11
+ .status-bar .time { position: absolute; left: 48px; top: 46px; font-size: 36px; font-weight: 600; letter-spacing: 0.5px; }
12
+ .status-bar .sys-icons { position: absolute; right: 40px; top: 46px; display: flex; gap: 24px; align-items: center; }
13
+ .sys-icons .wifi { width: 36px; height: 36px; border: 3px solid #fff; border-top-color: transparent; border-right-color: transparent; border-bottom-color: transparent; border-left-color: #fff; border-radius: 50%; opacity: 0.95; }
14
+ .sys-icons .battery { width: 36px; height: 20px; border: 3px solid #fff; position: relative; }
15
+ .sys-icons .battery::after { content: ""; position: absolute; right: -8px; top: 6px; width: 6px; height: 8px; background: #fff; }
16
+
17
+ /* App bar */
18
+ .app-bar { position: absolute; top: 140px; left: 0; width: 1080px; height: 140px; background: #0A6EA8; color: #fff; display: flex; align-items: center; padding: 0 36px; box-sizing: border-box; }
19
+ .app-title { font-size: 42px; font-weight: 700; margin-left: 24px; flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
20
+ .app-icons { display: flex; gap: 36px; align-items: center; }
21
+ .icon-btn { width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; }
22
+
23
+ /* Sort / Filter row */
24
+ .tool-row { position: absolute; top: 280px; left: 0; width: 1080px; height: 130px; background: #fff; border-top: 1px solid #e0e0e0; border-bottom: 1px solid #e0e0e0; display: flex; }
25
+ .tool { flex: 1; display: flex; align-items: center; justify-content: center; gap: 18px; font-weight: 700; font-size: 34px; }
26
+ .tool + .tool { border-left: 1px solid #e9e9e9; }
27
+ .tool .label-gray { color: #6b6b6b; }
28
+ .tool .label-blue { color: #1e88e5; }
29
+
30
+ /* Search bar */
31
+ .search-bar { position: absolute; top: 410px; left: 0; width: 1080px; height: 100px; background: #f5f5f5; border-top: 1px solid #d0d0d0; border-bottom: 1px solid #d0d0d0; display: flex; align-items: center; padding: 0 30px; box-sizing: border-box; }
32
+ .search-text { font-size: 40px; color: #333; flex: 1; }
33
+ .search-underline { position: absolute; left: 0; top: 510px; width: 1080px; height: 8px; background: #1e88e5; }
34
+
35
+ /* Cards */
36
+ .card { position: relative; margin: 0; width: 1080px; background: #fff; }
37
+ .gallery { display: flex; gap: 18px; padding: 18px 18px 0 18px; box-sizing: border-box; }
38
+ .img { flex: 1; height: 340px; background: #E0E0E0; border: 1px solid #BDBDBD; display: flex; align-items: center; justify-content: center; color: #757575; font-size: 28px; text-align: center; }
39
+ .heart { position: absolute; right: 36px; top: 220px; width: 60px; height: 60px; border-radius: 30px; background: rgba(255,255,255,0.95); display: flex; align-items: center; justify-content: center; }
40
+ .card-content { padding: 18px 24px 24px 24px; }
41
+ .card-title { font-size: 46px; font-weight: 700; margin-bottom: 14px; }
42
+ .card-meta { font-size: 32px; color: #757575; margin-bottom: 12px; }
43
+ .card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
44
+ .price { font-size: 56px; color: #1e88e5; font-weight: 800; }
45
+ .badge { color: #08a052; font-size: 34px; font-weight: 700; margin-right: 24px; }
46
+ .badge .dot { display: inline-block; width: 18px; height: 18px; background: #08a052; border-radius: 9px; margin-left: 12px; }
47
+ .view-btn { padding: 18px 40px; border: 3px solid #1e88e5; color: #1e88e5; border-radius: 12px; font-size: 36px; font-weight: 700; background: #fff; }
48
+
49
+ /* Dividers */
50
+ .divider { position: absolute; width: 1080px; height: 18px; background: #efefef; border-top: 1px solid #ddd; border-bottom: 1px solid #ddd; }
51
+
52
+ /* Bottom preview row */
53
+ .preview-row { position: absolute; left: 0; width: 1080px; padding: 18px; box-sizing: border-box; display: flex; gap: 18px; }
54
+ .preview-row .img { width: 340px; flex: 0 0 340px; height: 430px; }
55
+
56
+ /* Home indicator */
57
+ .home-indicator { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); width: 360px; height: 12px; background: #000; border-radius: 12px; opacity: 0.85; }
58
+
59
+ svg { display: block; }
60
+ </style>
61
+ </head>
62
+ <body>
63
+ <div id="render-target">
64
+
65
+ <!-- Status bar -->
66
+ <div class="status-bar">
67
+ <div class="time">12:14</div>
68
+ <div class="sys-icons">
69
+ <div class="wifi"></div>
70
+ <div class="battery"></div>
71
+ </div>
72
+ </div>
73
+
74
+ <!-- App bar -->
75
+ <div class="app-bar">
76
+ <div class="icon-btn">
77
+ <!-- Hamburger -->
78
+ <svg width="50" height="50" viewBox="0 0 24 24" fill="none">
79
+ <rect x="2" y="5" width="20" height="2" fill="#fff"></rect>
80
+ <rect x="2" y="11" width="20" height="2" fill="#fff"></rect>
81
+ <rect x="2" y="17" width="20" height="2" fill="#fff"></rect>
82
+ </svg>
83
+ </div>
84
+ <div class="app-title">Cameras - Digica...</div>
85
+ <div class="app-icons">
86
+ <!-- Search -->
87
+ <div class="icon-btn">
88
+ <svg width="50" height="50" viewBox="0 0 24 24">
89
+ <circle cx="10" cy="10" r="7" stroke="#fff" stroke-width="2" fill="none"></circle>
90
+ <line x1="15" y1="15" x2="22" y2="22" stroke="#fff" stroke-width="2"></line>
91
+ </svg>
92
+ </div>
93
+ <!-- Pin -->
94
+ <div class="icon-btn">
95
+ <svg width="50" height="50" viewBox="0 0 24 24">
96
+ <path d="M12 2 C8 2 5 5 5 9 c0 5 7 13 7 13 s7-8 7-13 c0-4-3-7-7-7z" fill="#fff"></path>
97
+ <circle cx="12" cy="9" r="3" fill="#0A6EA8"></circle>
98
+ </svg>
99
+ </div>
100
+ <!-- Bell -->
101
+ <div class="icon-btn">
102
+ <svg width="50" height="50" viewBox="0 0 24 24">
103
+ <path d="M6 9 v6 h12 V9" stroke="#fff" stroke-width="2" fill="none"></path>
104
+ <path d="M9 9 V7 a3 3 0 0 1 6 0 v2" stroke="#fff" stroke-width="2" fill="none"></path>
105
+ <rect x="11" y="17" width="2" height="2" fill="#fff"></rect>
106
+ </svg>
107
+ </div>
108
+ </div>
109
+ </div>
110
+
111
+ <!-- Sort/Filter row -->
112
+ <div class="tool-row">
113
+ <div class="tool">
114
+ <svg width="44" height="44" viewBox="0 0 24 24">
115
+ <path d="M8 5 L4 9 L8 13" stroke="#1e88e5" stroke-width="2" fill="none" stroke-linecap="round"></path>
116
+ <path d="M16 19 L20 15 L16 11" stroke="#1e88e5" stroke-width="2" fill="none" stroke-linecap="round"></path>
117
+ </svg>
118
+ <div class="label-gray">SORT</div>
119
+ </div>
120
+ <div class="tool">
121
+ <svg width="44" height="44" viewBox="0 0 24 24">
122
+ <path d="M3 5 h18 l-6 6 v6 l-6-2 v-4 z" stroke="#1e88e5" stroke-width="2" fill="none" stroke-linejoin="round"></path>
123
+ <circle cx="16" cy="11" r="2" fill="#1e88e5"></circle>
124
+ </svg>
125
+ <div class="label-blue">FILTER</div>
126
+ </div>
127
+ </div>
128
+
129
+ <!-- Search bar -->
130
+ <div class="search-bar">
131
+ <div class="search-text">Nikon Coolpix with charger</div>
132
+ <svg width="50" height="50" viewBox="0 0 24 24">
133
+ <circle cx="10" cy="10" r="7" stroke="#1e88e5" stroke-width="2" fill="none"></circle>
134
+ <line x1="15" y1="15" x2="22" y2="22" stroke="#1e88e5" stroke-width="2"></line>
135
+ </svg>
136
+ </div>
137
+ <div class="search-underline"></div>
138
+
139
+ <!-- Card 1 -->
140
+ <div class="card" style="top: 520px;">
141
+ <div class="gallery">
142
+ <div class="img">[IMG: Nikon camera back]</div>
143
+ <div class="img">[IMG: Nikon Coolpix front]</div>
144
+ </div>
145
+ <div class="heart">
146
+ <svg width="36" height="36" viewBox="0 0 24 24">
147
+ <path d="M12 21 C12 21 4 14 4 9 a4 4 0 0 1 8 0 a4 4 0 0 1 8 0 c0 5-8 12-8 12z" stroke="#777" stroke-width="2" fill="none"></path>
148
+ </svg>
149
+ </div>
150
+ <div class="card-content">
151
+ <div class="card-title">Nikon Coolpix with charger</div>
152
+ <div class="card-meta">Noida | 4d ago</div>
153
+ <div class="card-footer">
154
+ <div class="price">₹4,500</div>
155
+ <div style="display: flex; align-items: center; gap: 24px;">
156
+ <div class="badge">Gently Used <span class="dot"></span></div>
157
+ <div class="view-btn">View</div>
158
+ </div>
159
+ </div>
160
+ </div>
161
+ </div>
162
+
163
+ <div class="divider" style="top: 1060px;"></div>
164
+
165
+ <!-- Card 2 -->
166
+ <div class="card" style="top: 1080px;">
167
+ <div class="gallery">
168
+ <div class="img">[IMG: Nikon rear view]</div>
169
+ <div class="img">[IMG: Red compact camera + charger]</div>
170
+ <div class="img">[IMG: Case + batteries]</div>
171
+ </div>
172
+ <div class="heart">
173
+ <svg width="36" height="36" viewBox="0 0 24 24">
174
+ <path d="M12 21 C12 21 4 14 4 9 a4 4 0 0 1 8 0 a4 4 0 0 1 8 0 c0 5-8 12-8 12z" stroke="#777" stroke-width="2" fill="none"></path>
175
+ </svg>
176
+ </div>
177
+ <div class="card-content">
178
+ <div class="card-title">With rechargeable batteries and charger</div>
179
+ <div class="card-meta">16d ago</div>
180
+ <div class="card-footer">
181
+ <div class="price">₹5,000</div>
182
+ <div style="display: flex; align-items: center; gap: 24px;">
183
+ <div class="badge" style="color: #1e88e5;">Almost Like New</div>
184
+ <div class="view-btn">View</div>
185
+ </div>
186
+ </div>
187
+ </div>
188
+ </div>
189
+
190
+ <div class="divider" style="top: 1700px;"></div>
191
+
192
+ <!-- Bottom preview strip -->
193
+ <div class="preview-row" style="top: 1718px;">
194
+ <div class="img">[IMG: DSLR with lens]</div>
195
+ <div class="img">[IMG: DSLR kit on bed]</div>
196
+ <div class="img">[IMG: Accessories]</div>
197
+ </div>
198
+
199
+ <!-- Home indicator -->
200
+ <div class="home-indicator"></div>
201
+ </div>
202
+ </body>
203
+ </html>
code/7336/7336_1.html ADDED
@@ -0,0 +1,248 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Mobile UI - Filters</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, sans-serif; }
8
+ #render-target {
9
+ width: 1080px; height: 2400px;
10
+ position: relative; overflow: hidden;
11
+ background: linear-gradient(180deg, #9ee4e1 0%, #b8efe9 100%);
12
+ }
13
+
14
+ /* Status bar */
15
+ .status-bar {
16
+ position: absolute; top: 20px; left: 30px; right: 30px;
17
+ height: 60px; display: flex; align-items: center; justify-content: space-between;
18
+ color: #0b3c3b; font-weight: 600; letter-spacing: 0.3px; font-size: 34px;
19
+ }
20
+ .status-icons { display: flex; gap: 18px; align-items: center; }
21
+ .dot { width: 20px; height: 20px; background:#2d5856; border-radius:50%; opacity:.8; }
22
+ .wifi, .battery { width: 40px; height: 26px; border:2px solid #2d5856; border-radius:6px; }
23
+ .battery::after { content:""; display:block; width:6px; height:14px; background:#2d5856; position:absolute; margin-left:42px; margin-top:6px; border-radius:2px; }
24
+
25
+ /* Top search bar */
26
+ .top-bar {
27
+ position: absolute; top: 100px; left: 30px; right: 30px;
28
+ display: flex; align-items: center; gap: 24px;
29
+ }
30
+ .back-btn {
31
+ width: 72px; height: 72px; display:flex; align-items:center; justify-content:center;
32
+ border-radius: 36px; background: transparent;
33
+ }
34
+ .search-pill {
35
+ flex: 1;
36
+ height: 120px; border-radius: 28px;
37
+ background: #f5fdfc; box-shadow: 0 2px 0 rgba(0,0,0,0.12) inset;
38
+ display: flex; align-items: center; padding: 0 30px; gap: 24px;
39
+ border: 1px solid #cfe8e7;
40
+ }
41
+ .search-pill .input-text { font-size: 44px; color: #1b3f3e; flex: 1; }
42
+ .icon { width: 48px; height: 48px; fill: #1b3f3e; }
43
+
44
+ .camera {
45
+ width: 84px; height: 84px; border-radius: 22px; border: 2px solid #84cbc8; display:flex; align-items:center; justify-content:center;
46
+ background:#e8fbfa;
47
+ }
48
+
49
+ /* Chip row */
50
+ .chip-row {
51
+ position: absolute; top: 240px; left: 30px; right: 30px;
52
+ display: flex; align-items: center; gap: 20px;
53
+ }
54
+ .chip {
55
+ height: 92px; padding: 0 34px; border-radius: 24px; display: flex; align-items: center; gap: 16px;
56
+ background: #ffffff; border: 1px solid #cfe8e7; color: #245f5d; font-size: 38px;
57
+ }
58
+ .chip.teal { background: #e6fbf9; border-color: #86d7d4; color: #1d5957; }
59
+ .chip .prime-toggle {
60
+ width: 70px; height: 36px; background:#d7ebe9; border-radius:18px; position: relative;
61
+ }
62
+ .chip .prime-toggle::after {
63
+ content:""; position:absolute; top:3px; left:4px; width:30px; height:30px; background:#fff; border-radius:50%; box-shadow:0 1px 2px rgba(0,0,0,.2);
64
+ }
65
+ .stars { display:flex; gap:10px; }
66
+ .stars svg { width: 46px; height: 46px; fill: #f59a15; }
67
+ .chip .caret { width: 28px; height: 28px; border: solid #1d5957; border-width: 0 6px 6px 0; transform: rotate(-45deg); margin-left: 10px; }
68
+
69
+ /* Filter overlay */
70
+ .filter-sheet {
71
+ position: absolute; top: 360px; left: 0; right: 0; bottom: 0;
72
+ background: #ffffff; border-top-left-radius: 26px; border-top-right-radius: 26px;
73
+ box-shadow: 0 -8px 20px rgba(0,0,0,0.12);
74
+ }
75
+ .filter-header {
76
+ height: 140px; border-bottom: 1px solid #e6efee;
77
+ display:flex; align-items:center; justify-content: space-between; padding: 0 30px;
78
+ font-size: 48px; color: #123f3e; font-weight: 700;
79
+ }
80
+ .filter-header .close { color:#2d6f6d; font-size: 44px; font-weight: 600; }
81
+
82
+ .filter-body {
83
+ position: absolute; top: 140px; bottom: 180px; left: 0; right: 0;
84
+ display: flex;
85
+ }
86
+ .left-nav {
87
+ width: 300px; background: #f6fbfa; border-right: 1px solid #e6efee;
88
+ padding: 20px 0;
89
+ }
90
+ .left-item {
91
+ display:flex; align-items:center; justify-content: space-between;
92
+ padding: 34px 32px; font-size: 40px; color: #204c4b; border-bottom: 1px solid #edf5f4;
93
+ }
94
+ .left-item.active {
95
+ background: #e7fbf9; border-left: 6px solid #56c7c3; font-weight: 700;
96
+ }
97
+ .left-item .count {
98
+ background: #dff2f1; color:#1f6664; padding: 8px 16px; border-radius: 16px; font-size: 34px;
99
+ }
100
+
101
+ .main-panel {
102
+ flex: 1; padding: 40px 40px;
103
+ }
104
+ .section-title {
105
+ font-size: 64px; color: #163f3e; font-weight: 800; margin-bottom: 40px;
106
+ }
107
+ .sub-title {
108
+ font-size: 46px; color: #2b6f6d; margin: 36px 0 18px 0; font-weight: 700;
109
+ }
110
+ .pill {
111
+ display:inline-flex; align-items:center; gap:14px; padding: 26px 30px; border-radius: 20px;
112
+ background:#eef5f4; border:1px solid #d6e7e6; color:#245f5d; font-size: 40px; margin-right: 16px;
113
+ }
114
+ .prime-badge {
115
+ display:inline-flex; align-items:center; gap:16px; background:#eaf7ff; border-color:#bfe1ff; color:#2560b5;
116
+ }
117
+ .prime-check {
118
+ width: 40px; height: 40px; background:#ffe27a; border-radius:10px; display:flex; align-items:center; justify-content:center;
119
+ color:#1f6e6b; font-weight:900;
120
+ }
121
+
122
+ /* Bottom actions */
123
+ .bottom-actions {
124
+ position: absolute; left: 0; right: 0; bottom: 0; height: 180px;
125
+ display:flex; align-items:center; justify-content: space-between; padding: 30px;
126
+ background:#ffffff; border-top: 1px solid #e6efee;
127
+ }
128
+ .btn {
129
+ height: 110px; border-radius: 22px; padding: 0 40px; display:flex; align-items:center; justify-content:center; font-size: 44px; font-weight: 700;
130
+ }
131
+ .btn.clear {
132
+ background:#ffffff; border:2px solid #d6e7e6; color:#1f6664;
133
+ }
134
+ .btn.primary {
135
+ background:#0b7374; color:#ffffff; border: 0; box-shadow: 0 6px 12px rgba(0,0,0,0.15);
136
+ }
137
+
138
+ /* Utility SVG colors */
139
+ .icon-muted { fill:#2d6f6d; }
140
+ </style>
141
+ </head>
142
+ <body>
143
+ <div id="render-target">
144
+
145
+ <!-- Status Bar -->
146
+ <div class="status-bar">
147
+ <div>8:53</div>
148
+ <div class="status-icons">
149
+ <div class="dot"></div>
150
+ <div class="dot" style="opacity:.6;"></div>
151
+ <div class="wifi"></div>
152
+ <div class="battery"></div>
153
+ </div>
154
+ </div>
155
+
156
+ <!-- Top search -->
157
+ <div class="top-bar">
158
+ <div class="back-btn">
159
+ <svg class="icon icon-muted" viewBox="0 0 24 24">
160
+ <path d="M15 18l-6-6 6-6" stroke="#1b3f3e" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
161
+ </svg>
162
+ </div>
163
+ <div class="search-pill">
164
+ <svg class="icon" viewBox="0 0 24 24">
165
+ <circle cx="11" cy="11" r="7" stroke="#1b3f3e" stroke-width="2" fill="none"/>
166
+ <path d="M21 21l-4.35-4.35" stroke="#1b3f3e" stroke-width="2" fill="none" stroke-linecap="round"/>
167
+ </svg>
168
+ <div class="input-text">Screwdriver</div>
169
+ <div class="camera">
170
+ <svg class="icon" viewBox="0 0 24 24">
171
+ <rect x="3" y="6" width="18" height="14" rx="3" ry="3" stroke="#1b3f3e" stroke-width="2" fill="none"/>
172
+ <circle cx="12" cy="13" r="4" stroke="#1b3f3e" stroke-width="2" fill="none"/>
173
+ </svg>
174
+ </div>
175
+ </div>
176
+ </div>
177
+
178
+ <!-- Chip row -->
179
+ <div class="chip-row">
180
+ <div class="chip">
181
+ <svg class="icon" viewBox="0 0 24 24"><path d="M3 12l4 4 14-14" stroke="#27a69f" stroke-width="3" fill="none" stroke-linecap="round"/></svg>
182
+ <div>prime</div>
183
+ <div class="prime-toggle"></div>
184
+ </div>
185
+ <div class="chip teal">Screwdriver Sets</div>
186
+ <div class="chip">
187
+ <div class="stars">
188
+ <svg viewBox="0 0 24 24"><path d="M12 17.3l-6.2 3.7 1.9-7-5.7-4.7 7.3-.6L12 2l2.7 6.7 7.3.6-5.7 4.7 1.9 7z"/></svg>
189
+ <svg viewBox="0 0 24 24"><path d="M12 17.3l-6.2 3.7 1.9-7-5.7-4.7 7.3-.6L12 2l2.7 6.7 7.3.6-5.7 4.7 1.9 7z"/></svg>
190
+ <svg viewBox="0 0 24 24"><path d="M12 17.3l-6.2 3.7 1.9-7-5.7-4.7 7.3-.6L12 2l2.7 6.7 7.3.6-5.7 4.7 1.9 7z"/></svg>
191
+ <svg viewBox="0 0 24 24"><path d="M12 17.3l-6.2 3.7 1.9-7-5.7-4.7 7.3-.6L12 2l2.7 6.7 7.3.6-5.7 4.7 1.9 7z"/></svg>
192
+ <svg viewBox="0 0 24 24"><path d="M12 17.3l-6.2 3.7 1.9-7-5.7-4.7 7.3-.6L12 2l2.7 6.7 7.3.6-5.7 4.7 1.9 7z"/></svg>
193
+ </div>
194
+ </div>
195
+ <div class="chip">
196
+ Filters (1)
197
+ <div class="caret"></div>
198
+ </div>
199
+ </div>
200
+
201
+ <!-- Filter overlay -->
202
+ <div class="filter-sheet">
203
+ <div class="filter-header">
204
+ <div>Filters (1)</div>
205
+ <div class="close">Close</div>
206
+ </div>
207
+
208
+ <div class="filter-body">
209
+ <!-- Left navigation -->
210
+ <div class="left-nav">
211
+ <div class="left-item active"><span>Prime &amp; Delivery</span></div>
212
+ <div class="left-item"><span>Categories</span><span class="count">1</span></div>
213
+ <div class="left-item"><span>Brands</span></div>
214
+ <div class="left-item"><span>Price and Deals</span></div>
215
+ <div class="left-item"><span>Customer Reviews</span></div>
216
+ <div class="left-item"><span>Sort by</span></div>
217
+ <div class="left-item"><span>Special Feature</span></div>
218
+ <div class="left-item"><span>Head Style</span></div>
219
+ <div class="left-item"><span>New Arrivals</span></div>
220
+ <div class="left-item"><span>Item Condition</span></div>
221
+ <div class="left-item"><span>Availability</span></div>
222
+ </div>
223
+
224
+ <!-- Main content -->
225
+ <div class="main-panel">
226
+ <div class="section-title">Prime &amp; Delivery</div>
227
+
228
+ <div class="sub-title">Shipping Options</div>
229
+ <div class="pill">Eligible for Pay On Delivery</div>
230
+
231
+ <div class="sub-title">Prime Programs</div>
232
+ <div class="pill prime-badge">
233
+ <div class="prime-check">✓</div>
234
+ prime
235
+ </div>
236
+ </div>
237
+ </div>
238
+
239
+ <!-- Bottom actions -->
240
+ <div class="bottom-actions">
241
+ <div class="btn clear">Clear Filters</div>
242
+ <div class="btn primary">Show 10,000+ results</div>
243
+ </div>
244
+ </div>
245
+
246
+ </div>
247
+ </body>
248
+ </html>
code/7336/7336_2.html ADDED
@@ -0,0 +1,261 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Amazon Filters 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;
9
+ position:relative; overflow:hidden;
10
+ background:#f6f7f9;
11
+ }
12
+
13
+ /* Top gradient header */
14
+ .top-gradient {
15
+ position:absolute; left:0; top:0; width:100%; height:320px;
16
+ background:linear-gradient(180deg,#8fe0d6 0%, #a9e7dc 60%, #cfeee6 100%);
17
+ }
18
+
19
+ /* Status bar icons (simplified) */
20
+ .status-bar {
21
+ position:absolute; top:20px; left:24px; right:24px; height:40px; color:#1b1b1b;
22
+ display:flex; align-items:center; justify-content:space-between; font-size:26px;
23
+ opacity:0.85;
24
+ }
25
+ .status-left { display:flex; gap:24px; align-items:center; }
26
+ .status-right { display:flex; gap:18px; align-items:center; }
27
+ .dot { width:10px; height:10px; background:#1b1b1b; border-radius:50%; display:inline-block; }
28
+
29
+ /* Header bar with search */
30
+ .header {
31
+ position:absolute; top:80px; left:24px; right:24px;
32
+ }
33
+ .back-btn {
34
+ position:absolute; left:0; top:18px; width:64px; height:64px; display:flex; align-items:center; justify-content:center;
35
+ border-radius:14px;
36
+ }
37
+ .back-btn svg { width:36px; height:36px; }
38
+ .search-box {
39
+ margin-left:84px; margin-right:84px;
40
+ background:#ffffff; border-radius:22px; height:100px; box-shadow:0 2px 4px rgba(0,0,0,0.08);
41
+ display:flex; align-items:center; padding:0 28px; gap:22px;
42
+ }
43
+ .search-icon svg { width:40px; height:40px; fill:#3b3b3b; }
44
+ .search-text { flex:1; font-size:42px; color:#333; }
45
+ .camera-icon { width:56px; height:56px; border-radius:14px; display:flex; align-items:center; justify-content:center; background:#f2f2f2; }
46
+ .camera-icon svg { width:36px; height:36px; fill:#4c4c4c; }
47
+
48
+ /* Chips row under search */
49
+ .filters-row {
50
+ margin-top:18px; display:flex; align-items:center; gap:16px; flex-wrap:wrap;
51
+ }
52
+ .chip {
53
+ background:#eaecef; color:#2b2b2b; border-radius:24px; padding:20px 26px; font-size:32px;
54
+ display:inline-flex; align-items:center; gap:12px;
55
+ }
56
+ .chip.primary { background:#1f7f86; color:#fff; }
57
+ .toggle {
58
+ width:80px; height:40px; background:#d9dfe3; border-radius:20px; position:relative;
59
+ }
60
+ .toggle::after{
61
+ content:""; width:34px; height:34px; background:#fff; border-radius:50%;
62
+ position:absolute; left:4px; top:3px; box-shadow:0 1px 2px rgba(0,0,0,0.2);
63
+ }
64
+ .stars { color:#f59c22; font-size:34px; letter-spacing:2px; }
65
+
66
+ /* Filter sheet */
67
+ .sheet {
68
+ position:absolute; left:0; right:0; top:320px; bottom:140px;
69
+ background:#ffffff; border-top-left-radius:24px; border-top-right-radius:24px;
70
+ box-shadow:0 -2px 6px rgba(0,0,0,0.08);
71
+ }
72
+ .sheet-header {
73
+ height:120px; border-bottom:1px solid #ececec; display:flex; align-items:center; justify-content:space-between;
74
+ padding:0 32px; font-size:42px; color:#222;
75
+ }
76
+ .sheet-header .close { color:#1f7f86; font-size:40px; }
77
+ .sheet-body {
78
+ position:absolute; top:120px; bottom:0; left:0; right:0; display:flex;
79
+ }
80
+ /* Left sidebar */
81
+ .sidebar {
82
+ width:280px; border-right:1px solid #ededed; background:#f8fbfc; padding:24px 16px; overflow:auto;
83
+ }
84
+ .side-item {
85
+ font-size:32px; color:#38434a; padding:26px 16px; border-radius:12px; margin-bottom:8px;
86
+ }
87
+ .side-item.active { background:#e6f5f7; color:#137a82; font-weight:bold; }
88
+ .side-item small { color:#7b8790; font-size:28px; margin-left:6px; }
89
+
90
+ /* Right content */
91
+ .content {
92
+ flex:1; padding:28px 28px 180px 28px; overflow:auto;
93
+ }
94
+ .section-title { font-size:48px; font-weight:bold; color:#232f3e; margin-bottom:14px; }
95
+ .sub-title { font-size:34px; color:#6f7a83; margin:18px 0 10px; }
96
+ .chip-grid { display:flex; flex-wrap:wrap; gap:18px; }
97
+ .brand-chip { background:#f0f2f4; padding:22px 26px; border-radius:24px; font-size:32px; color:#222; }
98
+ .group-title { font-size:36px; color:#55626c; margin:26px 0 12px; }
99
+
100
+ /* Bottom action bar */
101
+ .bottom-bar {
102
+ position:absolute; left:0; right:0; bottom:0; height:140px; background:#ffffff; border-top:1px solid #e8e8e8;
103
+ display:flex; align-items:center; justify-content:space-between; padding:0 24px;
104
+ }
105
+ .btn {
106
+ height:96px; padding:0 40px; border-radius:18px; font-size:36px; display:flex; align-items:center; justify-content:center;
107
+ }
108
+ .btn.clear {
109
+ background:#ffffff; border:2px solid #cfd8dc; color:#1f2a33;
110
+ width:300px;
111
+ }
112
+ .btn.primary {
113
+ background:#0f7a86; color:#ffffff; width:520px; box-shadow:0 3px 6px rgba(15,122,134,0.35);
114
+ }
115
+
116
+ /* Small caret icon */
117
+ .caret {
118
+ width:20px; height:20px; border:2px solid #246b72; border-left:0; border-top:0; transform:rotate(-45deg); margin-left:8px;
119
+ }
120
+ </style>
121
+ </head>
122
+ <body>
123
+ <div id="render-target">
124
+
125
+ <div class="top-gradient"></div>
126
+
127
+ <!-- Status bar (simplified) -->
128
+ <div class="status-bar">
129
+ <div class="status-left">
130
+ <span>8:53</span>
131
+ <span class="dot"></span>
132
+ <span class="dot"></span>
133
+ <span class="dot"></span>
134
+ </div>
135
+ <div class="status-right">
136
+ <span class="dot"></span>
137
+ <span class="dot"></span>
138
+ <span class="dot"></span>
139
+ </div>
140
+ </div>
141
+
142
+ <!-- Header with back button and search -->
143
+ <div class="header">
144
+ <div class="back-btn">
145
+ <svg viewBox="0 0 24 24">
146
+ <path d="M15.5 20.5L7 12l8.5-8.5" stroke="#1f2a33" stroke-width="2.6" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
147
+ </svg>
148
+ </div>
149
+ <div class="search-box">
150
+ <div class="search-icon">
151
+ <svg viewBox="0 0 24 24"><path d="M10 2a8 8 0 105.3 14.1l5.2 5.2 1.5-1.5-5.2-5.2A8 8 0 0010 2z" fill="#3b3b3b"/></svg>
152
+ </div>
153
+ <div class="search-text">Screwdriver</div>
154
+ <div class="camera-icon">
155
+ <svg viewBox="0 0 24 24"><path d="M7 5l2-2h6l2 2h3v14H2V5h5zm5 4a5 5 0 110 10 5 5 0 010-10z" /></svg>
156
+ </div>
157
+ </div>
158
+
159
+ <div class="filters-row">
160
+ <div class="chip">
161
+ <span style="color:#1f7f86; font-weight:bold;">prime</span>
162
+ <div class="toggle"></div>
163
+ </div>
164
+
165
+ <div class="chip">Screwdriver Sets</div>
166
+
167
+ <div class="chip">
168
+ <span class="stars">★ ★ ★ ★ ★</span>
169
+ </div>
170
+
171
+ <div class="chip">
172
+ Filters (1)
173
+ <div class="caret"></div>
174
+ </div>
175
+ </div>
176
+ </div>
177
+
178
+ <!-- Filter sheet -->
179
+ <div class="sheet">
180
+ <div class="sheet-header">
181
+ <div>Filters (1)</div>
182
+ <div class="close">Close</div>
183
+ </div>
184
+
185
+ <div class="sheet-body">
186
+ <!-- Sidebar -->
187
+ <div class="sidebar">
188
+ <div class="side-item">Prime & Delivery</div>
189
+ <div class="side-item">Categories <small>1</small></div>
190
+ <div class="side-item active">Brands</div>
191
+ <div class="side-item">Price and Deals</div>
192
+ <div class="side-item">Customer Reviews</div>
193
+ <div class="side-item">Sort by</div>
194
+ <div class="side-item">Special Feature</div>
195
+ <div class="side-item">Head Style</div>
196
+ <div class="side-item">New Arrivals</div>
197
+ <div class="side-item">Item Condition</div>
198
+ <div class="side-item">Availability</div>
199
+ </div>
200
+
201
+ <!-- Content -->
202
+ <div class="content">
203
+ <div class="section-title">Brands</div>
204
+
205
+ <div class="sub-title">Made for Amazon Brands</div>
206
+ <div class="chip-grid" style="margin-bottom:12px;">
207
+ <div class="brand-chip">Made for Amazon</div>
208
+ </div>
209
+
210
+ <div class="group-title">A - F</div>
211
+ <div class="chip-grid">
212
+ <div class="brand-chip">AGARO</div>
213
+ <div class="brand-chip">Alis</div>
214
+ <div class="brand-chip">amazon basics</div>
215
+ <div class="brand-chip">BLACK+DECKER</div>
216
+ <div class="brand-chip">Black + Decker</div>
217
+ <div class="brand-chip">Bosch</div>
218
+ <div class="brand-chip">Brain Freezer</div>
219
+ <div class="brand-chip">Catron</div>
220
+ <div class="brand-chip">COOLCOLD</div>
221
+ <div class="brand-chip">DotCom</div>
222
+ <div class="brand-chip">ELISCO</div>
223
+ </div>
224
+
225
+ <div class="group-title">G - M</div>
226
+ <div class="chip-grid">
227
+ <div class="brand-chip">GIZMO</div>
228
+ <div class="brand-chip">GSK Cut</div>
229
+ <div class="brand-chip">H9</div>
230
+ <div class="brand-chip">Harden</div>
231
+ <div class="brand-chip">Inditrust</div>
232
+ <div class="brand-chip">INDURO</div>
233
+ <div class="brand-chip">Ingco</div>
234
+ <div class="brand-chip">JCB</div>
235
+ <div class="brand-chip">KROST</div>
236
+ <div class="brand-chip">Mcare</div>
237
+ <div class="brand-chip">MYHEART</div>
238
+ </div>
239
+
240
+ <div class="group-title">N - Z</div>
241
+ <div class="chip-grid">
242
+ <div class="brand-chip">PagKis</div>
243
+ <div class="brand-chip">PALIWAL CREATION</div>
244
+ <div class="brand-chip">SNE</div>
245
+ <div class="brand-chip">SPARTAN</div>
246
+ <div class="brand-chip">Taparia</div>
247
+ <div class="brand-chip">THEMISTO - built with passion</div>
248
+ </div>
249
+ </div>
250
+ </div>
251
+
252
+ <!-- Bottom actions -->
253
+ <div class="bottom-bar">
254
+ <div class="btn clear">Clear Filters</div>
255
+ <div class="btn primary">Show 10,000+ results</div>
256
+ </div>
257
+ </div>
258
+
259
+ </div>
260
+ </body>
261
+ </html>
code/7336/7336_3.html ADDED
@@ -0,0 +1,248 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>UI Mock - Screwdriver Filters</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: linear-gradient(180deg, #9fe5df 0%, #b7efe9 40%, #f6f6f6 40%, #f6f6f6 100%);
10
+ }
11
+ /* Status bar */
12
+ .statusbar {
13
+ position:absolute; top:0; left:0; width:100%; height:80px;
14
+ display:flex; align-items:center; justify-content:space-between;
15
+ padding:0 28px; color:#0a1f1d; font-weight:600; font-size:36px;
16
+ opacity:0.9;
17
+ }
18
+ .status-icons { display:flex; gap:22px; align-items:center; }
19
+ .dot { width:14px; height:14px; background:#1b1b1b; border-radius:50%; opacity:0.8; }
20
+ /* Header search */
21
+ .header {
22
+ position:absolute; top:90px; left:0; width:100%; padding:0 28px;
23
+ display:flex; align-items:center; gap:20px;
24
+ }
25
+ .back-btn {
26
+ width:70px; height:70px; border-radius:18px; display:flex; align-items:center; justify-content:center;
27
+ }
28
+ .search-bar {
29
+ flex:1; height:110px; background:#fff; border-radius:24px;
30
+ box-shadow: 0 4px 10px rgba(0,0,0,0.12);
31
+ display:flex; align-items:center; padding:0 26px; gap:22px;
32
+ }
33
+ .search-input {
34
+ flex:1; font-size:44px; color:#222;
35
+ }
36
+ .icon {
37
+ width:48px; height:48px; display:inline-flex; align-items:center; justify-content:center;
38
+ }
39
+ /* Filter chips row */
40
+ .chip-row {
41
+ position:absolute; top:220px; left:0; width:100%; padding:16px 28px;
42
+ display:flex; align-items:center; gap:16px;
43
+ }
44
+ .prime-toggle {
45
+ display:flex; align-items:center; gap:12px; background:#fff; border-radius:26px;
46
+ padding:10px 18px; box-shadow: 0 1px 3px rgba(0,0,0,0.08);
47
+ }
48
+ .toggle {
49
+ width:90px; height:44px; background:#e7e7e7; border-radius:22px; position:relative;
50
+ }
51
+ .toggle::after {
52
+ content:""; position:absolute; top:4px; left:6px; width:36px; height:36px; background:#fff; border-radius:50%;
53
+ box-shadow:0 1px 3px rgba(0,0,0,0.2);
54
+ }
55
+ .chip {
56
+ background:#eef2f3; color:#333; border:1px solid #d9dfe1;
57
+ padding:18px 24px; border-radius:28px; font-size:36px; display:inline-flex; align-items:center; gap:14px;
58
+ }
59
+ .chip.selected { background:#e7f5ff; border-color:#71b9e7; color:#1677be; }
60
+ .chip .x {
61
+ width:42px; height:42px; border-radius:21px; background:#d8ecfa; display:flex; align-items:center; justify-content:center; color:#1677be;
62
+ font-weight:bold; font-size:30px;
63
+ }
64
+ /* Main filter panel */
65
+ .panel {
66
+ position:absolute; top:320px; left:0; width:100%; height:1860px; background:#fff; border-top-left-radius:26px; border-top-right-radius:26px;
67
+ box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
68
+ }
69
+ .panel-header {
70
+ height:110px; border-bottom:1px solid #e9ecef; display:flex; align-items:center; justify-content:space-between; padding:0 28px;
71
+ font-size:44px; font-weight:700; color:#333;
72
+ }
73
+ .panel-content {
74
+ display:flex; height:1540px;
75
+ }
76
+ .sidebar {
77
+ width:300px; border-right:1px solid #eef1f4; padding:14px 20px; background:#f8fbfc;
78
+ }
79
+ .side-item {
80
+ font-size:36px; color:#555; padding:26px 18px; border-radius:14px; margin:8px 0;
81
+ }
82
+ .side-item.active { border-left:6px solid #2ba6b2; background:#e8f6f8; color:#0e6b76; font-weight:700; }
83
+ .content {
84
+ flex:1; padding:22px 28px;
85
+ }
86
+ .section-title {
87
+ font-size:40px; font-weight:700; color:#333; margin:6px 0 18px 0;
88
+ }
89
+ .group-title {
90
+ font-size:36px; color:#455a64; margin:26px 0 12px 0;
91
+ }
92
+ .brand-grid {
93
+ display:flex; flex-wrap:wrap; gap:18px;
94
+ }
95
+ .brand-chip {
96
+ background:#f2f4f6; border:1px solid #d9dde2; color:#333; border-radius:24px; padding:20px 26px; font-size:34px;
97
+ }
98
+ .brand-chip.selected { background:#e6f3ff; border-color:#75b9ea; color:#1677be; display:flex; gap:14px; align-items:center; }
99
+ /* Bottom action bar */
100
+ .bottom-bar {
101
+ position:absolute; bottom:0; left:0; width:100%; height:210px; background:#fff; border-top:1px solid #eaecef;
102
+ display:flex; align-items:center; justify-content:space-between; padding:0 28px;
103
+ }
104
+ .btn {
105
+ height:120px; border-radius:22px; padding:0 28px; font-size:40px; display:flex; align-items:center; justify-content:center; border:1px solid #d6dbe0; background:#f6f8fa; color:#1e2a32;
106
+ }
107
+ .btn.primary {
108
+ background:#047a8c; color:#fff; border-color:#047a8c; width:440px; font-weight:700;
109
+ }
110
+ </style>
111
+ </head>
112
+ <body>
113
+ <div id="render-target">
114
+
115
+ <!-- Status Bar -->
116
+ <div class="statusbar">
117
+ <div>8:54</div>
118
+ <div class="status-icons">
119
+ <div class="dot"></div>
120
+ <div class="dot"></div>
121
+ <div class="dot"></div>
122
+ <div style="width:28px; height:28px; border:2px solid #151515; border-radius:4px;"></div>
123
+ </div>
124
+ </div>
125
+
126
+ <!-- Header with search -->
127
+ <div class="header">
128
+ <div class="back-btn">
129
+ <svg class="icon" viewBox="0 0 24 24">
130
+ <path d="M15 18l-6-6 6-6" stroke="#1b3b3d" stroke-width="2.4" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
131
+ </svg>
132
+ </div>
133
+ <div class="search-bar">
134
+ <svg class="icon" viewBox="0 0 24 24">
135
+ <circle cx="10" cy="10" r="7" stroke="#4a4a4a" stroke-width="2" fill="none"/>
136
+ <path d="M21 21l-6-6" stroke="#4a4a4a" stroke-width="2" fill="none" stroke-linecap="round"/>
137
+ </svg>
138
+ <div class="search-input">Screwdriver</div>
139
+ <svg class="icon" viewBox="0 0 24 24">
140
+ <rect x="2" y="2" width="20" height="20" rx="5" ry="5" stroke="#4a4a4a" stroke-width="2" fill="none"/>
141
+ <circle cx="12" cy="12" r="4" stroke="#4a4a4a" stroke-width="2" fill="none"/>
142
+ </svg>
143
+ </div>
144
+ </div>
145
+
146
+ <!-- Chips row under search -->
147
+ <div class="chip-row">
148
+ <div class="prime-toggle">
149
+ <div style="color:#ff9d00; font-weight:800;">prime</div>
150
+ <div class="toggle"></div>
151
+ </div>
152
+
153
+ <div class="chip selected">
154
+ <span>Bosch</span>
155
+ <div class="x">×</div>
156
+ </div>
157
+ <div class="chip">Screwdriver Sets</div>
158
+ <div class="chip">
159
+ Filters (2)
160
+ <svg class="icon" viewBox="0 0 24 24">
161
+ <path d="M6 9l6 6 6-6" stroke="#475d6a" stroke-width="2.2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
162
+ </svg>
163
+ </div>
164
+ </div>
165
+
166
+ <!-- Filter panel -->
167
+ <div class="panel">
168
+ <div class="panel-header">
169
+ <div>Filters (2)</div>
170
+ <div style="font-size:38px; color:#177284;">Close</div>
171
+ </div>
172
+
173
+ <div class="panel-content">
174
+ <!-- Left sidebar -->
175
+ <div class="sidebar">
176
+ <div class="side-item">Prime & Delivery</div>
177
+ <div class="side-item">Categories<span style="float:right; color:#8a8f95;">1</span></div>
178
+ <div class="side-item active">Brands<span style="float:right; color:#0e6b76;">1</span></div>
179
+ <div class="side-item">Price and Deals</div>
180
+ <div class="side-item">Customer Reviews</div>
181
+ <div class="side-item">Sort by</div>
182
+ <div class="side-item">Special Feature</div>
183
+ <div class="side-item">Item Condition</div>
184
+ <div class="side-item">Availability</div>
185
+ </div>
186
+
187
+ <!-- Right content -->
188
+ <div class="content">
189
+ <div class="section-title">Brands</div>
190
+
191
+ <div class="group-title">A - F</div>
192
+ <div class="brand-grid">
193
+ <div class="brand-chip">AGARO</div>
194
+ <div class="brand-chip">amazon basics</div>
195
+ <div class="brand-chip">ATHRZ</div>
196
+ <div class="brand-chip">BLACK+DECKER</div>
197
+ <div class="brand-chip">Black + Decker</div>
198
+ <div class="brand-chip selected">
199
+ <span>Bosch</span>
200
+ <div style="width:36px; height:36px; border-radius:18px; background:#d8ecfa; display:flex; align-items:center; justify-content:center; font-size:26px; color:#1677be;">×</div>
201
+ </div>
202
+ <div class="brand-chip">Brain Freezer</div>
203
+ <div class="brand-chip">Catron</div>
204
+ <div class="brand-chip">COOLCOLD</div>
205
+ <div class="brand-chip">Electronic Spices</div>
206
+ <div class="brand-chip">ELISCO</div>
207
+ </div>
208
+
209
+ <div class="group-title">G - M</div>
210
+ <div class="brand-grid">
211
+ <div class="brand-chip">GIZMO</div>
212
+ <div class="brand-chip">GSK Cut</div>
213
+ <div class="brand-chip">H9</div>
214
+ <div class="brand-chip">Harden</div>
215
+ <div class="brand-chip">Inditrust</div>
216
+ <div class="brand-chip">INDURO</div>
217
+ <div class="brand-chip">Ingco</div>
218
+ <div class="brand-chip">JCB</div>
219
+ <div class="brand-chip">Mcare</div>
220
+ <div class="brand-chip">MYHEART</div>
221
+ </div>
222
+
223
+ <div class="group-title">N - Z</div>
224
+ <div class="brand-grid">
225
+ <div class="brand-chip">PagKis</div>
226
+ <div class="brand-chip">PALIWAL CREATION</div>
227
+ <div class="brand-chip">SNE</div>
228
+ <div class="brand-chip">SPARTAN</div>
229
+ <div class="brand-chip">Taparia</div>
230
+ <div class="brand-chip">THEMISTO - built with passion</div>
231
+ <div class="brand-chip">UMAI</div>
232
+ <div class="brand-chip">VENEKETY</div>
233
+ <div class="brand-chip">Wera</div>
234
+ <div class="brand-chip">XOYO</div>
235
+ </div>
236
+ </div>
237
+ </div>
238
+
239
+ <!-- Bottom action bar -->
240
+ <div class="bottom-bar">
241
+ <div class="btn">Clear Filters</div>
242
+ <div class="btn primary">Show 23 results</div>
243
+ </div>
244
+ </div>
245
+
246
+ </div>
247
+ </body>
248
+ </html>
code/7336/7336_4.html ADDED
@@ -0,0 +1,431 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Amazon Search - Screwdriver</title>
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <style>
7
+ body { margin:0; padding:0; background:transparent; font-family: Arial, Helvetica, sans-serif; }
8
+ * { box-sizing: border-box; }
9
+ #render-target {
10
+ position: relative;
11
+ width: 1080px;
12
+ height: 2400px;
13
+ overflow: hidden;
14
+ background: #ffffff;
15
+ color: #111;
16
+ }
17
+
18
+ /* Header gradient area */
19
+ .header-bg {
20
+ width: 100%;
21
+ height: 360px;
22
+ background: linear-gradient(180deg, #bfe6f2 0%, #c8f0e2 70%, #d7f5eb 100%);
23
+ padding: 18px 24px 0 24px;
24
+ }
25
+
26
+ /* Status bar */
27
+ .status-bar {
28
+ height: 70px;
29
+ display: flex;
30
+ align-items: center;
31
+ justify-content: space-between;
32
+ color: #1b1b1b;
33
+ font-weight: 600;
34
+ font-size: 30px;
35
+ }
36
+ .status-right {
37
+ display: flex;
38
+ gap: 18px;
39
+ align-items: center;
40
+ }
41
+ .icon {
42
+ width: 34px; height: 34px;
43
+ }
44
+ .icon svg { width: 100%; height: 100%; fill: #303030; }
45
+
46
+ /* Search bar */
47
+ .search-row {
48
+ margin-top: 18px;
49
+ display: flex;
50
+ align-items: center;
51
+ justify-content: center;
52
+ }
53
+ .search-box {
54
+ width: 100%;
55
+ height: 110px;
56
+ background: #fff;
57
+ border-radius: 24px;
58
+ box-shadow: 0 2px 0 rgba(0,0,0,0.06) inset;
59
+ display: flex;
60
+ align-items: center;
61
+ padding: 0 26px;
62
+ border: 1px solid #dfe2e5;
63
+ }
64
+ .search-input {
65
+ flex: 1;
66
+ color: #333;
67
+ font-size: 36px;
68
+ font-weight: 600;
69
+ padding-left: 16px;
70
+ }
71
+ .search-placeholder { color:#222; opacity: 0.9; }
72
+ .search-icons {
73
+ display: flex;
74
+ gap: 18px;
75
+ align-items: center;
76
+ }
77
+ .round-icon {
78
+ width: 64px; height: 64px;
79
+ border-radius: 50%;
80
+ background:#f0f3f5;
81
+ display:flex; align-items:center; justify-content:center;
82
+ border:1px solid #e3e5e8;
83
+ }
84
+
85
+ /* Location row */
86
+ .location-row {
87
+ margin-top: 16px;
88
+ display: flex;
89
+ align-items: center;
90
+ gap: 14px;
91
+ color: #1c2a2a;
92
+ font-size: 32px;
93
+ }
94
+ .location-pin { width: 34px; height: 34px; }
95
+
96
+ /* Chips row */
97
+ .chips-row {
98
+ margin-top: 16px;
99
+ display: flex;
100
+ gap: 16px;
101
+ align-items: center;
102
+ flex-wrap: nowrap;
103
+ }
104
+ .chip {
105
+ padding: 14px 24px;
106
+ background: #ffffff;
107
+ border: 1px solid #cfd6db;
108
+ border-radius: 50px;
109
+ font-size: 30px;
110
+ color:#1b2a2f;
111
+ white-space: nowrap;
112
+ }
113
+ .chip.blue { color: #2879ff; border-color:#cfe0ff; background:#f3f7ff; }
114
+ .chip-filter { display:flex; align-items:center; gap:8px; }
115
+ .toggle {
116
+ width: 110px; height: 60px; border-radius: 30px;
117
+ background:#e8ecef; border:1px solid #d7dde2; position: relative;
118
+ }
119
+ .toggle::after {
120
+ content:"";
121
+ position:absolute; top:6px; left:8px;
122
+ width:48px; height:48px; border-radius:50%;
123
+ background:#fff; border:1px solid #cad1d8;
124
+ }
125
+
126
+ /* Content area */
127
+ .content {
128
+ position: absolute;
129
+ top: 360px;
130
+ left: 0;
131
+ right: 0;
132
+ bottom: 160px;
133
+ overflow: hidden;
134
+ }
135
+ .scroll {
136
+ height: 100%;
137
+ overflow-y: auto;
138
+ padding: 16px 16px 200px 16px;
139
+ }
140
+
141
+ .card {
142
+ background:#fff;
143
+ border:1px solid #e6e6e6;
144
+ border-radius: 12px;
145
+ padding: 16px;
146
+ margin-bottom: 20px;
147
+ display: grid;
148
+ grid-template-columns: 335px 1fr;
149
+ gap: 18px;
150
+ position: relative;
151
+ }
152
+
153
+ .img-ph {
154
+ width: 100%; height: 300px;
155
+ background:#E0E0E0;
156
+ border:1px solid #BDBDBD;
157
+ color:#757575;
158
+ display:flex; align-items:center; justify-content:center;
159
+ text-align:center;
160
+ font-size: 26px;
161
+ border-radius: 10px;
162
+ }
163
+
164
+ .title {
165
+ font-size: 34px;
166
+ font-weight: 700;
167
+ color:#0f1111;
168
+ line-height: 1.2;
169
+ }
170
+ .mini-badge {
171
+ display:inline-block;
172
+ padding: 6px 12px;
173
+ border-radius: 8px;
174
+ border:1px solid #cfd6db;
175
+ background:#f7f9fb;
176
+ color:#2d3a3e;
177
+ font-size: 24px;
178
+ margin-top: 8px;
179
+ }
180
+
181
+ .rating-row {
182
+ margin-top: 12px;
183
+ display:flex; align-items:center; gap:10px; color:#007185;
184
+ font-size: 30px;
185
+ }
186
+ .stars { display:flex; gap:4px; }
187
+ .star svg { width:28px; height:28px; fill:#f59e0b; }
188
+
189
+ .deal-badge {
190
+ margin-top: 12px;
191
+ background:#b12a24;
192
+ color:#fff; padding:10px 14px;
193
+ display:inline-block; border-radius:8px;
194
+ font-weight:700; font-size: 28px;
195
+ }
196
+
197
+ .price-row {
198
+ margin-top: 10px;
199
+ font-size: 38px;
200
+ font-weight: 800;
201
+ }
202
+ .mrp {
203
+ font-size: 28px; color:#565959; margin-left: 14px; font-weight: 600;
204
+ }
205
+ .subline {
206
+ font-size: 28px; color:#565959; margin-top: 6px;
207
+ }
208
+ .prime-line {
209
+ margin-top: 12px;
210
+ display:flex; align-items:center; gap:10px;
211
+ font-size: 28px; color:#111;
212
+ }
213
+ .prime-tag {
214
+ color:#1a73e8; font-weight: 700;
215
+ display: inline-flex; align-items:center; gap:6px;
216
+ }
217
+ .check {
218
+ width:22px; height:22px;
219
+ }
220
+ .check svg { width:100%; height:100%; fill:#1a73e8; }
221
+
222
+ /* Choice banner */
223
+ .choice-banner {
224
+ position:absolute;
225
+ top: -12px; left: -6px;
226
+ background:#0f1111;
227
+ color:#fff;
228
+ padding: 10px 16px;
229
+ font-size: 26px; font-weight:700;
230
+ border-radius: 6px;
231
+ }
232
+ .choice-banner span { color:#f2a30b; margin-left:8px; }
233
+
234
+ /* Bottom nav */
235
+ .bottom-nav {
236
+ position: absolute;
237
+ left:0; right:0; bottom:0;
238
+ height:160px;
239
+ background:#ffffff;
240
+ border-top:1px solid #e5e7eb;
241
+ display:flex; align-items:center; justify-content: space-around;
242
+ }
243
+ .nav-item {
244
+ display:flex; flex-direction:column;
245
+ align-items:center; gap:8px;
246
+ color:#111;
247
+ font-size:28px;
248
+ }
249
+ .nav-item .ni {
250
+ width: 72px; height: 72px; border-radius: 16px;
251
+ background:#f5f6f8; border:1px solid #e3e5ea;
252
+ display:flex; align-items:center; justify-content:center;
253
+ }
254
+ .ni svg { width:38px; height:38px; fill:#263238; }
255
+
256
+ /* small helpers */
257
+ .muted { color:#565959; }
258
+ </style>
259
+ </head>
260
+ <body>
261
+ <div id="render-target">
262
+
263
+ <div class="header-bg">
264
+ <!-- Status bar -->
265
+ <div class="status-bar">
266
+ <div style="display:flex; align-items:center; gap:16px;">
267
+ <div style="width:38px; height:38px;">
268
+ <svg viewBox="0 0 24 24"><path d="M10 19l-7-7 7-7v5h8v4h-8v5z"/></svg>
269
+ </div>
270
+ <div>8:54</div>
271
+ </div>
272
+ <div class="status-right">
273
+ <div class="icon"><svg viewBox="0 0 24 24"><path d="M12 22c4.97 0 9-4.03 9-9h-2a7 7 0 10-7 7v2z"/></svg></div>
274
+ <div class="icon"><svg viewBox="0 0 24 24"><path d="M12 2l4 4h4a1 1 0 011 1v11a2 2 0 01-2 2H5a2 2 0 01-2-2V7a1 1 0 011-1h4l4-4z"/></svg></div>
275
+ <div class="icon"><svg viewBox="0 0 24 24"><path d="M18 2a2 2 0 012 2v16l-4-2-4 2-4-2-4 2V4a2 2 0 012-2h16z"/></svg></div>
276
+ </div>
277
+ </div>
278
+
279
+ <!-- Search -->
280
+ <div class="search-row">
281
+ <div class="search-box">
282
+ <div class="icon">
283
+ <svg viewBox="0 0 24 24"><path d="M15.5 14h-.79l-.28-.27A6.5 6.5 0 1016 15.5l4.5 4.49L19.49 21 15.5 17zM6.5 11a4.5 4.5 0 119 0 4.5 4.5 0 01-9 0z"/></svg>
284
+ </div>
285
+ <div class="search-input"><span class="search-placeholder">Screwdriver</span></div>
286
+ <div class="search-icons">
287
+ <div class="round-icon">
288
+ <svg viewBox="0 0 24 24"><path d="M12 5l2 3h3a2 2 0 012 2v7a2 2 0 01-2 2H7a2 2 0 01-2-2V10a2 2 0 012-2h3l2-3z"/></svg>
289
+ </div>
290
+ </div>
291
+ </div>
292
+ </div>
293
+
294
+ <!-- Location -->
295
+ <div class="location-row">
296
+ <div class="location-pin">
297
+ <svg viewBox="0 0 24 24"><path d="M12 2a7 7 0 017 7c0 5-7 13-7 13S5 14 5 9a7 7 0 017-7zm0 9.5a2.5 2.5 0 100-5 2.5 2.5 0 000 5z"/></svg>
298
+ </div>
299
+ <div>Deliver to Agra 282007 ▾</div>
300
+ </div>
301
+
302
+ <!-- Chips -->
303
+ <div class="chips-row">
304
+ <div class="toggle" title="Prime toggle"></div>
305
+ <div class="chip">Bosch</div>
306
+ <div class="chip">Screwdriver Sets</div>
307
+ <div class="chip chip-filter">Filters (2) ▾</div>
308
+ </div>
309
+ </div>
310
+
311
+ <!-- Content area -->
312
+ <div class="content">
313
+ <div class="scroll">
314
+
315
+ <!-- Amazon's Choice label -->
316
+ <div class="card">
317
+ <div class="choice-banner">Amazon's <span>Choice</span></div>
318
+ <div class="img-ph">[IMG: Bosch screwdriver set in zip case]</div>
319
+ <div>
320
+ <div class="title">Bosch Standard Screwdriver Set (Green &amp; Black) - 38 Pieces</div>
321
+ <div class="mini-badge">Hex</div>
322
+ <div class="rating-row">
323
+ <div>4.1</div>
324
+ <div class="stars">
325
+ <div class="star"><svg viewBox="0 0 24 24"><path d="M12 17.3l6.18 3.7-1.64-7.03L21 9.24l-7.19-.62L12 2 10.19 8.62 3 9.24l4.46 4.73L5.82 21z"/></svg></div>
326
+ <div class="star"><svg viewBox="0 0 24 24"><path d="M12 17.3l6.18 3.7-1.64-7.03L21 9.24l-7.19-.62L12 2 10.19 8.62 3 9.24l4.46 4.73L5.82 21z"/></svg></div>
327
+ <div class="star"><svg viewBox="0 0 24 24"><path d="M12 17.3l6.18 3.7-1.64-7.03L21 9.24l-7.19-.62L12 2 10.19 8.62 3 9.24l4.46 4.73L5.82 21z"/></svg></div>
328
+ <div class="star"><svg viewBox="0 0 24 24"><path d="M12 17.3l6.18 3.7-1.64-7.03L21 9.24l-7.19-.62L12 2 10.19 8.62 3 9.24l4.46 4.73L5.82 21z"/></svg></div>
329
+ <div class="star" style="opacity:.5;"><svg viewBox="0 0 24 24"><path d="M12 17.3l6.18 3.7-1.64-7.03L21 9.24l-7.19-.62L12 2 10.19 8.62 3 9.24l4.46 4.73L5.82 21z"/></svg></div>
330
+ </div>
331
+ <div class="muted">(1,667)</div>
332
+ </div>
333
+ <div class="deal-badge">Limited time deal</div>
334
+ <div class="price-row">₹1,259 <span class="mrp">M.R.P: ₹1,788 (30% off)</span></div>
335
+ <div class="subline">Buy 2 items, get 5% off</div>
336
+ <div class="prime-line">
337
+ <span class="prime-tag">
338
+ <span class="check"><svg viewBox="0 0 24 24"><path d="M9 16.2l-3.5-3.5-1.4 1.4L9 19 20.3 7.7 18.9 6.3z"/></svg></span>prime
339
+ </span>
340
+ <span class="muted">Get it by <b>Friday, 17 November</b></span>
341
+ </div>
342
+ <div class="subline">FREE Delivery by Amazon</div>
343
+ </div>
344
+ </div>
345
+
346
+ <!-- Second product -->
347
+ <div class="card">
348
+ <div class="img-ph">[IMG: Bosch GO (GEN-2.0) smart screwdriver kit]</div>
349
+ <div>
350
+ <div class="title">Bosch GO (GEN-2.0) Smart Screwdriver, blue, 1 piece</div>
351
+ <div class="mini-badge">Hex</div>
352
+ <div class="rating-row">
353
+ <div>4.3</div>
354
+ <div class="stars">
355
+ <div class="star"><svg viewBox="0 0 24 24"><path d="M12 17.3l6.18 3.7-1.64-7.03L21 9.24l-7.19-.62L12 2 10.19 8.62 3 9.24l4.46 4.73L5.82 21z"/></svg></div>
356
+ <div class="star"><svg viewBox="0 0 24 24"><path d="M12 17.3l6.18 3.7-1.64-7.03L21 9.24l-7.19-.62L12 2 10.19 8.62 3 9.24l4.46 4.73L5.82 21z"/></svg></div>
357
+ <div class="star"><svg viewBox="0 0 24 24"><path d="M12 17.3l6.18 3.7-1.64-7.03L21 9.24l-7.19-.62L12 2 10.19 8.62 3 9.24l4.46 4.73L5.82 21z"/></svg></div>
358
+ <div class="star"><svg viewBox="0 0 24 24"><path d="M12 17.3l6.18 3.7-1.64-7.03L21 9.24l-7.19-.62L12 2 10.19 8.62 3 9.24l4.46 4.73L5.82 21z"/></svg></div>
359
+ <div class="star" style="opacity:.6;"><svg viewBox="0 0 24 24"><path d="M12 17.3l6.18 3.7-1.64-7.03L21 9.24l-7.19-.62L12 2 10.19 8.62 3 9.24l4.46 4.73L5.82 21z"/></svg></div>
360
+ </div>
361
+ <div class="muted">(2,891)</div>
362
+ </div>
363
+ <div class="price-row">₹3,392 <span class="mrp">M.R.P: ₹5,150 (34% off)</span></div>
364
+ <div class="subline">Save ₹100 with coupon</div>
365
+ <div class="prime-line">
366
+ <span class="prime-tag">
367
+ <span class="check"><svg viewBox="0 0 24 24"><path d="M9 16.2l-3.5-3.5-1.4 1.4L9 19 20.3 7.7 18.9 6.3z"/></svg></span>prime
368
+ </span>
369
+ <span class="muted">Get it by <b>Tomorrow, 16 November</b></span>
370
+ </div>
371
+ <div class="subline">FREE Delivery by Amazon</div>
372
+ </div>
373
+ </div>
374
+
375
+ <!-- Third product -->
376
+ <div class="card">
377
+ <div class="img-ph" style="height: 320px;">[IMG: Bosch ratchet pocket screwdriver + 9 bits]</div>
378
+ <div>
379
+ <div class="title">Bosch Ratchet Pocket Corded Screw Driver with 9 Screwdriver Bits (Multicolour, L = 25 mm)</div>
380
+ <div class="mini-badge">Torx, Phillips</div>
381
+ <div class="rating-row">
382
+ <div>4.2</div>
383
+ <div class="stars">
384
+ <div class="star"><svg viewBox="0 0 24 24"><path d="M12 17.3l6.18 3.7-1.64-7.03L21 9.24l-7.19-.62L12 2 10.19 8.62 3 9.24l4.46 4.73L5.82 21z"/></svg></div>
385
+ <div class="star"><svg viewBox="0 0 24 24"><path d="M12 17.3l6.18 3.7-1.64-7.03L21 9.24l-7.19-.62L12 2 10.19 8.62 3 9.24l4.46 4.73L5.82 21z"/></svg></div>
386
+ <div class="star"><svg viewBox="0 0 24 24"><path d="M12 17.3l6.18 3.7-1.64-7.03L21 9.24l-7.19-.62L12 2 10.19 8.62 3 9.24l4.46 4.73L5.82 21z"/></svg></div>
387
+ <div class="star"><svg viewBox="0 0 24 24"><path d="M12 17.3l6.18 3.7-1.64-7.03L21 9.24l-7.19-.62L12 2 10.19 8.62 3 9.24l4.46 4.73L5.82 21z"/></svg></div>
388
+ <div class="star" style="opacity:.4;"><svg viewBox="0 0 24 24"><path d="M12 17.3l6.18 3.7-1.64-7.03L21 9.24l-7.19-.62L12 2 10.19 8.62 3 9.24l4.46 4.73L5.82 21z"/></svg></div>
389
+ </div>
390
+ <div class="muted">(2,026)</div>
391
+ </div>
392
+ <div class="price-row">₹549 <span class="mrp">M.R.P: ₹593 (7% off)</span></div>
393
+ <div class="prime-line">
394
+ <span class="prime-tag">
395
+ <span class="check"><svg viewBox="0 0 24 24"><path d="M9 16.2l-3.5-3.5-1.4 1.4L9 19 20.3 7.7 18.9 6.3z"/></svg></span>prime
396
+ </span>
397
+ </div>
398
+ <div class="subline">FREE Delivery by Amazon</div>
399
+ </div>
400
+ </div>
401
+
402
+ </div>
403
+ </div>
404
+
405
+ <!-- Bottom nav -->
406
+ <div class="bottom-nav">
407
+ <div class="nav-item">
408
+ <div class="ni"><svg viewBox="0 0 24 24"><path d="M12 3l9 8h-3v9h-5v-6H11v6H6v-9H3z"/></svg></div>
409
+ <div>Home</div>
410
+ </div>
411
+ <div class="nav-item">
412
+ <div class="ni"><svg viewBox="0 0 24 24"><path d="M12 12a5 5 0 100-10 5 5 0 000 10zm0 2c-4 0-8 2-8 6v2h16v-2c0-4-4-6-8-6z"/></svg></div>
413
+ <div>You</div>
414
+ </div>
415
+ <div class="nav-item">
416
+ <div class="ni"><svg viewBox="0 0 24 24"><path d="M12 6l-8 6h4v6h8v-6h4z"/></svg></div>
417
+ <div>More</div>
418
+ </div>
419
+ <div class="nav-item">
420
+ <div class="ni"><svg viewBox="0 0 24 24"><path d="M7 18a2 2 0 100 4 2 2 0 000-4zm10 0a2 2 0 100 4 2 2 0 000-4zM3 4h2l3.6 7.59L7.25 14A2 2 0 009 17h10v-2H9.42a.25.25 0 01-.21-.12l.03-.05L10.1 13h7.45a2 2 0 001.8-1.1L22 6H6.21L5.27 4H3z"/></svg></div>
421
+ <div>Cart</div>
422
+ </div>
423
+ <div class="nav-item">
424
+ <div class="ni"><svg viewBox="0 0 24 24"><path d="M3 6h18v2H3V6zm0 5h18v2H3v-2zm0 5h18v2H3v-2z"/></svg></div>
425
+ <div>Menu</div>
426
+ </div>
427
+ </div>
428
+
429
+ </div>
430
+ </body>
431
+ </html>
code/7339/7339_0.html ADDED
@@ -0,0 +1,308 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta name="color-scheme" content="dark">
6
+ <title>UI Render</title>
7
+ <style>
8
+ * { box-sizing: border-box; }
9
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
10
+ #render-target {
11
+ position: relative;
12
+ overflow: hidden;
13
+ width: 1080px;
14
+ height: 2400px;
15
+ background: #102b2b;
16
+ color: #E9F1F1;
17
+ }
18
+
19
+ /* Status bar */
20
+ .status-bar {
21
+ position: absolute;
22
+ top: 0;
23
+ left: 0;
24
+ width: 100%;
25
+ height: 96px;
26
+ padding: 0 32px;
27
+ display: flex;
28
+ align-items: center;
29
+ justify-content: space-between;
30
+ color: #DCE9E9;
31
+ font-size: 34px;
32
+ }
33
+ .status-right {
34
+ display: flex;
35
+ align-items: center;
36
+ gap: 28px;
37
+ }
38
+ .status-icon svg { width: 40px; height: 40px; fill: none; stroke: #DCE9E9; stroke-width: 2.5; }
39
+
40
+ /* App bar */
41
+ .app-bar {
42
+ position: absolute;
43
+ top: 96px;
44
+ left: 0;
45
+ width: 100%;
46
+ height: 124px;
47
+ display: flex;
48
+ align-items: center;
49
+ padding: 0 24px;
50
+ border-bottom: 1px solid #1f3b3b;
51
+ }
52
+ .app-left, .app-right {
53
+ display: flex;
54
+ align-items: center;
55
+ }
56
+ .app-left { gap: 24px; }
57
+ .app-title {
58
+ font-size: 40px;
59
+ color: #E9F1F1;
60
+ white-space: nowrap;
61
+ overflow: hidden;
62
+ text-overflow: ellipsis;
63
+ max-width: 640px;
64
+ }
65
+ .app-right {
66
+ margin-left: auto;
67
+ gap: 28px;
68
+ }
69
+ .icon-btn {
70
+ width: 64px;
71
+ height: 64px;
72
+ border-radius: 12px;
73
+ display: flex;
74
+ align-items: center;
75
+ justify-content: center;
76
+ }
77
+ .icon-btn svg { width: 44px; height: 44px; stroke: #DCE9E9; fill: none; stroke-width: 3; }
78
+
79
+ /* Filter chips */
80
+ .chips {
81
+ position: absolute;
82
+ top: 220px;
83
+ left: 0;
84
+ width: 100%;
85
+ padding: 20px 24px;
86
+ display: flex;
87
+ gap: 20px;
88
+ }
89
+ .chip {
90
+ display: flex;
91
+ align-items: center;
92
+ gap: 16px;
93
+ padding: 16px 24px;
94
+ border: 2px solid #2f5050;
95
+ border-radius: 28px;
96
+ color: #D6E6E6;
97
+ background: #0e2727;
98
+ font-size: 32px;
99
+ }
100
+ .chip svg { width: 40px; height: 40px; stroke: #CFE3E3; fill: none; stroke-width: 2.5; }
101
+
102
+ /* File list */
103
+ .list {
104
+ position: absolute;
105
+ top: 320px;
106
+ left: 0;
107
+ width: 100%;
108
+ padding: 0 24px;
109
+ }
110
+ .file-item {
111
+ display: flex;
112
+ align-items: center;
113
+ background: #0b2424;
114
+ border: 1px solid #254545;
115
+ border-radius: 20px;
116
+ padding: 20px;
117
+ gap: 24px;
118
+ width: 100%;
119
+ }
120
+ .thumb {
121
+ width: 140px;
122
+ height: 140px;
123
+ background: #E0E0E0;
124
+ border: 1px solid #BDBDBD;
125
+ border-radius: 12px;
126
+ display: flex;
127
+ align-items: center;
128
+ justify-content: center;
129
+ color: #757575;
130
+ font-size: 26px;
131
+ text-align: center;
132
+ line-height: 1.15;
133
+ }
134
+ .file-info {
135
+ flex: 1;
136
+ min-width: 0;
137
+ }
138
+ .file-name {
139
+ font-size: 36px;
140
+ color: #E9F1F1;
141
+ white-space: nowrap;
142
+ overflow: hidden;
143
+ text-overflow: ellipsis;
144
+ }
145
+ .file-meta {
146
+ margin-top: 8px;
147
+ font-size: 28px;
148
+ color: #9CB7B7;
149
+ }
150
+ .more {
151
+ width: 60px;
152
+ height: 60px;
153
+ display: flex;
154
+ align-items: center;
155
+ justify-content: center;
156
+ }
157
+ .more svg { width: 32px; height: 32px; fill: #CFE3E3; }
158
+
159
+ /* Bottom gesture bar */
160
+ .gesture {
161
+ position: absolute;
162
+ bottom: 40px;
163
+ left: 50%;
164
+ transform: translateX(-50%);
165
+ width: 200px;
166
+ height: 8px;
167
+ background: #D7D7D7;
168
+ border-radius: 8px;
169
+ opacity: 0.85;
170
+ }
171
+ </style>
172
+ </head>
173
+ <body>
174
+ <div id="render-target">
175
+
176
+ <!-- Status Bar -->
177
+ <div class="status-bar">
178
+ <div class="status-left">6:51</div>
179
+ <div class="status-right">
180
+ <div class="status-icon">
181
+ <!-- Envelope (Mail) -->
182
+ <svg viewBox="0 0 24 24">
183
+ <path d="M3 5h18v14H3z"></path>
184
+ <path d="M3 7l9 6 9-6"></path>
185
+ </svg>
186
+ </div>
187
+ <div class="status-icon">
188
+ <!-- Gear -->
189
+ <svg viewBox="0 0 24 24">
190
+ <circle cx="12" cy="12" r="4"></circle>
191
+ <path d="M12 2v4M12 18v4M2 12h4M18 12h4M4.5 4.5l2.8 2.8M16.7 16.7l2.8 2.8M19.5 4.5l-2.8 2.8M7.3 16.7L4.5 19.5"></path>
192
+ </svg>
193
+ </div>
194
+ <div class="status-icon">
195
+ <!-- WiFi -->
196
+ <svg viewBox="0 0 24 24">
197
+ <path d="M2 9c5-4 15-4 20 0"></path>
198
+ <path d="M5 12c4-3 10-3 14 0"></path>
199
+ <path d="M8 15c3-2 5-2 8 0"></path>
200
+ <circle cx="12" cy="18" r="1.6" fill="#DCE9E9" stroke="none"></circle>
201
+ </svg>
202
+ </div>
203
+ <div class="status-icon" style="display:flex; align-items:center; gap:10px;">
204
+ <!-- Battery -->
205
+ <svg viewBox="0 0 24 24">
206
+ <rect x="2" y="6" width="18" height="12" rx="2" ry="2" stroke="#DCE9E9"></rect>
207
+ <rect x="20" y="9" width="2" height="6" fill="#DCE9E9" stroke="none"></rect>
208
+ <rect x="3.5" y="7.5" width="15" height="9" fill="#7ED37E" stroke="none"></rect>
209
+ </svg>
210
+ <span style="font-size:30px;">100%</span>
211
+ </div>
212
+ </div>
213
+ </div>
214
+
215
+ <!-- App Bar -->
216
+ <div class="app-bar">
217
+ <div class="app-left">
218
+ <!-- Back Arrow -->
219
+ <div class="icon-btn">
220
+ <svg viewBox="0 0 24 24">
221
+ <path d="M15 18l-6-6 6-6"></path>
222
+ <path d="M21 12H9"></path>
223
+ </svg>
224
+ </div>
225
+ <div class="app-title">A_short_history_of_Germany</div>
226
+ <!-- Clear X -->
227
+ <div class="icon-btn">
228
+ <svg viewBox="0 0 24 24">
229
+ <path d="M18 6L6 18M6 6l12 12"></path>
230
+ </svg>
231
+ </div>
232
+ </div>
233
+ <div class="app-right">
234
+ <!-- Search -->
235
+ <div class="icon-btn">
236
+ <svg viewBox="0 0 24 24">
237
+ <circle cx="11" cy="11" r="6"></circle>
238
+ <path d="M20 20l-4.5-4.5"></path>
239
+ </svg>
240
+ </div>
241
+ <!-- Grid view -->
242
+ <div class="icon-btn">
243
+ <svg viewBox="0 0 24 24">
244
+ <rect x="3" y="3" width="7" height="7"></rect>
245
+ <rect x="14" y="3" width="7" height="7"></rect>
246
+ <rect x="3" y="14" width="7" height="7"></rect>
247
+ <rect x="14" y="14" width="7" height="7"></rect>
248
+ </svg>
249
+ </div>
250
+ <!-- More (vertical dots) -->
251
+ <div class="icon-btn">
252
+ <svg viewBox="0 0 24 24">
253
+ <circle cx="12" cy="5" r="2.2" fill="#DCE9E9" stroke="none"></circle>
254
+ <circle cx="12" cy="12" r="2.2" fill="#DCE9E9" stroke="none"></circle>
255
+ <circle cx="12" cy="19" r="2.2" fill="#DCE9E9" stroke="none"></circle>
256
+ </svg>
257
+ </div>
258
+ </div>
259
+ </div>
260
+
261
+ <!-- Filter Chips -->
262
+ <div class="chips">
263
+ <div class="chip">
264
+ <svg viewBox="0 0 24 24">
265
+ <path d="M5 12a5 5 0 0 1 10 0v5h-3v-5a2 2 0 0 0-4 0v5H5z"></path>
266
+ </svg>
267
+ <span>Audio</span>
268
+ </div>
269
+ <div class="chip">
270
+ <svg viewBox="0 0 24 24">
271
+ <path d="M6 3h10l2 2v16H6z"></path>
272
+ <path d="M16 3v4h4"></path>
273
+ </svg>
274
+ <span>Documents &amp; other</span>
275
+ </div>
276
+ <div class="chip">
277
+ <svg viewBox="0 0 24 24">
278
+ <rect x="3" y="4" width="18" height="16" rx="2"></rect>
279
+ <circle cx="8" cy="10" r="2"></circle>
280
+ <path d="M3 17l5-4 3 3 4-3 6 4"></path>
281
+ </svg>
282
+ <span>Images</span>
283
+ </div>
284
+ </div>
285
+
286
+ <!-- File List -->
287
+ <div class="list">
288
+ <div class="file-item">
289
+ <div class="thumb">[IMG: Book cover]</div>
290
+ <div class="file-info">
291
+ <div class="file-name">A_short_history_of_Germany_(IA_s...</div>
292
+ <div class="file-meta">16.38 MB, 1 hour ago</div>
293
+ </div>
294
+ <div class="more">
295
+ <svg viewBox="0 0 24 24">
296
+ <circle cx="12" cy="4.5" r="2.2"></circle>
297
+ <circle cx="12" cy="12" r="2.2"></circle>
298
+ <circle cx="12" cy="19.5" r="2.2"></circle>
299
+ </svg>
300
+ </div>
301
+ </div>
302
+ </div>
303
+
304
+ <!-- Bottom gesture bar -->
305
+ <div class="gesture"></div>
306
+ </div>
307
+ </body>
308
+ </html>
code/7339/7339_1.html ADDED
@@ -0,0 +1,553 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <title>UI Render</title>
6
+ <style>
7
+ body {
8
+ margin: 0;
9
+ padding: 0;
10
+ background: transparent;
11
+ font-family: Arial, Helvetica, sans-serif;
12
+ }
13
+ #render-target {
14
+ width: 1080px;
15
+ height: 2400px;
16
+ position: relative;
17
+ overflow: hidden;
18
+ background: #062B2A;
19
+ color: #E9F3F1;
20
+ }
21
+
22
+ /* Status bar */
23
+ .status-bar {
24
+ position: absolute;
25
+ top: 24px;
26
+ left: 32px;
27
+ right: 32px;
28
+ height: 72px;
29
+ display: flex;
30
+ align-items: center;
31
+ justify-content: space-between;
32
+ color: #D6E8E5;
33
+ font-size: 34px;
34
+ letter-spacing: 0.5px;
35
+ }
36
+ .status-left,
37
+ .status-right {
38
+ display: flex;
39
+ align-items: center;
40
+ gap: 22px;
41
+ }
42
+ .status-icon svg {
43
+ width: 38px;
44
+ height: 38px;
45
+ fill: none;
46
+ stroke: #D6E8E5;
47
+ stroke-width: 3;
48
+ }
49
+ .battery {
50
+ display: inline-flex;
51
+ align-items: center;
52
+ gap: 10px;
53
+ font-size: 32px;
54
+ }
55
+ .battery svg {
56
+ width: 46px;
57
+ height: 26px;
58
+ stroke-width: 3;
59
+ }
60
+
61
+ /* Search bar */
62
+ .search-wrap {
63
+ position: absolute;
64
+ top: 126px;
65
+ left: 40px;
66
+ width: 1000px;
67
+ height: 112px;
68
+ background: #132E2D;
69
+ border-radius: 56px;
70
+ display: flex;
71
+ align-items: center;
72
+ padding: 0 36px;
73
+ box-sizing: border-box;
74
+ color: #CFE2DF;
75
+ }
76
+ .search-left, .search-right {
77
+ display: flex;
78
+ align-items: center;
79
+ }
80
+ .search-left svg, .search-right svg {
81
+ width: 48px;
82
+ height: 48px;
83
+ stroke: #CFE2DF;
84
+ stroke-width: 3.5;
85
+ fill: none;
86
+ }
87
+ .search-text {
88
+ margin-left: 24px;
89
+ font-size: 40px;
90
+ color: #CFE2DF;
91
+ }
92
+
93
+ .section-title {
94
+ margin-top: 280px;
95
+ margin-left: 40px;
96
+ font-size: 48px;
97
+ font-weight: 700;
98
+ color: #E6F2F0;
99
+ }
100
+
101
+ /* Recent cards */
102
+ .recent-grid {
103
+ margin: 28px 40px 0 40px;
104
+ display: flex;
105
+ gap: 28px;
106
+ }
107
+ .recent-card {
108
+ width: 470px;
109
+ border-radius: 36px;
110
+ }
111
+ .img-placeholder {
112
+ width: 100%;
113
+ height: 360px;
114
+ background: #E0E0E0;
115
+ border: 1px solid #BDBDBD;
116
+ border-radius: 28px;
117
+ display: grid;
118
+ grid-template-columns: repeat(2, 1fr);
119
+ grid-template-rows: repeat(2, 1fr);
120
+ gap: 8px;
121
+ padding: 8px;
122
+ box-sizing: border-box;
123
+ }
124
+ .img-tile {
125
+ background: #E0E0E0;
126
+ border: 1px solid #BDBDBD;
127
+ border-radius: 12px;
128
+ display: flex;
129
+ align-items: center;
130
+ justify-content: center;
131
+ color: #757575;
132
+ font-size: 26px;
133
+ }
134
+ .recent-title {
135
+ margin-top: 22px;
136
+ font-size: 40px;
137
+ font-weight: 600;
138
+ color: #E9F3F1;
139
+ }
140
+ .recent-sub {
141
+ margin-top: 8px;
142
+ font-size: 30px;
143
+ color: #92A9A5;
144
+ }
145
+
146
+ /* Categories */
147
+ .categories-title {
148
+ margin-top: 56px;
149
+ margin-left: 40px;
150
+ font-size: 48px;
151
+ font-weight: 700;
152
+ }
153
+ .cat-grid {
154
+ margin: 28px 40px 0 40px;
155
+ display: grid;
156
+ grid-template-columns: 1fr 1fr;
157
+ gap: 28px;
158
+ }
159
+ .cat-item {
160
+ position: relative;
161
+ background: #0F3433;
162
+ border-radius: 34px;
163
+ height: 190px;
164
+ display: flex;
165
+ align-items: center;
166
+ padding: 30px;
167
+ box-sizing: border-box;
168
+ }
169
+ .cat-icon {
170
+ width: 82px;
171
+ height: 82px;
172
+ border-radius: 18px;
173
+ display: flex;
174
+ align-items: center;
175
+ justify-content: center;
176
+ margin-right: 26px;
177
+ }
178
+ .cat-icon svg {
179
+ width: 60px;
180
+ height: 60px;
181
+ fill: none;
182
+ stroke: #84D9BD;
183
+ stroke-width: 4;
184
+ }
185
+ .cat-text .title {
186
+ font-size: 40px;
187
+ font-weight: 600;
188
+ color: #E7F3F0;
189
+ }
190
+ .cat-text .meta {
191
+ margin-top: 8px;
192
+ font-size: 28px;
193
+ color: #8FA7A2;
194
+ }
195
+ .dot {
196
+ position: absolute;
197
+ right: 30px;
198
+ top: 30px;
199
+ width: 22px;
200
+ height: 22px;
201
+ background: #FF7D7D;
202
+ border-radius: 50%;
203
+ }
204
+
205
+ /* Collections */
206
+ .collections-title {
207
+ margin-top: 42px;
208
+ margin-left: 40px;
209
+ font-size: 48px;
210
+ font-weight: 700;
211
+ }
212
+ .collection-item {
213
+ margin: 24px 40px 0 40px;
214
+ height: 160px;
215
+ background: #102F2E;
216
+ border-radius: 30px;
217
+ display: flex;
218
+ align-items: center;
219
+ padding: 0 34px;
220
+ box-sizing: border-box;
221
+ }
222
+ .collection-item .label {
223
+ font-size: 40px;
224
+ margin-left: 22px;
225
+ }
226
+ .collection-icon svg {
227
+ width: 54px;
228
+ height: 54px;
229
+ stroke: #84D9BD;
230
+ fill: none;
231
+ stroke-width: 4;
232
+ }
233
+
234
+ /* Kebab menu (vertical dots) */
235
+ .kebab {
236
+ position: absolute;
237
+ right: 40px;
238
+ top: 1500px;
239
+ width: 12px;
240
+ height: 80px;
241
+ display: flex;
242
+ flex-direction: column;
243
+ justify-content: space-between;
244
+ }
245
+ .kebab div {
246
+ width: 12px;
247
+ height: 12px;
248
+ background: #93A9A5;
249
+ border-radius: 50%;
250
+ }
251
+
252
+ /* Bottom navigation */
253
+ .bottom-bar {
254
+ position: absolute;
255
+ bottom: 0;
256
+ left: 0;
257
+ width: 1080px;
258
+ height: 232px;
259
+ background: #0A3432;
260
+ border-top: 1px solid #0F4745;
261
+ display: flex;
262
+ align-items: center;
263
+ justify-content: space-around;
264
+ padding-bottom: 40px;
265
+ box-sizing: border-box;
266
+ }
267
+ .nav-item {
268
+ width: 300px;
269
+ display: flex;
270
+ flex-direction: column;
271
+ align-items: center;
272
+ color: #CFE2DF;
273
+ font-size: 30px;
274
+ }
275
+ .nav-item svg {
276
+ width: 48px;
277
+ height: 48px;
278
+ stroke: #CFE2DF;
279
+ fill: none;
280
+ stroke-width: 3.5;
281
+ }
282
+ .nav-active {
283
+ position: relative;
284
+ color: #9CE1C7;
285
+ font-weight: 600;
286
+ }
287
+ .nav-active .icon-wrap {
288
+ width: 124px;
289
+ height: 88px;
290
+ background: #0E3E3C;
291
+ border-radius: 44px;
292
+ display: flex;
293
+ align-items: center;
294
+ justify-content: center;
295
+ margin-bottom: 14px;
296
+ }
297
+ .nav-item .icon-wrap {
298
+ margin-bottom: 14px;
299
+ }
300
+
301
+ /* Home indicator */
302
+ .home-indicator {
303
+ position: absolute;
304
+ bottom: 18px;
305
+ left: 50%;
306
+ transform: translateX(-50%);
307
+ width: 280px;
308
+ height: 14px;
309
+ background: #EDEDED;
310
+ border-radius: 10px;
311
+ opacity: 0.8;
312
+ }
313
+ </style>
314
+ </head>
315
+ <body>
316
+ <div id="render-target">
317
+
318
+ <!-- Status Bar -->
319
+ <div class="status-bar">
320
+ <div class="status-left">
321
+ <div>6:51</div>
322
+ <div class="status-icon">
323
+ <!-- simple envelope (mail) -->
324
+ <svg viewBox="0 0 24 24"><path d="M3 6h18v12H3z"/><path d="M3 6l9 7 9-7"/></svg>
325
+ </div>
326
+ <div class="status-icon">
327
+ <!-- simple gear -->
328
+ <svg viewBox="0 0 24 24">
329
+ <circle cx="12" cy="12" r="3"></circle>
330
+ <path d="M4 12h2M18 12h2M12 4v2M12 18v2M6.5 6.5l1.4 1.4M16.1 16.1l1.4 1.4M6.5 17.5l1.4-1.4M16.1 7.9l1.4-1.4"/>
331
+ </svg>
332
+ </div>
333
+ </div>
334
+ <div class="status-right">
335
+ <div class="status-icon">
336
+ <!-- wifi -->
337
+ <svg viewBox="0 0 24 24">
338
+ <path d="M2 9c5-4 15-4 20 0"/>
339
+ <path d="M5 12c3-3 11-3 14 0"/>
340
+ <path d="M8 15c2-2 6-2 8 0"/>
341
+ <circle cx="12" cy="18" r="1.5"></circle>
342
+ </svg>
343
+ </div>
344
+ <div class="battery">
345
+ <svg viewBox="0 0 26 14">
346
+ <rect x="1" y="2" width="22" height="10" rx="2"></rect>
347
+ <rect x="23" y="5" width="2" height="4" rx="1"></rect>
348
+ <rect x="3" y="4" width="16" height="6" rx="1" fill="#D6E8E5" stroke="none"></rect>
349
+ </svg>
350
+ <div>100%</div>
351
+ </div>
352
+ </div>
353
+ </div>
354
+
355
+ <!-- Search Bar -->
356
+ <div class="search-wrap">
357
+ <div class="search-left">
358
+ <!-- hamburger -->
359
+ <svg viewBox="0 0 24 24"><path d="M3 6h18M3 12h14M3 18h10"/></svg>
360
+ <div class="search-text">Search in Files</div>
361
+ </div>
362
+ <div class="search-right" style="margin-left:auto;">
363
+ <!-- magnifier -->
364
+ <svg viewBox="0 0 24 24"><circle cx="11" cy="11" r="6"></circle><path d="M20 20l-4.5-4.5"/></svg>
365
+ </div>
366
+ </div>
367
+
368
+ <!-- Recent -->
369
+ <div class="section-title">Recent</div>
370
+ <div class="recent-grid">
371
+ <div class="recent-card">
372
+ <div class="img-placeholder">
373
+ <div class="img-tile">[IMG: Trip 1]</div>
374
+ <div class="img-tile">[IMG: Trip 2]</div>
375
+ <div class="img-tile">[IMG: Trip 3]</div>
376
+ <div class="img-tile">[IMG: Trip 4]</div>
377
+ </div>
378
+ <div class="recent-title">My Favorite Trip</div>
379
+ <div class="recent-sub">Images</div>
380
+ </div>
381
+ <div class="recent-card">
382
+ <div class="img-placeholder">
383
+ <div class="img-tile">[IMG: Camera 1]</div>
384
+ <div class="img-tile">[IMG: Camera 2]</div>
385
+ <div class="img-tile">[IMG: Camera 3]</div>
386
+ <div class="img-tile">[IMG: Camera 4]</div>
387
+ </div>
388
+ <div class="recent-title">Camera</div>
389
+ <div class="recent-sub">Images</div>
390
+ </div>
391
+ </div>
392
+
393
+ <!-- Categories -->
394
+ <div class="categories-title">Categories</div>
395
+ <div class="cat-grid">
396
+ <div class="cat-item">
397
+ <div class="cat-icon">
398
+ <!-- download icon -->
399
+ <svg viewBox="0 0 24 24">
400
+ <path d="M12 4v9"></path>
401
+ <path d="M8 9l4 4 4-4"></path>
402
+ <path d="M5 20h14"></path>
403
+ </svg>
404
+ </div>
405
+ <div class="cat-text">
406
+ <div class="title">Downloads</div>
407
+ <div class="meta">29 MB</div>
408
+ </div>
409
+ </div>
410
+
411
+ <div class="cat-item">
412
+ <div class="cat-icon">
413
+ <!-- image icon -->
414
+ <svg viewBox="0 0 24 24">
415
+ <rect x="3" y="5" width="18" height="14" rx="2"></rect>
416
+ <path d="M7 15l3-3 3 3 3-4 3 4"></path>
417
+ <circle cx="9" cy="9" r="1.5"></circle>
418
+ </svg>
419
+ </div>
420
+ <div class="cat-text">
421
+ <div class="title">Images</div>
422
+ <div class="meta">40 MB</div>
423
+ </div>
424
+ </div>
425
+
426
+ <div class="cat-item">
427
+ <div class="cat-icon">
428
+ <!-- clapperboard -->
429
+ <svg viewBox="0 0 24 24">
430
+ <rect x="3" y="8" width="18" height="11" rx="2"></rect>
431
+ <path d="M3 8l3-4h4l-3 4M14 8l3-4h4l-3 4"></path>
432
+ </svg>
433
+ </div>
434
+ <div class="cat-text">
435
+ <div class="title">Videos</div>
436
+ <div class="meta">0 B</div>
437
+ </div>
438
+ </div>
439
+
440
+ <div class="cat-item">
441
+ <div class="cat-icon">
442
+ <!-- music note -->
443
+ <svg viewBox="0 0 24 24">
444
+ <path d="M9 18a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5z"></path>
445
+ <path d="M11.5 13V6l7-2v7"></path>
446
+ <circle cx="18.5" cy="14" r="2.2"></circle>
447
+ </svg>
448
+ </div>
449
+ <div class="cat-text">
450
+ <div class="title">Audio</div>
451
+ <div class="meta">306 kB</div>
452
+ </div>
453
+ </div>
454
+
455
+ <div class="cat-item">
456
+ <div class="cat-icon">
457
+ <!-- document -->
458
+ <svg viewBox="0 0 24 24">
459
+ <path d="M6 4h8l4 4v12H6z"></path>
460
+ <path d="M14 4v5h5"></path>
461
+ </svg>
462
+ </div>
463
+ <div class="cat-text">
464
+ <div class="title">Documents & other</div>
465
+ <div class="meta">46 MB</div>
466
+ </div>
467
+ </div>
468
+
469
+ <div class="cat-item">
470
+ <div class="cat-icon">
471
+ <!-- robot/apps -->
472
+ <svg viewBox="0 0 24 24">
473
+ <rect x="5" y="7" width="14" height="10" rx="2"></rect>
474
+ <circle cx="9" cy="12" r="1.5"></circle>
475
+ <circle cx="15" cy="12" r="1.5"></circle>
476
+ <path d="M8 7l-2-2M16 7l2-2"></path>
477
+ </svg>
478
+ </div>
479
+ <div class="cat-text">
480
+ <div class="title">Apps</div>
481
+ <div class="meta">18 GB</div>
482
+ </div>
483
+ <div class="dot"></div>
484
+ </div>
485
+ </div>
486
+
487
+ <!-- Vertical dots -->
488
+ <div class="kebab">
489
+ <div></div><div></div><div></div>
490
+ </div>
491
+
492
+ <!-- Collections -->
493
+ <div class="collections-title">Collections</div>
494
+ <div class="collection-item">
495
+ <div class="collection-icon">
496
+ <!-- star -->
497
+ <svg viewBox="0 0 24 24"><path d="M12 3l3 6 6 .8-4.5 4 1.2 6.2L12 17l-5.7 3.9 1.2-6.2L3 9.8 9 9z"/></svg>
498
+ </div>
499
+ <div class="label">Favorites</div>
500
+ </div>
501
+ <div class="collection-item">
502
+ <div class="collection-icon">
503
+ <!-- lock -->
504
+ <svg viewBox="0 0 24 24">
505
+ <rect x="5" y="10" width="14" height="10" rx="2"></rect>
506
+ <path d="M8 10V7a4 4 0 0 1 8 0v3"></path>
507
+ </svg>
508
+ </div>
509
+ <div class="label">Safe folder</div>
510
+ </div>
511
+
512
+ <!-- Bottom Navigation -->
513
+ <div class="bottom-bar">
514
+ <div class="nav-item">
515
+ <div class="icon-wrap">
516
+ <!-- sparkles -->
517
+ <svg viewBox="0 0 24 24">
518
+ <path d="M12 3l1.5 4.5L18 9l-4.5 1.5L12 15l-1.5-4.5L6 9l4.5-1.5z"></path>
519
+ <path d="M19 15l.8 2.2L22 18l-2.2.8L19 21l-.8-2.2L16 18l2.2-.8z"></path>
520
+ </svg>
521
+ </div>
522
+ <div>Clean</div>
523
+ </div>
524
+
525
+ <div class="nav-item nav-active">
526
+ <div class="icon-wrap">
527
+ <!-- search -->
528
+ <svg viewBox="0 0 24 24">
529
+ <circle cx="11" cy="11" r="6"></circle>
530
+ <path d="M20 20l-4.5-4.5"></path>
531
+ </svg>
532
+ </div>
533
+ <div>Browse</div>
534
+ </div>
535
+
536
+ <div class="nav-item">
537
+ <div class="icon-wrap">
538
+ <!-- shuffle -->
539
+ <svg viewBox="0 0 24 24">
540
+ <path d="M4 6h3l13 12"></path>
541
+ <path d="M20 6l2 2-2 2"></path>
542
+ <path d="M4 18h3l5-5"></path>
543
+ <path d="M20 18l2-2-2-2"></path>
544
+ </svg>
545
+ </div>
546
+ <div>Nearby Share</div>
547
+ </div>
548
+ </div>
549
+
550
+ <div class="home-indicator"></div>
551
+ </div>
552
+ </body>
553
+ </html>
code/7339/7339_2.html ADDED
@@ -0,0 +1,435 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <title>Search UI</title>
6
+ <style>
7
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
8
+ #render-target {
9
+ width: 1080px;
10
+ height: 2400px;
11
+ position: relative;
12
+ overflow: hidden;
13
+ background: #0f2c2c;
14
+ color: #e8f0f0;
15
+ }
16
+ /* Status bar */
17
+ .status-bar {
18
+ position: absolute;
19
+ top: 0;
20
+ left: 0;
21
+ width: 1080px;
22
+ height: 90px;
23
+ display: flex;
24
+ align-items: center;
25
+ padding: 0 36px;
26
+ box-sizing: border-box;
27
+ font-size: 36px;
28
+ color: #ffffff;
29
+ }
30
+ .sb-left { flex: 1; }
31
+ .sb-right {
32
+ display: flex;
33
+ align-items: center;
34
+ gap: 24px;
35
+ font-size: 28px;
36
+ }
37
+ /* Header */
38
+ .header {
39
+ position: absolute;
40
+ top: 90px;
41
+ left: 0;
42
+ width: 1080px;
43
+ height: 120px;
44
+ display: flex;
45
+ align-items: center;
46
+ box-sizing: border-box;
47
+ padding: 0 24px;
48
+ color: #ffffff;
49
+ }
50
+ .back-btn {
51
+ width: 84px;
52
+ height: 84px;
53
+ border-radius: 42px;
54
+ display: flex;
55
+ align-items: center;
56
+ justify-content: center;
57
+ }
58
+ .header-title {
59
+ font-size: 48px;
60
+ margin-left: 12px;
61
+ font-weight: 600;
62
+ letter-spacing: 0.5px;
63
+ }
64
+ /* Search field line */
65
+ .search-line {
66
+ position: absolute;
67
+ top: 210px;
68
+ left: 24px;
69
+ width: 1032px;
70
+ height: 80px;
71
+ display: flex;
72
+ align-items: center;
73
+ box-sizing: border-box;
74
+ padding: 0 24px;
75
+ border-radius: 14px;
76
+ border: 1px solid rgba(255,255,255,0.1);
77
+ background: rgba(255,255,255,0.03);
78
+ }
79
+ .search-text {
80
+ flex: 1;
81
+ color: #cfe6e6;
82
+ font-size: 36px;
83
+ white-space: nowrap;
84
+ overflow: hidden;
85
+ text-overflow: ellipsis;
86
+ }
87
+ .chip-row {
88
+ position: absolute;
89
+ top: 310px;
90
+ left: 24px;
91
+ width: 1032px;
92
+ display: flex;
93
+ gap: 18px;
94
+ }
95
+ .chip {
96
+ display: flex;
97
+ align-items: center;
98
+ gap: 12px;
99
+ padding: 18px 26px;
100
+ border-radius: 32px;
101
+ border: 1px solid #2f6666;
102
+ background: #183c3c;
103
+ color: #d8f2f2;
104
+ font-size: 32px;
105
+ }
106
+ .recent {
107
+ position: absolute;
108
+ top: 410px;
109
+ left: 24px;
110
+ width: 1032px;
111
+ height: 88px;
112
+ display: flex;
113
+ align-items: center;
114
+ gap: 20px;
115
+ color: #b9d0d0;
116
+ font-size: 34px;
117
+ }
118
+ .divider {
119
+ position: absolute;
120
+ top: 498px;
121
+ left: 24px;
122
+ width: 1032px;
123
+ height: 1px;
124
+ background: rgba(255,255,255,0.08);
125
+ }
126
+ /* Keyboard */
127
+ .keyboard {
128
+ position: absolute;
129
+ bottom: 60px;
130
+ left: 0;
131
+ width: 1080px;
132
+ height: 980px;
133
+ background: #152527;
134
+ border-top-left-radius: 24px;
135
+ border-top-right-radius: 24px;
136
+ box-shadow: 0 -6px 20px rgba(0,0,0,0.4);
137
+ padding: 24px;
138
+ box-sizing: border-box;
139
+ }
140
+ .kb-toolbar {
141
+ display: flex;
142
+ align-items: center;
143
+ gap: 36px;
144
+ height: 100px;
145
+ padding: 0 8px;
146
+ color: #cdd7db;
147
+ }
148
+ .kb-icon {
149
+ width: 68px;
150
+ height: 68px;
151
+ border-radius: 12px;
152
+ background: #1e3337;
153
+ display: flex;
154
+ align-items: center;
155
+ justify-content: center;
156
+ border: 1px solid rgba(255,255,255,0.05);
157
+ }
158
+ .kb-keys {
159
+ margin-top: 16px;
160
+ display: grid;
161
+ grid-template-rows: repeat(3, 1fr);
162
+ gap: 18px;
163
+ height: 540px;
164
+ }
165
+ .row {
166
+ display: flex;
167
+ justify-content: space-between;
168
+ gap: 12px;
169
+ }
170
+ .key {
171
+ flex: 1;
172
+ height: 160px;
173
+ border-radius: 26px;
174
+ background: #2a3a3f;
175
+ color: #e4ecef;
176
+ display: flex;
177
+ align-items: center;
178
+ justify-content: center;
179
+ font-size: 48px;
180
+ box-shadow: inset 0 -3px 0 rgba(255,255,255,0.03);
181
+ }
182
+ .key.small { flex: 0 0 90px; }
183
+ .key.wide { flex: 0 0 180px; }
184
+ .key.exwide { flex: 0 0 500px; }
185
+ .key.accent {
186
+ background: #64e2c0;
187
+ color: #053b35;
188
+ font-weight: 700;
189
+ }
190
+ .bottom-row {
191
+ margin-top: 18px;
192
+ display: flex;
193
+ gap: 12px;
194
+ align-items: center;
195
+ }
196
+ .space {
197
+ height: 160px;
198
+ border-radius: 26px;
199
+ background: #2a3a3f;
200
+ flex: 1;
201
+ box-shadow: inset 0 -3px 0 rgba(255,255,255,0.03);
202
+ }
203
+ .nav-pill {
204
+ position: absolute;
205
+ bottom: 16px;
206
+ left: 50%;
207
+ transform: translateX(-50%);
208
+ width: 180px;
209
+ height: 10px;
210
+ background: #e8e8e8;
211
+ opacity: 0.85;
212
+ border-radius: 6px;
213
+ }
214
+ .muted { color: #a9bec0; }
215
+ </style>
216
+ </head>
217
+ <body>
218
+ <div id="render-target">
219
+ <!-- Status Bar -->
220
+ <div class="status-bar">
221
+ <div class="sb-left">6:52</div>
222
+ <div class="sb-right">
223
+ <!-- Wi-Fi icon -->
224
+ <svg width="44" height="44" viewBox="0 0 24 24" fill="none">
225
+ <path d="M2 8c4.5-4 15.5-4 20 0" stroke="#fff" stroke-width="2" stroke-linecap="round"/>
226
+ <path d="M5 11c3.4-3 10.6-3 14 0" stroke="#fff" stroke-width="2" stroke-linecap="round"/>
227
+ <path d="M8 14c2.3-2 6.7-2 9 0" stroke="#fff" stroke-width="2" stroke-linecap="round"/>
228
+ <circle cx="12" cy="18" r="2" fill="#fff"/>
229
+ </svg>
230
+ <!-- Battery icon with 100% -->
231
+ <svg width="56" height="44" viewBox="0 0 28 16" fill="none">
232
+ <rect x="1" y="3" width="22" height="10" rx="2" stroke="#fff" stroke-width="2"/>
233
+ <rect x="24" y="6" width="3" height="4" rx="1" fill="#fff"/>
234
+ <rect x="3" y="5" width="18" height="6" rx="1" fill="#fff"/>
235
+ </svg>
236
+ <span>100%</span>
237
+ </div>
238
+ </div>
239
+
240
+ <!-- Header -->
241
+ <div class="header">
242
+ <div class="back-btn">
243
+ <svg width="42" height="42" viewBox="0 0 24 24">
244
+ <path d="M15 6l-6 6 6 6" stroke="#ffffff" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
245
+ </svg>
246
+ </div>
247
+ <div class="header-title">Search</div>
248
+ </div>
249
+
250
+ <!-- Search Field Line -->
251
+ <div class="search-line">
252
+ <div class="search-text">a_short_history_of_germany</div>
253
+ <!-- Clear (X) -->
254
+ <svg width="42" height="42" viewBox="0 0 24 24">
255
+ <path d="M6 6l12 12M18 6L6 18" stroke="#cfe6e6" stroke-width="2" stroke-linecap="round"/>
256
+ </svg>
257
+ </div>
258
+
259
+ <!-- Filter chips -->
260
+ <div class="chip-row">
261
+ <div class="chip">
262
+ <svg width="34" height="34" viewBox="0 0 24 24">
263
+ <circle cx="10" cy="12" r="5" stroke="#bfeaea" stroke-width="2" fill="none"/>
264
+ <rect x="15" y="10" width="6" height="4" rx="1" fill="#bfeaea"/>
265
+ </svg>
266
+ Audio
267
+ </div>
268
+ <div class="chip">
269
+ <svg width="34" height="34" viewBox="0 0 24 24">
270
+ <rect x="3" y="4" width="8" height="12" rx="2" stroke="#bfeaea" stroke-width="2" fill="none"/>
271
+ <rect x="13" y="4" width="8" height="12" rx="2" stroke="#bfeaea" stroke-width="2" fill="none"/>
272
+ </svg>
273
+ Documents &amp; other
274
+ </div>
275
+ <div class="chip">
276
+ <svg width="34" height="34" viewBox="0 0 24 24">
277
+ <rect x="4" y="5" width="16" height="12" rx="2" stroke="#bfeaea" stroke-width="2" fill="none"/>
278
+ <path d="M4 15l6-6 4 4 2-2 4 4" stroke="#bfeaea" stroke-width="2" fill="none"/>
279
+ </svg>
280
+ Images
281
+ </div>
282
+ </div>
283
+
284
+ <!-- Recent search item -->
285
+ <div class="recent">
286
+ <svg width="42" height="42" viewBox="0 0 24 24">
287
+ <circle cx="12" cy="12" r="9" stroke="#b9d0d0" stroke-width="2" fill="none"/>
288
+ <path d="M12 7v6l4 2" stroke="#b9d0d0" stroke-width="2" stroke-linecap="round"/>
289
+ </svg>
290
+ <span>a_short_history_of_germany</span>
291
+ </div>
292
+ <div class="divider"></div>
293
+
294
+ <!-- Keyboard -->
295
+ <div class="keyboard">
296
+ <!-- Toolbar -->
297
+ <div class="kb-toolbar">
298
+ <div class="kb-icon">
299
+ <!-- grid icon -->
300
+ <svg width="42" height="42" viewBox="0 0 24 24">
301
+ <rect x="3" y="3" width="6" height="6" fill="#cdd7db"/>
302
+ <rect x="13" y="3" width="8" height="6" fill="#cdd7db"/>
303
+ <rect x="3" y="13" width="6" height="8" fill="#cdd7db"/>
304
+ <rect x="13" y="13" width="8" height="8" fill="#cdd7db"/>
305
+ </svg>
306
+ </div>
307
+ <div class="kb-icon">
308
+ <!-- emoji -->
309
+ <svg width="42" height="42" viewBox="0 0 24 24">
310
+ <circle cx="12" cy="12" r="9" fill="#cdd7db"/>
311
+ <circle cx="9" cy="10" r="1.5" fill="#152527"/>
312
+ <circle cx="15" cy="10" r="1.5" fill="#152527"/>
313
+ <path d="M8 14c2 2 6 2 8 0" stroke="#152527" stroke-width="2" fill="none" stroke-linecap="round"/>
314
+ </svg>
315
+ </div>
316
+ <div class="kb-icon"><span style="font-weight:700;">GIF</span></div>
317
+ <div class="kb-icon">
318
+ <!-- gear -->
319
+ <svg width="42" height="42" viewBox="0 0 24 24">
320
+ <circle cx="12" cy="12" r="3" fill="#cdd7db"/>
321
+ <path d="M12 2v4M12 18v4M2 12h4M18 12h4M4.5 4.5l2.8 2.8M16.7 16.7l2.8 2.8M19.5 4.5l-2.8 2.8M6.7 16.7l-2.8 2.8" stroke="#cdd7db" stroke-width="2"/>
322
+ </svg>
323
+ </div>
324
+ <div class="kb-icon">
325
+ <!-- G Translate simple -->
326
+ <svg width="42" height="42" viewBox="0 0 24 24">
327
+ <rect x="3" y="4" width="10" height="14" rx="2" fill="#cdd7db"/>
328
+ <text x="8" y="13" font-size="8" text-anchor="middle" fill="#152527">G</text>
329
+ <rect x="15" y="6" width="6" height="10" rx="1" stroke="#cdd7db" stroke-width="2" fill="none"/>
330
+ </svg>
331
+ </div>
332
+ <div class="kb-icon">
333
+ <!-- palette -->
334
+ <svg width="42" height="42" viewBox="0 0 24 24">
335
+ <path d="M12 3c5 0 9 3.5 9 8.5 0 2.5-1.6 3.5-3.5 3.5H13a2 2 0 0 0-2 2v0" stroke="#cdd7db" stroke-width="2" fill="none"/>
336
+ <circle cx="8" cy="9" r="1.5" fill="#cdd7db"/>
337
+ <circle cx="12" cy="7.5" r="1.5" fill="#cdd7db"/>
338
+ <circle cx="16" cy="9" r="1.5" fill="#cdd7db"/>
339
+ </svg>
340
+ </div>
341
+ <div class="kb-icon">
342
+ <!-- mic -->
343
+ <svg width="42" height="42" viewBox="0 0 24 24">
344
+ <rect x="9" y="5" width="6" height="10" rx="3" fill="#cdd7db"/>
345
+ <path d="M5 11a7 7 0 0 0 14 0" stroke="#cdd7db" stroke-width="2" fill="none"/>
346
+ <path d="M12 18v4" stroke="#cdd7db" stroke-width="2"/>
347
+ </svg>
348
+ </div>
349
+ </div>
350
+
351
+ <!-- Keys -->
352
+ <div class="kb-keys">
353
+ <div class="row">
354
+ <div class="key">q</div>
355
+ <div class="key">w</div>
356
+ <div class="key">e</div>
357
+ <div class="key">r</div>
358
+ <div class="key">t</div>
359
+ <div class="key">y</div>
360
+ <div class="key">u</div>
361
+ <div class="key">i</div>
362
+ <div class="key">o</div>
363
+ <div class="key">p</div>
364
+ <div class="key wide">
365
+ <!-- backspace -->
366
+ <svg width="76" height="40" viewBox="0 0 24 24">
367
+ <path d="M3 12l6-6h10v12H9l-6-6z" fill="#cfd8dc"/>
368
+ </svg>
369
+ </div>
370
+ </div>
371
+ <div class="row">
372
+ <div class="key">a</div>
373
+ <div class="key">s</div>
374
+ <div class="key">d</div>
375
+ <div class="key">f</div>
376
+ <div class="key">g</div>
377
+ <div class="key">h</div>
378
+ <div class="key">j</div>
379
+ <div class="key">k</div>
380
+ <div class="key">l</div>
381
+ <div class="key small">,</div>
382
+ <div class="key small">.</div>
383
+ </div>
384
+ <div class="row">
385
+ <div class="key wide">
386
+ <!-- shift -->
387
+ <svg width="60" height="40" viewBox="0 0 24 24">
388
+ <path d="M12 4l7 7h-4v9H9v-9H5l7-7z" fill="#cfd8dc"/>
389
+ </svg>
390
+ </div>
391
+ <div class="key">z</div>
392
+ <div class="key">x</div>
393
+ <div class="key">c</div>
394
+ <div class="key">v</div>
395
+ <div class="key">b</div>
396
+ <div class="key">n</div>
397
+ <div class="key">m</div>
398
+ <div class="key wide">
399
+ <!-- mic small -->
400
+ <svg width="44" height="40" viewBox="0 0 24 24">
401
+ <rect x="9" y="5" width="6" height="10" rx="3" fill="#cfd8dc"/>
402
+ <path d="M5 11a7 7 0 0 0 14 0" stroke="#cfd8dc" stroke-width="2" fill="none"/>
403
+ </svg>
404
+ </div>
405
+ </div>
406
+ </div>
407
+
408
+ <!-- Bottom function row -->
409
+ <div class="bottom-row">
410
+ <div class="key accent wide">?123</div>
411
+ <div class="key wide">
412
+ <!-- emoji button -->
413
+ <svg width="50" height="42" viewBox="0 0 24 24">
414
+ <circle cx="12" cy="12" r="9" fill="#cfd8dc"/>
415
+ <circle cx="9" cy="10" r="1.5" fill="#2a3a3f"/>
416
+ <circle cx="15" cy="10" r="1.5" fill="#2a3a3f"/>
417
+ <path d="M8 14c2 2 6 2 8 0" stroke="#2a3a3f" stroke-width="2" fill="none" stroke-linecap="round"/>
418
+ </svg>
419
+ </div>
420
+ <div class="space"></div>
421
+ <div class="key accent wide">
422
+ <!-- search enter -->
423
+ <svg width="50" height="42" viewBox="0 0 24 24">
424
+ <circle cx="11" cy="11" r="6" stroke="#053b35" stroke-width="2" fill="none"/>
425
+ <path d="M16 16l4 4" stroke="#053b35" stroke-width="2" stroke-linecap="round"/>
426
+ </svg>
427
+ </div>
428
+ </div>
429
+ </div>
430
+
431
+ <!-- Gesture navigation pill -->
432
+ <div class="nav-pill"></div>
433
+ </div>
434
+ </body>
435
+ </html>
code/7339/7339_3.html ADDED
@@ -0,0 +1,299 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>Android Search UI Mock</title>
6
+ <style>
7
+ body { margin: 0; padding: 0; background: transparent; font-family: "Roboto", Arial, sans-serif; }
8
+ #render-target {
9
+ position: relative;
10
+ overflow: hidden;
11
+ width: 1080px;
12
+ height: 2400px;
13
+ background: #0E2C2C; /* dark teal overall */
14
+ border-radius: 0;
15
+ box-shadow: none;
16
+ color: #FFFFFF;
17
+ }
18
+
19
+ /* Status bar */
20
+ .status-bar {
21
+ position: absolute;
22
+ left: 0; top: 0;
23
+ width: 1080px;
24
+ height: 120px;
25
+ padding: 0 32px;
26
+ display: flex;
27
+ align-items: center;
28
+ justify-content: space-between;
29
+ color: #E8F1EE;
30
+ font-size: 38px;
31
+ }
32
+ .status-left { display: flex; align-items: center; gap: 18px; }
33
+ .status-right { display: flex; align-items: center; gap: 18px; }
34
+ .status-icon { width: 44px; height: 44px; }
35
+
36
+ /* Search header */
37
+ .search-header {
38
+ position: absolute;
39
+ top: 120px;
40
+ left: 0;
41
+ width: 1080px;
42
+ height: 140px;
43
+ display: flex;
44
+ align-items: center;
45
+ padding: 0 24px;
46
+ border-bottom: 1px solid rgba(255,255,255,0.10);
47
+ }
48
+ .nav-icon {
49
+ width: 76px;
50
+ height: 76px;
51
+ margin-right: 16px;
52
+ }
53
+ .search-field {
54
+ flex: 1;
55
+ display: flex;
56
+ align-items: center;
57
+ gap: 16px;
58
+ color: #DDEAE6;
59
+ font-size: 42px;
60
+ white-space: nowrap;
61
+ }
62
+ .caret {
63
+ width: 4px;
64
+ height: 52px;
65
+ background: #67F0C1; /* mint caret */
66
+ border-radius: 2px;
67
+ animation: blink 1.1s step-end infinite;
68
+ }
69
+ @keyframes blink { 50% { opacity: 0; } }
70
+ .clear-icon {
71
+ width: 60px;
72
+ height: 60px;
73
+ margin-left: 12px;
74
+ }
75
+
76
+ /* Suggestion item */
77
+ .suggestion {
78
+ position: absolute;
79
+ top: 260px;
80
+ left: 96px;
81
+ right: 32px;
82
+ height: 100px;
83
+ display: flex;
84
+ align-items: center;
85
+ color: rgba(255,255,255,0.85);
86
+ font-size: 40px;
87
+ }
88
+
89
+ /* Keyboard */
90
+ .keyboard {
91
+ position: absolute;
92
+ left: 0;
93
+ bottom: 120px;
94
+ width: 1080px;
95
+ height: 980px;
96
+ background: #121718;
97
+ border-top: 1px solid rgba(255,255,255,0.08);
98
+ }
99
+
100
+ .kb-toolbar {
101
+ height: 120px;
102
+ display: flex;
103
+ align-items: center;
104
+ gap: 36px;
105
+ padding: 0 40px;
106
+ color: #CFE1DD;
107
+ font-size: 36px;
108
+ }
109
+ .tool-icon {
110
+ width: 76px; height: 76px; border-radius: 16px;
111
+ background: #1D2426; display: flex; align-items: center; justify-content: center;
112
+ border: 1px solid rgba(255,255,255,0.06);
113
+ }
114
+
115
+ .kb-rows {
116
+ padding: 18px 22px 0 22px;
117
+ }
118
+ .row { display: flex; justify-content: center; gap: 18px; margin-bottom: 26px; }
119
+ .key {
120
+ width: 92px; height: 120px; border-radius: 18px;
121
+ background: #1E2426; color: #D7DFDD; font-size: 44px; display: flex;
122
+ align-items: center; justify-content: center;
123
+ box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
124
+ }
125
+ .key.wide { width: 120px; }
126
+ .key.extra-wide { width: 660px; }
127
+ .key.backspace { width: 150px; }
128
+ .key.fn { width: 150px; border-radius: 40px; background: #8AF0CC; color: #083531; font-weight: 600; }
129
+ .key.search { width: 150px; border-radius: 40px; background: #8AF0CC; color: #083531; font-weight: 600; }
130
+
131
+ /* Bottom gesture bar */
132
+ .gesture-bar {
133
+ position: absolute;
134
+ bottom: 32px;
135
+ left: 50%;
136
+ transform: translateX(-50%);
137
+ width: 300px; height: 10px;
138
+ background: #EDEDED; border-radius: 8px; opacity: 0.85;
139
+ }
140
+ </style>
141
+ </head>
142
+ <body>
143
+ <div id="render-target">
144
+
145
+ <!-- Status bar -->
146
+ <div class="status-bar">
147
+ <div class="status-left">
148
+ <span>6:53</span>
149
+ </div>
150
+ <div class="status-right">
151
+ <!-- Simple mail dot icon -->
152
+ <svg class="status-icon" viewBox="0 0 24 24">
153
+ <rect x="3" y="5" width="18" height="14" rx="2" fill="none" stroke="#E8F1EE" stroke-width="2"></rect>
154
+ <path d="M4 7l8 6 8-6" fill="none" stroke="#E8F1EE" stroke-width="2"></path>
155
+ </svg>
156
+ <!-- Settings gear simplified -->
157
+ <svg class="status-icon" viewBox="0 0 24 24">
158
+ <circle cx="12" cy="12" r="4" fill="none" stroke="#E8F1EE" stroke-width="2"></circle>
159
+ <path d="M4 12h3M17 12h3M12 4v3M12 17v3" stroke="#E8F1EE" stroke-width="2"></path>
160
+ </svg>
161
+ <!-- WiFi -->
162
+ <svg class="status-icon" viewBox="0 0 24 24">
163
+ <path d="M3 9c4.5-4 13.5-4 18 0" fill="none" stroke="#E8F1EE" stroke-width="2" stroke-linecap="round"></path>
164
+ <path d="M6 12c3-2.5 9-2.5 12 0" fill="none" stroke="#E8F1EE" stroke-width="2" stroke-linecap="round"></path>
165
+ <path d="M9 15c1.5-1 4.5-1 6 0" fill="none" stroke="#E8F1EE" stroke-width="2" stroke-linecap="round"></path>
166
+ <circle cx="12" cy="18" r="1.5" fill="#E8F1EE"></circle>
167
+ </svg>
168
+ <!-- Battery with percentage -->
169
+ <div style="display:flex; align-items:center; gap:10px;">
170
+ <svg class="status-icon" viewBox="0 0 24 24">
171
+ <rect x="2" y="6" width="18" height="12" rx="2" fill="none" stroke="#E8F1EE" stroke-width="2"></rect>
172
+ <rect x="4" y="8" width="14" height="8" fill="#E8F1EE"></rect>
173
+ <rect x="21" y="10" width="2" height="4" rx="1" fill="#E8F1EE"></rect>
174
+ </svg>
175
+ <span>100%</span>
176
+ </div>
177
+ </div>
178
+ </div>
179
+
180
+ <!-- Search header -->
181
+ <div class="search-header">
182
+ <!-- Back arrow -->
183
+ <svg class="nav-icon" viewBox="0 0 24 24">
184
+ <path d="M15 5L7 12l8 7" fill="none" stroke="#E8F1EE" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
185
+ </svg>
186
+
187
+ <div class="search-field">
188
+ <span>Zeitleiste_englisch_zum_Selbstdruck</span>
189
+ <div class="caret"></div>
190
+ </div>
191
+
192
+ <!-- Clear (X) icon -->
193
+ <svg class="clear-icon" viewBox="0 0 24 24">
194
+ <path d="M6 6l12 12M18 6L6 18" stroke="#9CCFC1" stroke-width="2" stroke-linecap="round"></path>
195
+ </svg>
196
+ </div>
197
+
198
+ <!-- Suggestion item -->
199
+ <div class="suggestion">
200
+ zeitleiste_englisch_zum_selbstdruck_16_einzelseiten.pdf
201
+ </div>
202
+
203
+ <!-- Keyboard -->
204
+ <div class="keyboard">
205
+ <div class="kb-toolbar">
206
+ <div class="tool-icon">
207
+ <!-- emoji -->
208
+ <svg viewBox="0 0 24 24" width="40" height="40">
209
+ <circle cx="12" cy="12" r="9" fill="none" stroke="#CFE1DD" stroke-width="2"></circle>
210
+ <circle cx="9" cy="10" r="1.2" fill="#CFE1DD"></circle>
211
+ <circle cx="15" cy="10" r="1.2" fill="#CFE1DD"></circle>
212
+ <path d="M8 15c2 1.5 6 1.5 8 0" stroke="#CFE1DD" stroke-width="2" fill="none" stroke-linecap="round"></path>
213
+ </svg>
214
+ </div>
215
+ <div style="color:#CFE1DD;font-weight:700;">GIF</div>
216
+ <div class="tool-icon">
217
+ <!-- gear -->
218
+ <svg viewBox="0 0 24 24" width="40" height="40">
219
+ <circle cx="12" cy="12" r="5" fill="none" stroke="#CFE1DD" stroke-width="2"></circle>
220
+ <path d="M12 2v4M12 18v4M2 12h4M18 12h4M5 5l3 3M16 16l3 3M19 5l-3 3M8 16l-3 3" stroke="#CFE1DD" stroke-width="2"></path>
221
+ </svg>
222
+ </div>
223
+ <div class="tool-icon">
224
+ <!-- G Translate simplified -->
225
+ <svg viewBox="0 0 24 24" width="40" height="40">
226
+ <text x="5" y="16" font-size="12" fill="#CFE1DD" font-family="Arial">G</text>
227
+ <path d="M13 7h8v10h-8z" fill="none" stroke="#CFE1DD" stroke-width="2"></path>
228
+ <path d="M15 12h4M16 10l2 4" stroke="#CFE1DD" stroke-width="2"></path>
229
+ </svg>
230
+ </div>
231
+ <div class="tool-icon">
232
+ <!-- palette -->
233
+ <svg viewBox="0 0 24 24" width="40" height="40">
234
+ <path d="M12 3c-5 0-9 3.5-9 8s4 6 6 6h4c2 0 3 1 3 2s1 3 3 3" fill="none" stroke="#CFE1DD" stroke-width="2"></path>
235
+ <circle cx="8" cy="10" r="1" fill="#CFE1DD"></circle>
236
+ <circle cx="12" cy="9" r="1" fill="#CFE1DD"></circle>
237
+ <circle cx="16" cy="11" r="1" fill="#CFE1DD"></circle>
238
+ </svg>
239
+ </div>
240
+ <div class="tool-icon">
241
+ <!-- mic -->
242
+ <svg viewBox="0 0 24 24" width="40" height="40">
243
+ <rect x="9" y="5" width="6" height="9" rx="3" fill="none" stroke="#CFE1DD" stroke-width="2"></rect>
244
+ <path d="M6 11c0 3 3 5 6 5s6-2 6-5M12 16v4M9 20h6" fill="none" stroke="#CFE1DD" stroke-width="2"></path>
245
+ </svg>
246
+ </div>
247
+ </div>
248
+
249
+ <div class="kb-rows">
250
+ <!-- Row 1 -->
251
+ <div class="row">
252
+ <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>
253
+ <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>
254
+ </div>
255
+ <!-- Row 2 -->
256
+ <div class="row" style="padding-left:40px;">
257
+ <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>
258
+ <div class="key">h</div><div class="key">j</div><div class="key">k</div><div class="key">l</div>
259
+ </div>
260
+ <!-- Row 3 -->
261
+ <div class="row" style="padding-left:80px;">
262
+ <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>
263
+ <div class="key">n</div><div class="key">m</div>
264
+ <div class="key backspace">
265
+ <svg viewBox="0 0 24 24" width="40" height="40">
266
+ <path d="M5 12l6-6h8v12h-8z" fill="none" stroke="#D7DFDD" stroke-width="2"></path>
267
+ <path d="M12 10l4 4M16 10l-4 4" stroke="#D7DFDD" stroke-width="2"></path>
268
+ </svg>
269
+ </div>
270
+ </div>
271
+ <!-- Function Row -->
272
+ <div class="row" style="justify-content: space-between; padding: 0 24px;">
273
+ <div class="key fn">?123</div>
274
+ <div class="key wide">,</div>
275
+ <div class="key wide">
276
+ <svg viewBox="0 0 24 24" width="36" height="36">
277
+ <circle cx="12" cy="12" r="10" fill="none" stroke="#D7DFDD" stroke-width="2"></circle>
278
+ <circle cx="9" cy="10" r="1.2" fill="#D7DFDD"></circle>
279
+ <circle cx="15" cy="10" r="1.2" fill="#D7DFDD"></circle>
280
+ <path d="M8 15c2 1.5 6 1.5 8 0" stroke="#D7DFDD" stroke-width="2" fill="none" stroke-linecap="round"></path>
281
+ </svg>
282
+ </div>
283
+ <div class="key extra-wide"></div>
284
+ <div class="key wide">.</div>
285
+ <div class="key search">
286
+ <svg viewBox="0 0 24 24" width="36" height="36">
287
+ <circle cx="11" cy="11" r="6" fill="none" stroke="#083531" stroke-width="2"></circle>
288
+ <path d="M16 16l4 4" stroke="#083531" stroke-width="2" stroke-linecap="round"></path>
289
+ </svg>
290
+ </div>
291
+ </div>
292
+ </div>
293
+ </div>
294
+
295
+ <!-- Bottom gesture bar -->
296
+ <div class="gesture-bar"></div>
297
+ </div>
298
+ </body>
299
+ </html>
code/7339/7339_4.html ADDED
@@ -0,0 +1,198 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Files Search 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; position: relative; overflow: hidden;
11
+ background: #102C2E; color: #E6F2F2;
12
+ }
13
+
14
+ /* Status bar */
15
+ .status-bar {
16
+ position: absolute; top: 0; left: 0; right: 0; height: 96px;
17
+ display: flex; align-items: center; justify-content: space-between;
18
+ padding: 0 36px; font-size: 40px; color: #DDEEEE;
19
+ }
20
+ .status-left { display: flex; align-items: center; gap: 24px; }
21
+ .status-icons { display: flex; align-items: center; gap: 20px; opacity: 0.8; }
22
+ .status-icons .dot { width: 28px; height: 28px; border-radius: 50%; background: #5A7B7D; }
23
+ .status-right { display: flex; align-items: center; gap: 20px; }
24
+ .battery {
25
+ display: inline-flex; align-items: center; gap: 12px; font-size: 36px; color: #DDEEEE;
26
+ }
27
+ .battery svg { width: 54px; height: 32px; }
28
+
29
+ /* App bar with search */
30
+ .app-bar {
31
+ position: absolute; top: 96px; left: 0; right: 0; height: 140px;
32
+ display: flex; align-items: center; padding: 0 24px;
33
+ border-bottom: 1px solid rgba(170, 200, 200, 0.12);
34
+ }
35
+ .search-row {
36
+ height: 96px; width: 100%;
37
+ display: flex; align-items: center; gap: 26px;
38
+ }
39
+ .icon-btn {
40
+ width: 72px; height: 72px; display: inline-flex; align-items: center; justify-content: center;
41
+ border-radius: 36px; background: transparent;
42
+ }
43
+ .icon-btn svg { width: 48px; height: 48px; stroke: #E6F2F2; fill: none; stroke-width: 4; }
44
+ .search-text {
45
+ flex: 1; font-size: 42px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
46
+ color: #E6F2F2;
47
+ }
48
+
49
+ /* Filter chips */
50
+ .chip-bar {
51
+ position: absolute; top: 236px; left: 0; right: 0; height: 110px;
52
+ display: flex; align-items: center; gap: 18px; padding: 0 24px;
53
+ }
54
+ .chip {
55
+ height: 90px; padding: 0 34px; border: 1px solid #3D5E62; color: #D9EAEA;
56
+ border-radius: 46px; display: inline-flex; align-items: center; gap: 18px;
57
+ font-size: 36px; background: rgba(255,255,255,0.03);
58
+ }
59
+ .chip svg { width: 42px; height: 42px; stroke: #BFD6D6; fill: none; stroke-width: 3.5; }
60
+
61
+ /* List area */
62
+ .list {
63
+ position: absolute; top: 346px; left: 0; right: 0; bottom: 120px;
64
+ padding: 0 24px;
65
+ }
66
+ .file-item {
67
+ height: 190px; display: flex; align-items: center; gap: 28px;
68
+ padding: 10px 12px; border-radius: 16px;
69
+ }
70
+ .thumb {
71
+ width: 170px; height: 170px; background: #E0E0E0; border: 1px solid #BDBDBD;
72
+ display: flex; align-items: center; justify-content: center; color: #757575; font-size: 28px;
73
+ border-radius: 12px; overflow: hidden;
74
+ }
75
+ .file-info { flex: 1; display: flex; flex-direction: column; gap: 8px; }
76
+ .file-title {
77
+ font-size: 40px; color: #EAF6F6; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
78
+ max-width: 750px;
79
+ }
80
+ .file-sub {
81
+ font-size: 32px; color: #9BB6B6;
82
+ }
83
+ .trailing-menu .icon-btn svg { stroke: #CFE3E3; }
84
+
85
+ /* Bottom gesture bar */
86
+ .gesture {
87
+ position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
88
+ width: 240px; height: 16px; background: #D9D9D9; border-radius: 10px; opacity: 0.8;
89
+ }
90
+ </style>
91
+ </head>
92
+ <body>
93
+ <div id="render-target">
94
+
95
+ <!-- Status Bar -->
96
+ <div class="status-bar">
97
+ <div class="status-left">
98
+ <div>6:53</div>
99
+ <div class="status-icons">
100
+ <div class="dot"></div>
101
+ <div class="dot"></div>
102
+ </div>
103
+ </div>
104
+ <div class="status-right">
105
+ <div class="battery">
106
+ <svg viewBox="0 0 26 14">
107
+ <rect x="1" y="1" width="20" height="12" rx="2" ry="2" stroke="#E6F2F2" fill="none" stroke-width="2"></rect>
108
+ <rect x="3" y="3" width="16" height="8" fill="#E6F2F2"></rect>
109
+ <rect x="22" y="4" width="3" height="6" rx="1" fill="#E6F2F2"></rect>
110
+ </svg>
111
+ <span>100%</span>
112
+ </div>
113
+ </div>
114
+ </div>
115
+
116
+ <!-- App Bar -->
117
+ <div class="app-bar">
118
+ <div class="search-row">
119
+ <button class="icon-btn" aria-label="Back">
120
+ <svg viewBox="0 0 24 24">
121
+ <path d="M15 5 L8 12 L15 19" />
122
+ </svg>
123
+ </button>
124
+ <div class="search-text">te_englisch_zum_Selbstdruck</div>
125
+ <button class="icon-btn" aria-label="Clear">
126
+ <svg viewBox="0 0 24 24">
127
+ <path d="M6 6 L18 18 M18 6 L6 18" />
128
+ </svg>
129
+ </button>
130
+ <button class="icon-btn" aria-label="Grid">
131
+ <svg viewBox="0 0 24 24">
132
+ <rect x="3" y="3" width="7" height="7" />
133
+ <rect x="14" y="3" width="7" height="7" />
134
+ <rect x="3" y="14" width="7" height="7" />
135
+ <rect x="14" y="14" width="7" height="7" />
136
+ </svg>
137
+ </button>
138
+ <button class="icon-btn" aria-label="More">
139
+ <svg viewBox="0 0 24 24" fill="#E6F2F2" stroke="none">
140
+ <circle cx="12" cy="4" r="2"></circle>
141
+ <circle cx="12" cy="12" r="2"></circle>
142
+ <circle cx="12" cy="20" r="2"></circle>
143
+ </svg>
144
+ </button>
145
+ </div>
146
+ </div>
147
+
148
+ <!-- Filter Chips -->
149
+ <div class="chip-bar">
150
+ <div class="chip">
151
+ <svg viewBox="0 0 24 24">
152
+ <path d="M6 14 v-3 a6 6 0 1 1 12 0 v3" />
153
+ <rect x="5" y="14" width="4" height="4" />
154
+ <rect x="15" y="14" width="4" height="4" />
155
+ </svg>
156
+ <span>Audio</span>
157
+ </div>
158
+ <div class="chip">
159
+ <svg viewBox="0 0 24 24">
160
+ <rect x="4" y="3" width="14" height="18" rx="2" />
161
+ <path d="M14 3 L18 7" />
162
+ </svg>
163
+ <span>Documents & other</span>
164
+ </div>
165
+ <div class="chip">
166
+ <svg viewBox="0 0 24 24">
167
+ <rect x="3" y="4" width="18" height="16" rx="2" />
168
+ <path d="M4 16 L10 10 L14 14 L20 8" />
169
+ </svg>
170
+ <span>Images</span>
171
+ </div>
172
+ </div>
173
+
174
+ <!-- Results List -->
175
+ <div class="list">
176
+ <div class="file-item">
177
+ <div class="thumb">[IMG: Document Thumbnail]</div>
178
+ <div class="file-info">
179
+ <div class="file-title">Zeitleiste_englisch_zum_Selbsdtru...</div>
180
+ <div class="file-sub">29.45 MB, 1 hour ago</div>
181
+ </div>
182
+ <div class="trailing-menu">
183
+ <button class="icon-btn" aria-label="More options">
184
+ <svg viewBox="0 0 24 24" fill="#CFE3E3" stroke="none">
185
+ <circle cx="12" cy="5" r="2"></circle>
186
+ <circle cx="12" cy="12" r="2"></circle>
187
+ <circle cx="12" cy="19" r="2"></circle>
188
+ </svg>
189
+ </button>
190
+ </div>
191
+ </div>
192
+ </div>
193
+
194
+ <!-- Bottom gesture bar -->
195
+ <div class="gesture"></div>
196
+ </div>
197
+ </body>
198
+ </html>
code/7339/7339_5.html ADDED
@@ -0,0 +1,220 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Android Files UI Mock</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, sans-serif; }
9
+ #render-target {
10
+ width: 1080px; height: 2400px;
11
+ position: relative; overflow: hidden;
12
+ background: #0F2A2D; /* deep teal app backdrop */
13
+ color: #DCE7EA;
14
+ }
15
+ /* Status bar */
16
+ .status-bar {
17
+ position: absolute; top: 0; left: 0; right: 0; height: 90px;
18
+ padding: 0 30px;
19
+ display: flex; align-items: center; justify-content: space-between;
20
+ color: #DCE7EA; font-size: 34px; letter-spacing: 0.5px;
21
+ }
22
+ .status-right { display: flex; align-items: center; gap: 22px; font-size: 28px; color: #BBD0D3; }
23
+ .icon {
24
+ width: 40px; height: 40px;
25
+ }
26
+ .icon path, .icon rect, .icon circle, .icon line { stroke: #CFE1E4; fill: none; stroke-width: 3; }
27
+ .icon.solid path, .icon.solid rect, .icon.solid circle { fill: #CFE1E4; stroke: none; }
28
+ /* App bar */
29
+ .app-bar {
30
+ position: absolute; top: 90px; left: 0; right: 0; height: 120px;
31
+ background: #12363A;
32
+ display: flex; align-items: center;
33
+ padding: 0 24px;
34
+ box-sizing: border-box;
35
+ border-bottom: 1px solid #21474B;
36
+ }
37
+ .nav-left { display: flex; align-items: center; gap: 20px; flex: 1; }
38
+ .app-title {
39
+ font-size: 36px; color: #DCE7EA;
40
+ white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
41
+ max-width: 700px;
42
+ }
43
+ .nav-right { display: flex; align-items: center; gap: 26px; }
44
+ /* Filter chips */
45
+ .chips {
46
+ position: absolute; top: 230px; left: 24px; right: 24px;
47
+ display: flex; gap: 16px; flex-wrap: wrap;
48
+ }
49
+ .chip {
50
+ display: inline-flex; align-items: center; gap: 10px;
51
+ padding: 14px 18px; border: 1px solid #2E5156;
52
+ border-radius: 16px; color: #CFE1E4; font-size: 28px;
53
+ background: rgba(18,54,58,0.6);
54
+ }
55
+ .chip .icon { width: 34px; height: 34px; }
56
+ /* List item */
57
+ .list {
58
+ position: absolute; top: 340px; left: 24px; right: 24px;
59
+ }
60
+ .item {
61
+ display: flex; align-items: center; justify-content: space-between;
62
+ padding: 22px; border-radius: 14px;
63
+ }
64
+ .left {
65
+ display: flex; align-items: center; gap: 22px;
66
+ }
67
+ .thumb {
68
+ width: 150px; height: 150px; background: #E0E0E0;
69
+ border: 1px solid #BDBDBD; color: #757575;
70
+ display: flex; justify-content: center; align-items: center;
71
+ font-size: 22px; border-radius: 8px;
72
+ }
73
+ .meta { display: flex; flex-direction: column; }
74
+ .file-name {
75
+ font-size: 34px; color: #DCE7EA;
76
+ max-width: 650px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
77
+ }
78
+ .file-sub {
79
+ margin-top: 8px; font-size: 28px; color: #9FB4B7;
80
+ }
81
+ .dots { width: 44px; height: 44px; }
82
+ /* Context menu */
83
+ .context-menu {
84
+ position: absolute; top: 650px; right: 70px;
85
+ width: 560px; background: #103941;
86
+ border-radius: 22px; box-shadow: 0 20px 40px rgba(0,0,0,0.45);
87
+ overflow: hidden; border: 1px solid #1E4F55;
88
+ }
89
+ .menu-item {
90
+ padding: 34px 34px; font-size: 32px; color: #CFE1E4;
91
+ border-bottom: 1px solid rgba(255,255,255,0.04);
92
+ }
93
+ .menu-item:last-child { border-bottom: none; }
94
+ /* Gesture bar */
95
+ .gesture {
96
+ position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
97
+ width: 240px; height: 10px; background: #E6E6E6; border-radius: 8px; opacity: 0.9;
98
+ }
99
+ </style>
100
+ </head>
101
+ <body>
102
+ <div id="render-target">
103
+ <!-- Status Bar -->
104
+ <div class="status-bar">
105
+ <div class="status-left">6:54</div>
106
+ <div class="status-right">
107
+ <!-- Wi-Fi -->
108
+ <svg class="icon" viewBox="0 0 24 24">
109
+ <path d="M2 8c5-4 15-4 20 0"></path>
110
+ <path d="M5 12c4-3 10-3 14 0"></path>
111
+ <path d="M8 16c3-2 5-2 8 0"></path>
112
+ <circle cx="12" cy="19" r="1.5" class="solid"></circle>
113
+ </svg>
114
+ <!-- Battery -->
115
+ <svg class="icon" viewBox="0 0 28 24">
116
+ <rect x="1" y="5" width="22" height="14" rx="2"></rect>
117
+ <rect x="3" y="7" width="18" height="10" rx="1" class="solid"></rect>
118
+ <rect x="23" y="9" width="4" height="6" rx="1"></rect>
119
+ </svg>
120
+ <span>100%</span>
121
+ </div>
122
+ </div>
123
+
124
+ <!-- App Bar -->
125
+ <div class="app-bar">
126
+ <div class="nav-left">
127
+ <!-- Back arrow -->
128
+ <svg class="icon" viewBox="0 0 24 24">
129
+ <path d="M14 4 L6 12 L14 20"></path>
130
+ <line x1="6" y1="12" x2="22" y2="12"></line>
131
+ </svg>
132
+ <div class="app-title">te_englisch_zum_Selbstdruck</div>
133
+ <!-- Clear X -->
134
+ <svg class="icon" viewBox="0 0 24 24">
135
+ <line x1="5" y1="5" x2="19" y2="19"></line>
136
+ <line x1="19" y1="5" x2="5" y2="19"></line>
137
+ </svg>
138
+ </div>
139
+ <div class="nav-right">
140
+ <!-- Grid icon -->
141
+ <svg class="icon" viewBox="0 0 24 24">
142
+ <rect x="3" y="3" width="7" height="7"></rect>
143
+ <rect x="14" y="3" width="7" height="7"></rect>
144
+ <rect x="3" y="14" width="7" height="7"></rect>
145
+ <rect x="14" y="14" width="7" height="7"></rect>
146
+ </svg>
147
+ <!-- More (three dots) -->
148
+ <svg class="icon dots" viewBox="0 0 24 24">
149
+ <circle cx="12" cy="5" r="2" class="solid"></circle>
150
+ <circle cx="12" cy="12" r="2" class="solid"></circle>
151
+ <circle cx="12" cy="19" r="2" class="solid"></circle>
152
+ </svg>
153
+ </div>
154
+ </div>
155
+
156
+ <!-- Filter Chips -->
157
+ <div class="chips">
158
+ <div class="chip">
159
+ <svg class="icon" viewBox="0 0 24 24">
160
+ <path d="M4 14a8 8 0 0116 0"></path>
161
+ <circle cx="6" cy="15.5" r="2.5"></circle>
162
+ <circle cx="18" cy="15.5" r="2.5"></circle>
163
+ </svg>
164
+ <span>Audio</span>
165
+ </div>
166
+ <div class="chip">
167
+ <svg class="icon" viewBox="0 0 24 24">
168
+ <rect x="5" y="3" width="14" height="18" rx="2"></rect>
169
+ <polyline points="15,3 15,9 21,9"></polyline>
170
+ </svg>
171
+ <span>Documents &amp; other</span>
172
+ </div>
173
+ <div class="chip">
174
+ <svg class="icon" viewBox="0 0 24 24">
175
+ <rect x="3" y="5" width="18" height="14" rx="2"></rect>
176
+ <polygon points="6,16 10,12 14,15 18,10 21,16" class="solid"></polygon>
177
+ <circle cx="8" cy="9" r="1.5" class="solid"></circle>
178
+ </svg>
179
+ <span>Images</span>
180
+ </div>
181
+ </div>
182
+
183
+ <!-- List -->
184
+ <div class="list">
185
+ <div class="item">
186
+ <div class="left">
187
+ <div class="thumb">[IMG: File Thumbnail]</div>
188
+ <div class="meta">
189
+ <div class="file-name">Zeitleiste_englisch_zum_Selbstdru...</div>
190
+ <div class="file-sub">29.45 MB, 1 hour ago</div>
191
+ </div>
192
+ </div>
193
+ <svg class="icon dots" viewBox="0 0 24 24">
194
+ <circle cx="12" cy="5" r="2" class="solid"></circle>
195
+ <circle cx="12" cy="12" r="2" class="solid"></circle>
196
+ <circle cx="12" cy="19" r="2" class="solid"></circle>
197
+ </svg>
198
+ </div>
199
+ </div>
200
+
201
+ <!-- Context Menu Panel -->
202
+ <div class="context-menu">
203
+ <div class="menu-item">Select</div>
204
+ <div class="menu-item">Share</div>
205
+ <div class="menu-item">Open with</div>
206
+ <div class="menu-item">Rename</div>
207
+ <div class="menu-item">Add to Favorites</div>
208
+ <div class="menu-item">Move to Trash</div>
209
+ <div class="menu-item">Move to</div>
210
+ <div class="menu-item">Move to Safe folder</div>
211
+ <div class="menu-item">Copy to</div>
212
+ <div class="menu-item">Back up to Google Drive</div>
213
+ <div class="menu-item">File info</div>
214
+ </div>
215
+
216
+ <!-- Gesture bar -->
217
+ <div class="gesture"></div>
218
+ </div>
219
+ </body>
220
+ </html>
code/7339/7339_6.html ADDED
@@ -0,0 +1,185 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>UI Render</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
9
+ #render-target {
10
+ width: 1080px; height: 2400px;
11
+ position: relative; overflow: hidden;
12
+ background: #0f1e1e;
13
+ }
14
+
15
+ /* Status bar */
16
+ .status-bar {
17
+ position: absolute; top: 0; left: 0; right: 0;
18
+ height: 110px; padding: 0 36px;
19
+ display: flex; align-items: center; justify-content: space-between;
20
+ color: #f5f5f5; font-size: 38px; letter-spacing: 0.4px;
21
+ }
22
+ .status-icons { display: flex; align-items: center; gap: 24px; color: #f5f5f5; }
23
+ .status-icons svg { width: 44px; height: 44px; }
24
+
25
+ /* Top actions */
26
+ .top-actions {
27
+ position: absolute; top: 110px; left: 0; right: 0;
28
+ height: 120px; padding: 0 36px;
29
+ display: flex; align-items: center; justify-content: space-between;
30
+ color: #cfd8dc;
31
+ }
32
+ .top-left { display: flex; align-items: center; gap: 24px; }
33
+ .close-btn {
34
+ width: 64px; height: 64px; border-radius: 32px;
35
+ display: flex; align-items: center; justify-content: center;
36
+ color: #e0e0e0; font-size: 42px;
37
+ }
38
+ .selected-text { font-size: 42px; color: #e0e0e0; }
39
+ .top-right { display: flex; align-items: center; gap: 40px; }
40
+ .top-right svg { width: 54px; height: 54px; fill: #cfd8dc; }
41
+
42
+ /* Selected file item */
43
+ .file-chip {
44
+ position: absolute; top: 260px; left: 36px; right: 36px;
45
+ height: 170px; border-radius: 28px;
46
+ background: #145b47; display: flex; align-items: center;
47
+ padding: 20px 28px; gap: 26px;
48
+ box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
49
+ }
50
+ .thumb {
51
+ width: 168px; height: 120px;
52
+ background: #E0E0E0; border: 1px solid #BDBDBD;
53
+ display: flex; align-items: center; justify-content: center;
54
+ color: #757575; font-size: 28px; border-radius: 12px;
55
+ }
56
+ .file-info { flex: 1; }
57
+ .file-title {
58
+ font-size: 38px; color: #eaf2f1; white-space: nowrap;
59
+ overflow: hidden; text-overflow: ellipsis;
60
+ }
61
+ .file-meta { font-size: 30px; color: #c3d2cf; margin-top: 8px; }
62
+ .check {
63
+ width: 60px; height: 60px; border-radius: 30px;
64
+ background: #1faa76; display: flex; align-items: center; justify-content: center;
65
+ box-shadow: 0 0 0 3px rgba(255,255,255,0.15) inset;
66
+ }
67
+ .check svg { width: 34px; height: 34px; fill: #ffffff; }
68
+
69
+ /* Bottom sheet */
70
+ .bottom-sheet {
71
+ position: absolute; left: 0; right: 0; bottom: 108px;
72
+ height: 520px; background: #0c2a2e;
73
+ border-top-left-radius: 28px; border-top-right-radius: 28px;
74
+ box-shadow: 0 -10px 20px rgba(0,0,0,0.35);
75
+ display: flex; flex-direction: column; align-items: center;
76
+ padding-top: 70px;
77
+ }
78
+ .sheet-icon svg { width: 110px; height: 110px; fill: #cfd2d5; }
79
+ .sheet-title {
80
+ margin-top: 40px; font-size: 54px; color: #e8f1f0; font-weight: 600;
81
+ }
82
+ .sheet-desc {
83
+ margin-top: 22px; font-size: 30px; line-height: 44px;
84
+ color: #a9b9b7; text-align: center; width: 900px;
85
+ }
86
+ .cta {
87
+ margin-top: 36px; width: 1008px; height: 120px;
88
+ background: #5fd6af; color: #073a30;
89
+ border-radius: 60px; display: flex; align-items: center; justify-content: center;
90
+ font-size: 38px; font-weight: 600; letter-spacing: 0.3px;
91
+ gap: 18px;
92
+ }
93
+ .cta svg { width: 44px; height: 44px; fill: #073a30; }
94
+
95
+ /* Gesture bar */
96
+ .gesture {
97
+ position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
98
+ width: 240px; height: 10px; background: #eaeaea; border-radius: 6px; opacity: 0.9;
99
+ }
100
+ </style>
101
+ </head>
102
+ <body>
103
+ <div id="render-target">
104
+
105
+ <!-- Status bar -->
106
+ <div class="status-bar">
107
+ <div>6:55</div>
108
+ <div class="status-icons">
109
+ <!-- WiFi -->
110
+ <svg viewBox="0 0 24 24">
111
+ <path d="M12 18.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3z" />
112
+ <path d="M4 12c4.5-4.5 11.5-4.5 16 0" stroke="#f5f5f5" stroke-width="2" fill="none" stroke-linecap="round"/>
113
+ <path d="M7 14.5c3.5-3 6.5-3 10 0" stroke="#f5f5f5" stroke-width="2" fill="none" stroke-linecap="round"/>
114
+ <path d="M9.5 17c2-1.5 3-1.5 5 0" stroke="#f5f5f5" stroke-width="2" fill="none" stroke-linecap="round"/>
115
+ </svg>
116
+ <!-- Battery -->
117
+ <svg viewBox="0 0 24 24">
118
+ <rect x="2" y="7" width="18" height="10" rx="2" ry="2" fill="none" stroke="#f5f5f5" stroke-width="2"/>
119
+ <rect x="4" y="9" width="12" height="6" fill="#f5f5f5"/>
120
+ <rect x="20" y="10" width="2" height="6" rx="1" fill="#f5f5f5"/>
121
+ </svg>
122
+ <div>100%</div>
123
+ </div>
124
+ </div>
125
+
126
+ <!-- Top actions -->
127
+ <div class="top-actions">
128
+ <div class="top-left">
129
+ <div class="close-btn">×</div>
130
+ <div class="selected-text">1 selected</div>
131
+ </div>
132
+ <div class="top-right">
133
+ <!-- Share -->
134
+ <svg viewBox="0 0 24 24">
135
+ <path d="M15 5a3 3 0 1 0 3 3 3 3 0 0 0-3-3zm-6 6a3 3 0 1 0 3 3 3 3 0 0 0-3-3zm9 6a3 3 0 1 0 3 3 3 3 0 0 0-3-3z"/>
136
+ <path d="M15 8l-6 3 6 3" stroke="#cfd8dc" stroke-width="2" fill="none" stroke-linecap="round"/>
137
+ </svg>
138
+ <!-- Delete -->
139
+ <svg viewBox="0 0 24 24">
140
+ <path d="M9 3h6l1 2h4v2H4V5h4l1-2zM6 9h12l-1 10a2 2 0 0 1-2 2H9a2 2 0 0 1-2-2L6 9z"/>
141
+ </svg>
142
+ <!-- More (vertical) -->
143
+ <svg viewBox="0 0 24 24">
144
+ <circle cx="12" cy="5" r="2"/>
145
+ <circle cx="12" cy="12" r="2"/>
146
+ <circle cx="12" cy="19" r="2"/>
147
+ </svg>
148
+ </div>
149
+ </div>
150
+
151
+ <!-- Selected file chip -->
152
+ <div class="file-chip">
153
+ <div class="thumb">[IMG: Document preview]</div>
154
+ <div class="file-info">
155
+ <div class="file-title">Zeitleiste_englisch_zum_Selbstdru...</div>
156
+ <div class="file-meta">29.45 MB, 1 hour ago</div>
157
+ </div>
158
+ <div class="check">
159
+ <svg viewBox="0 0 24 24"><path d="M9.5 16.5l-3-3 1.5-1.5 1.5 1.5 6-6 1.5 1.5z"/></svg>
160
+ </div>
161
+ </div>
162
+
163
+ <!-- Bottom confirmation sheet -->
164
+ <div class="bottom-sheet">
165
+ <div class="sheet-icon">
166
+ <svg viewBox="0 0 24 24">
167
+ <path d="M9 3h6l1 2h4v2H4V5h4l1-2zM6 9h12l-1 10a2 2 0 0 1-2 2H9a2 2 0 0 1-2-2L6 9z"/>
168
+ </svg>
169
+ </div>
170
+ <div class="sheet-title">Files will move to Trash</div>
171
+ <div class="sheet-desc">Files in Trash haven’t been permanently deleted from your device. You can restore them for up to 30 days.</div>
172
+ <div class="cta">
173
+ <svg viewBox="0 0 24 24">
174
+ <path d="M9 3h6l1 2h4v2H4V5h4l1-2zM6 9h12l-1 10a2 2 0 0 1-2 2H9a2 2 0 0 1-2-2L6 9z"/>
175
+ </svg>
176
+ <span>Move 1 file to Trash</span>
177
+ </div>
178
+ </div>
179
+
180
+ <!-- Gesture bar -->
181
+ <div class="gesture"></div>
182
+
183
+ </div>
184
+ </body>
185
+ </html>
code/7339/7339_7.html ADDED
@@ -0,0 +1,255 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1">
6
+ <title>Files UI Mock</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; }
9
+ #render-target {
10
+ width: 1080px;
11
+ height: 2400px;
12
+ position: relative;
13
+ overflow: hidden;
14
+ background: #0f2c2c;
15
+ color: #fff;
16
+ }
17
+
18
+ /* Status bar */
19
+ .status-bar {
20
+ position: absolute;
21
+ top: 0; left: 0;
22
+ width: 100%;
23
+ height: 96px;
24
+ padding: 0 32px;
25
+ box-sizing: border-box;
26
+ display: flex;
27
+ align-items: center;
28
+ justify-content: space-between;
29
+ color: #ffffff;
30
+ font-weight: 600;
31
+ font-size: 36px;
32
+ }
33
+ .status-right {
34
+ display: flex; align-items: center; gap: 24px;
35
+ }
36
+ .icon {
37
+ width: 48px; height: 48px; fill: none; stroke: #ffffff; stroke-width: 3;
38
+ }
39
+ .icon-fill { fill: #ffffff; stroke: none; }
40
+
41
+ /* Top app bar with search */
42
+ .app-bar {
43
+ position: absolute;
44
+ top: 96px; left: 0;
45
+ width: 100%;
46
+ height: 140px;
47
+ box-sizing: border-box;
48
+ padding: 0 24px;
49
+ display: flex; align-items: center;
50
+ gap: 24px;
51
+ background: #113637;
52
+ }
53
+ .search-field {
54
+ flex: 1;
55
+ height: 88px;
56
+ border-radius: 16px;
57
+ background: #0c2a2a;
58
+ display: flex; align-items: center;
59
+ padding: 0 24px;
60
+ box-sizing: border-box;
61
+ gap: 20px;
62
+ }
63
+ .search-text {
64
+ color: #d4e6e4;
65
+ font-size: 36px;
66
+ white-space: nowrap;
67
+ overflow: hidden;
68
+ text-overflow: ellipsis;
69
+ flex: 1;
70
+ }
71
+ .bar-actions {
72
+ display: flex; align-items: center; gap: 24px;
73
+ }
74
+
75
+ /* Filter chips */
76
+ .chips-row {
77
+ position: absolute;
78
+ top: 236px; left: 0;
79
+ width: 100%;
80
+ padding: 20px 24px;
81
+ box-sizing: border-box;
82
+ display: flex; gap: 16px;
83
+ }
84
+ .chip {
85
+ display: inline-flex; align-items: center; gap: 16px;
86
+ padding: 16px 22px;
87
+ border: 2px solid #3db0a0;
88
+ border-radius: 40px;
89
+ color: #cfe8e4;
90
+ font-size: 32px;
91
+ background: rgba(61,176,160,0.08);
92
+ }
93
+ .chip svg { width: 40px; height: 40px; stroke: #3db0a0; }
94
+
95
+ /* File list item */
96
+ .list {
97
+ position: absolute;
98
+ top: 340px; left: 0;
99
+ width: 100%;
100
+ padding: 0 24px;
101
+ box-sizing: border-box;
102
+ }
103
+ .item {
104
+ height: 180px;
105
+ display: flex; align-items: center;
106
+ gap: 24px;
107
+ border-radius: 16px;
108
+ }
109
+ .thumb {
110
+ width: 140px; height: 140px;
111
+ background: #E0E0E0;
112
+ border: 1px solid #BDBDBD;
113
+ color: #757575;
114
+ display: flex; align-items: center; justify-content: center;
115
+ border-radius: 12px;
116
+ font-size: 26px;
117
+ text-align: center;
118
+ padding: 6px;
119
+ box-sizing: border-box;
120
+ }
121
+ .item-text {
122
+ flex: 1;
123
+ display: flex; flex-direction: column;
124
+ }
125
+ .item-title {
126
+ font-size: 36px; color: #ffffff; line-height: 1.3;
127
+ white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
128
+ }
129
+ .item-sub {
130
+ font-size: 28px; color: #97b8b4; margin-top: 8px;
131
+ }
132
+ .item-menu {
133
+ width: 80px; height: 80px; display: flex; align-items: center; justify-content: center;
134
+ }
135
+ .divider {
136
+ height: 2px; background: #1f4444; margin: 8px 24px 0;
137
+ }
138
+
139
+ /* Snackbar at bottom */
140
+ .snackbar {
141
+ position: absolute;
142
+ bottom: 100px; left: 24px; right: 24px;
143
+ height: 180px;
144
+ background: #132f2f;
145
+ border-radius: 20px;
146
+ box-sizing: border-box;
147
+ padding: 24px;
148
+ display: flex; align-items: center; justify-content: space-between;
149
+ color: #ffffff;
150
+ }
151
+ .snackbar:before {
152
+ content: "";
153
+ position: absolute; top: 0; left: 0; right: 0;
154
+ height: 8px; background: #f2c94c; border-top-left-radius: 20px; border-top-right-radius: 20px;
155
+ }
156
+ .snackbar-text {
157
+ font-size: 32px; line-height: 1.4;
158
+ }
159
+ .snackbar-btn {
160
+ padding: 18px 40px; border-radius: 40px;
161
+ border: 2px solid #a8d5cf; color: #a8d5cf; font-size: 32px;
162
+ background: transparent;
163
+ }
164
+
165
+ /* Navigation pill */
166
+ .nav-pill {
167
+ position: absolute;
168
+ bottom: 24px; left: 50%;
169
+ width: 200px; height: 14px; border-radius: 10px;
170
+ background: #5e7d7a;
171
+ transform: translateX(-50%);
172
+ }
173
+ </style>
174
+ </head>
175
+ <body>
176
+ <div id="render-target">
177
+
178
+ <!-- Status bar -->
179
+ <div class="status-bar">
180
+ <div>6:55</div>
181
+ <div class="status-right">
182
+ <!-- simple mail indicator -->
183
+ <svg class="icon" viewBox="0 0 24 24"><path d="M3 6h18v12H3z"/><path class="icon-fill" d="M3 6l9 7 9-7v0"/></svg>
184
+ <!-- WiFi -->
185
+ <svg class="icon" viewBox="0 0 24 24"><path d="M2 9c5-4 15-4 20 0"/><path d="M5 12c3-3 11-3 14 0"/><path d="M8 15c2-2 6-2 8 0"/><circle class="icon-fill" cx="12" cy="18" r="2"/></svg>
186
+ <!-- Battery -->
187
+ <svg class="icon" viewBox="0 0 26 24"><rect x="2" y="6" width="18" height="12" rx="2" ry="2"/><rect class="icon-fill" x="4" y="8" width="14" height="8"/><rect x="21" y="9" width="3" height="6"/></svg>
188
+ <div style="font-size:32px; font-weight:700;">100%</div>
189
+ </div>
190
+ </div>
191
+
192
+ <!-- App bar with search -->
193
+ <div class="app-bar">
194
+ <!-- Back arrow -->
195
+ <svg class="icon" viewBox="0 0 24 24"><path d="M15 6l-6 6 6 6"/></svg>
196
+ <div class="search-field">
197
+ <svg class="icon" viewBox="0 0 24 24"><circle cx="11" cy="11" r="7"/><path d="M20 20l-4-4"/></svg>
198
+ <div class="search-text">te_englisch_zum_Selbstdruck</div>
199
+ <!-- Clear X -->
200
+ <svg class="icon" viewBox="0 0 24 24"><path d="M6 6l12 12M18 6L6 18"/></svg>
201
+ </div>
202
+ <div class="bar-actions">
203
+ <!-- Grid icon -->
204
+ <svg class="icon" viewBox="0 0 24 24"><rect x="3" y="3" width="8" height="8"/><rect x="13" y="3" width="8" height="8"/><rect x="3" y="13" width="8" height="8"/><rect x="13" y="13" width="8" height="8"/></svg>
205
+ <!-- Kebab menu -->
206
+ <svg class="icon" viewBox="0 0 24 24"><circle class="icon-fill" cx="12" cy="5" r="2"/><circle class="icon-fill" cx="12" cy="12" r="2"/><circle class="icon-fill" cx="12" cy="19" r="2"/></svg>
207
+ </div>
208
+ </div>
209
+
210
+ <!-- Filter chips -->
211
+ <div class="chips-row">
212
+ <div class="chip">
213
+ <svg viewBox="0 0 24 24"><circle cx="5" cy="12" r="3"/><path d="M8 12h7l4 3v-6l-4 3H8z"/></svg>
214
+ <span>Audio</span>
215
+ </div>
216
+ <div class="chip">
217
+ <svg viewBox="0 0 24 24"><rect x="4" y="4" width="16" height="14" rx="2"/><path d="M8 8h8M8 12h8"/></svg>
218
+ <span>Documents &amp; other</span>
219
+ </div>
220
+ <div class="chip">
221
+ <svg viewBox="0 0 24 24"><rect x="3" y="5" width="18" height="14" rx="2"/><path d="M7 15l3-4 3 3 3-5 4 6"/><circle cx="9" cy="10" r="2"/></svg>
222
+ <span>Images</span>
223
+ </div>
224
+ </div>
225
+
226
+ <!-- File list -->
227
+ <div class="list">
228
+ <div class="item">
229
+ <div class="thumb">[IMG: File thumbnail]</div>
230
+ <div class="item-text">
231
+ <div class="item-title">Zeitleiste_englisch_zum_Selbstdru...</div>
232
+ <div class="item-sub">29.45 MB, 1 hour ago</div>
233
+ </div>
234
+ <div class="item-menu">
235
+ <svg class="icon" viewBox="0 0 24 24"><circle class="icon-fill" cx="12" cy="5" r="2"/><circle class="icon-fill" cx="12" cy="12" r="2"/><circle class="icon-fill" cx="12" cy="19" r="2"/></svg>
236
+ </div>
237
+ </div>
238
+ <div class="divider"></div>
239
+ </div>
240
+
241
+ <!-- Snackbar -->
242
+ <div class="snackbar">
243
+ <div class="snackbar-text">
244
+ 1 file moved to Trash<br>
245
+ <span style="color:#a8d5cf; font-size:28px;">29.45 MB added to Trash total</span>
246
+ </div>
247
+ <button class="snackbar-btn">View</button>
248
+ </div>
249
+
250
+ <!-- Navigation pill -->
251
+ <div class="nav-pill"></div>
252
+
253
+ </div>
254
+ </body>
255
+ </html>
code/7339/7339_8.html ADDED
@@ -0,0 +1,254 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: 1080px;
10
+ height: 2400px;
11
+ position: relative;
12
+ overflow: hidden;
13
+ background: #1E2A2B;
14
+ font-family: Roboto, Arial, sans-serif;
15
+ color: #E8F0F2;
16
+ }
17
+ /* Status bar */
18
+ .status-bar {
19
+ position: absolute;
20
+ top: 0;
21
+ left: 0;
22
+ width: 1080px;
23
+ height: 96px;
24
+ background: #0F3436;
25
+ display: flex;
26
+ align-items: center;
27
+ justify-content: space-between;
28
+ padding: 0 28px;
29
+ box-sizing: border-box;
30
+ font-size: 36px;
31
+ letter-spacing: 0.2px;
32
+ }
33
+ .status-left { display: flex; align-items: center; gap: 18px; }
34
+ .status-right { display: flex; align-items: center; gap: 24px; }
35
+ .status-icon { width: 40px; height: 40px; opacity: 0.9; }
36
+ /* App bar */
37
+ .app-bar {
38
+ position: absolute;
39
+ top: 96px;
40
+ left: 0;
41
+ width: 1080px;
42
+ height: 148px;
43
+ background: #123739;
44
+ display: flex;
45
+ align-items: center;
46
+ padding: 0 24px;
47
+ box-sizing: border-box;
48
+ gap: 22px;
49
+ }
50
+ .app-title {
51
+ font-size: 40px;
52
+ color: #D6E3E3;
53
+ white-space: nowrap;
54
+ overflow: hidden;
55
+ text-overflow: ellipsis;
56
+ flex: 1;
57
+ }
58
+ .app-icon {
59
+ width: 56px;
60
+ height: 56px;
61
+ }
62
+ /* Filter chips */
63
+ .filters {
64
+ position: absolute;
65
+ top: 244px;
66
+ left: 0;
67
+ width: 1080px;
68
+ height: 110px;
69
+ background: #123739;
70
+ display: flex;
71
+ align-items: center;
72
+ padding: 0 24px;
73
+ box-sizing: border-box;
74
+ gap: 24px;
75
+ }
76
+ .chip {
77
+ display: flex;
78
+ align-items: center;
79
+ gap: 16px;
80
+ border: 2px solid #2A4B4E;
81
+ border-radius: 26px;
82
+ padding: 18px 26px;
83
+ color: #D6E3E3;
84
+ font-size: 34px;
85
+ line-height: 1;
86
+ }
87
+ .chip svg { width: 40px; height: 40px; }
88
+ /* Content area */
89
+ .content {
90
+ position: absolute;
91
+ top: 354px;
92
+ left: 0;
93
+ width: 1080px;
94
+ height: 1870px;
95
+ background: #212D2E;
96
+ }
97
+ .empty-illustration {
98
+ position: absolute;
99
+ top: 1240px;
100
+ left: 50%;
101
+ transform: translateX(-50%);
102
+ width: 260px;
103
+ height: 260px;
104
+ background: #E0E0E0;
105
+ border: 1px solid #BDBDBD;
106
+ display: flex;
107
+ align-items: center;
108
+ justify-content: center;
109
+ color: #757575;
110
+ border-radius: 18px;
111
+ text-align: center;
112
+ padding: 8px;
113
+ box-sizing: border-box;
114
+ }
115
+ .empty-text {
116
+ position: absolute;
117
+ top: 1530px;
118
+ left: 0;
119
+ width: 1080px;
120
+ text-align: center;
121
+ font-size: 46px;
122
+ color: #E9ECEF;
123
+ }
124
+ .star {
125
+ position: absolute;
126
+ color: #FFC93E;
127
+ font-size: 36px;
128
+ }
129
+ .star.s1 { top: 1184px; left: 380px; }
130
+ .star.s2 { top: 1202px; left: 700px; }
131
+ .star.s3 { top: 1336px; left: 320px; }
132
+ .star.s4 { top: 1360px; left: 735px; }
133
+ .star.s5 { top: 1468px; left: 540px; }
134
+ /* Gesture bar */
135
+ .gesture {
136
+ position: absolute;
137
+ bottom: 26px;
138
+ left: 50%;
139
+ transform: translateX(-50%);
140
+ width: 320px;
141
+ height: 16px;
142
+ background: #E0E0E0;
143
+ border-radius: 10px;
144
+ opacity: 0.9;
145
+ }
146
+ </style>
147
+ </head>
148
+ <body>
149
+ <div id="render-target">
150
+
151
+ <!-- Status Bar -->
152
+ <div class="status-bar">
153
+ <div class="status-left">
154
+ <div>6:55</div>
155
+ <!-- Simple mail notification icon -->
156
+ <svg class="status-icon" viewBox="0 0 24 24">
157
+ <path fill="#E8F0F2" d="M3 5h18v14H3z" opacity="0.25"></path>
158
+ <path fill="none" stroke="#E8F0F2" stroke-width="2" d="M3 5h18v14H3z"></path>
159
+ <path fill="none" stroke="#E8F0F2" stroke-width="2" d="M3 7l9 6 9-6"></path>
160
+ </svg>
161
+ <!-- Settings gear icon (simplified) -->
162
+ <svg class="status-icon" viewBox="0 0 24 24">
163
+ <circle cx="12" cy="12" r="4" fill="#E8F0F2"></circle>
164
+ <path d="M12 2v4M12 18v4M2 12h4M18 12h4M5.6 5.6l2.8 2.8M15.6 15.6l2.8 2.8M5.6 18.4l2.8-2.8M15.6 8.4l2.8-2.8" stroke="#E8F0F2" stroke-width="2" stroke-linecap="round"></path>
165
+ </svg>
166
+ </div>
167
+ <div class="status-right">
168
+ <!-- Wi-Fi icon -->
169
+ <svg class="status-icon" viewBox="0 0 24 24">
170
+ <path d="M2 9c5-5 15-5 20 0" stroke="#E8F0F2" stroke-width="2" fill="none" stroke-linecap="round"></path>
171
+ <path d="M5 12c3-3 11-3 14 0" stroke="#E8F0F2" stroke-width="2" fill="none" stroke-linecap="round"></path>
172
+ <path d="M9 15c2-2 4-2 6 0" stroke="#E8F0F2" stroke-width="2" fill="none" stroke-linecap="round"></path>
173
+ <circle cx="12" cy="18" r="2" fill="#E8F0F2"></circle>
174
+ </svg>
175
+ <!-- Battery icon -->
176
+ <svg class="status-icon" viewBox="0 0 28 24">
177
+ <rect x="2" y="5" width="20" height="14" rx="2" stroke="#E8F0F2" stroke-width="2" fill="none"></rect>
178
+ <rect x="4" y="7" width="16" height="10" fill="#E8F0F2"></rect>
179
+ <rect x="22" y="9" width="4" height="6" rx="1" fill="#E8F0F2"></rect>
180
+ </svg>
181
+ <div style="font-size:32px; color:#E8F0F2;">100%</div>
182
+ </div>
183
+ </div>
184
+
185
+ <!-- App Bar -->
186
+ <div class="app-bar">
187
+ <!-- Back arrow -->
188
+ <svg class="app-icon" viewBox="0 0 24 24">
189
+ <path d="M15 5l-8 7 8 7" fill="none" stroke="#E8F0F2" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
190
+ </svg>
191
+ <div class="app-title">te_englisch_zum_Selbstdruck</div>
192
+ <!-- Close X -->
193
+ <svg class="app-icon" viewBox="0 0 24 24">
194
+ <path d="M5 5l14 14M19 5L5 19" stroke="#E8F0F2" stroke-width="2" stroke-linecap="round"></path>
195
+ </svg>
196
+ <!-- Grid view -->
197
+ <svg class="app-icon" viewBox="0 0 24 24">
198
+ <rect x="3" y="3" width="7" height="7" fill="none" stroke="#E8F0F2" stroke-width="2"></rect>
199
+ <rect x="14" y="3" width="7" height="7" fill="none" stroke="#E8F0F2" stroke-width="2"></rect>
200
+ <rect x="3" y="14" width="7" height="7" fill="none" stroke="#E8F0F2" stroke-width="2"></rect>
201
+ <rect x="14" y="14" width="7" height="7" fill="none" stroke="#E8F0F2" stroke-width="2"></rect>
202
+ </svg>
203
+ <!-- More (kebab) -->
204
+ <svg class="app-icon" viewBox="0 0 24 24">
205
+ <circle cx="12" cy="5" r="2" fill="#E8F0F2"></circle>
206
+ <circle cx="12" cy="12" r="2" fill="#E8F0F2"></circle>
207
+ <circle cx="12" cy="19" r="2" fill="#E8F0F2"></circle>
208
+ </svg>
209
+ </div>
210
+
211
+ <!-- Filters -->
212
+ <div class="filters">
213
+ <div class="chip">
214
+ <svg viewBox="0 0 24 24">
215
+ <path d="M6 14v-2a6 6 0 0112 0v2" fill="none" stroke="#D6E3E3" stroke-width="2" stroke-linecap="round"></path>
216
+ <rect x="4" y="14" width="4" height="6" rx="2" fill="#D6E3E3"></rect>
217
+ <rect x="16" y="14" width="4" height="6" rx="2" fill="#D6E3E3"></rect>
218
+ </svg>
219
+ <span>Audio</span>
220
+ </div>
221
+ <div class="chip">
222
+ <svg viewBox="0 0 24 24">
223
+ <rect x="5" y="3" width="14" height="18" rx="2" fill="none" stroke="#D6E3E3" stroke-width="2"></rect>
224
+ <path d="M15 3v6h6" stroke="#D6E3E3" stroke-width="2" fill="none"></path>
225
+ </svg>
226
+ <span>Documents &amp; other</span>
227
+ </div>
228
+ <div class="chip">
229
+ <svg viewBox="0 0 24 24">
230
+ <rect x="3" y="4" width="18" height="16" rx="2" fill="none" stroke="#D6E3E3" stroke-width="2"></rect>
231
+ <circle cx="9" cy="12" r="3" fill="#D6E3E3"></circle>
232
+ <path d="M12 14l3-3 6 7H6z" fill="#D6E3E3" opacity="0.6"></path>
233
+ </svg>
234
+ <span>Images</span>
235
+ </div>
236
+ </div>
237
+
238
+ <!-- Content -->
239
+ <div class="content">
240
+ <div class="star s1">★</div>
241
+ <div class="star s2">★</div>
242
+ <div class="star s3">★</div>
243
+ <div class="star s4">★</div>
244
+ <div class="star s5">★</div>
245
+
246
+ <div class="empty-illustration">[IMG: Cute space sheep illustration]</div>
247
+ <div class="empty-text">There's nothing here.</div>
248
+ </div>
249
+
250
+ <!-- Gesture bar -->
251
+ <div class="gesture"></div>
252
+ </div>
253
+ </body>
254
+ </html>
code/734/734_1.html ADDED
@@ -0,0 +1,247 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
5
+ <title>Immobiliare UI Mock</title>
6
+ <style>
7
+ body { margin: 0; padding: 0; background: transparent; font-family: "Inter", "Roboto", Arial, sans-serif; }
8
+ #render-target {
9
+ width: 1080px; height: 2400px;
10
+ position: relative; overflow: hidden;
11
+ background: #ffffff; color: #2b2b2b;
12
+ }
13
+
14
+ /* Status bar */
15
+ .status-bar {
16
+ height: 110px; width: 1080px; background: #1f6172;
17
+ color: #eaf5f8; display: flex; align-items: center; justify-content: space-between;
18
+ padding: 0 36px; box-sizing: border-box;
19
+ }
20
+ .status-left { font-weight: 600; letter-spacing: 0.5px; }
21
+ .status-right { display: flex; align-items: center; gap: 24px; }
22
+ .sb-icon {
23
+ width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,0.35);
24
+ }
25
+
26
+ /* Header section */
27
+ .header {
28
+ width: 100%; height: 720px; background: #2a6f84;
29
+ display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
30
+ padding-top: 80px; box-sizing: border-box;
31
+ }
32
+ .logo-row { display: flex; align-items: center; gap: 22px; color: #ffffff; }
33
+ .logo-text { font-size: 86px; font-weight: 800; letter-spacing: 0.5px; }
34
+ .tagline { margin-top: 18px; font-size: 36px; color: #d7eef5; }
35
+ .search-btn {
36
+ width: 980px; height: 120px; background: #ffffff; border-radius: 14px;
37
+ margin-top: 80px; display: flex; align-items: center; gap: 24px; padding: 0 32px;
38
+ box-shadow: 0 6px 14px rgba(0,0,0,0.18); box-sizing: border-box;
39
+ font-size: 44px; font-weight: 700; color: #275e71;
40
+ }
41
+ .search-icon svg { width: 52px; height: 52px; }
42
+ .divider { height: 22px; }
43
+
44
+ /* Content */
45
+ .content { padding: 48px 32px 0 32px; }
46
+ .section-title { font-size: 64px; font-weight: 800; margin-bottom: 28px; color: #2c2c2c; }
47
+
48
+ .card-row {
49
+ display: flex; gap: 36px;
50
+ overflow: hidden;
51
+ }
52
+ .listing-card {
53
+ width: 508px;
54
+ }
55
+ .img-box {
56
+ width: 100%; height: 370px; background: #E0E0E0;
57
+ border: 1px solid #BDBDBD; display: flex; align-items: center; justify-content: center;
58
+ color: #757575; font-size: 36px; text-align: center;
59
+ }
60
+ .price { font-size: 60px; font-weight: 800; margin: 24px 0 18px 0; }
61
+ .features { display: flex; align-items: center; gap: 22px; color: #4a4a4a; font-size: 36px; }
62
+ .feat { display: flex; align-items: center; gap: 12px; }
63
+ .feat svg { width: 40px; height: 40px; }
64
+ .type { margin-top: 20px; font-weight: 800; font-size: 36px; letter-spacing: 0.8px; }
65
+ .location { margin-top: 8px; font-size: 34px; color: #666; }
66
+
67
+ /* Banner */
68
+ .banner {
69
+ margin: 46px 0; width: calc(100% - 64px); height: 150px;
70
+ background: #f1f7fa; border-radius: 16px; display: flex; align-items: center;
71
+ padding: 0 28px; box-sizing: border-box; gap: 26px;
72
+ }
73
+ .pill {
74
+ background: #2a6f84; color: #ffffff; font-weight: 800; border-radius: 999px;
75
+ padding: 16px 26px; font-size: 40px;
76
+ }
77
+ .banner-text { font-size: 40px; color: #254c57; flex: 1; }
78
+ .chevron { width: 34px; height: 34px; }
79
+
80
+ /* Bottom navigation */
81
+ .bottom-nav {
82
+ position: absolute; left: 0; bottom: 80px; width: 1080px; height: 200px;
83
+ border-top: 1px solid #e6e6e6; background: #ffffff;
84
+ display: flex; align-items: center; justify-content: space-around;
85
+ }
86
+ .nav-item { display: flex; flex-direction: column; align-items: center; gap: 12px; color: #7a8b92; }
87
+ .nav-item .label { font-size: 32px; }
88
+ .nav-item svg { width: 56px; height: 56px; }
89
+ .active { color: #2a6f84; }
90
+
91
+ /* Gesture bar */
92
+ .gesture {
93
+ position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
94
+ width: 300px; height: 12px; background: #1d1d1d; border-radius: 12px;
95
+ }
96
+ </style>
97
+ </head>
98
+ <body>
99
+ <div id="render-target">
100
+
101
+ <!-- Status bar -->
102
+ <div class="status-bar">
103
+ <div class="status-left">7:49</div>
104
+ <div class="status-right">
105
+ <div class="sb-icon"></div>
106
+ <div class="sb-icon"></div>
107
+ <div class="sb-icon"></div>
108
+ </div>
109
+ </div>
110
+
111
+ <!-- Header -->
112
+ <div class="header">
113
+ <div class="logo-row">
114
+ <!-- Simple house icon -->
115
+ <svg width="82" height="82" viewBox="0 0 64 64" fill="none">
116
+ <path d="M8 28 L32 10 L56 28 V56 H40 V36 H24 V56 H8 Z" fill="#ffffff" opacity="0.95"/>
117
+ <circle cx="18" cy="34" r="4" fill="#e74c3c"/>
118
+ </svg>
119
+ <div class="logo-text">immobiliare.it</div>
120
+ </div>
121
+ <div class="tagline">the best way to search for homes</div>
122
+
123
+ <div class="search-btn">
124
+ <div class="search-icon">
125
+ <svg viewBox="0 0 24 24">
126
+ <circle cx="10" cy="10" r="6" stroke="#275e71" stroke-width="2" fill="none"></circle>
127
+ <line x1="15" y1="15" x2="22" y2="22" stroke="#275e71" stroke-width="2"></line>
128
+ </svg>
129
+ </div>
130
+ START A NEW SEARCH
131
+ </div>
132
+ </div>
133
+
134
+ <!-- Content -->
135
+ <div class="content">
136
+ <div class="section-title">Latest listings</div>
137
+
138
+ <div class="card-row">
139
+ <!-- Card 1 -->
140
+ <div class="listing-card">
141
+ <div class="img-box">[IMG: Apartment Floor Plan]</div>
142
+ <div class="price">€ 275,000</div>
143
+ <div class="features">
144
+ <div class="feat">
145
+ <!-- bed icon -->
146
+ <svg viewBox="0 0 24 24">
147
+ <rect x="3" y="11" width="18" height="6" fill="#7b8b90"></rect>
148
+ <rect x="4" y="7" width="6" height="4" fill="#7b8b90"></rect>
149
+ </svg>
150
+ <span>2</span>
151
+ </div>
152
+ <div class="feat">
153
+ <!-- area icon -->
154
+ <svg viewBox="0 0 24 24">
155
+ <rect x="5" y="5" width="14" height="14" stroke="#7b8b90" stroke-width="2" fill="none"></rect>
156
+ </svg>
157
+ <span>74 m²</span>
158
+ </div>
159
+ <div class="feat">
160
+ <!-- bath icon -->
161
+ <svg viewBox="0 0 24 24">
162
+ <path d="M5 13 H19 V15 C19 17 17 18 12 18 C7 18 5 17 5 15 Z" fill="#7b8b90"></path>
163
+ </svg>
164
+ <span>1</span>
165
+ </div>
166
+ </div>
167
+ <div class="type">APARTMENT</div>
168
+ <div class="location">Roma • Torrevecchia</div>
169
+ </div>
170
+
171
+ <!-- Card 2 -->
172
+ <div class="listing-card">
173
+ <div class="img-box">[IMG: Apartment Interior Plan]</div>
174
+ <div class="price">€ 475,000</div>
175
+ <div class="features">
176
+ <div class="feat">
177
+ <svg viewBox="0 0 24 24">
178
+ <rect x="3" y="11" width="18" height="6" fill="#7b8b90"></rect>
179
+ <rect x="4" y="7" width="6" height="4" fill="#7b8b90"></rect>
180
+ </svg>
181
+ <span>4</span>
182
+ </div>
183
+ <div class="feat">
184
+ <svg viewBox="0 0 24 24">
185
+ <rect x="5" y="5" width="14" height="14" stroke="#7b8b90" stroke-width="2" fill="none"></rect>
186
+ </svg>
187
+ <span>113 m²</span>
188
+ </div>
189
+ <div class="feat">
190
+ <svg viewBox="0 0 24 24">
191
+ <path d="M5 13 H19 V15 C19 17 17 18 12 18 C7 18 5 17 5 15 Z" fill="#7b8b90"></path>
192
+ </svg>
193
+ <span>2</span>
194
+ </div>
195
+ </div>
196
+ <div class="type">APARTMENT</div>
197
+ <div class="location">Roma • Torrevecchia</div>
198
+ </div>
199
+ </div>
200
+
201
+ <!-- Banner -->
202
+ <div class="banner">
203
+ <div class="pill">N.1</div>
204
+ <div class="banner-text">Immobiliare.it is the N.1 in Italy. Discover why.</div>
205
+ <div class="chevron">
206
+ <svg viewBox="0 0 24 24">
207
+ <polyline points="8,4 16,12 8,20" fill="none" stroke="#2a6f84" stroke-width="3"></polyline>
208
+ </svg>
209
+ </div>
210
+ </div>
211
+ </div>
212
+
213
+ <!-- Bottom navigation -->
214
+ <div class="bottom-nav">
215
+ <div class="nav-item active">
216
+ <svg viewBox="0 0 24 24">
217
+ <circle cx="10" cy="10" r="6" stroke="#2a6f84" stroke-width="2" fill="none"></circle>
218
+ <line x1="15" y1="15" x2="22" y2="22" stroke="#2a6f84" stroke-width="2"></line>
219
+ </svg>
220
+ <div class="label">Search</div>
221
+ </div>
222
+ <div class="nav-item">
223
+ <svg viewBox="0 0 24 24">
224
+ <path d="M12 21 C10 19 4 14 4 9 C4 6.5 5.8 5 8 5 C9.5 5 11 5.8 12 7 C13 5.8 14.5 5 16 5 C18.2 5 20 6.5 20 9 C20 14 14 19 12 21 Z" fill="none" stroke="#7a8b92" stroke-width="2"></path>
225
+ </svg>
226
+ <div class="label">Saved</div>
227
+ </div>
228
+ <div class="nav-item">
229
+ <svg viewBox="0 0 24 24">
230
+ <rect x="3" y="5" width="18" height="12" stroke="#7a8b92" stroke-width="2" fill="none"></rect>
231
+ <polygon points="9,17 9,22 14,17" fill="#7a8b92"></polygon>
232
+ </svg>
233
+ <div class="label">Messages</div>
234
+ </div>
235
+ <div class="nav-item">
236
+ <svg viewBox="0 0 24 24">
237
+ <circle cx="12" cy="8" r="4" fill="none" stroke="#7a8b92" stroke-width="2"></circle>
238
+ <path d="M4 22 C5 16 19 16 20 22 Z" fill="none" stroke="#7a8b92" stroke-width="2"></path>
239
+ </svg>
240
+ <div class="label">Menu</div>
241
+ </div>
242
+ </div>
243
+
244
+ <div class="gesture"></div>
245
+ </div>
246
+ </body>
247
+ </html>
code/734/734_2.html ADDED
@@ -0,0 +1,233 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Mobile UI - Search Options</title>
5
+ <style>
6
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
7
+ #render-target {
8
+ position: relative;
9
+ overflow: hidden;
10
+ width: 1080px;
11
+ height: 2400px;
12
+ background: #ffffff;
13
+ }
14
+
15
+ /* Status bar */
16
+ .status-bar {
17
+ position: absolute;
18
+ top: 0;
19
+ left: 0;
20
+ width: 1080px;
21
+ height: 120px;
22
+ background: #173f4a;
23
+ color: #ffffff;
24
+ display: flex;
25
+ align-items: center;
26
+ padding: 0 36px;
27
+ box-sizing: border-box;
28
+ }
29
+ .status-left { display: flex; align-items: center; gap: 22px; font-size: 40px; }
30
+ .status-right { margin-left: auto; display: flex; align-items: center; gap: 24px; }
31
+ .status-icon {
32
+ width: 40px; height: 40px;
33
+ border-radius: 50%;
34
+ background: rgba(255,255,255,0.8);
35
+ }
36
+
37
+ /* Header / search area */
38
+ .header {
39
+ position: absolute;
40
+ top: 120px;
41
+ left: 0;
42
+ width: 1080px;
43
+ height: 172px;
44
+ background: #173f4a;
45
+ display: flex;
46
+ align-items: center;
47
+ padding: 0 36px;
48
+ box-sizing: border-box;
49
+ gap: 24px;
50
+ }
51
+ .close-btn {
52
+ width: 64px; height: 64px;
53
+ border-radius: 12px;
54
+ background: rgba(255,255,255,0.15);
55
+ display: flex; align-items: center; justify-content: center;
56
+ }
57
+ .search-input {
58
+ flex: 1;
59
+ height: 96px;
60
+ background: #f1f4f6;
61
+ border-radius: 24px;
62
+ border: 1px solid #d7dee3;
63
+ display: flex; align-items: center;
64
+ padding: 0 34px;
65
+ color: #9aa8b2;
66
+ font-size: 36px;
67
+ box-sizing: border-box;
68
+ }
69
+
70
+ /* Cards list */
71
+ .list {
72
+ position: absolute;
73
+ top: 292px;
74
+ left: 0;
75
+ width: 1080px;
76
+ padding: 24px 32px;
77
+ box-sizing: border-box;
78
+ }
79
+ .card {
80
+ width: 1016px;
81
+ border: 1px solid #d9e2ea;
82
+ border-radius: 24px;
83
+ padding: 28px;
84
+ box-sizing: border-box;
85
+ display: flex;
86
+ align-items: center;
87
+ gap: 32px;
88
+ margin-bottom: 36px;
89
+ }
90
+ .icon-wrap {
91
+ width: 140px; height: 120px;
92
+ display: flex; align-items: center; justify-content: center;
93
+ color: #2a6170;
94
+ }
95
+ .card-text .title {
96
+ font-size: 48px;
97
+ color: #1e4e5a;
98
+ margin-bottom: 16px;
99
+ font-weight: 700;
100
+ }
101
+ .card-text .subtitle {
102
+ font-size: 36px;
103
+ color: #5a6e77;
104
+ line-height: 1.3;
105
+ }
106
+
107
+ /* Bottom gesture bar */
108
+ .gesture {
109
+ position: absolute;
110
+ bottom: 28px;
111
+ left: 50%;
112
+ transform: translateX(-50%);
113
+ width: 420px;
114
+ height: 16px;
115
+ border-radius: 12px;
116
+ background: #cfcfcf;
117
+ }
118
+
119
+ /* Simple inline SVG styling */
120
+ svg { display: block; }
121
+ </style>
122
+ </head>
123
+ <body>
124
+ <div id="render-target">
125
+
126
+ <!-- Status Bar -->
127
+ <div class="status-bar">
128
+ <div class="status-left">
129
+ <div style="font-weight:700;">7:49</div>
130
+ <div class="status-icon"></div>
131
+ <div class="status-icon"></div>
132
+ <div class="status-icon"></div>
133
+ <div class="status-icon"></div>
134
+ </div>
135
+ <div class="status-right">
136
+ <!-- Wi-Fi icon -->
137
+ <svg width="44" height="44" viewBox="0 0 24 24" fill="none">
138
+ <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.5z" fill="#fff"/>
139
+ <path d="M3 9c2.5-2 6-3 9-3s6.5 1 9 3" stroke="#fff" stroke-width="2" stroke-linecap="round"/>
140
+ <path d="M6 12c1.9-1.4 4.4-2.2 6-2.2S16.1 10.6 18 12" stroke="#fff" stroke-width="2" stroke-linecap="round"/>
141
+ <path d="M9 15c1-.8 2.2-1.2 3-1.2s2 .4 3 1.2" stroke="#fff" stroke-width="2" stroke-linecap="round"/>
142
+ </svg>
143
+ <!-- Battery icon -->
144
+ <svg width="44" height="44" viewBox="0 0 28 28" fill="none">
145
+ <rect x="2" y="6" width="20" height="12" rx="2" stroke="#fff" stroke-width="2"/>
146
+ <rect x="4" y="8" width="14" height="8" fill="#fff"/>
147
+ <rect x="22" y="9" width="3" height="6" rx="1" fill="#fff"/>
148
+ </svg>
149
+ </div>
150
+ </div>
151
+
152
+ <!-- Header with search -->
153
+ <div class="header">
154
+ <div class="close-btn">
155
+ <svg width="36" height="36" viewBox="0 0 24 24">
156
+ <path d="M6 6l12 12M18 6L6 18" stroke="#ffffff" stroke-width="2" stroke-linecap="round"/>
157
+ </svg>
158
+ </div>
159
+ <div class="search-input">Enter municipality, area or metro</div>
160
+ </div>
161
+
162
+ <!-- List of options -->
163
+ <div class="list">
164
+
165
+ <!-- Card 1: Search by name -->
166
+ <div class="card">
167
+ <div class="icon-wrap">
168
+ <svg width="120" height="100" viewBox="0 0 120 100">
169
+ <rect x="16" y="18" width="88" height="64" rx="10" stroke="#2a6170" stroke-width="6" fill="none"/>
170
+ <rect x="40" y="34" width="40" height="36" fill="none" stroke="#2a6170" stroke-width="8"/>
171
+ <path d="M52 40v24M68 40v24" stroke="#2a6170" stroke-width="8"/>
172
+ </svg>
173
+ </div>
174
+ <div class="card-text">
175
+ <div class="title">Search by name</div>
176
+ <div class="subtitle">Search by province, municipality, area or metro</div>
177
+ </div>
178
+ </div>
179
+
180
+ <!-- Card 2: Draw area on map -->
181
+ <div class="card">
182
+ <div class="icon-wrap">
183
+ <svg width="120" height="100" viewBox="0 0 120 100">
184
+ <!-- finger/hand simplified -->
185
+ <circle cx="50" cy="40" r="18" stroke="#2a6170" stroke-width="6" fill="none"/>
186
+ <path d="M68 40c8 2 14 10 14 18 0 14-10 22-24 24" stroke="#2a6170" stroke-width="6" fill="none"/>
187
+ <path d="M34 74c18 8 40 4 60-4" stroke="#2a6170" stroke-width="6" stroke-dasharray="5,8" fill="none"/>
188
+ </svg>
189
+ </div>
190
+ <div class="card-text">
191
+ <div class="title">Draw area on map</div>
192
+ <div class="subtitle">Draw the area on the map where you want to search</div>
193
+ </div>
194
+ </div>
195
+
196
+ <!-- Card 3: Distance from a point -->
197
+ <div class="card">
198
+ <div class="icon-wrap">
199
+ <svg width="120" height="100" viewBox="0 0 120 100">
200
+ <path d="M60 20c12 0 22 10 22 22 0 18-22 38-22 38S38 60 38 42c0-12 10-22 22-22z" stroke="#2a6170" stroke-width="6" fill="none"/>
201
+ <circle cx="60" cy="42" r="8" fill="#2a6170"/>
202
+ <ellipse cx="60" cy="86" rx="36" ry="6" fill="none" stroke="#2a6170" stroke-width="6"/>
203
+ </svg>
204
+ </div>
205
+ <div class="card-text">
206
+ <div class="title">Distance from a point</div>
207
+ <div class="subtitle">Search near you or by travel time by car, by bike, on foot</div>
208
+ </div>
209
+ </div>
210
+
211
+ <!-- Card 4: Search by metro -->
212
+ <div class="card">
213
+ <div class="icon-wrap">
214
+ <svg width="120" height="100" viewBox="0 0 120 100">
215
+ <rect x="28" y="24" width="64" height="42" rx="10" stroke="#2a6170" stroke-width="6" fill="none"/>
216
+ <rect x="38" y="34" width="16" height="12" fill="#2a6170"/>
217
+ <rect x="66" y="34" width="16" height="12" fill="#2a6170"/>
218
+ <path d="M40 66l-12 16M80 66l12 16" stroke="#2a6170" stroke-width="6" stroke-linecap="round"/>
219
+ </svg>
220
+ </div>
221
+ <div class="card-text">
222
+ <div class="title">Search by metro</div>
223
+ <div class="subtitle">Look near one or more metro stations</div>
224
+ </div>
225
+ </div>
226
+
227
+ </div>
228
+
229
+ <!-- Bottom gesture bar -->
230
+ <div class="gesture"></div>
231
+ </div>
232
+ </body>
233
+ </html>
code/734/734_3.html ADDED
@@ -0,0 +1,321 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="utf-8">
4
+ <title>Location Search UI</title>
5
+ <style>
6
+ body { margin:0; padding:0; background: transparent; font-family: Roboto, Arial, sans-serif; }
7
+ #render-target {
8
+ position: relative;
9
+ width: 1080px;
10
+ height: 2400px;
11
+ overflow: hidden;
12
+ background: #ffffff;
13
+ }
14
+
15
+ /* Status bar */
16
+ .status-bar {
17
+ position: absolute;
18
+ top: 0;
19
+ left: 0;
20
+ width: 1080px;
21
+ height: 160px;
22
+ background: #173947;
23
+ color: #ffffff;
24
+ display: flex;
25
+ align-items: center;
26
+ padding: 0 34px;
27
+ box-sizing: border-box;
28
+ }
29
+ .status-left {
30
+ display: flex;
31
+ align-items: center;
32
+ gap: 18px;
33
+ font-size: 48px;
34
+ letter-spacing: 0.5px;
35
+ }
36
+ .status-icons {
37
+ margin-left: auto;
38
+ display: flex;
39
+ align-items: center;
40
+ gap: 26px;
41
+ }
42
+ .status-dot {
43
+ width: 20px; height: 20px; border-radius: 50%; background: rgba(255,255,255,0.6);
44
+ }
45
+ .wifi-icon, .battery-icon {
46
+ display: inline-block;
47
+ }
48
+ .battery-icon {
49
+ width: 64px; height: 28px; border: 4px solid #fff; border-radius: 6px; position: relative;
50
+ }
51
+ .battery-icon::after {
52
+ content: "";
53
+ position: absolute;
54
+ right: -12px; top: 8px;
55
+ width: 10px; height: 12px; background: #fff; border-radius: 2px;
56
+ }
57
+ .battery-fill {
58
+ position: absolute; left: 4px; top: 4px; height: 20px; width: 36px; background: #8FE1D9; border-radius: 2px;
59
+ }
60
+
61
+ /* Header search area */
62
+ .search-header {
63
+ position: absolute;
64
+ top: 160px;
65
+ left: 0;
66
+ width: 1080px;
67
+ height: 220px;
68
+ background: #ffffff;
69
+ display: flex;
70
+ align-items: center;
71
+ gap: 24px;
72
+ padding: 42px 36px;
73
+ box-sizing: border-box;
74
+ border-bottom: 1px solid #e9eef3;
75
+ }
76
+ .back-btn {
77
+ width: 88px; height: 88px; display: flex; justify-content: center; align-items: center;
78
+ }
79
+ .search-input {
80
+ flex: 1;
81
+ height: 96px;
82
+ border: none;
83
+ outline: none;
84
+ font-size: 48px;
85
+ color: #2a2f35;
86
+ }
87
+ .search-input::placeholder { color: #b5bcc5; }
88
+
89
+ /* List of cities */
90
+ .list {
91
+ position: absolute;
92
+ top: 380px;
93
+ left: 0;
94
+ width: 1080px;
95
+ height: 1070px;
96
+ overflow: hidden;
97
+ }
98
+ .list-item {
99
+ display: flex;
100
+ align-items: center;
101
+ padding: 42px 44px;
102
+ gap: 36px;
103
+ border-bottom: 1px solid #f0f3f6;
104
+ box-sizing: border-box;
105
+ }
106
+ .pin {
107
+ width: 64px; height: 64px;
108
+ }
109
+ .city-name {
110
+ font-size: 54px;
111
+ color: #2d3136;
112
+ }
113
+ .bullet {
114
+ margin: 0 16px;
115
+ color: #7d8691;
116
+ }
117
+ .city-type {
118
+ font-size: 50px;
119
+ color: #7d8691;
120
+ }
121
+
122
+ /* Keyboard area */
123
+ .keyboard {
124
+ position: absolute;
125
+ bottom: 0;
126
+ left: 0;
127
+ width: 1080px;
128
+ height: 950px;
129
+ background: #181a1d;
130
+ padding: 34px 36px 140px;
131
+ box-sizing: border-box;
132
+ color: #e0e3e6;
133
+ }
134
+ .kbd-top {
135
+ display: flex;
136
+ align-items: center;
137
+ gap: 30px;
138
+ margin-bottom: 20px;
139
+ }
140
+ .kbd-pill {
141
+ width: 100px; height: 72px; background: #202329; border-radius: 16px; display: flex; justify-content: center; align-items: center;
142
+ color: #cdd2d6; font-size: 32px;
143
+ border: 1px solid #2a2e36;
144
+ }
145
+ .rows { margin-top: 16px; }
146
+ .row {
147
+ display: flex;
148
+ justify-content: space-between;
149
+ margin: 18px 0;
150
+ padding: 0 12px;
151
+ }
152
+ .key {
153
+ width: 88px;
154
+ height: 110px;
155
+ background: #2a2e36;
156
+ border-radius: 18px;
157
+ display: flex; justify-content: center; align-items: center;
158
+ color: #e7eaee;
159
+ font-size: 44px;
160
+ border: 1px solid #3a3f48;
161
+ }
162
+ .key.wide { width: 150px; }
163
+ .space-row {
164
+ display: flex; align-items: center; gap: 18px; margin-top: 24px; padding: 0 12px;
165
+ }
166
+ .space { flex: 1; height: 120px; background: #2a2e36; border: 1px solid #3a3f48; border-radius: 18px; }
167
+ .small-key { width: 120px; height: 120px; background: #2a2e36; border: 1px solid #3a3f48; border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 44px; color: #e7eaee; }
168
+
169
+ /* Floating search button */
170
+ .search-fab {
171
+ position: absolute;
172
+ right: 40px;
173
+ bottom: 40px;
174
+ width: 140px; height: 140px;
175
+ background: #8AEFE7;
176
+ border-radius: 50%;
177
+ box-shadow: 0 8px 20px rgba(0,0,0,0.35);
178
+ display: flex; align-items: center; justify-content: center;
179
+ }
180
+
181
+ /* Bottom navigation indicator */
182
+ .home-indicator {
183
+ position: absolute;
184
+ bottom: 18px;
185
+ left: 50%;
186
+ transform: translateX(-50%);
187
+ width: 560px; height: 14px; border-radius: 8px; background: #e9edf1;
188
+ opacity: 0.9;
189
+ }
190
+ </style>
191
+ </head>
192
+ <body>
193
+ <div id="render-target">
194
+
195
+ <!-- Status bar -->
196
+ <div class="status-bar">
197
+ <div class="status-left">
198
+ <span>7:50</span>
199
+ <span class="status-dot"></span>
200
+ <span class="status-dot"></span>
201
+ <span class="status-dot"></span>
202
+ </div>
203
+ <div class="status-icons">
204
+ <!-- WiFi -->
205
+ <svg class="wifi-icon" width="52" height="40" viewBox="0 0 52 40" fill="none">
206
+ <path d="M26 30c3 0 5 2 5 5s-2 5-5 5-5-2-5-5 2-5 5-5z" fill="#fff"/>
207
+ <path d="M6 16c6-6 34-6 40 0" stroke="#fff" stroke-width="4" stroke-linecap="round"/>
208
+ <path d="M13 22c5-4 21-4 26 0" stroke="#fff" stroke-width="4" stroke-linecap="round"/>
209
+ </svg>
210
+ <!-- Battery -->
211
+ <div class="battery-icon"><div class="battery-fill"></div></div>
212
+ </div>
213
+ </div>
214
+
215
+ <!-- Search header -->
216
+ <div class="search-header">
217
+ <div class="back-btn">
218
+ <svg width="54" height="54" viewBox="0 0 24 24" fill="none">
219
+ <path d="M15 18l-6-6 6-6" stroke="#5b6b78" stroke-width="2.6" stroke-linecap="round" stroke-linejoin="round"/>
220
+ </svg>
221
+ </div>
222
+ <input class="search-input" placeholder="Enter municipality, area or metro" />
223
+ </div>
224
+
225
+ <!-- Cities list -->
226
+ <div class="list">
227
+ <div class="list-item">
228
+ <svg class="pin" viewBox="0 0 24 24">
229
+ <path d="M12 2C8.7 2 6 4.7 6 8c0 5.2 6 12 6 12s6-6.8 6-12c0-3.3-2.7-6-6-6zm0 8.5c-1.4 0-2.5-1.1-2.5-2.5S10.6 5.5 12 5.5s2.5 1.1 2.5 2.5S13.4 10.5 12 10.5z" fill="#8b93a1"/>
230
+ </svg>
231
+ <div class="city-name">Milan <span class="bullet">•</span> <span class="city-type">City</span></div>
232
+ </div>
233
+ <div class="list-item">
234
+ <svg class="pin" viewBox="0 0 24 24">
235
+ <path d="M12 2C8.7 2 6 4.7 6 8c0 5.2 6 12 6 12s6-6.8 6-12c0-3.3-2.7-6-6-6zm0 8.5c-1.4 0-2.5-1.1-2.5-2.5S10.6 5.5 12 5.5s2.5 1.1 2.5 2.5S13.4 10.5 12 10.5z" fill="#8b93a1"/>
236
+ </svg>
237
+ <div class="city-name">Rome <span class="bullet">•</span> <span class="city-type">City</span></div>
238
+ </div>
239
+ <div class="list-item">
240
+ <svg class="pin" viewBox="0 0 24 24">
241
+ <path d="M12 2C8.7 2 6 4.7 6 8c0 5.2 6 12 6 12s6-6.8 6-12c0-3.3-2.7-6-6-6zm0 8.5c-1.4 0-2.5-1.1-2.5-2.5S10.6 5.5 12 5.5s2.5 1.1 2.5 2.5S13.4 10.5 12 10.5z" fill="#8b93a1"/>
242
+ </svg>
243
+ <div class="city-name">Turin <span class="bullet">•</span> <span class="city-type">City</span></div>
244
+ </div>
245
+ <div class="list-item">
246
+ <svg class="pin" viewBox="0 0 24 24">
247
+ <path d="M12 2C8.7 2 6 4.7 6 8c0 5.2 6 12 6 12s6-6.8 6-12c0-3.3-2.7-6-6-6zm0 8.5c-1.4 0-2.5-1.1-2.5-2.5S10.6 5.5 12 5.5s2.5 1.1 2.5 2.5S13.4 10.5 12 10.5z" fill="#8b93a1"/>
248
+ </svg>
249
+ <div class="city-name">Naples <span class="bullet">•</span> <span class="city-type">City</span></div>
250
+ </div>
251
+ <div class="list-item">
252
+ <svg class="pin" viewBox="0 0 24 24">
253
+ <path d="M12 2C8.7 2 6 4.7 6 8c0 5.2 6 12 6 12s6-6.8 6-12c0-3.3-2.7-6-6-6zm0 8.5c-1.4 0-2.5-1.1-2.5-2.5S10.6 5.5 12 5.5s2.5 1.1 2.5 2.5S13.4 10.5 12 10.5z" fill="#8b93a1"/>
254
+ </svg>
255
+ <div class="city-name">Bologna <span class="bullet">•</span> <span class="city-type">City</span></div>
256
+ </div>
257
+ <div class="list-item">
258
+ <svg class="pin" viewBox="0 0 24 24">
259
+ <path d="M12 2C8.7 2 6 4.7 6 8c0 5.2 6 12 6 12s6-6.8 6-12c0-3.3-2.7-6-6-6zm0 8.5c-1.4 0-2.5-1.1-2.5-2.5S10.6 5.5 12 5.5s2.5 1.1 2.5 2.5S13.4 10.5 12 10.5z" fill="#8b93a1"/>
260
+ </svg>
261
+ <div class="city-name">Florence <span class="bullet">•</span> <span class="city-type">City</span></div>
262
+ </div>
263
+ <div class="list-item">
264
+ <svg class="pin" viewBox="0 0 24 24">
265
+ <path d="M12 2C8.7 2 6 4.7 6 8c0 5.2 6 12 6 12s6-6.8 6-12c0-3.3-2.7-6-6-6zm0 8.5c-1.4 0-2.5-1.1-2.5-2.5S10.6 5.5 12 5.5s2.5 1.1 2.5 2.5S13.4 10.5 12 10.5z" fill="#8b93a1"/>
266
+ </svg>
267
+ <div class="city-name">Genoa <span class="bullet">•</span> <span class="city-type">City</span></div>
268
+ </div>
269
+ <div class="list-item">
270
+ <svg class="pin" viewBox="0 0 24 24">
271
+ <path d="M12 2C8.7 2 6 4.7 6 8c0 5.2 6 12 6 12s6-6.8 6-12c0-3.3-2.7-6-6-6zm0 8.5c-1.4 0-2.5-1.1-2.5-2.5S10.6 5.5 12 5.5s2.5 1.1 2.5 2.5S13.4 10.5 12 10.5z" fill="#8b93a1"/>
272
+ </svg>
273
+ <div class="city-name">Verona <span class="bullet">•</span> <span class="city-type">City</span></div>
274
+ </div>
275
+ </div>
276
+
277
+ <!-- Keyboard -->
278
+ <div class="keyboard">
279
+ <div class="kbd-top">
280
+ <div class="kbd-pill">GIF</div>
281
+ <div class="kbd-pill">G</div>
282
+ <div class="kbd-pill">⚙</div>
283
+ <div class="kbd-pill">🎨</div>
284
+ <div class="kbd-pill">🎤</div>
285
+ </div>
286
+ <div class="rows">
287
+ <div class="row">
288
+ <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>
289
+ </div>
290
+ <div class="row">
291
+ <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>
292
+ </div>
293
+ <div class="row">
294
+ <div class="key wide">⇧</div>
295
+ <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>
296
+ <div class="key wide">⌫</div>
297
+ </div>
298
+ <div class="space-row">
299
+ <div class="small-key">?123</div>
300
+ <div class="small-key">,</div>
301
+ <div class="small-key">🙂</div>
302
+ <div class="space"></div>
303
+ <div class="small-key">.</div>
304
+ </div>
305
+ </div>
306
+ </div>
307
+
308
+ <!-- Floating search button -->
309
+ <div class="search-fab">
310
+ <svg width="72" height="72" viewBox="0 0 24 24" fill="none">
311
+ <circle cx="10" cy="10" r="6" stroke="#14383F" stroke-width="2.5"/>
312
+ <path d="M14.5 14.5L20 20" stroke="#14383F" stroke-width="2.5" stroke-linecap="round"/>
313
+ </svg>
314
+ </div>
315
+
316
+ <!-- Home indicator -->
317
+ <div class="home-indicator"></div>
318
+
319
+ </div>
320
+ </body>
321
+ </html>
code/734/734_4.html ADDED
@@ -0,0 +1,169 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="utf-8">
4
+ <title>Rome City Map UI</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:#F3EFE6; /* light beige map-like background */
11
+ font-family: Arial, Helvetica, sans-serif;
12
+ color:#222;
13
+ }
14
+
15
+ /* Top system status bar */
16
+ .status-bar {
17
+ position:absolute; left:0; top:0;
18
+ width:100%; height:120px;
19
+ background:#173E4A;
20
+ color:#fff;
21
+ }
22
+ .status-content {
23
+ position:absolute; left:30px; top:34px;
24
+ display:flex; align-items:center; gap:20px;
25
+ font-size:40px; font-weight:600;
26
+ }
27
+ .status-icons {
28
+ position:absolute; right:30px; top:34px;
29
+ display:flex; align-items:center; gap:22px;
30
+ color:#fff;
31
+ }
32
+ .icon-dot { width:12px; height:12px; background:#fff; border-radius:50%; opacity:.9; }
33
+ .battery {
34
+ width:54px; height:26px; border:3px solid #fff; border-radius:6px; position:relative;
35
+ }
36
+ .battery::after {
37
+ content:""; position:absolute; right:-10px; top:6px; width:8px; height:12px; background:#fff; border-radius:2px;
38
+ }
39
+ .battery .level { width:34px; height:18px; background:#fff; position:absolute; left:6px; top:4px; }
40
+
41
+ /* App bar with back and search pill */
42
+ .app-bar {
43
+ position:absolute; left:0; top:120px;
44
+ width:100%; height:190px; background:#173E4A;
45
+ }
46
+ .back-btn {
47
+ position:absolute; left:28px; top:50%; transform:translateY(-50%);
48
+ width:84px; height:84px; display:flex; justify-content:center; align-items:center;
49
+ }
50
+ .back-btn svg { width:48px; height:48px; fill:#fff; }
51
+ .search-pill {
52
+ position:absolute; left:120px; right:120px; top:50%; transform:translateY(-50%);
53
+ height:110px; background:#ffffff; border-radius:56px;
54
+ box-shadow:0 6px 14px rgba(0,0,0,0.25);
55
+ display:flex; align-items:center; padding:0 130px 0 40px;
56
+ color:#2c2c2c; font-size:46px; font-weight:600;
57
+ }
58
+ .pill-close {
59
+ position:absolute; right:22px; top:50%; transform:translateY(-50%);
60
+ width:90px; height:90px; border-radius:45px; background:#E9E9EA;
61
+ display:flex; align-items:center; justify-content:center; color:#555; font-size:48px; font-weight:700;
62
+ }
63
+
64
+ /* Map area */
65
+ .map-area {
66
+ position:absolute; left:0; right:0; top:310px; bottom:540px; /* leave space for bottom sheet + nav */
67
+ background:#F3EFE6;
68
+ }
69
+ .spinner {
70
+ position:absolute; left:50%; top:180px; transform:translate(-50%, 0);
71
+ width:160px; height:160px; border-radius:50%;
72
+ border:16px solid #DAD6CD; border-top-color:#3C7AA6;
73
+ animation: spin 1.2s linear infinite;
74
+ box-shadow:0 8px 16px rgba(0,0,0,0.08);
75
+ }
76
+ @keyframes spin {
77
+ to { transform:translate(-50%, 0) rotate(360deg); }
78
+ }
79
+ .google-watermark {
80
+ position:absolute; left:22px; bottom:30px;
81
+ display:flex; gap:2px; font-size:44px; font-weight:700;
82
+ }
83
+ .g-blue { color:#4285F4; }
84
+ .g-red { color:#DB4437; }
85
+ .g-yellow { color:#F4B400; }
86
+ .g-green { color:#0F9D58; }
87
+
88
+ /* Bottom sheet */
89
+ .bottom-sheet {
90
+ position:absolute; left:0; right:0; bottom:120px;
91
+ height:430px; background:#fff; border-top-left-radius:36px; border-top-right-radius:36px;
92
+ box-shadow:0 -10px 24px rgba(0,0,0,0.18);
93
+ }
94
+ .sheet-handle {
95
+ width:180px; height:14px; background:#DADADA; border-radius:7px;
96
+ position:absolute; left:50%; top:24px; transform:translateX(-50%);
97
+ }
98
+ .sheet-title {
99
+ position:absolute; left:40px; top:90px;
100
+ font-size:54px; font-weight:700; color:#404040;
101
+ }
102
+ .apply-btn {
103
+ position:absolute; left:30px; right:30px; bottom:30px;
104
+ height:150px; background:#C9331C; color:#fff; font-size:56px; font-weight:800; letter-spacing:1px;
105
+ border-radius:14px; display:flex; align-items:center; justify-content:center;
106
+ box-shadow:0 6px 12px rgba(201,51,28,0.4);
107
+ }
108
+
109
+ /* Bottom navigation bar */
110
+ .nav-bar {
111
+ position:absolute; left:0; right:0; bottom:0; height:120px; background:#000;
112
+ }
113
+ .home-indicator {
114
+ width:300px; height:20px; background:#BFBFBF; border-radius:10px;
115
+ position:absolute; left:50%; top:50%; transform:translate(-50%, -50%);
116
+ opacity:0.7;
117
+ }
118
+ </style>
119
+ </head>
120
+ <body>
121
+ <div id="render-target">
122
+
123
+ <!-- Status bar -->
124
+ <div class="status-bar">
125
+ <div class="status-content">7:50</div>
126
+ <div class="status-icons">
127
+ <div class="icon-dot"></div>
128
+ <div class="icon-dot"></div>
129
+ <div class="icon-dot"></div>
130
+ <div class="battery"><div class="level"></div></div>
131
+ </div>
132
+ </div>
133
+
134
+ <!-- App bar -->
135
+ <div class="app-bar">
136
+ <div class="back-btn">
137
+ <svg viewBox="0 0 24 24">
138
+ <path d="M15.5 4.5L7 12l8.5 7.5-2 2L3 12l10.5-9.5 2 2z"/>
139
+ </svg>
140
+ </div>
141
+ <div class="search-pill">
142
+ Rome • City
143
+ <div class="pill-close">✕</div>
144
+ </div>
145
+ </div>
146
+
147
+ <!-- Map area with loading spinner -->
148
+ <div class="map-area">
149
+ <div class="spinner"></div>
150
+ <div class="google-watermark">
151
+ <span class="g-blue">G</span><span class="g-red">o</span><span class="g-yellow">o</span><span class="g-blue">g</span><span class="g-green">l</span><span class="g-red">e</span>
152
+ </div>
153
+ </div>
154
+
155
+ <!-- Bottom sheet -->
156
+ <div class="bottom-sheet">
157
+ <div class="sheet-handle"></div>
158
+ <div class="sheet-title">Select areas</div>
159
+ <div class="apply-btn">APPLY</div>
160
+ </div>
161
+
162
+ <!-- Bottom navigation -->
163
+ <div class="nav-bar">
164
+ <div class="home-indicator"></div>
165
+ </div>
166
+
167
+ </div>
168
+ </body>
169
+ </html>
code/734/734_5.html ADDED
@@ -0,0 +1,361 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Filters UI</title>
5
+ <style>
6
+ body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; }
7
+ #render-target {
8
+ width: 1080px;
9
+ height: 2400px;
10
+ position: relative;
11
+ overflow: hidden;
12
+ background: #ffffff;
13
+ }
14
+
15
+ /* Top status bar */
16
+ .statusbar {
17
+ position: absolute;
18
+ top: 0;
19
+ left: 0;
20
+ width: 1080px;
21
+ height: 120px;
22
+ background: #184E57; /* deep teal */
23
+ color: #fff;
24
+ display: flex;
25
+ align-items: center;
26
+ padding: 0 36px;
27
+ box-sizing: border-box;
28
+ font-size: 40px;
29
+ }
30
+ .status-icons {
31
+ margin-left: auto;
32
+ display: flex;
33
+ align-items: center;
34
+ gap: 28px;
35
+ }
36
+ .icon-dot { width: 14px; height: 14px; background: #fff; border-radius: 50%; opacity: 0.8; }
37
+
38
+ /* Header area */
39
+ .header {
40
+ position: absolute;
41
+ top: 120px;
42
+ left: 0;
43
+ width: 1080px;
44
+ height: 124px;
45
+ background: #fff;
46
+ display: flex;
47
+ align-items: center;
48
+ box-sizing: border-box;
49
+ padding: 0 28px;
50
+ border-bottom: 1px solid #E6E6E6;
51
+ }
52
+ .back {
53
+ width: 80px;
54
+ height: 80px;
55
+ display: flex;
56
+ align-items: center;
57
+ justify-content: center;
58
+ margin-right: 8px;
59
+ }
60
+ .header-title {
61
+ font-size: 52px;
62
+ font-weight: 700;
63
+ color: #1F2B37;
64
+ margin-left: 12px;
65
+ }
66
+ .reset {
67
+ margin-left: auto;
68
+ font-size: 40px;
69
+ color: #2F6E83; /* teal link color */
70
+ font-weight: 700;
71
+ letter-spacing: 0.5px;
72
+ }
73
+ .back svg { width: 42px; height: 42px; }
74
+
75
+ /* Tabs */
76
+ .tabs {
77
+ position: absolute;
78
+ top: 260px;
79
+ left: 30px;
80
+ width: 1020px;
81
+ height: 120px;
82
+ border: 2px solid #DADADA;
83
+ border-radius: 24px;
84
+ display: flex;
85
+ overflow: hidden;
86
+ background: #fff;
87
+ }
88
+ .tab {
89
+ flex: 1;
90
+ display: flex;
91
+ align-items: center;
92
+ justify-content: center;
93
+ font-size: 44px;
94
+ font-weight: 700;
95
+ color: #5A6A77;
96
+ border-right: 2px solid #E3E3E3;
97
+ }
98
+ .tab:last-child { border-right: none; }
99
+ .tab.active {
100
+ background: #1F5665;
101
+ color: #ffffff;
102
+ }
103
+
104
+ /* Sections */
105
+ .content {
106
+ position: absolute;
107
+ top: 410px;
108
+ left: 0;
109
+ right: 0;
110
+ bottom: 250px;
111
+ overflow: hidden;
112
+ }
113
+ .section {
114
+ padding: 26px 32px;
115
+ border-bottom: 1px solid #EFEFEF;
116
+ }
117
+ .row {
118
+ display: flex;
119
+ align-items: center;
120
+ }
121
+ .left-icon {
122
+ width: 72px;
123
+ height: 72px;
124
+ display: flex;
125
+ align-items: center;
126
+ justify-content: center;
127
+ margin-right: 22px;
128
+ }
129
+ .left-icon svg { width: 60px; height: 60px; }
130
+ .label {
131
+ font-size: 44px;
132
+ font-weight: 700;
133
+ color: #3A3F45;
134
+ }
135
+ .value {
136
+ margin-left: auto;
137
+ text-align: right;
138
+ color: #2F6E83;
139
+ font-size: 40px;
140
+ font-weight: 700;
141
+ }
142
+ .value .sub {
143
+ display: block;
144
+ margin-top: 6px;
145
+ color: #2F6E83;
146
+ font-size: 38px;
147
+ font-weight: 600;
148
+ }
149
+ .value.gray { color: #6F7C88; }
150
+
151
+ /* Chips and buttons */
152
+ .chip-group {
153
+ display: flex;
154
+ gap: 24px;
155
+ padding-left: 94px; /* align under label after icon */
156
+ margin-top: 24px;
157
+ flex-wrap: wrap;
158
+ }
159
+ .chip {
160
+ padding: 24px 36px;
161
+ border: 2px solid #D8D8D8;
162
+ border-radius: 18px;
163
+ font-size: 40px;
164
+ color: #404B56;
165
+ background: #fff;
166
+ min-width: 180px;
167
+ text-align: center;
168
+ }
169
+
170
+ /* Search CTA */
171
+ .search-cta {
172
+ position: absolute;
173
+ left: 30px;
174
+ right: 30px;
175
+ bottom: 160px;
176
+ height: 120px;
177
+ background: #C6361F; /* red-orange */
178
+ border-radius: 10px;
179
+ display: flex;
180
+ align-items: center;
181
+ justify-content: center;
182
+ color: #fff;
183
+ font-size: 44px;
184
+ font-weight: 800;
185
+ letter-spacing: 1px;
186
+ }
187
+
188
+ /* Bottom gesture bar */
189
+ .gesture {
190
+ position: absolute;
191
+ bottom: 40px;
192
+ left: 50%;
193
+ transform: translateX(-50%);
194
+ width: 320px;
195
+ height: 16px;
196
+ background: #000000;
197
+ border-radius: 8px;
198
+ opacity: 0.9;
199
+ }
200
+
201
+ /* Icon strokes */
202
+ .icon-stroke { stroke: #8A93A0; stroke-width: 4; fill: none; }
203
+ </style>
204
+ </head>
205
+ <body>
206
+ <div id="render-target">
207
+
208
+ <!-- Top status bar -->
209
+ <div class="statusbar">
210
+ <div>7:51</div>
211
+ <div class="status-icons">
212
+ <!-- simple weather and notification dots -->
213
+ <div class="icon-dot"></div>
214
+ <div class="icon-dot"></div>
215
+ <div class="icon-dot"></div>
216
+ <!-- wifi icon -->
217
+ <svg width="44" height="44" viewBox="0 0 24 24" fill="none">
218
+ <path d="M3 8c4-3 14-3 18 0" stroke="#fff" stroke-width="2" stroke-linecap="round"/>
219
+ <path d="M6 11c3-2 9-2 12 0" stroke="#fff" stroke-width="2" stroke-linecap="round"/>
220
+ <path d="M9 14c2-1 4-1 6 0" stroke="#fff" stroke-width="2" stroke-linecap="round"/>
221
+ <circle cx="12" cy="18" r="2" fill="#fff"/>
222
+ </svg>
223
+ <!-- battery icon -->
224
+ <svg width="50" height="44" viewBox="0 0 28 18" fill="none">
225
+ <rect x="1" y="3" width="22" height="12" rx="2" stroke="#fff" stroke-width="2"/>
226
+ <rect x="3" y="5" width="16" height="8" fill="#fff"/>
227
+ <rect x="24" y="6" width="3" height="6" rx="1" fill="#fff"/>
228
+ </svg>
229
+ </div>
230
+ </div>
231
+
232
+ <!-- Header -->
233
+ <div class="header">
234
+ <div class="back">
235
+ <svg viewBox="0 0 24 24">
236
+ <path d="M15 18l-6-6 6-6" stroke="#244C57" stroke-width="3" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
237
+ </svg>
238
+ </div>
239
+ <div class="header-title">Filters</div>
240
+ <div class="reset">RESET</div>
241
+ </div>
242
+
243
+ <!-- Tabs -->
244
+ <div class="tabs">
245
+ <div class="tab active">Buy</div>
246
+ <div class="tab">Rent</div>
247
+ <div class="tab">Auctions</div>
248
+ </div>
249
+
250
+ <!-- Content sections -->
251
+ <div class="content">
252
+ <!-- Type -->
253
+ <div class="section">
254
+ <div class="row">
255
+ <div class="left-icon">
256
+ <svg viewBox="0 0 24 24" class="icon-stroke">
257
+ <rect x="3" y="8" width="7" height="10"></rect>
258
+ <rect x="14" y="5" width="7" height="13"></rect>
259
+ <path d="M3 8l7-5 11 2" stroke-linecap="round"></path>
260
+ </svg>
261
+ </div>
262
+ <div class="label">Type</div>
263
+ <div class="value">
264
+ House - Apartment
265
+ <span class="sub">All types</span>
266
+ </div>
267
+ </div>
268
+ </div>
269
+
270
+ <!-- Price -->
271
+ <div class="section">
272
+ <div class="row">
273
+ <div class="left-icon">
274
+ <svg viewBox="0 0 24 24" class="icon-stroke">
275
+ <circle cx="12" cy="12" r="9"></circle>
276
+ <path d="M8 10h7M8 14h7" stroke-linecap="round"></path>
277
+ </svg>
278
+ </div>
279
+ <div class="label">Price</div>
280
+ <div class="value gray">Any</div>
281
+ </div>
282
+ </div>
283
+
284
+ <!-- Internal Surface -->
285
+ <div class="section">
286
+ <div class="row">
287
+ <div class="left-icon">
288
+ <svg viewBox="0 0 24 24" class="icon-stroke">
289
+ <rect x="4" y="4" width="16" height="16"></rect>
290
+ <path d="M4 12h16M12 4v16"></path>
291
+ </svg>
292
+ </div>
293
+ <div class="label">Internal Surface</div>
294
+ <div class="value gray">Any</div>
295
+ </div>
296
+ </div>
297
+
298
+ <!-- Rooms -->
299
+ <div class="section">
300
+ <div class="row">
301
+ <div class="left-icon">
302
+ <svg viewBox="0 0 24 24" class="icon-stroke">
303
+ <rect x="3" y="5" width="8" height="14"></rect>
304
+ <rect x="13" y="5" width="8" height="14"></rect>
305
+ </svg>
306
+ </div>
307
+ <div class="label">Rooms</div>
308
+ <div class="value gray">Any</div>
309
+ </div>
310
+ </div>
311
+
312
+ <!-- Bathrooms -->
313
+ <div class="section">
314
+ <div class="row">
315
+ <div class="left-icon">
316
+ <svg viewBox="0 0 24 24" class="icon-stroke">
317
+ <path d="M5 10h14v3a5 5 0 01-5 5H10a5 5 0 01-5-5v-3z"></path>
318
+ <path d="M7 6h10" stroke-linecap="round"></path>
319
+ </svg>
320
+ </div>
321
+ <div class="label">Bathrooms</div>
322
+ </div>
323
+ <div class="chip-group">
324
+ <div class="chip">1</div>
325
+ <div class="chip">2</div>
326
+ <div class="chip">3</div>
327
+ <div class="chip">&gt;3</div>
328
+ </div>
329
+ </div>
330
+
331
+ <!-- Property condition -->
332
+ <div class="section">
333
+ <div class="row">
334
+ <div class="left-icon">
335
+ <svg viewBox="0 0 24 24" class="icon-stroke">
336
+ <path d="M3 12l9-8 9 8v8H3z"></path>
337
+ <path d="M9 20v-6h6v6"></path>
338
+ </svg>
339
+ </div>
340
+ <div class="label">Property condition</div>
341
+ </div>
342
+ <div class="chip-group">
343
+ <div class="chip">New construction</div>
344
+ <div class="chip">Excellent</div>
345
+ <div class="chip">Good</div>
346
+ </div>
347
+ <div class="chip-group" style="margin-top: 14px;">
348
+ <div class="chip">To be renovated</div>
349
+ </div>
350
+ </div>
351
+ </div>
352
+
353
+ <!-- Search button -->
354
+ <div class="search-cta">SEARCH</div>
355
+
356
+ <!-- Gesture bar -->
357
+ <div class="gesture"></div>
358
+
359
+ </div>
360
+ </body>
361
+ </html>
code/734/734_6.html ADDED
@@ -0,0 +1,278 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
5
+ <title>Mobile UI Render</title>
6
+ <style>
7
+ body { margin:0; padding:0; background:transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
8
+ #render-target {
9
+ width:1080px; height:2400px; position:relative; overflow:hidden;
10
+ background:#0f3a4a;
11
+ color:#222;
12
+ }
13
+
14
+ /* Status bar */
15
+ .status-bar {
16
+ position:absolute; top:0; left:0; width:100%; height:120px;
17
+ color:#fff; font-size:42px; line-height:120px; padding:0 36px;
18
+ display:flex; justify-content:space-between; align-items:center;
19
+ }
20
+ .status-icons { display:flex; align-items:center; gap:28px; }
21
+ .dot { width:16px; height:16px; border-radius:50%; background:#fff; display:inline-block; opacity:0.8; }
22
+ .icon-signal, .icon-wifi, .icon-battery {
23
+ width:48px; height:48px;
24
+ display:inline-block;
25
+ }
26
+ .icon-signal svg, .icon-wifi svg, .icon-battery svg { width:100%; height:100%; fill:#fff; }
27
+
28
+ /* Header card */
29
+ .header-area {
30
+ position:absolute; top:120px; left:0; width:100%; height:200px;
31
+ padding:24px 36px;
32
+ }
33
+ .back-btn {
34
+ position:absolute; left:24px; top:36px; width:72px; height:72px; border-radius:36px;
35
+ display:flex; align-items:center; justify-content:center; color:#fff;
36
+ }
37
+ .back-btn svg { width:46px; height:46px; }
38
+ .title-card {
39
+ margin-left:96px; margin-top:0;
40
+ background:#174b5d; color:#fff; border-radius:22px;
41
+ padding:26px 28px; width:920px;
42
+ box-sizing:border-box;
43
+ }
44
+ .title-main { font-size:56px; font-weight:700; margin-bottom:10px; }
45
+ .title-sub { font-size:34px; opacity:0.9; }
46
+ .edit-icon {
47
+ position:absolute; right:36px; top:36px; width:60px; height:60px; border-radius:16px;
48
+ display:flex; align-items:center; justify-content:center; color:#fff;
49
+ }
50
+ .edit-icon svg { width:42px; height:42px; }
51
+
52
+ /* Filter chips row */
53
+ .filter-row {
54
+ position:absolute; top:320px; left:0; width:100%;
55
+ background:#153b4a; padding:18px 24px; box-sizing:border-box;
56
+ display:flex; align-items:center; gap:20px;
57
+ }
58
+ .chip, .chip-icon {
59
+ background:#1b495c; color:#e6eff3; border:1px solid rgba(255,255,255,0.18);
60
+ border-radius:40px; padding:22px 32px; font-size:36px; display:flex; align-items:center; gap:16px;
61
+ }
62
+ .chip .arrow { margin-left:8px; opacity:0.9; }
63
+ .chip-icon { padding:22px 26px; }
64
+ .chip-icon svg { width:40px; height:40px; fill:#e6eff3; }
65
+
66
+ /* Map area */
67
+ .map-area {
68
+ position:absolute; top:420px; left:0; width:100%; height:920px;
69
+ background:#e0e0e0; border-top:1px solid #bdbdbd; border-bottom:1px solid #bdbdbd;
70
+ display:flex; align-items:center; justify-content:center; color:#757575;
71
+ }
72
+ .map-label {
73
+ position:absolute; top:720px; left:540px; transform:translate(-50%,-50%);
74
+ background:rgba(0,0,0,0.4); color:#fff; padding:14px 22px; border-radius:20px; font-size:36px;
75
+ }
76
+ /* Center spinner on map */
77
+ .spinner {
78
+ position:absolute; top:750px; left:540px; width:88px; height:88px; border-radius:50%;
79
+ border:8px solid rgba(255,255,255,0.6); border-top-color:#274f60; animation:spin 1.5s linear infinite;
80
+ }
81
+ @keyframes spin { to { transform:rotate(360deg); } }
82
+
83
+ /* Info bubble overlay */
84
+ .info-bubble {
85
+ position:absolute; top:950px; left:60px; width:960px;
86
+ background:#fff; border-radius:24px; box-shadow:0 10px 24px rgba(0,0,0,0.25);
87
+ padding:28px; display:flex; align-items:center; gap:24px; font-size:42px;
88
+ }
89
+ .info-i {
90
+ width:64px; height:64px; border-radius:50%; background:#e9f3fb; color:#1a74a1;
91
+ display:flex; align-items:center; justify-content:center; font-weight:700; font-size:40px;
92
+ border:1px solid #cfe1ee;
93
+ }
94
+ .bubble-notch {
95
+ position:absolute; bottom:-20px; left:480px; width:0; height:0;
96
+ border-left:20px solid transparent; border-right:20px solid transparent; border-top:20px solid #fff;
97
+ filter:drop-shadow(0 6px 6px rgba(0,0,0,0.2));
98
+ }
99
+
100
+ /* Bottom sheet (list) */
101
+ .bottom-sheet {
102
+ position:absolute; left:0; bottom:190px; width:100%; height:960px;
103
+ background:#ffffff; border-top-left-radius:36px; border-top-right-radius:36px;
104
+ box-shadow:0 -8px 20px rgba(0,0,0,0.25);
105
+ }
106
+ .sheet-handle {
107
+ position:absolute; top:18px; left:50%; transform:translateX(-50%);
108
+ width:180px; height:14px; border-radius:8px; background:#d7d7d7;
109
+ }
110
+ .results-title {
111
+ position:absolute; top:84px; left:36px; font-size:46px; font-weight:700; color:#333;
112
+ }
113
+ .listing-card {
114
+ position:absolute; top:170px; left:36px; width:1008px; height:640px; border-radius:22px;
115
+ border:1px solid #e0e0e0; background:#fafafa; overflow:hidden;
116
+ }
117
+ .badge-new {
118
+ position:absolute; top:26px; left:26px; background:#e8f3ff; color:#1e6fb8; font-size:34px;
119
+ padding:16px 22px; border-radius:14px; border:1px solid #c9e1ff; font-weight:600;
120
+ }
121
+ .card-image {
122
+ position:absolute; top:90px; left:0; right:0; bottom:120px;
123
+ background:#E0E0E0; border-top:1px solid #BDBDBD; border-bottom:1px solid #BDBDBD;
124
+ display:flex; align-items:center; justify-content:center; color:#757575; font-size:36px;
125
+ }
126
+ .img-tag {
127
+ position:absolute; bottom:26px; left:26px; background:#6ec1ff; color:#fff; font-size:34px;
128
+ padding:12px 18px; border-radius:12px; font-weight:700;
129
+ }
130
+ .img-count {
131
+ position:absolute; bottom:26px; right:26px; background:#e0e0e0; color:#555; font-size:34px;
132
+ padding:12px 18px; border-radius:16px; border:1px solid #c6c6c6;
133
+ }
134
+ .price-row {
135
+ position:absolute; bottom:26px; left:300px; font-size:42px; color:#333; opacity:0.8;
136
+ }
137
+
138
+ /* Floating Save Search button */
139
+ .save-search {
140
+ position:absolute; left:50%; transform:translateX(-50%);
141
+ bottom:380px; background:#c92a13; color:#fff; font-size:44px; font-weight:700;
142
+ padding:28px 42px; border-radius:70px; box-shadow:0 8px 18px rgba(0,0,0,0.3);
143
+ display:flex; align-items:center; gap:24px;
144
+ }
145
+ .save-search svg { width:52px; height:52px; fill:#fff; }
146
+
147
+ /* Bottom navigation */
148
+ .bottom-nav {
149
+ position:absolute; left:0; bottom:0; width:100%; height:190px; background:#ffffff;
150
+ border-top:1px solid #e2e2e2; display:flex; align-items:center; justify-content:space-around;
151
+ padding-bottom:12px;
152
+ }
153
+ .nav-item {
154
+ display:flex; flex-direction:column; align-items:center; justify-content:center; gap:14px;
155
+ color:#2d2d2d; font-size:36px;
156
+ }
157
+ .nav-item .icon { width:68px; height:68px; }
158
+ .nav-item svg { width:100%; height:100%; stroke:#2d2d2d; fill:none; stroke-width:6; }
159
+ .nav-item.active { color:#c92a13; }
160
+ .nav-item.active svg { stroke:#c92a13; }
161
+
162
+ /* Small home indicator */
163
+ .home-indicator {
164
+ position:absolute; bottom:10px; left:50%; transform:translateX(-50%);
165
+ width:320px; height:10px; background:#dcdcdc; border-radius:8px;
166
+ }
167
+ </style>
168
+ </head>
169
+ <body>
170
+ <div id="render-target">
171
+
172
+ <!-- Status bar -->
173
+ <div class="status-bar">
174
+ <div>7:51</div>
175
+ <div class="status-icons">
176
+ <div class="dot"></div>
177
+ <div class="icon-signal">
178
+ <svg viewBox="0 0 24 24"><path d="M2 20h2v-2H2v2zm4 0h2v-6H6v6zm4 0h2v-10h-2v10zm4 0h2V6h-2v14zm4 0h2V2h-2v18z"/></svg>
179
+ </div>
180
+ <div class="icon-wifi">
181
+ <svg viewBox="0 0 24 24"><path d="M12 18a2 2 0 1 0 0.001 0z"/><path d="M2 9c5-5 15-5 20 0l-2 2c-4-4-12-4-16 0L2 9zm4 4c3-3 9-3 12 0l-2 2c-2-2-6-2-8 0l-2-2z"/></svg>
182
+ </div>
183
+ <div class="icon-battery">
184
+ <svg viewBox="0 0 24 24"><rect x="1" y="6" width="18" height="12" rx="2" fill="#fff"></rect><rect x="3" y="8" width="14" height="8" fill="#0f3a4a"></rect><rect x="20" y="9" width="3" height="6" rx="1" fill="#fff"></rect></svg>
185
+ </div>
186
+ </div>
187
+ </div>
188
+
189
+ <!-- Header card -->
190
+ <div class="header-area">
191
+ <div class="back-btn">
192
+ <svg viewBox="0 0 24 24"><path d="M15 18l-6-6 6-6" stroke="#fff" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>
193
+ </div>
194
+ <div class="title-card">
195
+ <div class="title-main">Rome • City</div>
196
+ <div class="title-sub">33,792 House - Apartment for sale</div>
197
+ </div>
198
+ <div class="edit-icon">
199
+ <svg viewBox="0 0 24 24"><path d="M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04a1.003 1.003 0 0 0 0-1.42l-2.34-2.34a1.003 1.003 0 0 0-1.42 0l-1.83 1.83 3.75 3.75 1.84-1.82z" fill="#fff"/></svg>
200
+ </div>
201
+ </div>
202
+
203
+ <!-- Filter chips -->
204
+ <div class="filter-row">
205
+ <div class="chip-icon">
206
+ <svg viewBox="0 0 24 24"><path d="M4 6h16M7 12h10M10 18h4" stroke="#e6eff3" stroke-width="2" fill="none" stroke-linecap="round"/></svg>
207
+ </div>
208
+ <div class="chip">Sort by <span class="arrow">▾</span></div>
209
+ <div class="chip">Price <span class="arrow">▾</span></div>
210
+ <div class="chip">Internal Surface <span class="arrow">▾</span></div>
211
+ </div>
212
+
213
+ <!-- Map area -->
214
+ <div class="map-area">
215
+ <div>[IMG: Google Map of Rome]</div>
216
+ </div>
217
+ <div class="spinner"></div>
218
+ <div class="map-label">Rome</div>
219
+
220
+ <!-- Info bubble -->
221
+ <div class="info-bubble">
222
+ <div class="info-i">i</div>
223
+ <div>Scroll down to see the map and scroll up to see the list</div>
224
+ <div class="bubble-notch"></div>
225
+ </div>
226
+
227
+ <!-- Bottom sheet -->
228
+ <div class="bottom-sheet">
229
+ <div class="sheet-handle"></div>
230
+ <div class="results-title">33,792 results</div>
231
+
232
+ <div class="listing-card">
233
+ <div class="badge-new">NEW CONSTRUCTION</div>
234
+ <div class="card-image">[IMG: Property gallery preview]</div>
235
+ <div class="img-tag">SKY</div>
236
+ <div class="img-count">1 / 17</div>
237
+ <div class="price-row">€ 352,000</div>
238
+ </div>
239
+ </div>
240
+
241
+ <!-- Save search button -->
242
+ <div class="save-search">
243
+ <svg viewBox="0 0 24 24"><path d="M12 22a2 2 0 0 0 2-2H10a2 2 0 0 0 2 2zm6-6V9a6 6 0 1 0-12 0v7l-2 2h16l-2-2z" /></svg>
244
+ <span>SAVE SEARCH</span>
245
+ </div>
246
+
247
+ <!-- Bottom navigation -->
248
+ <div class="bottom-nav">
249
+ <div class="nav-item active">
250
+ <div class="icon">
251
+ <svg viewBox="0 0 24 24"><circle cx="11" cy="11" r="7"/><line x1="20" y1="20" x2="16" y2="16"/></svg>
252
+ </div>
253
+ <div>Search</div>
254
+ </div>
255
+ <div class="nav-item">
256
+ <div class="icon">
257
+ <svg viewBox="0 0 24 24"><path d="M12 21s-6-4.35-9-8.5C-1 6 4 2 8 5c2 1.6 4 1.6 6 0 4-3 9 1 5 7.5C18 16.65 12 21 12 21z"/></svg>
258
+ </div>
259
+ <div>Saved</div>
260
+ </div>
261
+ <div class="nav-item">
262
+ <div class="icon">
263
+ <svg viewBox="0 0 24 24"><path d="M4 4h16v12H7l-3 3V4z"/></svg>
264
+ </div>
265
+ <div>Messages</div>
266
+ </div>
267
+ <div class="nav-item">
268
+ <div class="icon">
269
+ <svg viewBox="0 0 24 24"><circle cx="12" cy="7" r="4"/><path d="M4 22c0-4 4-7 8-7s8 3 8 7"/></svg>
270
+ </div>
271
+ <div>Menu</div>
272
+ </div>
273
+ </div>
274
+ <div class="home-indicator"></div>
275
+
276
+ </div>
277
+ </body>
278
+ </html>
code/734/734_7.html ADDED
@@ -0,0 +1,417 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
5
+ <title>Real Estate App UI</title>
6
+ <style>
7
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
8
+ #render-target {
9
+ width: 1080px;
10
+ height: 2400px;
11
+ position: relative;
12
+ overflow: hidden;
13
+ background: #0e3d55;
14
+ border-radius: 28px;
15
+ box-shadow: 0 8px 24px rgba(0,0,0,0.25);
16
+ color: #fff;
17
+ }
18
+
19
+ /* Status bar */
20
+ .status-bar {
21
+ height: 90px;
22
+ display: flex;
23
+ align-items: center;
24
+ padding: 0 32px;
25
+ font-size: 36px;
26
+ letter-spacing: 0.5px;
27
+ color: #eaf4fa;
28
+ }
29
+ .status-right {
30
+ margin-left: auto;
31
+ display: flex;
32
+ align-items: center;
33
+ gap: 26px;
34
+ }
35
+ .status-icon {
36
+ width: 36px;
37
+ height: 36px;
38
+ border-radius: 50%;
39
+ background: rgba(255,255,255,0.25);
40
+ }
41
+
42
+ /* Header */
43
+ .app-header {
44
+ height: 170px;
45
+ padding: 0 30px;
46
+ display: flex;
47
+ align-items: center;
48
+ gap: 24px;
49
+ }
50
+ .back-btn {
51
+ width: 72px;
52
+ height: 72px;
53
+ border-radius: 50%;
54
+ background: rgba(255,255,255,0.1);
55
+ display: flex;
56
+ align-items: center;
57
+ justify-content: center;
58
+ }
59
+ .back-btn svg { width: 40px; height: 40px; fill: #fff; }
60
+ .title-wrap {
61
+ flex: 1;
62
+ background: rgba(255,255,255,0.08);
63
+ border: 1px solid rgba(255,255,255,0.15);
64
+ border-radius: 24px;
65
+ padding: 26px 28px;
66
+ }
67
+ .title-top {
68
+ font-size: 40px;
69
+ font-weight: 700;
70
+ }
71
+ .title-sub {
72
+ margin-top: 8px;
73
+ font-size: 28px;
74
+ color: #cde0ea;
75
+ }
76
+ .edit-icon {
77
+ width: 64px;
78
+ height: 64px;
79
+ border-radius: 16px;
80
+ background: rgba(255,255,255,0.15);
81
+ display: flex;
82
+ align-items: center;
83
+ justify-content: center;
84
+ }
85
+ .edit-icon svg { width: 40px; height: 40px; fill: #fff; }
86
+
87
+ /* Filter chips */
88
+ .filters {
89
+ padding: 16px 24px 18px;
90
+ display: flex;
91
+ gap: 16px;
92
+ overflow-x: auto;
93
+ }
94
+ .chip {
95
+ flex: 0 0 auto;
96
+ display: inline-flex;
97
+ align-items: center;
98
+ gap: 14px;
99
+ padding: 18px 26px;
100
+ border-radius: 32px;
101
+ background: rgba(255,255,255,0.16);
102
+ border: 1px solid rgba(255,255,255,0.2);
103
+ color: #eaf4fa;
104
+ font-size: 28px;
105
+ white-space: nowrap;
106
+ }
107
+ .chip .dot {
108
+ width: 24px;
109
+ height: 24px;
110
+ border-radius: 50%;
111
+ background: #fff;
112
+ opacity: 0.85;
113
+ }
114
+ .chip .chev {
115
+ width: 18px;
116
+ height: 18px;
117
+ border: solid #eaf4fa;
118
+ border-width: 0 4px 4px 0;
119
+ transform: rotate(45deg);
120
+ margin-left: 6px;
121
+ }
122
+
123
+ /* Map section */
124
+ .map-area {
125
+ width: 100%;
126
+ height: 820px;
127
+ position: relative;
128
+ }
129
+ .map-placeholder {
130
+ position: absolute;
131
+ left: 0; top: 0; right: 0; bottom: 0;
132
+ background: #E0E0E0;
133
+ border-top: 1px solid #BDBDBD;
134
+ border-bottom: 1px solid #BDBDBD;
135
+ display: flex;
136
+ align-items: center;
137
+ justify-content: center;
138
+ color: #555;
139
+ font-size: 40px;
140
+ font-weight: 600;
141
+ }
142
+
143
+ /* Info bubble */
144
+ .info-bubble {
145
+ position: absolute;
146
+ left: 24px;
147
+ right: 24px;
148
+ top: 520px;
149
+ background: #fff;
150
+ color: #002b3a;
151
+ border-radius: 26px;
152
+ box-shadow: 0 8px 24px rgba(0,0,0,0.25);
153
+ padding: 28px 28px;
154
+ display: flex;
155
+ align-items: center;
156
+ gap: 22px;
157
+ border: 1px solid #e5e5e5;
158
+ }
159
+ .info-icon {
160
+ width: 46px;
161
+ height: 46px;
162
+ border-radius: 50%;
163
+ background: #eaf4ff;
164
+ color: #1b6ea8;
165
+ display: flex;
166
+ align-items: center;
167
+ justify-content: center;
168
+ font-weight: 700;
169
+ font-size: 30px;
170
+ }
171
+ .info-text {
172
+ font-size: 32px;
173
+ }
174
+
175
+ /* List panel */
176
+ .list-panel {
177
+ position: absolute;
178
+ left: 0;
179
+ right: 0;
180
+ top: 980px;
181
+ bottom: 220px;
182
+ background: #ffffff;
183
+ border-top-left-radius: 36px;
184
+ border-top-right-radius: 36px;
185
+ color: #0b2430;
186
+ overflow: hidden;
187
+ }
188
+ .handle {
189
+ width: 144px;
190
+ height: 12px;
191
+ border-radius: 12px;
192
+ background: #e0e0e0;
193
+ margin: 24px auto 10px;
194
+ }
195
+ .results-title {
196
+ text-align: center;
197
+ font-size: 40px;
198
+ font-weight: 700;
199
+ margin-bottom: 24px;
200
+ }
201
+ .card {
202
+ width: 1000px;
203
+ margin: 0 auto;
204
+ border-radius: 24px;
205
+ overflow: hidden;
206
+ position: relative;
207
+ }
208
+ .badge {
209
+ position: absolute;
210
+ left: 24px;
211
+ top: 24px;
212
+ background: #0c7db7;
213
+ color: #fff;
214
+ padding: 16px 22px;
215
+ border-radius: 16px;
216
+ font-size: 26px;
217
+ font-weight: 700;
218
+ letter-spacing: 0.2px;
219
+ }
220
+ .property-img {
221
+ width: 100%;
222
+ height: 560px;
223
+ background: #E0E0E0;
224
+ border: 1px solid #BDBDBD;
225
+ display: flex;
226
+ align-items: center;
227
+ justify-content: center;
228
+ color: #757575;
229
+ font-size: 34px;
230
+ font-weight: 600;
231
+ }
232
+ .thumb-row {
233
+ display: grid;
234
+ grid-template-columns: repeat(3, 1fr);
235
+ gap: 6px;
236
+ padding: 8px;
237
+ background: #fff;
238
+ }
239
+ .thumb {
240
+ height: 180px;
241
+ background: #E0E0E0;
242
+ border: 1px solid #BDBDBD;
243
+ display: flex;
244
+ align-items: center;
245
+ justify-content: center;
246
+ color: #757575;
247
+ font-size: 26px;
248
+ }
249
+
250
+ /* Floating Save Search */
251
+ .save-search {
252
+ position: absolute;
253
+ left: 50%;
254
+ bottom: -40px;
255
+ transform: translateX(-50%);
256
+ background: #c73416;
257
+ color: #fff;
258
+ padding: 22px 34px;
259
+ border-radius: 60px;
260
+ display: flex;
261
+ align-items: center;
262
+ gap: 18px;
263
+ box-shadow: 0 10px 20px rgba(199,52,22,0.35);
264
+ font-size: 34px;
265
+ font-weight: 700;
266
+ }
267
+ .bell {
268
+ width: 38px;
269
+ height: 38px;
270
+ border-radius: 50%;
271
+ border: 3px solid #fff;
272
+ position: relative;
273
+ }
274
+ .bell:after {
275
+ content: '';
276
+ position: absolute;
277
+ left: 50%; bottom: -8px;
278
+ width: 14px; height: 14px;
279
+ background: #fff; border-radius: 50%;
280
+ transform: translateX(-50%);
281
+ }
282
+
283
+ /* Bottom navigation */
284
+ .bottom-nav {
285
+ position: absolute;
286
+ left: 0; right: 0; bottom: 0;
287
+ height: 220px;
288
+ background: #ffffff;
289
+ border-top: 1px solid #ddd;
290
+ display: grid;
291
+ grid-template-columns: repeat(4, 1fr);
292
+ align-items: center;
293
+ text-align: center;
294
+ color: #2b2b2b;
295
+ }
296
+ .nav-item {
297
+ display: flex;
298
+ flex-direction: column;
299
+ align-items: center;
300
+ gap: 12px;
301
+ font-size: 28px;
302
+ }
303
+ .nav-icon {
304
+ width: 72px;
305
+ height: 72px;
306
+ border-radius: 18px;
307
+ background: #f3f6f8;
308
+ display: flex;
309
+ align-items: center;
310
+ justify-content: center;
311
+ border: 1px solid #e1e6ea;
312
+ }
313
+ .nav-icon svg { width: 40px; height: 40px; fill: #2b2b2b; }
314
+ .nav-item.active .nav-icon { background: #e9f3ff; border-color: #c9e0ff; }
315
+ .nav-item.active .nav-label { color: #0a63a9; }
316
+ </style>
317
+ </head>
318
+ <body>
319
+ <div id="render-target">
320
+
321
+ <!-- Status bar -->
322
+ <div class="status-bar">
323
+ <div>7:51</div>
324
+ <div class="status-right">
325
+ <div class="status-icon"></div>
326
+ <div class="status-icon"></div>
327
+ <div class="status-icon"></div>
328
+ <div class="status-icon"></div>
329
+ </div>
330
+ </div>
331
+
332
+ <!-- Header with back and title -->
333
+ <div class="app-header">
334
+ <div class="back-btn" aria-label="Back">
335
+ <svg viewBox="0 0 24 24"><path d="M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z"/></svg>
336
+ </div>
337
+ <div class="title-wrap">
338
+ <div class="title-top">Rome • City</div>
339
+ <div class="title-sub">33,792 House - Apartment for sale</div>
340
+ </div>
341
+ <div class="edit-icon" aria-label="Edit">
342
+ <svg viewBox="0 0 24 24"><path d="M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34a1 1 0 00-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z"/></svg>
343
+ </div>
344
+ </div>
345
+
346
+ <!-- Filter chips -->
347
+ <div class="filters">
348
+ <div class="chip"><div class="dot"></div> Filters</div>
349
+ <div class="chip">Sort by <span class="chev"></span></div>
350
+ <div class="chip">Price <span class="chev"></span></div>
351
+ <div class="chip">Internal Surface <span class="chev"></span></div>
352
+ <div class="chip">More <span class="chev"></span></div>
353
+ </div>
354
+
355
+ <!-- Map -->
356
+ <div class="map-area">
357
+ <div class="map-placeholder">[IMG: Google Map with clusters around Rome]</div>
358
+
359
+ <!-- Info bubble -->
360
+ <div class="info-bubble">
361
+ <div class="info-icon">i</div>
362
+ <div class="info-text">Scroll down to see the map and scroll up to see the list</div>
363
+ </div>
364
+ </div>
365
+
366
+ <!-- List panel -->
367
+ <div class="list-panel">
368
+ <div class="handle"></div>
369
+ <div class="results-title">33,792 results</div>
370
+
371
+ <div class="card">
372
+ <div class="badge">NEW CONSTRUCTION</div>
373
+ <div class="property-img">[IMG: Modern apartment building facade]</div>
374
+ <div class="thumb-row">
375
+ <div class="thumb">[IMG: Courtyard]</div>
376
+ <div class="thumb">[IMG: Exterior angle]</div>
377
+ <div class="thumb">[IMG: Balcony detail]</div>
378
+ </div>
379
+
380
+ <div class="save-search">
381
+ <div class="bell"></div>
382
+ <div>SAVE SEARCH</div>
383
+ </div>
384
+ </div>
385
+ </div>
386
+
387
+ <!-- Bottom navigation -->
388
+ <div class="bottom-nav">
389
+ <div class="nav-item active">
390
+ <div class="nav-icon">
391
+ <svg viewBox="0 0 24 24"><path d="M21 19V8l-9-5-9 5v11h6v-7h6v7z"/></svg>
392
+ </div>
393
+ <div class="nav-label">Search</div>
394
+ </div>
395
+ <div class="nav-item">
396
+ <div class="nav-icon">
397
+ <svg viewBox="0 0 24 24"><path d="M19 3H5c-1.1 0-2 .9-2 2v14l4-4h12c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"/></svg>
398
+ </div>
399
+ <div class="nav-label">Saved</div>
400
+ </div>
401
+ <div class="nav-item">
402
+ <div class="nav-icon">
403
+ <svg viewBox="0 0 24 24"><path d="M4 4h16v12H5.17L4 17.17V4zm2 2v8h12V6H6zm2 10h8v2H8v-2z"/></svg>
404
+ </div>
405
+ <div class="nav-label">Messages</div>
406
+ </div>
407
+ <div class="nav-item">
408
+ <div class="nav-icon">
409
+ <svg viewBox="0 0 24 24"><path d="M3 5h18v2H3V5zm0 6h18v2H3v-2zm0 6h18v2H3v-2z"/></svg>
410
+ </div>
411
+ <div class="nav-label">Menu</div>
412
+ </div>
413
+ </div>
414
+
415
+ </div>
416
+ </body>
417
+ </html>
code/7340/7340_0.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>Reminder UI</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; }
9
+ #render-target {
10
+ width: 1080px;
11
+ height: 2400px;
12
+ position: relative;
13
+ overflow: hidden;
14
+ background: #d8dee9; /* light bluish-gray app background */
15
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, system-ui, sans-serif;
16
+ color: #263238;
17
+ }
18
+
19
+ /* Header / AppBar */
20
+ .header {
21
+ position: absolute;
22
+ top: 0;
23
+ left: 0;
24
+ width: 1080px;
25
+ height: 450px;
26
+ background: #2f4764;
27
+ color: #e8edf7;
28
+ box-shadow: 0 2px 0 rgba(0,0,0,0.25);
29
+ }
30
+ .status-bar {
31
+ position: absolute;
32
+ top: 30px;
33
+ left: 40px;
34
+ right: 40px;
35
+ height: 60px;
36
+ display: flex;
37
+ align-items: center;
38
+ justify-content: space-between;
39
+ opacity: 0.9;
40
+ font-weight: 600;
41
+ letter-spacing: 0.5px;
42
+ }
43
+ .title-row {
44
+ position: absolute;
45
+ top: 120px;
46
+ left: 36px;
47
+ right: 36px;
48
+ height: 90px;
49
+ display: flex;
50
+ align-items: center;
51
+ }
52
+ .title-row h1 {
53
+ margin: 0 24px;
54
+ font-size: 56px;
55
+ font-weight: 600;
56
+ letter-spacing: 0.4px;
57
+ color: #e8edf7;
58
+ }
59
+ .title-actions {
60
+ margin-left: auto;
61
+ display: flex;
62
+ gap: 40px;
63
+ }
64
+ .icon-btn {
65
+ width: 64px;
66
+ height: 64px;
67
+ display: inline-flex;
68
+ align-items: center;
69
+ justify-content: center;
70
+ }
71
+
72
+ /* Filters */
73
+ .filters {
74
+ position: absolute;
75
+ top: 240px;
76
+ left: 36px;
77
+ right: 36px;
78
+ display: flex;
79
+ gap: 24px;
80
+ }
81
+ .pill {
82
+ padding: 18px 34px;
83
+ border-radius: 26px;
84
+ background: #3b516e;
85
+ color: #e8edf7;
86
+ font-size: 32px;
87
+ border: 2px solid rgba(0,0,0,0.35);
88
+ box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
89
+ }
90
+ .pill.active {
91
+ border-color: #e0d55a;
92
+ box-shadow: 0 0 0 3px rgba(224,213,90,0.25);
93
+ }
94
+
95
+ /* Content list */
96
+ .content {
97
+ position: absolute;
98
+ top: 450px;
99
+ left: 0;
100
+ right: 0;
101
+ bottom: 0;
102
+ overflow: hidden;
103
+ }
104
+ .list {
105
+ position: absolute;
106
+ top: 0;
107
+ left: 0;
108
+ right: 0;
109
+ }
110
+ .item {
111
+ padding: 40px 36px;
112
+ border-top: 1px solid #b8c3d3;
113
+ background: rgba(255,255,255,0.10);
114
+ }
115
+ .item:last-child {
116
+ border-bottom: 1px solid #b8c3d3;
117
+ }
118
+ .item-top {
119
+ display: flex;
120
+ align-items: baseline;
121
+ justify-content: space-between;
122
+ margin-bottom: 14px;
123
+ }
124
+ .title {
125
+ font-size: 52px;
126
+ font-weight: 600;
127
+ color: #2b3340;
128
+ }
129
+ .due {
130
+ font-size: 30px;
131
+ color: #6a7687;
132
+ }
133
+ .meta {
134
+ font-size: 32px;
135
+ color: #6a7687;
136
+ letter-spacing: 0.3px;
137
+ }
138
+
139
+ /* FAB */
140
+ .fab {
141
+ position: absolute;
142
+ right: 60px;
143
+ bottom: 340px;
144
+ width: 132px;
145
+ height: 132px;
146
+ border-radius: 50%;
147
+ background: #2f4764;
148
+ box-shadow: 0 18px 24px rgba(0,0,0,0.25), inset 0 -2px 0 rgba(255,255,255,0.08);
149
+ display: flex;
150
+ align-items: center;
151
+ justify-content: center;
152
+ }
153
+ .fab svg { width: 56px; height: 56px; }
154
+
155
+ /* Bottom tabs */
156
+ .bottom-tabs {
157
+ position: absolute;
158
+ left: 60px;
159
+ right: 60px;
160
+ bottom: 180px;
161
+ display: flex;
162
+ justify-content: space-between;
163
+ align-items: center;
164
+ }
165
+ .tab {
166
+ font-size: 36px;
167
+ color: #454c55;
168
+ letter-spacing: 0.5px;
169
+ }
170
+ .tab.active {
171
+ font-weight: 700;
172
+ text-decoration: underline;
173
+ }
174
+
175
+ /* Gesture bar */
176
+ .gesture-bar {
177
+ position: absolute;
178
+ bottom: 90px;
179
+ left: 50%;
180
+ transform: translateX(-50%);
181
+ width: 420px;
182
+ height: 12px;
183
+ background: #8a8f98;
184
+ border-radius: 8px;
185
+ opacity: 0.8;
186
+ }
187
+
188
+ /* Simple SVG icons styling */
189
+ svg { fill: none; stroke: currentColor; stroke-width: 3; }
190
+ .light-stroke { color: #e8edf7; }
191
+ </style>
192
+ </head>
193
+ <body>
194
+ <div id="render-target">
195
+
196
+ <!-- Header -->
197
+ <div class="header">
198
+ <div class="status-bar">
199
+ <div style="font-size:34px;">8:04</div>
200
+ <div class="icon-btn light-stroke" aria-label="battery">
201
+ <svg viewBox="0 0 28 20">
202
+ <rect x="2" y="3" width="22" height="14" rx="2" stroke="#e8edf7"></rect>
203
+ <rect x="4" y="5" width="14" height="10" fill="#e8edf7" stroke="none"></rect>
204
+ <rect x="24" y="7" width="3" height="6" rx="1" stroke="#e8edf7" fill="#e8edf7"></rect>
205
+ </svg>
206
+ </div>
207
+ </div>
208
+
209
+ <div class="title-row">
210
+ <div class="icon-btn light-stroke" aria-label="menu">
211
+ <svg viewBox="0 0 28 24">
212
+ <line x1="2" y1="4" x2="26" y2="4" stroke="#e8edf7" stroke-width="3.5"></line>
213
+ <line x1="2" y1="12" x2="20" y2="12" stroke="#e8edf7" stroke-width="3.5"></line>
214
+ <line x1="2" y1="20" x2="26" y2="20" stroke="#e8edf7" stroke-width="3.5"></line>
215
+ </svg>
216
+ </div>
217
+ <h1>Reminder</h1>
218
+ <div class="title-actions">
219
+ <div class="icon-btn light-stroke" aria-label="search">
220
+ <svg viewBox="0 0 28 28">
221
+ <circle cx="12" cy="12" r="8" stroke="#e8edf7"></circle>
222
+ <line x1="19" y1="19" x2="26" y2="26" stroke="#e8edf7" stroke-width="3.5"></line>
223
+ </svg>
224
+ </div>
225
+ <div class="icon-btn light-stroke" aria-label="filter">
226
+ <svg viewBox="0 0 28 24">
227
+ <line x1="3" y1="6" x2="25" y2="6" stroke="#e8edf7"></line>
228
+ <circle cx="10" cy="6" r="3" fill="#e8edf7" stroke="none"></circle>
229
+ <line x1="3" y1="12" x2="25" y2="12" stroke="#e8edf7"></line>
230
+ <circle cx="18" cy="12" r="3" fill="#e8edf7" stroke="none"></circle>
231
+ <line x1="3" y1="18" x2="25" y2="18" stroke="#e8edf7"></line>
232
+ <circle cx="7" cy="18" r="3" fill="#e8edf7" stroke="none"></circle>
233
+ </svg>
234
+ </div>
235
+ </div>
236
+ </div>
237
+
238
+ <div class="filters">
239
+ <div class="pill active">All</div>
240
+ <div class="pill">Default</div>
241
+ <div class="pill">Critical</div>
242
+ <div class="pill">Important</div>
243
+ <div class="pill">Favorites</div>
244
+ </div>
245
+ </div>
246
+
247
+ <!-- Content -->
248
+ <div class="content">
249
+ <div class="list">
250
+ <div class="item">
251
+ <div class="item-top">
252
+ <div class="title">Wedding</div>
253
+ <div class="due">in 13 days</div>
254
+ </div>
255
+ <div class="meta">06/26/2023 &nbsp; 8:00 PM</div>
256
+ <div class="meta" style="margin-top:6px;">One Time</div>
257
+ </div>
258
+
259
+ <div class="item">
260
+ <div class="item-top">
261
+ <div class="title">Friends</div>
262
+ <div class="due">in 19 days</div>
263
+ </div>
264
+ <div class="meta">07/2/2023 &nbsp; 7:30 PM</div>
265
+ <div class="meta" style="margin-top:6px;">Every Sunday</div>
266
+ </div>
267
+ </div>
268
+
269
+ <!-- Floating Action Button -->
270
+ <div class="fab" aria-label="add">
271
+ <svg viewBox="0 0 24 24" stroke="#ffffff" stroke-width="3.5">
272
+ <line x1="12" y1="4" x2="12" y2="20"></line>
273
+ <line x1="4" y1="12" x2="20" y2="12"></line>
274
+ </svg>
275
+ </div>
276
+
277
+ <!-- Bottom Tabs -->
278
+ <div class="bottom-tabs">
279
+ <div class="tab active">ACTIVE</div>
280
+ <div class="tab">COMPLETED</div>
281
+ </div>
282
+
283
+ <!-- Gesture Bar -->
284
+ <div class="gesture-bar"></div>
285
+ </div>
286
+
287
+ </div>
288
+ </body>
289
+ </html>
code/7340/7340_1.html ADDED
@@ -0,0 +1,216 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>UI Render</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: #D9DEE9;
12
+ }
13
+
14
+ /* Top header area */
15
+ .header {
16
+ position: absolute; top: 0; left: 0; width: 100%; height: 520px;
17
+ background: #2F4B66;
18
+ color: #D9DEE9;
19
+ }
20
+ .status-bar {
21
+ height: 110px; display: flex; align-items: center; justify-content: space-between;
22
+ padding: 0 40px; font-weight: 600; font-size: 40px;
23
+ }
24
+ .search-row {
25
+ display: flex; align-items: center;
26
+ padding: 10px 40px 0 40px; height: 120px; color: #C7D0DB;
27
+ font-size: 42px;
28
+ }
29
+ .search-row .placeholder { margin-left: 20px; opacity: 0.8; }
30
+ .filters {
31
+ padding: 24px 40px; display: flex; gap: 24px; flex-wrap: nowrap;
32
+ }
33
+ .pill {
34
+ padding: 22px 34px; border-radius: 30px; border: 2px solid rgba(24, 39, 56, 0.8);
35
+ color: #D9DEE9; background: rgba(24, 39, 56, 0.55); font-size: 34px;
36
+ box-shadow: inset 0 0 0 1px rgba(24,39,56,0.35);
37
+ }
38
+ .pill.active {
39
+ border: 3px solid #E1D64A; color: #EDEFF3; background: transparent;
40
+ }
41
+
42
+ /* Content list */
43
+ .content {
44
+ position: absolute; top: 520px; left: 0; right: 0; bottom: 900px; /* reserve space for keyboard */
45
+ padding: 24px 40px 0 40px; overflow: hidden;
46
+ }
47
+ .card {
48
+ background: transparent; border-top: 1px solid #C4CBD7; border-bottom: 1px solid #C4CBD7;
49
+ padding: 32px 0;
50
+ }
51
+ .card .title { font-size: 48px; color: #273446; margin-bottom: 12px; }
52
+ .card .meta { font-size: 34px; color: #7E8B9B; }
53
+ .card .row { display: flex; justify-content: space-between; align-items: baseline; }
54
+ .card .right { font-size: 36px; color: #69819B; }
55
+
56
+ /* Tabs */
57
+ .tabs {
58
+ position: absolute; left: 40px; right: 40px; bottom: 820px; /* above keyboard */
59
+ display: flex; justify-content: space-between; color: #475466; font-size: 40px;
60
+ }
61
+ .tabs .active {
62
+ font-weight: 700; text-decoration: underline; text-underline-offset: 8px;
63
+ }
64
+
65
+ /* Floating action button */
66
+ .fab {
67
+ position: absolute; right: 70px; bottom: 960px;
68
+ width: 140px; height: 140px; border-radius: 70px; background: #2F4B66;
69
+ box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
70
+ display: flex; align-items: center; justify-content: center;
71
+ }
72
+ .fab svg { width: 60px; height: 60px; fill: #FFFFFF; }
73
+
74
+ /* Keyboard placeholder */
75
+ .keyboard {
76
+ position: absolute; left: 0; right: 0; bottom: 0; height: 900px;
77
+ background: #ECECEC; border-top-left-radius: 20px; border-top-right-radius: 20px;
78
+ box-shadow: 0 -6px 12px rgba(0,0,0,0.08);
79
+ padding-top: 24px;
80
+ }
81
+ .kbd-top {
82
+ display: flex; align-items: center; gap: 30px; padding: 0 30px; height: 90px;
83
+ }
84
+ .kbd-icon {
85
+ width: 90px; height: 90px; border-radius: 45px; background: #D0D4D9;
86
+ display: flex; align-items: center; justify-content: center; color: #636C78; font-size: 34px;
87
+ }
88
+ .text-bar {
89
+ flex: 1; height: 80px; background: #FFFFFF; border-radius: 18px; border: 1px solid #D5D5D5;
90
+ }
91
+ .key-row { display: flex; justify-content: center; gap: 16px; padding: 24px 30px; }
92
+ .key {
93
+ background: #FFFFFF; border: 1px solid #D5D5D5; border-radius: 18px; min-width: 86px; height: 120px;
94
+ display: flex; align-items: center; justify-content: center; color: #333; font-size: 44px; box-sizing: border-box;
95
+ }
96
+ .key.wide { min-width: 140px; }
97
+ .key.extra-wide { min-width: 300px; }
98
+ .key.circle {
99
+ width: 120px; min-width: 120px; height: 120px; border-radius: 60px; background: #D3D8DE; color: #1E2735;
100
+ }
101
+
102
+ /* Home indicator */
103
+ .home-indicator {
104
+ position: absolute; bottom: 20px; left: 50%; width: 240px; height: 10px; transform: translateX(-50%);
105
+ background: #9AA1A9; border-radius: 6px;
106
+ }
107
+
108
+ /* Icons */
109
+ .back-icon { width: 48px; height: 48px; }
110
+ .battery { width: 46px; height: 28px; }
111
+ </style>
112
+ </head>
113
+ <body>
114
+ <div id="render-target">
115
+
116
+ <!-- Header -->
117
+ <div class="header">
118
+ <div class="status-bar">
119
+ <div>8:05</div>
120
+ <svg class="battery" viewBox="0 0 46 28">
121
+ <rect x="1" y="5" width="38" height="18" rx="4" ry="4" fill="none" stroke="#EAEFF6" stroke-width="3"></rect>
122
+ <rect x="41" y="10" width="4" height="8" rx="1" fill="#EAEFF6"></rect>
123
+ <rect x="5" y="8" width="30" height="12" rx="2" fill="#EAEFF6"></rect>
124
+ </svg>
125
+ </div>
126
+ <div class="search-row">
127
+ <svg class="back-icon" viewBox="0 0 24 24" fill="#C7D0DB">
128
+ <path d="M15.5 4.5L7 12l8.5 7.5" stroke="#C7D0DB" stroke-width="3" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
129
+ </svg>
130
+ <div class="placeholder">Search...</div>
131
+ </div>
132
+ <div class="filters">
133
+ <div class="pill active">All</div>
134
+ <div class="pill">Default</div>
135
+ <div class="pill">Critical</div>
136
+ <div class="pill">Important</div>
137
+ <div class="pill">Favorites</div>
138
+ </div>
139
+ </div>
140
+
141
+ <!-- Content -->
142
+ <div class="content">
143
+ <div class="card">
144
+ <div class="row">
145
+ <div>
146
+ <div class="title">Wedding</div>
147
+ <div class="meta">06/26/2023&nbsp;&nbsp;8:00 PM</div>
148
+ <div class="meta">One Time</div>
149
+ </div>
150
+ <div class="right">in 13 days</div>
151
+ </div>
152
+ </div>
153
+
154
+ <div class="card" style="margin-top: 10px;">
155
+ <div class="row">
156
+ <div>
157
+ <div class="title">Friends</div>
158
+ <div class="meta">07/2/2023&nbsp;&nbsp;7:30 PM</div>
159
+ <div class="meta">Every Sunday</div>
160
+ </div>
161
+ <div class="right">in 19 days</div>
162
+ </div>
163
+ </div>
164
+ </div>
165
+
166
+ <!-- Tabs -->
167
+ <div class="tabs">
168
+ <div class="active">ACTIVE</div>
169
+ <div>COMPLETED</div>
170
+ </div>
171
+
172
+ <!-- Floating action button -->
173
+ <div class="fab">
174
+ <svg viewBox="0 0 24 24">
175
+ <path d="M11 4h2v16h-2zM4 11h16v2H4z"></path>
176
+ </svg>
177
+ </div>
178
+
179
+ <!-- Keyboard placeholder -->
180
+ <div class="keyboard">
181
+ <div class="kbd-top">
182
+ <div class="kbd-icon">〈</div>
183
+ <div class="kbd-icon">☺</div>
184
+ <div class="kbd-icon">GIF</div>
185
+ <div class="kbd-icon">⚙</div>
186
+ <div class="kbd-icon">G✩</div>
187
+ <div class="kbd-icon">⋯</div>
188
+ <div class="kbd-icon">🎤</div>
189
+ </div>
190
+ <div class="key-row">
191
+ <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>
192
+ <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>
193
+ </div>
194
+ <div class="key-row">
195
+ <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>
196
+ <div class="key">h</div><div class="key">j</div><div class="key">k</div><div class="key">l</div>
197
+ </div>
198
+ <div class="key-row">
199
+ <div class="key circle">⇧</div>
200
+ <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>
201
+ <div class="key">n</div><div class="key">m</div>
202
+ <div class="key circle">⌫</div>
203
+ </div>
204
+ <div class="key-row" style="gap: 24px;">
205
+ <div class="key circle">?123</div>
206
+ <div class="key circle">,</div>
207
+ <div class="key extra-wide"></div>
208
+ <div class="key circle">.</div>
209
+ <div class="key circle">🔍</div>
210
+ </div>
211
+ </div>
212
+
213
+ <div class="home-indicator"></div>
214
+ </div>
215
+ </body>
216
+ </html>
code/7340/7340_2.html ADDED
@@ -0,0 +1,280 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>Friends UI Mock</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: #d7dbe7;
14
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
15
+ color: #2c3a4c;
16
+ }
17
+
18
+ /* Header */
19
+ .header {
20
+ position: absolute;
21
+ top: 0; left: 0; width: 100%;
22
+ height: 480px;
23
+ background: #2f4766;
24
+ color: #ffffff;
25
+ }
26
+ .statusbar {
27
+ height: 120px;
28
+ padding: 24px 36px 0;
29
+ display: flex;
30
+ align-items: center;
31
+ justify-content: space-between;
32
+ font-size: 32px;
33
+ letter-spacing: 0.5px;
34
+ }
35
+ .battery {
36
+ display: flex; align-items: center; gap: 18px;
37
+ }
38
+ .titlebar {
39
+ padding: 6px 40px 0;
40
+ display: flex;
41
+ align-items: center;
42
+ justify-content: space-between;
43
+ }
44
+ .title-left { display: flex; align-items: center; gap: 26px; }
45
+ .title-text { font-size: 58px; font-weight: 600; }
46
+ .icon-btn svg { width: 46px; height: 46px; }
47
+ .filters {
48
+ margin-top: 26px;
49
+ padding: 0 40px;
50
+ display: flex; gap: 22px;
51
+ }
52
+ .filter {
53
+ padding: 18px 30px;
54
+ border: 2px solid rgba(255,255,255,0.35);
55
+ border-radius: 18px;
56
+ color: #dbe4f1;
57
+ font-size: 32px;
58
+ line-height: 1;
59
+ }
60
+ .filter.active {
61
+ border-color: #f6e75c;
62
+ color: #f6e75c;
63
+ box-shadow: 0 0 0 2px rgba(246,231,92,0.15) inset;
64
+ }
65
+
66
+ /* Main content */
67
+ .content {
68
+ position: absolute;
69
+ top: 480px; left: 0; right: 0; bottom: 0;
70
+ background: #d7dbe7;
71
+ }
72
+ .list-card {
73
+ position: relative;
74
+ padding: 36px 40px 28px;
75
+ border-bottom: 1px solid #bcc3d0;
76
+ background: rgba(255,255,255,0.18);
77
+ }
78
+ .card-title { font-size: 52px; font-weight: 600; margin-bottom: 10px; color: #2e3b4e; }
79
+ .card-sub { font-size: 30px; color: #6f7d8f; }
80
+ .due-right {
81
+ position: absolute;
82
+ right: 40px;
83
+ top: 44px;
84
+ font-size: 34px;
85
+ color: #6f7d8f;
86
+ }
87
+
88
+ .tabs-bottom {
89
+ position: absolute;
90
+ left: 0; right: 0;
91
+ bottom: 840px; /* sits just above keyboard */
92
+ height: 92px;
93
+ display: flex;
94
+ align-items: center;
95
+ justify-content: space-around;
96
+ color: #394653;
97
+ font-size: 34px;
98
+ text-transform: uppercase;
99
+ letter-spacing: 0.8px;
100
+ }
101
+ .tabs-bottom .active {
102
+ font-weight: 700;
103
+ border-bottom: 4px solid #3a4a5f;
104
+ padding-bottom: 10px;
105
+ }
106
+
107
+ /* Floating action button */
108
+ .fab {
109
+ position: absolute;
110
+ right: 60px;
111
+ bottom: 1040px; /* above keyboard */
112
+ width: 128px; height: 128px;
113
+ background: #2f4766;
114
+ border-radius: 50%;
115
+ box-shadow: 0 10px 20px rgba(0,0,0,0.25);
116
+ display: flex; align-items: center; justify-content: center;
117
+ z-index: 5;
118
+ }
119
+ .fab svg { width: 48px; height: 48px; }
120
+
121
+ /* Keyboard mock */
122
+ .keyboard {
123
+ position: absolute;
124
+ left: 0; right: 0; bottom: 0;
125
+ height: 820px;
126
+ background: #f1f2f4;
127
+ border-top: 1px solid #d2d6dc;
128
+ }
129
+ .suggest {
130
+ display: flex; align-items: center;
131
+ gap: 22px;
132
+ padding: 16px 24px;
133
+ border-bottom: 1px solid #d2d6dc;
134
+ background: #f6f7f8;
135
+ }
136
+ .chip {
137
+ background: #ffffff;
138
+ border: 1px solid #d2d6dc;
139
+ border-radius: 22px;
140
+ padding: 10px 24px;
141
+ font-size: 30px; color: #3a3a3a;
142
+ }
143
+ .suggest .spacer { flex: 1; }
144
+ .suggest .icon { width: 44px; height: 44px; }
145
+
146
+ .keys { padding: 18px 24px; }
147
+ .row { display: flex; justify-content: center; gap: 10px; margin-bottom: 18px; }
148
+ .key {
149
+ width: 88px; height: 92px;
150
+ background: #ffffff;
151
+ border-radius: 16px;
152
+ box-shadow: inset 0 1px 0 #e6e6e6;
153
+ display: flex; align-items: center; justify-content: center;
154
+ font-size: 36px; color: #333;
155
+ }
156
+ .key.wide { width: 120px; }
157
+ .space { width: 460px; }
158
+ .home-bar {
159
+ position: absolute;
160
+ bottom: 16px; left: 50%; transform: translateX(-50%);
161
+ width: 220px; height: 8px; border-radius: 8px; background: #c9c9c9;
162
+ }
163
+ </style>
164
+ </head>
165
+ <body>
166
+ <div id="render-target">
167
+
168
+ <!-- Header -->
169
+ <div class="header">
170
+ <div class="statusbar">
171
+ <div>8:06</div>
172
+ <div class="battery">
173
+ <svg viewBox="0 0 36 20" width="36" height="20">
174
+ <rect x="1" y="3" width="30" height="14" rx="3" ry="3" fill="none" stroke="#fff" stroke-width="2"></rect>
175
+ <rect x="32" y="7" width="3" height="6" rx="1" fill="#fff"></rect>
176
+ <rect x="4" y="6" width="24" height="8" fill="#fff"></rect>
177
+ </svg>
178
+ </div>
179
+ </div>
180
+
181
+ <div class="titlebar">
182
+ <div class="title-left">
183
+ <div class="icon-btn">
184
+ <svg viewBox="0 0 24 24">
185
+ <path d="M15 4 L5 12 L15 20" stroke="#ffffff" stroke-width="3" fill="none" stroke-linecap="round" stroke-linejoin="round"></path>
186
+ </svg>
187
+ </div>
188
+ <div class="title-text">Friends</div>
189
+ </div>
190
+ <div class="icon-btn">
191
+ <svg viewBox="0 0 24 24">
192
+ <path d="M5 5 L19 19 M19 5 L5 19" stroke="#ffffff" stroke-width="3" fill="none" stroke-linecap="round"></path>
193
+ </svg>
194
+ </div>
195
+ </div>
196
+
197
+ <div class="filters">
198
+ <div class="filter active">All</div>
199
+ <div class="filter">Default</div>
200
+ <div class="filter">Critical</div>
201
+ <div class="filter">Important</div>
202
+ <div class="filter">Favorites</div>
203
+ </div>
204
+ </div>
205
+
206
+ <!-- Main content -->
207
+ <div class="content">
208
+ <div class="list-card">
209
+ <div class="card-title">Friends</div>
210
+ <div class="card-sub">07/2/2023&nbsp;&nbsp; 7:30 PM</div>
211
+ <div class="card-sub" style="margin-top: 8px;">Every Sunday</div>
212
+ <div class="due-right">in 19 days</div>
213
+ </div>
214
+
215
+ <div class="tabs-bottom">
216
+ <div class="active">Active</div>
217
+ <div>Completed</div>
218
+ </div>
219
+
220
+ <!-- Floating action button -->
221
+ <div class="fab">
222
+ <svg viewBox="0 0 24 24">
223
+ <path d="M12 5 V19 M5 12 H19" stroke="#ffffff" stroke-width="3" stroke-linecap="round" fill="none"></path>
224
+ </svg>
225
+ </div>
226
+
227
+ <!-- Keyboard -->
228
+ <div class="keyboard">
229
+ <div class="suggest">
230
+ <div class="chip">Friends</div>
231
+ <div class="chip">Friend's</div>
232
+ <div class="chip">Friendship</div>
233
+ <div class="spacer"></div>
234
+ <svg class="icon" viewBox="0 0 24 24">
235
+ <circle cx="12" cy="8" r="4" stroke="#777" stroke-width="2" fill="none"></circle>
236
+ <path d="M6 22 C6 17,18 17,18 22" stroke="#777" stroke-width="2" fill="none" stroke-linecap="round"></path>
237
+ </svg>
238
+ </div>
239
+
240
+ <div class="keys">
241
+ <div class="row">
242
+ <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>
243
+ <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>
244
+ </div>
245
+ <div class="row">
246
+ <div class="key wide">⇧</div>
247
+ <div class="key">a</div><div class="key">s</div><div class="key">d</div><div class="key">f</div>
248
+ <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>
249
+ </div>
250
+ <div class="row">
251
+ <div class="key wide">⬆</div>
252
+ <div class="key">z</div><div class="key">x</div><div class="key">c</div><div class="key">v</div>
253
+ <div class="key">b</div><div class="key">n</div><div class="key">m</div>
254
+ <div class="key wide">
255
+ <svg viewBox="0 0 24 24" width="24" height="24">
256
+ <path d="M5 5 L19 19 M19 5 L5 19" stroke="#666" stroke-width="2" fill="none" stroke-linecap="round"></path>
257
+ </svg>
258
+ </div>
259
+ </div>
260
+ <div class="row" style="gap: 12px;">
261
+ <div class="key wide">?123</div>
262
+ <div class="key">,</div>
263
+ <div class="key space"></div>
264
+ <div class="key">.</div>
265
+ <div class="key wide">
266
+ <svg viewBox="0 0 24 24" width="24" height="24">
267
+ <circle cx="10" cy="10" r="7" stroke="#666" stroke-width="2" fill="none"></circle>
268
+ <path d="M16 16 L22 22" stroke="#666" stroke-width="2" fill="none" stroke-linecap="round"></path>
269
+ </svg>
270
+ </div>
271
+ </div>
272
+ </div>
273
+
274
+ <div class="home-bar"></div>
275
+ </div>
276
+ </div>
277
+
278
+ </div>
279
+ </body>
280
+ </html>
code/7340/7340_3.html ADDED
@@ -0,0 +1,241 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Friends Screen</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: #cfd6e6; /* light bluish-gray */
15
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
16
+ color: #1e2a38;
17
+ }
18
+
19
+ /* Top header */
20
+ .topbar {
21
+ position: absolute;
22
+ left: 0; top: 0;
23
+ width: 100%;
24
+ height: 480px;
25
+ background: #2f4765; /* deep slate blue */
26
+ color: #eaf0f6;
27
+ }
28
+ .status {
29
+ height: 120px;
30
+ display: flex;
31
+ align-items: center;
32
+ padding: 0 40px;
33
+ font-size: 48px;
34
+ letter-spacing: 0.5px;
35
+ }
36
+ .status .right {
37
+ margin-left: auto;
38
+ display: flex;
39
+ align-items: center;
40
+ gap: 24px;
41
+ }
42
+ .appbar {
43
+ height: 190px;
44
+ padding: 0 40px;
45
+ display: flex;
46
+ align-items: center;
47
+ justify-content: space-between;
48
+ }
49
+ .appbar .left {
50
+ display: flex;
51
+ align-items: center;
52
+ gap: 28px;
53
+ }
54
+ .appbar .title {
55
+ font-size: 64px;
56
+ font-weight: 500;
57
+ color: #ffffff;
58
+ }
59
+ .filters {
60
+ height: 170px;
61
+ padding: 18px 40px 0 40px;
62
+ display: flex;
63
+ gap: 24px;
64
+ align-items: flex-start;
65
+ }
66
+ .pill {
67
+ padding: 22px 34px;
68
+ border-radius: 26px;
69
+ border: 3px solid rgba(0,0,0,0.45);
70
+ color: #e6edf6;
71
+ font-size: 40px;
72
+ line-height: 1;
73
+ background: rgba(255,255,255,0.06);
74
+ }
75
+ .pill.active {
76
+ border-color: #e4de6b; /* yellow highlight */
77
+ color: #fffbd1;
78
+ font-weight: 600;
79
+ }
80
+
81
+ /* Content */
82
+ .content {
83
+ position: absolute;
84
+ left: 0;
85
+ top: 480px;
86
+ width: 100%;
87
+ bottom: 0;
88
+ background: #cfd6e6;
89
+ }
90
+ .card {
91
+ position: relative;
92
+ padding: 54px 40px 40px 40px;
93
+ border-top: 2px solid #b5c0d3;
94
+ border-bottom: 2px solid #b5c0d3;
95
+ background: rgba(255,255,255,0.02);
96
+ }
97
+ .card .title {
98
+ font-size: 64px;
99
+ font-weight: 600;
100
+ color: #24364d;
101
+ margin-bottom: 16px;
102
+ }
103
+ .card .meta {
104
+ font-size: 42px;
105
+ color: #6f8198;
106
+ display: flex;
107
+ gap: 16px;
108
+ margin-bottom: 8px;
109
+ }
110
+ .card .sub {
111
+ font-size: 42px;
112
+ color: #7a8ca3;
113
+ }
114
+ .card .right-note {
115
+ position: absolute;
116
+ right: 40px;
117
+ top: 58px;
118
+ font-size: 42px;
119
+ color: #6f8198;
120
+ }
121
+
122
+ /* Bottom tabs */
123
+ .bottom-tabs {
124
+ position: absolute;
125
+ left: 0;
126
+ bottom: 130px;
127
+ width: 100%;
128
+ padding: 0 90px;
129
+ display: flex;
130
+ justify-content: space-between;
131
+ align-items: center;
132
+ color: #2d2f33;
133
+ font-size: 44px;
134
+ }
135
+ .bottom-tabs .active {
136
+ font-weight: 700;
137
+ text-decoration: underline;
138
+ }
139
+
140
+ /* Floating Action Button */
141
+ .fab {
142
+ position: absolute;
143
+ right: 72px;
144
+ bottom: 260px;
145
+ width: 150px;
146
+ height: 150px;
147
+ border-radius: 50%;
148
+ background: #2f4765;
149
+ box-shadow: 0 16px 30px rgba(0,0,0,0.25);
150
+ display: flex;
151
+ align-items: center;
152
+ justify-content: center;
153
+ }
154
+
155
+ /* Simple home indicator guide (optional subtle) */
156
+ .home-indicator {
157
+ position: absolute;
158
+ bottom: 40px;
159
+ left: 50%;
160
+ transform: translateX(-50%);
161
+ width: 420px;
162
+ height: 16px;
163
+ background: #9aa2ac;
164
+ border-radius: 10px;
165
+ opacity: 0.6;
166
+ }
167
+
168
+ /* SVG defaults */
169
+ svg { display: block; }
170
+ </style>
171
+ </head>
172
+ <body>
173
+ <div id="render-target">
174
+
175
+ <!-- Top Area -->
176
+ <div class="topbar">
177
+ <div class="status">
178
+ <div>8:07</div>
179
+ <div class="right">
180
+ <!-- battery icon -->
181
+ <svg width="48" height="48" viewBox="0 0 24 24" aria-hidden="true">
182
+ <rect x="2" y="7" width="18" height="10" rx="2" ry="2" fill="none" stroke="#ffffff" stroke-width="2"></rect>
183
+ <rect x="21" y="10" width="2" height="4" fill="#ffffff"></rect>
184
+ <rect x="4" y="9" width="14" height="6" fill="#ffffff" opacity="0.9"></rect>
185
+ </svg>
186
+ </div>
187
+ </div>
188
+
189
+ <div class="appbar">
190
+ <div class="left">
191
+ <!-- back arrow -->
192
+ <svg width="70" height="70" viewBox="0 0 24 24" aria-hidden="true">
193
+ <path d="M15 4 L7 12 L15 20" stroke="#ffffff" stroke-width="2.5" fill="none" stroke-linecap="round" stroke-linejoin="round"></path>
194
+ </svg>
195
+ <div class="title">Friends</div>
196
+ </div>
197
+ <!-- close (X) icon -->
198
+ <svg width="70" height="70" viewBox="0 0 24 24" aria-hidden="true">
199
+ <path d="M5 5 L19 19 M19 5 L5 19" stroke="#ffffff" stroke-width="2.5" fill="none" stroke-linecap="round"></path>
200
+ </svg>
201
+ </div>
202
+
203
+ <div class="filters">
204
+ <div class="pill active">All</div>
205
+ <div class="pill">Default</div>
206
+ <div class="pill">Critical</div>
207
+ <div class="pill">Important</div>
208
+ <div class="pill">Favorites</div>
209
+ </div>
210
+ </div>
211
+
212
+ <!-- Content -->
213
+ <div class="content">
214
+ <div class="card">
215
+ <div class="title">Friends</div>
216
+ <div class="meta">
217
+ <span>07/2/2023</span>
218
+ <span>7:30 PM</span>
219
+ </div>
220
+ <div class="sub">Every Sunday</div>
221
+ <div class="right-note">in 19 days</div>
222
+ </div>
223
+
224
+ <div class="fab">
225
+ <!-- plus icon -->
226
+ <svg width="72" height="72" viewBox="0 0 24 24" aria-hidden="true">
227
+ <path d="M12 5 V19 M5 12 H19" stroke="#ffffff" stroke-width="2.8" stroke-linecap="round"></path>
228
+ </svg>
229
+ </div>
230
+
231
+ <div class="bottom-tabs">
232
+ <div class="active">ACTIVE</div>
233
+ <div>COMPLETED</div>
234
+ </div>
235
+
236
+ <div class="home-indicator"></div>
237
+ </div>
238
+
239
+ </div>
240
+ </body>
241
+ </html>
code/7341/7341_0.html ADDED
@@ -0,0 +1,204 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <title>Rendered Mobile UI</title>
6
+ <style>
7
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
8
+ #render-target {
9
+ width: 1080px;
10
+ height: 2400px;
11
+ position: relative;
12
+ overflow: hidden;
13
+ background: #000;
14
+ }
15
+
16
+ /* Status bar */
17
+ .status-bar {
18
+ position: absolute;
19
+ top: 0;
20
+ left: 0;
21
+ width: 1080px;
22
+ height: 140px;
23
+ background: #2a2a2a;
24
+ color: #fff;
25
+ display: flex;
26
+ align-items: center;
27
+ padding: 0 36px;
28
+ box-sizing: border-box;
29
+ }
30
+ .sb-left {
31
+ font-size: 48px;
32
+ font-weight: 600;
33
+ }
34
+ .sb-center {
35
+ flex: 1;
36
+ display: flex;
37
+ justify-content: center;
38
+ gap: 36px;
39
+ }
40
+ .sb-right {
41
+ display: flex;
42
+ gap: 28px;
43
+ }
44
+ .sb-icon svg {
45
+ width: 48px;
46
+ height: 48px;
47
+ }
48
+
49
+ /* Spacers above and below the cover */
50
+ .top-gap {
51
+ position: absolute;
52
+ top: 140px;
53
+ left: 0;
54
+ width: 1080px;
55
+ height: 220px;
56
+ background: #000;
57
+ }
58
+
59
+ /* Book cover area */
60
+ .cover {
61
+ position: absolute;
62
+ left: 55px;
63
+ top: 360px;
64
+ width: 970px;
65
+ height: 1500px;
66
+ }
67
+ .cover-image {
68
+ position: absolute;
69
+ inset: 0;
70
+ background: #E0E0E0;
71
+ border: 1px solid #BDBDBD;
72
+ color: #757575;
73
+ display: flex;
74
+ justify-content: center;
75
+ align-items: center;
76
+ text-align: center;
77
+ padding: 24px;
78
+ box-sizing: border-box;
79
+ font-size: 34px;
80
+ }
81
+ .title {
82
+ position: absolute;
83
+ top: 70px;
84
+ left: 40px;
85
+ right: 40px;
86
+ text-align: center;
87
+ font-size: 120px;
88
+ font-weight: 800;
89
+ color: #39ff39;
90
+ letter-spacing: -1px;
91
+ text-shadow: 0 10px 28px rgba(0,0,0,0.9), 0 0 6px rgba(0,0,0,0.7);
92
+ z-index: 2;
93
+ }
94
+ .author {
95
+ position: absolute;
96
+ bottom: 120px;
97
+ left: 40px;
98
+ right: 40px;
99
+ text-align: center;
100
+ font-size: 86px;
101
+ color: #39ff39;
102
+ font-family: "Brush Script MT", "Lucida Handwriting", cursive;
103
+ text-shadow: 0 8px 24px rgba(0,0,0,0.85);
104
+ z-index: 2;
105
+ display: flex;
106
+ align-items: center;
107
+ justify-content: center;
108
+ gap: 24px;
109
+ }
110
+ .decor {
111
+ font-size: 86px;
112
+ color: #2A47FF;
113
+ text-shadow: 0 6px 20px rgba(0,0,0,0.7);
114
+ line-height: 1;
115
+ }
116
+
117
+ .bottom-gap {
118
+ position: absolute;
119
+ bottom: 0;
120
+ left: 0;
121
+ width: 1080px;
122
+ height: 360px;
123
+ background: #000;
124
+ }
125
+
126
+ .home-pill {
127
+ position: absolute;
128
+ bottom: 44px;
129
+ left: 50%;
130
+ transform: translateX(-50%);
131
+ width: 300px;
132
+ height: 12px;
133
+ border-radius: 20px;
134
+ background: #fff;
135
+ opacity: 0.9;
136
+ }
137
+ </style>
138
+ </head>
139
+ <body>
140
+ <div id="render-target">
141
+ <div class="status-bar">
142
+ <div class="sb-left">11:06</div>
143
+ <div class="sb-center">
144
+ <!-- Simple icons centered -->
145
+ <span class="sb-icon">
146
+ <!-- Circle icon -->
147
+ <svg viewBox="0 0 24 24" fill="none" stroke="#ffffff" stroke-width="2">
148
+ <circle cx="12" cy="12" r="8"></circle>
149
+ </svg>
150
+ </span>
151
+ <span class="sb-icon">
152
+ <!-- Envelope (mail) icon -->
153
+ <svg viewBox="0 0 24 24" fill="none" stroke="#ffffff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
154
+ <rect x="3" y="6" width="18" height="12" rx="2"></rect>
155
+ <path d="M3 8l9 6 9-6"></path>
156
+ </svg>
157
+ </span>
158
+ <span class="sb-icon">
159
+ <!-- Download icon -->
160
+ <svg viewBox="0 0 24 24" fill="none" stroke="#ffffff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
161
+ <path d="M12 3v10"></path>
162
+ <path d="M8 9l4 4 4-4"></path>
163
+ <rect x="4" y="18" width="16" height="3" rx="1"></rect>
164
+ </svg>
165
+ </span>
166
+ </div>
167
+ <div class="sb-right">
168
+ <span class="sb-icon">
169
+ <!-- Wi-Fi icon -->
170
+ <svg viewBox="0 0 24 24" fill="none" stroke="#ffffff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
171
+ <path d="M2 8c5-4 15-4 20 0"></path>
172
+ <path d="M5 12c4-3 10-3 14 0"></path>
173
+ <path d="M8 16c3-2 5-2 8 0"></path>
174
+ <circle cx="12" cy="19" r="1.5" fill="#ffffff"></circle>
175
+ </svg>
176
+ </span>
177
+ <span class="sb-icon">
178
+ <!-- Battery icon -->
179
+ <svg viewBox="0 0 28 24" fill="none" stroke="#ffffff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
180
+ <rect x="2" y="6" width="20" height="12" rx="2"></rect>
181
+ <rect x="4" y="8" width="14" height="8" fill="#ffffff"></rect>
182
+ <path d="M24 10v4"></path>
183
+ </svg>
184
+ </span>
185
+ </div>
186
+ </div>
187
+
188
+ <div class="top-gap"></div>
189
+
190
+ <div class="cover">
191
+ <div class="cover-image">[IMG: Book cover art – warrior illustration with black-and-white swirl background]</div>
192
+ <div class="title">The War of the Worlds</div>
193
+ <div class="author">
194
+ <span class="decor">❦</span>
195
+ <span>H.G. Wells</span>
196
+ <span class="decor">❦</span>
197
+ </div>
198
+ </div>
199
+
200
+ <div class="bottom-gap"></div>
201
+ <div class="home-pill"></div>
202
+ </div>
203
+ </body>
204
+ </html>
code/7341/7341_1.html ADDED
@@ -0,0 +1,347 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1">
6
+ <title>Book Details UI</title>
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: #121212;
15
+ color: #fff;
16
+ }
17
+
18
+ /* Top system/status bar */
19
+ .status-bar {
20
+ position: absolute;
21
+ top: 0;
22
+ left: 0;
23
+ width: 1080px;
24
+ height: 110px;
25
+ background: #1d1d1d;
26
+ display: flex;
27
+ align-items: center;
28
+ padding: 0 36px;
29
+ box-sizing: border-box;
30
+ font-size: 40px;
31
+ color: #e0e0e0;
32
+ }
33
+ .status-icons {
34
+ margin-left: auto;
35
+ display: flex;
36
+ gap: 24px;
37
+ align-items: center;
38
+ }
39
+ .status-icon svg { width: 42px; height: 42px; fill: #e0e0e0; }
40
+
41
+ /* Title bar */
42
+ .title-bar {
43
+ position: absolute;
44
+ top: 110px;
45
+ left: 0;
46
+ width: 1080px;
47
+ height: 120px;
48
+ background: #1d1d1d;
49
+ display: flex;
50
+ align-items: center;
51
+ box-sizing: border-box;
52
+ padding: 0 24px;
53
+ }
54
+ .back-btn, .share-btn {
55
+ width: 80px;
56
+ height: 80px;
57
+ display: flex;
58
+ align-items: center;
59
+ justify-content: center;
60
+ }
61
+ .back-btn svg, .share-btn svg { width: 64px; height: 64px; fill: #ffffff; }
62
+ .page-title {
63
+ font-size: 46px;
64
+ font-weight: 700;
65
+ margin-left: 12px;
66
+ color: #ffffff;
67
+ white-space: nowrap;
68
+ overflow: hidden;
69
+ text-overflow: ellipsis;
70
+ }
71
+ .share-btn { margin-left: auto; }
72
+
73
+ /* Tabs */
74
+ .tabs {
75
+ position: absolute;
76
+ top: 230px;
77
+ left: 0;
78
+ width: 1080px;
79
+ height: 100px;
80
+ background: #252525;
81
+ display: flex;
82
+ align-items: flex-end;
83
+ padding: 0 40px;
84
+ box-sizing: border-box;
85
+ gap: 60px;
86
+ }
87
+ .tab {
88
+ color: #bdbdbd;
89
+ font-weight: 700;
90
+ font-size: 34px;
91
+ padding-bottom: 26px;
92
+ }
93
+ .tab.active {
94
+ color: #ffffff;
95
+ border-bottom: 6px solid #e53935;
96
+ }
97
+
98
+ /* Hero section */
99
+ .hero {
100
+ position: absolute;
101
+ top: 330px;
102
+ left: 0;
103
+ width: 1080px;
104
+ height: 680px;
105
+ background: linear-gradient(135deg, #1faa59 0%, #2eb872 100%);
106
+ overflow: hidden;
107
+ }
108
+ /* simple geometric overlays to hint the polygon background */
109
+ .geo {
110
+ position: absolute;
111
+ background: rgba(255,255,255,0.08);
112
+ transform: rotate(35deg);
113
+ filter: blur(0.2px);
114
+ }
115
+ .geo.g1 { width: 500px; height: 500px; left: -120px; top: 80px; }
116
+ .geo.g2 { width: 420px; height: 420px; right: -80px; top: 160px; transform: rotate(-20deg); background: rgba(255,255,255,0.06); }
117
+ .geo.g3 { width: 360px; height: 360px; left: 320px; bottom: -60px; background: rgba(255,255,255,0.05); transform: rotate(22deg); }
118
+
119
+ .cover-and-info {
120
+ position: absolute;
121
+ top: 40px;
122
+ left: 160px;
123
+ display: flex;
124
+ gap: 60px;
125
+ align-items: center;
126
+ }
127
+ .book-cover {
128
+ width: 420px;
129
+ height: 600px;
130
+ background: #E0E0E0;
131
+ border: 1px solid #BDBDBD;
132
+ display: flex;
133
+ align-items: center;
134
+ justify-content: center;
135
+ color: #757575;
136
+ font-size: 30px;
137
+ text-align: center;
138
+ box-shadow: 0 10px 20px rgba(0,0,0,0.25);
139
+ }
140
+ .hero-text {
141
+ color: #ffffff;
142
+ }
143
+ .hero-title {
144
+ font-size: 58px;
145
+ font-weight: 700;
146
+ margin-bottom: 16px;
147
+ text-shadow: 0 2px 4px rgba(0,0,0,0.3);
148
+ }
149
+ .hero-author {
150
+ font-size: 36px;
151
+ color: rgba(255,255,255,0.85);
152
+ margin-bottom: 28px;
153
+ }
154
+ .rating {
155
+ font-size: 42px;
156
+ color: #ffffff;
157
+ display: flex;
158
+ align-items: center;
159
+ gap: 12px;
160
+ }
161
+ .rating .stars {
162
+ letter-spacing: 6px;
163
+ }
164
+ .rating .count {
165
+ color: rgba(255,255,255,0.9);
166
+ font-size: 34px;
167
+ }
168
+
169
+ /* Action buttons */
170
+ .actions {
171
+ position: absolute;
172
+ top: 1040px;
173
+ left: 0;
174
+ width: 1080px;
175
+ padding: 0 24px;
176
+ box-sizing: border-box;
177
+ }
178
+ .primary-btn {
179
+ width: 1032px;
180
+ height: 120px;
181
+ background: #c11919;
182
+ color: #ffffff;
183
+ font-weight: 800;
184
+ font-size: 44px;
185
+ letter-spacing: 3px;
186
+ border: none;
187
+ border-radius: 6px;
188
+ display: flex;
189
+ align-items: center;
190
+ justify-content: center;
191
+ box-shadow: inset 0 -2px 0 rgba(0,0,0,0.3);
192
+ }
193
+ .outline-btn {
194
+ margin-top: 26px;
195
+ width: 1032px;
196
+ height: 120px;
197
+ border: 2px solid #757575;
198
+ background: #1f1f1f;
199
+ color: #ffffff;
200
+ border-radius: 6px;
201
+ display: flex;
202
+ align-items: center;
203
+ padding: 0 34px;
204
+ box-sizing: border-box;
205
+ gap: 24px;
206
+ font-size: 40px;
207
+ font-weight: 700;
208
+ }
209
+ .outline-btn svg { width: 48px; height: 48px; stroke: #ffffff; fill: none; stroke-width: 5px; }
210
+
211
+ /* Synopsis section */
212
+ .synopsis {
213
+ position: absolute;
214
+ top: 1320px;
215
+ left: 0;
216
+ width: 1080px;
217
+ padding: 40px 36px 140px 36px;
218
+ box-sizing: border-box;
219
+ background: #212121;
220
+ }
221
+ .synopsis h3 {
222
+ margin: 0 0 28px 0;
223
+ font-size: 44px;
224
+ color: #ffffff;
225
+ }
226
+ .synopsis p {
227
+ margin: 0 0 26px 0;
228
+ font-size: 36px;
229
+ line-height: 1.55;
230
+ color: #bdbdbd;
231
+ }
232
+ .read-more {
233
+ position: absolute;
234
+ bottom: 40px;
235
+ left: 0;
236
+ width: 1080px;
237
+ text-align: center;
238
+ color: #e53935;
239
+ font-size: 40px;
240
+ font-weight: 800;
241
+ letter-spacing: 2px;
242
+ }
243
+
244
+ /* Bottom gesture bar (visual hint) */
245
+ .gesture-bar {
246
+ position: absolute;
247
+ bottom: 20px;
248
+ left: 50%;
249
+ transform: translateX(-50%);
250
+ width: 360px;
251
+ height: 12px;
252
+ background: #9e9e9e;
253
+ border-radius: 6px;
254
+ opacity: 0.5;
255
+ }
256
+ </style>
257
+ </head>
258
+ <body>
259
+ <div id="render-target">
260
+
261
+ <!-- Status Bar -->
262
+ <div class="status-bar">
263
+ <div>11:06</div>
264
+ <div class="status-icons">
265
+ <div class="status-icon">
266
+ <!-- simple Do Not Disturb circle -->
267
+ <svg viewBox="0 0 24 24"><path d="M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20zm-6 10h12v2H6v-2z"/></svg>
268
+ </div>
269
+ <div class="status-icon">
270
+ <!-- mail icon -->
271
+ <svg viewBox="0 0 24 24"><path d="M2 5h20v14H2V5zm2 2v2l8 5 8-5V7l-8 5-8-5z"/></svg>
272
+ </div>
273
+ <div class="status-icon">
274
+ <!-- device icon -->
275
+ <svg viewBox="0 0 24 24"><path d="M6 3h12a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2zm0 2v14h12V5H6z"/></svg>
276
+ </div>
277
+ <div class="status-icon">
278
+ <!-- wifi icon -->
279
+ <svg viewBox="0 0 24 24"><path d="M12 18l2 2-2 2-2-2 2-2zm-6-6a12 12 0 0 1 12 0l-2 2a8 8 0 0 0-8 0l-2-2zm-4-4a16 16 0 0 1 20 0l-2 2a12 12 0 0 0-16 0L2 8z"/></svg>
280
+ </div>
281
+ <div class="status-icon">
282
+ <!-- battery icon -->
283
+ <svg viewBox="0 0 24 24"><path d="M2 8h18v8H2V8zm20 3v2h-1v-2h1z"/></svg>
284
+ </div>
285
+ </div>
286
+ </div>
287
+
288
+ <!-- Title Bar -->
289
+ <div class="title-bar">
290
+ <div class="back-btn">
291
+ <svg viewBox="0 0 24 24"><path d="M15 6L9 12l6 6" stroke="#ffffff" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>
292
+ </div>
293
+ <div class="page-title">The War of the Worlds - H.G....</div>
294
+ <div class="share-btn">
295
+ <svg viewBox="0 0 24 24"><path d="M18 16a3 3 0 0 0-2.53 1.41L8.91 13.7a3.02 3.02 0 0 0 0-3.4l6.56-3.71A3 3 0 1 0 15 5a3 3 0 0 0 .09.7L8.53 9.41a3 3 0 1 0 0 5.18l6.56 3.71A3 3 0 1 0 18 16z"/></svg>
296
+ </div>
297
+ </div>
298
+
299
+ <!-- Tabs -->
300
+ <div class="tabs">
301
+ <div class="tab active">ITEM DETAILS</div>
302
+ <div class="tab">CONTENTS</div>
303
+ <div class="tab">ANNOTATIONS</div>
304
+ </div>
305
+
306
+ <!-- Hero Section -->
307
+ <div class="hero">
308
+ <div class="geo g1"></div>
309
+ <div class="geo g2"></div>
310
+ <div class="geo g3"></div>
311
+
312
+ <div class="cover-and-info">
313
+ <div class="book-cover">[IMG: Book Cover - The War of the Worlds]</div>
314
+ <div class="hero-text">
315
+ <div class="hero-title">The War of the Worlds - H.G. Wells</div>
316
+ <div class="hero-author">by H.G. Wells</div>
317
+ <div class="rating">
318
+ <div class="stars">★ ★ ★ ★ ☆</div>
319
+ <div class="count">(3)</div>
320
+ </div>
321
+ </div>
322
+ </div>
323
+ </div>
324
+
325
+ <!-- Actions -->
326
+ <div class="actions">
327
+ <div class="primary-btn">Read</div>
328
+ <div class="outline-btn">
329
+ <svg viewBox="0 0 24 24"><path d="M12 21s-6.5-4.35-9-7.35C1 11 3 7.5 6.5 7.5c2 0 3.3 1.2 3.9 2.1.6-.9 1.9-2.1 3.9-2.1C18 7.5 20 11 21 13.65 18.5 16.65 12 21 12 21z"/></svg>
330
+ <div>Add to Wishlist</div>
331
+ </div>
332
+ </div>
333
+
334
+ <!-- Synopsis -->
335
+ <div class="synopsis">
336
+ <h3>Synopsis:</h3>
337
+ <p>The War of the Worlds (1898), by H. G. Wells, is an early science fiction novel which describes an invasion of England by aliens from Mars. It is one of the earliest and best-known depictions of an alien invasion of Earth, and has influenced many others.</p>
338
+ <p>In this edition, readers explore the tense atmosphere of human survival against advanced extraterrestrial forces, witnessing societal collapse and resilience through gripping narrative and stark imagery.</p>
339
+ <div class="read-more">READ MORE</div>
340
+ </div>
341
+
342
+ <!-- bottom gesture bar -->
343
+ <div class="gesture-bar"></div>
344
+
345
+ </div>
346
+ </body>
347
+ </html>
code/7341/7341_2.html ADDED
@@ -0,0 +1,244 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Document Viewer UI</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; }
9
+ #render-target {
10
+ width: 1080px;
11
+ height: 2400px;
12
+ position: relative;
13
+ overflow: hidden;
14
+ background: #ffffff;
15
+ font-family: Arial, Helvetica, sans-serif;
16
+ color: #212121;
17
+ }
18
+
19
+ /* Top status bar */
20
+ .status-bar {
21
+ height: 100px;
22
+ background: #000;
23
+ color: #fff;
24
+ display: flex;
25
+ align-items: center;
26
+ padding: 0 36px;
27
+ box-sizing: border-box;
28
+ font-size: 36px;
29
+ letter-spacing: 0.5px;
30
+ }
31
+ .status-time { font-weight: 600; }
32
+ .status-icons {
33
+ margin-left: auto;
34
+ display: flex;
35
+ gap: 28px;
36
+ align-items: center;
37
+ }
38
+ .status-icons svg { width: 44px; height: 44px; fill: none; stroke: #fff; stroke-width: 2.5; }
39
+
40
+ /* App toolbar */
41
+ .app-bar {
42
+ height: 120px;
43
+ background: #424242;
44
+ display: flex;
45
+ align-items: center;
46
+ padding: 0 24px;
47
+ box-sizing: border-box;
48
+ }
49
+ .app-left,
50
+ .app-right {
51
+ display: flex;
52
+ align-items: center;
53
+ }
54
+ .app-left { gap: 16px; }
55
+ .app-right { margin-left: auto; gap: 36px; }
56
+ .app-bar svg { width: 56px; height: 56px; fill: none; stroke: #fff; stroke-width: 3; }
57
+
58
+ /* Content area */
59
+ .content {
60
+ position: absolute;
61
+ top: 220px; /* status + app bar */
62
+ left: 0;
63
+ right: 0;
64
+ bottom: 280px; /* bottom tool + home area */
65
+ overflow: hidden;
66
+ background: #ffffff;
67
+ }
68
+
69
+ /* Simulated page with margins */
70
+ .page {
71
+ position: absolute;
72
+ top: 36px;
73
+ left: 0;
74
+ right: 0;
75
+ bottom: 160px; /* make space for page info strip */
76
+ background: #fff;
77
+ }
78
+
79
+ .cover-wrap {
80
+ width: 960px;
81
+ height: 1480px;
82
+ margin: 36px auto 0 auto;
83
+ background: #E0E0E0;
84
+ border: 1px solid #BDBDBD;
85
+ display: flex;
86
+ align-items: center;
87
+ justify-content: center;
88
+ color: #757575;
89
+ text-align: center;
90
+ padding: 20px;
91
+ box-sizing: border-box;
92
+ font-size: 40px;
93
+ line-height: 1.3;
94
+ }
95
+
96
+ .page-info {
97
+ position: absolute;
98
+ left: 0;
99
+ right: 0;
100
+ bottom: 0;
101
+ height: 120px;
102
+ background: #E9E9E9;
103
+ color: #7a7a7a;
104
+ display: flex;
105
+ align-items: center;
106
+ justify-content: center;
107
+ font-size: 38px;
108
+ }
109
+
110
+ /* Bottom toolbar */
111
+ .bottom-toolbar {
112
+ position: absolute;
113
+ left: 0; right: 0;
114
+ bottom: 100px; /* above home area */
115
+ height: 160px;
116
+ background: #444444;
117
+ display: flex;
118
+ align-items: center;
119
+ justify-content: space-around;
120
+ color: #fff;
121
+ }
122
+ .bottom-item {
123
+ display: flex; flex-direction: column; align-items: center; gap: 12px;
124
+ color: #fff;
125
+ font-size: 44px;
126
+ }
127
+ .bottom-item svg { width: 60px; height: 60px; stroke: #fff; fill: none; stroke-width: 3.5; }
128
+
129
+ /* Home indicator area */
130
+ .home-area {
131
+ position: absolute;
132
+ left: 0; right: 0; bottom: 0;
133
+ height: 100px;
134
+ background: #000;
135
+ display: flex;
136
+ align-items: center;
137
+ justify-content: center;
138
+ }
139
+ .home-indicator {
140
+ width: 300px; height: 12px; background: #ffffff; border-radius: 8px;
141
+ opacity: 0.9;
142
+ }
143
+ </style>
144
+ </head>
145
+ <body>
146
+ <div id="render-target">
147
+
148
+ <!-- Android-like status bar -->
149
+ <div class="status-bar">
150
+ <div class="status-time">11:08</div>
151
+ <div class="status-icons">
152
+ <!-- Do Not Disturb bell (simple) -->
153
+ <svg viewBox="0 0 24 24">
154
+ <path d="M12 3c-3 0-5 2-5 5v4l-2 3h14l-2-3V8c0-3-2-5-5-5z"/>
155
+ <path d="M9 19c1.2 1.5 4.8 1.5 6 0" />
156
+ </svg>
157
+ <!-- Mail icon -->
158
+ <svg viewBox="0 0 24 24">
159
+ <path d="M3 5h18v14H3z"/>
160
+ <path d="M3 7l9 6 9-6"/>
161
+ </svg>
162
+ <!-- Signal -->
163
+ <svg viewBox="0 0 24 24">
164
+ <path d="M3 21h2v-4H3zM8 21h2v-7H8zM13 21h2v-10h-2zM18 21h2V7h-2z" />
165
+ </svg>
166
+ <!-- Wi-Fi -->
167
+ <svg viewBox="0 0 24 24">
168
+ <path d="M2 9c5-4 15-4 20 0"/>
169
+ <path d="M5 12c3.5-3 10.5-3 14 0"/>
170
+ <path d="M8 15c2-2 6-2 8 0"/>
171
+ <circle cx="12" cy="18" r="1.5" fill="#fff" stroke="none"/>
172
+ </svg>
173
+ <!-- Battery -->
174
+ <svg viewBox="0 0 28 24">
175
+ <rect x="2" y="5" width="20" height="14" rx="2"/>
176
+ <rect x="22" y="9" width="4" height="6" rx="1"/>
177
+ <rect x="4" y="7" width="14" height="10" fill="#fff" stroke="none"/>
178
+ </svg>
179
+ </div>
180
+ </div>
181
+
182
+ <!-- App toolbar -->
183
+ <div class="app-bar">
184
+ <div class="app-left">
185
+ <!-- Back arrow -->
186
+ <svg viewBox="0 0 24 24">
187
+ <path d="M15 4L7 12l8 8"/>
188
+ </svg>
189
+ </div>
190
+ <div class="app-right">
191
+ <!-- List icon -->
192
+ <svg viewBox="0 0 24 24">
193
+ <path d="M4 6h16M4 12h16M4 18h16"/>
194
+ </svg>
195
+ <!-- Search -->
196
+ <svg viewBox="0 0 24 24">
197
+ <circle cx="11" cy="11" r="6"/>
198
+ <path d="M20 20l-4-4"/>
199
+ </svg>
200
+ <!-- Overflow (vertical dots) -->
201
+ <svg viewBox="0 0 24 24">
202
+ <circle cx="12" cy="5" r="2" fill="#fff" stroke="none"/>
203
+ <circle cx="12" cy="12" r="2" fill="#fff" stroke="none"/>
204
+ <circle cx="12" cy="19" r="2" fill="#fff" stroke="none"/>
205
+ </svg>
206
+ </div>
207
+ </div>
208
+
209
+ <!-- Content -->
210
+ <div class="content">
211
+ <div class="page">
212
+ <div class="cover-wrap">[IMG: Book cover – "The War of the Worlds" by H. G. Wells]</div>
213
+ </div>
214
+ <div class="page-info">Page 1 of 1</div>
215
+ </div>
216
+
217
+ <!-- Bottom toolbar -->
218
+ <div class="bottom-toolbar">
219
+ <div class="bottom-item" title="Previous">
220
+ <svg viewBox="0 0 24 24"><path d="M15 4L7 12l8 8"/></svg>
221
+ </div>
222
+ <div class="bottom-item" title="Text options">Aa</div>
223
+ <div class="bottom-item" title="Brightness">
224
+ <svg viewBox="0 0 24 24">
225
+ <circle cx="12" cy="12" r="4"/>
226
+ <path d="M12 2v3M12 19v3M2 12h3M19 12h3M4.6 4.6l2.2 2.2M17.2 17.2l2.2 2.2M19.4 4.6l-2.2 2.2M6.8 17.2L4.6 19.4"/>
227
+ </svg>
228
+ </div>
229
+ <div class="bottom-item" title="Tools">
230
+ <svg viewBox="0 0 24 24">
231
+ <path d="M14 7l3-3 3 3-3 3z"/>
232
+ <path d="M3 21l9-9 3 3-9 9H3z"/>
233
+ </svg>
234
+ </div>
235
+ </div>
236
+
237
+ <!-- Home indicator -->
238
+ <div class="home-area">
239
+ <div class="home-indicator"></div>
240
+ </div>
241
+
242
+ </div>
243
+ </body>
244
+ </html>
code/7341/7341_3.html ADDED
@@ -0,0 +1,72 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Book Page</title>
7
+ <style>
8
+ body {
9
+ margin: 0;
10
+ padding: 0;
11
+ background: transparent;
12
+ }
13
+ #render-target {
14
+ width: 1080px;
15
+ height: 2400px;
16
+ position: relative;
17
+ overflow: hidden;
18
+ background: #FFFFFF;
19
+ }
20
+ /* Top black status bar */
21
+ .status-bar {
22
+ position: absolute;
23
+ top: 0;
24
+ left: 0;
25
+ width: 1080px;
26
+ height: 140px;
27
+ background: #000000;
28
+ }
29
+ /* Title section */
30
+ .title {
31
+ position: absolute;
32
+ top: 280px;
33
+ left: 0;
34
+ width: 100%;
35
+ text-align: center;
36
+ color: #111111;
37
+ font-family: Georgia, "Times New Roman", serif;
38
+ line-height: 1.3;
39
+ }
40
+ .title .author {
41
+ font-size: 64px;
42
+ font-weight: 400;
43
+ margin-bottom: 20px;
44
+ }
45
+ .title .book {
46
+ font-size: 58px;
47
+ font-weight: 400;
48
+ }
49
+ /* Page indicator */
50
+ .page-indicator {
51
+ position: absolute;
52
+ right: 60px;
53
+ bottom: 80px;
54
+ font-family: Arial, Helvetica, sans-serif;
55
+ font-size: 34px;
56
+ color: #7A7A7A;
57
+ }
58
+ </style>
59
+ </head>
60
+ <body>
61
+ <div id="render-target">
62
+ <div class="status-bar"></div>
63
+
64
+ <div class="title">
65
+ <div class="author">H.G. Wells</div>
66
+ <div class="book">The War of the Worlds</div>
67
+ </div>
68
+
69
+ <div class="page-indicator">1 of 1</div>
70
+ </div>
71
+ </body>
72
+ </html>
code/7341/7341_4.html ADDED
@@ -0,0 +1,73 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>UI Render</title>
7
+ <style>
8
+ body {
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
+ }
20
+ /* Top black bar */
21
+ .status-bar {
22
+ position: absolute;
23
+ top: 0;
24
+ left: 0;
25
+ width: 1080px;
26
+ height: 140px;
27
+ background: #000000;
28
+ }
29
+ /* Title section */
30
+ .title {
31
+ position: absolute;
32
+ top: 360px; /* creates generous white space below the black bar */
33
+ left: 0;
34
+ width: 100%;
35
+ text-align: center;
36
+ color: #111111;
37
+ font-family: Georgia, "Times New Roman", serif;
38
+ font-weight: 700;
39
+ }
40
+ .title .line1 {
41
+ font-size: 110px;
42
+ margin-bottom: 40px;
43
+ }
44
+ .title .line2,
45
+ .title .line3 {
46
+ font-size: 120px;
47
+ line-height: 1.1;
48
+ }
49
+ /* Page indicator */
50
+ .page-indicator {
51
+ position: absolute;
52
+ right: 60px;
53
+ bottom: 80px;
54
+ color: #7A7A7A;
55
+ font-family: Arial, Helvetica, sans-serif;
56
+ font-size: 38px;
57
+ }
58
+ </style>
59
+ </head>
60
+ <body>
61
+ <div id="render-target">
62
+ <div class="status-bar"></div>
63
+
64
+ <div class="title">
65
+ <div class="line1">Part 1</div>
66
+ <div class="line2">The Coming of the</div>
67
+ <div class="line3">Martians</div>
68
+ </div>
69
+
70
+ <div class="page-indicator">1 of 1</div>
71
+ </div>
72
+ </body>
73
+ </html>
code/7341/7341_5.html ADDED
@@ -0,0 +1,108 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Reader - Chapter Page</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; }
9
+ #render-target {
10
+ width: 1080px;
11
+ height: 2400px;
12
+ position: relative;
13
+ overflow: hidden;
14
+ background: #ffffff;
15
+ }
16
+
17
+ /* Top black bar */
18
+ .topbar {
19
+ position: absolute;
20
+ top: 0;
21
+ left: 0;
22
+ width: 1080px;
23
+ height: 140px;
24
+ background: #000000;
25
+ }
26
+
27
+ /* Page content */
28
+ .page {
29
+ position: absolute;
30
+ top: 140px;
31
+ left: 0;
32
+ right: 0;
33
+ padding: 40px 80px 160px;
34
+ box-sizing: border-box;
35
+ font-family: Georgia, "Times New Roman", serif;
36
+ color: #111;
37
+ }
38
+
39
+ .chapter-box {
40
+ border: 3px solid #222;
41
+ padding: 16px 24px 10px;
42
+ margin-bottom: 24px;
43
+ }
44
+ .chapter-box .chapter-word {
45
+ font-size: 140px;
46
+ line-height: 1;
47
+ font-weight: 400;
48
+ margin: 0;
49
+ }
50
+
51
+ .chapter-title {
52
+ font-size: 88px;
53
+ font-weight: 700;
54
+ margin: 16px 0 24px;
55
+ }
56
+ .chapter-title .sup-num {
57
+ font-size: 36px;
58
+ font-weight: 700;
59
+ vertical-align: top;
60
+ position: relative;
61
+ top: -22px;
62
+ margin-right: 12px;
63
+ }
64
+
65
+ .text p {
66
+ font-size: 46px;
67
+ line-height: 1.5;
68
+ margin: 0 0 38px 0;
69
+ letter-spacing: 0.2px;
70
+ }
71
+
72
+ /* Footer page indicator */
73
+ .page-indicator {
74
+ position: absolute;
75
+ bottom: 40px;
76
+ right: 60px;
77
+ font-family: Georgia, "Times New Roman", serif;
78
+ font-size: 38px;
79
+ color: #555;
80
+ }
81
+ </style>
82
+ </head>
83
+ <body>
84
+ <div id="render-target">
85
+ <div class="topbar"></div>
86
+
87
+ <div class="page">
88
+ <div class="chapter-box">
89
+ <div class="chapter-word">Chapter</div>
90
+ </div>
91
+
92
+ <div class="chapter-title"><span class="sup-num">1</span>The Eve of the War</div>
93
+
94
+ <div class="text">
95
+ <p>No one would have believed in the last years of the nineteenth century that this world was being watched keenly and closely by intelligences greater than man's and yet as mortal as his own; that as men busied themselves about their various concerns they were scrutinised and studied, perhaps almost as narrowly as a man with a microscope might scrutinise the transient creatures that swarm and multiply in a drop of water.</p>
96
+
97
+ <p>With infinite complacency men went to and fro over this globe about their little affairs, serene in their assurance of their empire over matter. It is possible that the infusoria under the microscope do the same. No one gave a thought to the older worlds of space as sources of human danger, or thought of them only to dismiss the idea of life upon them as impossible or improbable.</p>
98
+
99
+ <p>It is curious to recall some of the mental habits of those departed days. At most terrestrial men fancied there might be other men upon Mars, perhaps inferior to themselves and ready to welcome a missionary enterprise. Yet across the gulf of space, minds that are to our minds as ours are to those of the beasts that perish, intellects vast and cool and unsympathetic, regarded this earth with envious eyes, and slowly and surely drew their plans against us.</p>
100
+
101
+ <p>And early in the twentieth century came the great disillusionment. The planet Mars, I scarcely need remind the reader, revolves about the sun at a mean distance of 140,000,000 miles, and the light and heat it receives from the sun is barely half of that received by this world.</p>
102
+ </div>
103
+ </div>
104
+
105
+ <div class="page-indicator">1 of 8</div>
106
+ </div>
107
+ </body>
108
+ </html>
code/7342/7342_1.html ADDED
@@ -0,0 +1,350 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Tasks 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: #222;
13
+ }
14
+
15
+ /* Top blue area */
16
+ .top-area { background: #4ea3ff; color: #fff; }
17
+ .status-row {
18
+ height: 80px;
19
+ padding: 0 32px;
20
+ display: flex;
21
+ align-items: center;
22
+ justify-content: space-between;
23
+ font-size: 34px;
24
+ opacity: 0.95;
25
+ }
26
+ .status-icons { display: flex; align-items: center; gap: 24px; }
27
+ .status-icons svg { width: 40px; height: 40px; fill: #fff; }
28
+
29
+ .appbar {
30
+ height: 140px;
31
+ padding: 0 28px;
32
+ display: flex;
33
+ align-items: center;
34
+ gap: 24px;
35
+ }
36
+ .appbar .title {
37
+ font-size: 64px;
38
+ font-weight: 700;
39
+ flex: 1;
40
+ }
41
+ .appbar .actions { display: flex; align-items: center; gap: 28px; }
42
+ .icon-btn {
43
+ width: 72px; height: 72px;
44
+ display: grid; place-items: center;
45
+ }
46
+ .icon-btn svg { width: 60px; height: 60px; stroke: #fff; fill: none; stroke-width: 4; }
47
+
48
+ /* Notification banner */
49
+ .notice {
50
+ background: #2b2b2b;
51
+ color: #ff6b6b;
52
+ display: flex;
53
+ align-items: center;
54
+ padding: 26px 28px;
55
+ font-size: 36px;
56
+ gap: 18px;
57
+ border-bottom: 1px solid #3a3a3a;
58
+ }
59
+ .notice .enable-btn {
60
+ margin-left: auto;
61
+ background: #4ea3ff;
62
+ color: #fff;
63
+ border: none;
64
+ border-radius: 12px;
65
+ padding: 20px 28px;
66
+ font-size: 36px;
67
+ }
68
+ .notice .alert {
69
+ width: 44px; height: 44px; border-radius: 22px;
70
+ background: #ff6b6b; color: #fff; display: grid; place-items: center;
71
+ font-weight: 700;
72
+ }
73
+
74
+ /* Section header strips */
75
+ .section {
76
+ font-size: 44px; font-weight: 700;
77
+ padding: 24px 28px;
78
+ }
79
+ .section.blue { background: #58a9ff; color: #fff; }
80
+ .section.green { background: #a7d238; color: #1a1a1a; }
81
+
82
+ /* Cards */
83
+ .card {
84
+ background: #333;
85
+ color: #fff;
86
+ padding: 28px;
87
+ position: relative;
88
+ border-bottom: 1px solid #444;
89
+ }
90
+ .card .title { font-size: 56px; font-weight: 700; margin-bottom: 22px; }
91
+ .meta-row { display: flex; align-items: center; gap: 26px; font-size: 36px; color: #dcdcdc; margin: 8px 0; }
92
+ .meta { display: flex; align-items: center; gap: 14px; }
93
+ .meta svg { width: 36px; height: 36px; stroke: #dcdcdc; fill: none; stroke-width: 4; }
94
+ .card .desc { font-size: 42px; color: #eaeaea; margin-top: 22px; }
95
+ .chevron {
96
+ position: absolute; right: 28px; top: 36px;
97
+ }
98
+ .chevron svg { width: 48px; height: 48px; stroke: #bfbfbf; fill: none; stroke-width: 6; }
99
+
100
+ /* Bottom action bar */
101
+ .action-bar {
102
+ background: #4ea3ff;
103
+ color: #fff;
104
+ display: flex;
105
+ justify-content: space-around;
106
+ align-items: center;
107
+ height: 120px;
108
+ font-size: 44px;
109
+ position: relative;
110
+ }
111
+
112
+ /* Ad / widget strip at bottom */
113
+ .ad-strip {
114
+ position: absolute;
115
+ left: 0; right: 0; bottom: 120px;
116
+ background: #fff;
117
+ height: 200px;
118
+ border-top: 1px solid #ddd;
119
+ display: flex; align-items: center;
120
+ padding: 24px 28px;
121
+ gap: 28px;
122
+ }
123
+ .ad-icon {
124
+ width: 140px; height: 140px;
125
+ background: #E0E0E0; border: 1px solid #BDBDBD;
126
+ border-radius: 24px;
127
+ display: grid; place-items: center;
128
+ color: #757575; font-size: 28px; text-align: center;
129
+ }
130
+ .ad-text { flex: 1; }
131
+ .ad-title { font-size: 44px; font-weight: 700; color: #3a3a3a; }
132
+ .ad-sub { font-size: 34px; color: #6a6a6a; margin-top: 8px; }
133
+ .ad-avatars { display: flex; align-items: center; gap: 22px; }
134
+ .avatar {
135
+ width: 110px; height: 110px; border-radius: 55px;
136
+ background: #E0E0E0; border: 1px solid #BDBDBD;
137
+ display: grid; place-items: center; color: #757575; font-size: 24px;
138
+ }
139
+ .avatar-label { font-size: 26px; color: #777; text-align: center; margin-top: 8px; }
140
+
141
+ /* Floating action button */
142
+ .fab {
143
+ position: absolute;
144
+ right: 48px;
145
+ bottom: 200px;
146
+ width: 150px; height: 150px;
147
+ background: #4ea3ff;
148
+ border-radius: 75px;
149
+ box-shadow: 0 10px 24px rgba(0,0,0,0.35);
150
+ display: grid; place-items: center;
151
+ }
152
+ .fab svg { width: 84px; height: 84px; stroke: #fff; fill: none; stroke-width: 6; }
153
+
154
+ /* Home indicator */
155
+ .home-indicator {
156
+ position: absolute; left: 50%; bottom: 34px; transform: translateX(-50%);
157
+ width: 640px; height: 12px; background: #bbb; border-radius: 6px;
158
+ opacity: 0.7;
159
+ }
160
+ </style>
161
+ </head>
162
+ <body>
163
+ <div id="render-target">
164
+
165
+ <!-- Top blue area -->
166
+ <div class="top-area">
167
+ <div class="status-row">
168
+ <div>8:28</div>
169
+ <div class="status-icons">
170
+ <!-- Simple WiFi icon -->
171
+ <svg viewBox="0 0 24 24">
172
+ <path d="M2 8c4-3 16-3 20 0M5 11c3-2 11-2 14 0M8 14c2-1 6-1 8 0M12 18l2 2-2 2-2-2z" stroke-linecap="round" stroke-linejoin="round"/>
173
+ </svg>
174
+ <!-- Battery icon -->
175
+ <svg viewBox="0 0 24 24">
176
+ <rect x="2" y="7" width="18" height="10" rx="2" />
177
+ <rect x="21" y="10" width="2" height="4" />
178
+ <rect x="4" y="9" width="10" height="6" fill="#fff" stroke="none"/>
179
+ </svg>
180
+ </div>
181
+ </div>
182
+ <div class="appbar">
183
+ <!-- Hamburger -->
184
+ <div class="icon-btn">
185
+ <svg viewBox="0 0 24 24">
186
+ <path d="M3 6h18M3 12h18M3 18h18" stroke-linecap="round"/>
187
+ </svg>
188
+ </div>
189
+ <div class="title">Tasks</div>
190
+ <div class="actions">
191
+ <!-- plus in circle (alarm style) -->
192
+ <div class="icon-btn">
193
+ <svg viewBox="0 0 24 24">
194
+ <circle cx="12" cy="12" r="9"/>
195
+ <path d="M12 8v8M8 12h8" stroke-linecap="round"/>
196
+ </svg>
197
+ </div>
198
+ <!-- check circle -->
199
+ <div class="icon-btn">
200
+ <svg viewBox="0 0 24 24">
201
+ <circle cx="12" cy="12" r="9"/>
202
+ <path d="M7 12l3 3 7-7" stroke-linecap="round" stroke-linejoin="round"/>
203
+ </svg>
204
+ </div>
205
+ <!-- search -->
206
+ <div class="icon-btn">
207
+ <svg viewBox="0 0 24 24">
208
+ <circle cx="11" cy="11" r="7"/>
209
+ <path d="M20 20l-4-4" stroke-linecap="round"/>
210
+ </svg>
211
+ </div>
212
+ </div>
213
+ </div>
214
+ </div>
215
+
216
+ <!-- Notification banner -->
217
+ <div class="notice">
218
+ <div class="alert">!</div>
219
+ <div>Please allow app to send you notification</div>
220
+ <button class="enable-btn">Enable</button>
221
+ </div>
222
+
223
+ <!-- Section: Next 7 days -->
224
+ <div class="section blue">Next 7 days</div>
225
+ <div class="card">
226
+ <div class="title">start gym</div>
227
+ <div class="meta-row">
228
+ <div class="meta">
229
+ <!-- clock -->
230
+ <svg viewBox="0 0 24 24">
231
+ <circle cx="12" cy="12" r="9"/>
232
+ <path d="M12 6v6l4 2" stroke-linecap="round" stroke-linejoin="round"/>
233
+ </svg>
234
+ <span>05:30 AM</span>
235
+ </div>
236
+ <div class="meta">
237
+ <!-- repeat -->
238
+ <svg viewBox="0 0 24 24">
239
+ <path d="M3 10h11l-2-2M21 14H10l2 2" stroke-linecap="round"/>
240
+ </svg>
241
+ <span>Once</span>
242
+ </div>
243
+ </div>
244
+ <div class="meta-row">
245
+ <div class="meta">
246
+ <!-- calendar -->
247
+ <svg viewBox="0 0 24 24">
248
+ <rect x="3" y="5" width="18" height="16" rx="2"/>
249
+ <path d="M3 9h18M8 3v4M16 3v4" stroke-linecap="round"/>
250
+ </svg>
251
+ <span>Thu, Jun 15, 2023</span>
252
+ </div>
253
+ </div>
254
+ <div class="chevron">
255
+ <svg viewBox="0 0 24 24">
256
+ <path d="M6 9l6 6 6-6" stroke-linecap="round" stroke-linejoin="round"/>
257
+ </svg>
258
+ </div>
259
+ </div>
260
+
261
+ <!-- Section: Upcoming -->
262
+ <div class="section green">Upcoming</div>
263
+ <div class="card">
264
+ <div class="title">Black day</div>
265
+ <div class="meta-row">
266
+ <div class="meta">
267
+ <svg viewBox="0 0 24 24">
268
+ <circle cx="12" cy="12" r="9"/>
269
+ <path d="M12 6v6l4 2" stroke-linecap="round" stroke-linejoin="round"/>
270
+ </svg>
271
+ <span>01:06 AM</span>
272
+ </div>
273
+ <div class="meta">
274
+ <svg viewBox="0 0 24 24">
275
+ <path d="M3 10h11l-2-2M21 14H10l2 2" stroke-linecap="round"/>
276
+ </svg>
277
+ <span>Once</span>
278
+ </div>
279
+ </div>
280
+ <div class="meta-row">
281
+ <div class="meta">
282
+ <svg viewBox="0 0 24 24">
283
+ <rect x="3" y="5" width="18" height="16" rx="2"/>
284
+ <path d="M3 9h18M8 3v4M16 3v4" stroke-linecap="round"/>
285
+ </svg>
286
+ <span>Fri, Aug 25, 2023</span>
287
+ </div>
288
+ </div>
289
+ <div class="meta-row">
290
+ <div class="meta">
291
+ <svg viewBox="0 0 24 24">
292
+ <circle cx="12" cy="12" r="9"/>
293
+ <path d="M12 6v6l4 2" stroke-linecap="round" stroke-linejoin="round"/>
294
+ </svg>
295
+ <span>01:08 AM</span>
296
+ </div>
297
+ </div>
298
+ <div class="desc">Worse day of life</div>
299
+ <div class="chevron" style="top: 28px;">
300
+ <svg viewBox="0 0 24 24">
301
+ <path d="M6 15l6-6 6 6" stroke-linecap="round" stroke-linejoin="round"/>
302
+ </svg>
303
+ </div>
304
+ </div>
305
+
306
+ <!-- Bottom action bar -->
307
+ <div class="action-bar">
308
+ <div>Complete</div>
309
+ <div>Edit</div>
310
+ <div>Share</div>
311
+ <div>Delete</div>
312
+ </div>
313
+
314
+ <!-- Bottom ad / widget strip -->
315
+ <div class="ad-strip">
316
+ <div class="ad-icon">[IMG: Phone Icon]</div>
317
+ <div class="ad-text">
318
+ <div class="ad-title">Speed Dial Widget</div>
319
+ <div class="ad-sub">Just tap & dial</div>
320
+ </div>
321
+ <div class="ad-avatars">
322
+ <div>
323
+ <div class="avatar">[IMG: Contact]</div>
324
+ <div class="avatar-label">Dad</div>
325
+ </div>
326
+ <div>
327
+ <div class="avatar">[IMG: Contact]</div>
328
+ <div class="avatar-label">Big B…</div>
329
+ </div>
330
+ <div>
331
+ <div class="avatar">[IMG: Contact]</div>
332
+ <div class="avatar-label">Mom</div>
333
+ </div>
334
+ </div>
335
+ </div>
336
+
337
+ <!-- Floating action button -->
338
+ <div class="fab">
339
+ <svg viewBox="0 0 24 24">
340
+ <circle cx="12" cy="12" r="9"/>
341
+ <path d="M12 8v8M8 12h8" stroke-linecap="round"/>
342
+ </svg>
343
+ </div>
344
+
345
+ <!-- Home indicator -->
346
+ <div class="home-indicator"></div>
347
+
348
+ </div>
349
+ </body>
350
+ </html>
code/7342/7342_2.html ADDED
@@ -0,0 +1,458 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Tasks 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: #0f1a2e;
13
+ color: #fff;
14
+ }
15
+
16
+ /* Top bars */
17
+ .status-bar {
18
+ position: absolute;
19
+ top: 0;
20
+ left: 0;
21
+ width: 1080px;
22
+ height: 120px;
23
+ background: #0b3c6f;
24
+ display: flex;
25
+ align-items: center;
26
+ padding: 0 40px;
27
+ box-sizing: border-box;
28
+ color: #cfe2ff;
29
+ letter-spacing: 0.5px;
30
+ font-weight: 600;
31
+ }
32
+ .status-bar .right-icons {
33
+ margin-left: auto;
34
+ display: flex;
35
+ gap: 28px;
36
+ align-items: center;
37
+ }
38
+
39
+ .app-bar {
40
+ position: absolute;
41
+ top: 120px;
42
+ left: 0;
43
+ width: 1080px;
44
+ height: 120px;
45
+ background: #134a87;
46
+ display: flex;
47
+ align-items: center;
48
+ padding: 0 36px;
49
+ box-sizing: border-box;
50
+ }
51
+ .app-title {
52
+ font-size: 56px;
53
+ font-weight: 700;
54
+ margin-left: 24px;
55
+ }
56
+ .app-actions {
57
+ margin-left: auto;
58
+ display: flex;
59
+ gap: 36px;
60
+ align-items: center;
61
+ }
62
+
63
+ /* Alert bar */
64
+ .alert-bar {
65
+ position: absolute;
66
+ top: 240px;
67
+ left: 0;
68
+ width: 1080px;
69
+ background: #2a2a2a;
70
+ padding: 24px 36px;
71
+ box-sizing: border-box;
72
+ display: flex;
73
+ align-items: center;
74
+ gap: 20px;
75
+ box-shadow: inset 0 -2px 0 rgba(255,255,255,0.05);
76
+ }
77
+ .alert-bar .badge {
78
+ width: 40px;
79
+ height: 40px;
80
+ min-width: 40px;
81
+ border-radius: 50%;
82
+ background: #c62828;
83
+ display: inline-flex;
84
+ align-items: center;
85
+ justify-content: center;
86
+ color: #fff;
87
+ font-weight: 900;
88
+ }
89
+ .alert-text {
90
+ font-size: 38px;
91
+ color: #ff6e6e;
92
+ flex: 1;
93
+ }
94
+ .alert-btn {
95
+ background: #264660;
96
+ color: #a8d1ff;
97
+ border: 2px solid #3b78b8;
98
+ padding: 18px 28px;
99
+ border-radius: 10px;
100
+ font-size: 38px;
101
+ }
102
+
103
+ /* Section header */
104
+ .section-header {
105
+ position: absolute;
106
+ top: 340px;
107
+ left: 0;
108
+ width: 1080px;
109
+ background: #1a5a96;
110
+ padding: 26px 30px;
111
+ box-sizing: border-box;
112
+ font-size: 42px;
113
+ font-weight: 700;
114
+ }
115
+
116
+ /* Task card */
117
+ .task-card {
118
+ position: absolute;
119
+ top: 430px;
120
+ left: 0;
121
+ width: 1080px;
122
+ background: #0f0f12;
123
+ padding: 36px;
124
+ box-sizing: border-box;
125
+ border-top: 1px solid #1e1e22;
126
+ border-bottom: 1px solid #1e1e22;
127
+ }
128
+ .task-header {
129
+ display: flex;
130
+ align-items: center;
131
+ }
132
+ .task-title {
133
+ font-size: 54px;
134
+ font-weight: 700;
135
+ flex: 1;
136
+ }
137
+ .chevron {
138
+ width: 52px;
139
+ height: 52px;
140
+ opacity: 0.6;
141
+ }
142
+ .task-meta {
143
+ display: flex;
144
+ gap: 34px;
145
+ margin-top: 26px;
146
+ align-items: center;
147
+ font-size: 34px;
148
+ color: #c7c7c7;
149
+ }
150
+ .meta-item {
151
+ display: inline-flex;
152
+ gap: 12px;
153
+ align-items: center;
154
+ }
155
+ .calendar-row {
156
+ margin-top: 20px;
157
+ display: inline-flex;
158
+ gap: 16px;
159
+ align-items: center;
160
+ font-size: 34px;
161
+ color: #bdbdbd;
162
+ }
163
+
164
+ /* Overlay & modal */
165
+ .overlay {
166
+ position: absolute;
167
+ left: 0;
168
+ top: 0;
169
+ width: 1080px;
170
+ height: 2400px;
171
+ background: rgba(0,0,0,0.5);
172
+ }
173
+ .modal {
174
+ position: absolute;
175
+ left: 36px;
176
+ top: 640px;
177
+ width: 1008px;
178
+ background: #2c2c2f;
179
+ border-radius: 12px;
180
+ box-shadow: 0 20px 40px rgba(0,0,0,0.5);
181
+ overflow: hidden;
182
+ }
183
+ .modal-header {
184
+ background: #348be6;
185
+ height: 120px;
186
+ display: flex;
187
+ align-items: center;
188
+ padding: 0 26px;
189
+ box-sizing: border-box;
190
+ }
191
+ .modal-title {
192
+ font-size: 52px;
193
+ font-weight: 700;
194
+ margin-left: 20px;
195
+ }
196
+ .modal-save {
197
+ margin-left: auto;
198
+ background: #1d5fb6;
199
+ color: #e6f2ff;
200
+ border: none;
201
+ font-size: 42px;
202
+ padding: 14px 24px;
203
+ border-radius: 10px;
204
+ }
205
+ .modal-body {
206
+ padding: 24px 26px 40px 26px;
207
+ box-sizing: border-box;
208
+ }
209
+ .modal-row {
210
+ background: #3a3a3e;
211
+ padding: 30px 22px;
212
+ border-radius: 8px;
213
+ margin-bottom: 22px;
214
+ display: flex;
215
+ align-items: center;
216
+ gap: 18px;
217
+ font-size: 44px;
218
+ }
219
+ .modal-row .label {
220
+ flex: 1;
221
+ }
222
+ .modal-row .trailing {
223
+ opacity: 0.8;
224
+ }
225
+ .date-row, .time-row, .simple-row {
226
+ background: #2f2f33;
227
+ }
228
+ .chip {
229
+ margin-top: 20px;
230
+ display: inline-flex;
231
+ align-items: center;
232
+ gap: 18px;
233
+ background: #2b66bf;
234
+ color: #e9f2ff;
235
+ padding: 10px 18px;
236
+ border-radius: 36px;
237
+ font-size: 36px;
238
+ }
239
+ .link {
240
+ color: #69a8ff;
241
+ font-size: 38px;
242
+ margin-left: auto;
243
+ }
244
+
245
+ /* Bottom content */
246
+ .fab {
247
+ position: absolute;
248
+ right: 40px;
249
+ bottom: 260px;
250
+ width: 150px;
251
+ height: 150px;
252
+ border-radius: 50%;
253
+ background: #2b7bd8;
254
+ display: flex;
255
+ align-items: center;
256
+ justify-content: center;
257
+ box-shadow: 0 10px 20px rgba(0,0,0,0.5);
258
+ }
259
+
260
+ .ad-bar {
261
+ position: absolute;
262
+ bottom: 90px;
263
+ left: 0;
264
+ width: 1080px;
265
+ height: 180px;
266
+ background: #1e1e22;
267
+ display: flex;
268
+ align-items: center;
269
+ padding: 0 30px;
270
+ box-sizing: border-box;
271
+ gap: 24px;
272
+ }
273
+ .ad-image {
274
+ width: 260px;
275
+ height: 140px;
276
+ background: #E0E0E0;
277
+ border: 1px solid #BDBDBD;
278
+ color: #757575;
279
+ display: flex;
280
+ justify-content: center;
281
+ align-items: center;
282
+ border-radius: 12px;
283
+ font-size: 28px;
284
+ }
285
+ .ad-text {
286
+ flex: 1;
287
+ font-size: 40px;
288
+ }
289
+ .ad-avatars {
290
+ display: flex;
291
+ gap: 28px;
292
+ }
293
+ .avatar {
294
+ width: 110px;
295
+ height: 110px;
296
+ border-radius: 50%;
297
+ background: #E0E0E0;
298
+ border: 1px solid #BDBDBD;
299
+ color: #757575;
300
+ display: flex;
301
+ align-items: center;
302
+ justify-content: center;
303
+ font-size: 26px;
304
+ }
305
+
306
+ /* Icons (simple inline styles) */
307
+ .icon {
308
+ width: 46px;
309
+ height: 46px;
310
+ fill: none;
311
+ stroke: #cfe2ff;
312
+ stroke-width: 6;
313
+ }
314
+ .icon-dark {
315
+ stroke: #ffffff;
316
+ }
317
+ .icon-soft {
318
+ stroke: #cccccc;
319
+ opacity: 0.8;
320
+ }
321
+ .close-x {
322
+ width: 48px; height: 48px;
323
+ }
324
+ </style>
325
+ </head>
326
+ <body>
327
+ <div id="render-target">
328
+
329
+ <!-- Status bar -->
330
+ <div class="status-bar">
331
+ <div style="font-size:42px;">8:29</div>
332
+ <div class="right-icons">
333
+ <!-- simple icons -->
334
+ <svg class="icon" viewBox="0 0 24 24"><circle cx="12" cy="12" r="8"/></svg>
335
+ <svg class="icon" viewBox="0 0 24 24"><path d="M4 4h16v16H4z"/></svg>
336
+ <svg class="icon" viewBox="0 0 24 24"><path d="M20 6v12M4 12h12"/></svg>
337
+ </div>
338
+ </div>
339
+
340
+ <!-- App bar -->
341
+ <div class="app-bar">
342
+ <svg class="icon" viewBox="0 0 24 24"><path d="M3 6h18M3 12h18M3 18h18"/></svg>
343
+ <div class="app-title">Tasks</div>
344
+ <div class="app-actions">
345
+ <svg class="icon" viewBox="0 0 24 24"><circle cx="12" cy="12" r="8"/><path d="M12 8v8M8 12h8"/></svg>
346
+ <svg class="icon" viewBox="0 0 24 24"><circle cx="12" cy="12" r="9"/><path d="M7 12l3 3 7-7"/></svg>
347
+ <svg class="icon" viewBox="0 0 24 24"><circle cx="11" cy="11" r="7"/><path d="M21 21l-5-5"/></svg>
348
+ </div>
349
+ </div>
350
+
351
+ <!-- Alert -->
352
+ <div class="alert-bar">
353
+ <div class="badge">!</div>
354
+ <div class="alert-text">Please allow app to send you notification</div>
355
+ <button class="alert-btn">Enable</button>
356
+ </div>
357
+
358
+ <!-- Section header -->
359
+ <div class="section-header">Next 7 days</div>
360
+
361
+ <!-- Task card -->
362
+ <div class="task-card">
363
+ <div class="task-header">
364
+ <div class="task-title">start gym</div>
365
+ <svg class="chevron" viewBox="0 0 24 24" style="stroke:#9aa7b8;fill:none;stroke-width:4;"><path d="M8 10l4 4 4-4"/></svg>
366
+ </div>
367
+ <div class="task-meta">
368
+ <div class="meta-item">
369
+ <svg class="icon-soft" viewBox="0 0 24 24"><circle cx="12" cy="12" r="9"/><path d="M12 7v5l3 2"/></svg>
370
+ <span>05:30 AM</span>
371
+ </div>
372
+ <div class="meta-item">
373
+ <svg class="icon-soft" viewBox="0 0 24 24"><path d="M4 12h16"/></svg>
374
+ <span>Once</span>
375
+ </div>
376
+ </div>
377
+ <div class="calendar-row">
378
+ <svg class="icon-soft" viewBox="0 0 24 24"><rect x="3" y="5" width="18" height="16"/><path d="M3 9h18"/></svg>
379
+ <span>Thu, Jun 15, 2023</span>
380
+ </div>
381
+ </div>
382
+
383
+ <!-- Overlay and Modal -->
384
+ <div class="overlay"></div>
385
+ <div class="modal">
386
+ <div class="modal-header">
387
+ <svg class="close-x" viewBox="0 0 24 24" style="stroke:#fff;fill:none;stroke-width:4;"><path d="M5 5l14 14M19 5L5 19"/></svg>
388
+ <div class="modal-title">Edit Reminder</div>
389
+ <button class="modal-save">SAVE</button>
390
+ </div>
391
+ <div class="modal-body">
392
+ <div class="modal-row">
393
+ <div class="label">Black day</div>
394
+ <svg class="icon-dark" viewBox="0 0 24 24"><path d="M6 8v8c0 2 12 2 12 0V8"/><circle cx="12" cy="6" r="2"/></svg>
395
+ </div>
396
+
397
+ <div class="modal-row">
398
+ <div class="label">Worse day of life</div>
399
+ <svg class="icon-dark" viewBox="0 0 24 24"><path d="M6 8v8c0 2 12 2 12 0V8"/><circle cx="12" cy="6" r="2"/></svg>
400
+ </div>
401
+
402
+ <div class="modal-row date-row">
403
+ <svg class="icon-dark" viewBox="0 0 24 24"><rect x="3" y="5" width="18" height="16"/><path d="M3 9h18"/></svg>
404
+ <div class="label">Fri, Aug 25, 2023</div>
405
+ <svg class="icon-dark" viewBox="0 0 24 24"><path d="M5 5l14 14M19 5L5 19"/></svg>
406
+ </div>
407
+
408
+ <div class="modal-row time-row">
409
+ <svg class="icon-dark" viewBox="0 0 24 24"><circle cx="12" cy="12" r="9"/><path d="M12 7v5l3 2"/></svg>
410
+ <div class="label">01:06 AM</div>
411
+ <div class="link">+Add more time</div>
412
+ <svg class="icon-dark" viewBox="0 0 24 24"><path d="M5 5l14 14M19 5L5 19"/></svg>
413
+ </div>
414
+
415
+ <div class="chip">
416
+ <span>01:08 AM</span>
417
+ <svg viewBox="0 0 24 24" style="width:30px;height:30px;stroke:#e9f2ff;fill:none;stroke-width:3;"><path d="M5 5l14 14M19 5L5 19"/></svg>
418
+ </div>
419
+
420
+ <div class="modal-row simple-row">
421
+ <svg class="icon-dark" viewBox="0 0 24 24"><circle cx="12" cy="12" r="9"/><path d="M12 7v5l3 2"/></svg>
422
+ <div class="label">Remind me before</div>
423
+ <svg class="icon-dark" viewBox="0 0 24 24"><path d="M9 6l6 6-6 6"/></svg>
424
+ </div>
425
+
426
+ <div class="modal-row simple-row">
427
+ <svg class="icon-dark" viewBox="0 0 24 24"><path d="M4 12h16"/></svg>
428
+ <div class="label">Repeat: No repeat</div>
429
+ <svg class="icon-dark" viewBox="0 0 24 24"><path d="M9 6l6 6-6 6"/></svg>
430
+ </div>
431
+ </div>
432
+ </div>
433
+
434
+ <!-- Floating action button -->
435
+ <div class="fab">
436
+ <svg viewBox="0 0 24 24" style="width:88px;height:88px;fill:none;stroke:#fff;stroke-width:2.5;">
437
+ <circle cx="12" cy="12" r="8"/>
438
+ <path d="M12 8v8M8 12h8"/>
439
+ </svg>
440
+ </div>
441
+
442
+ <!-- Bottom ad / widget -->
443
+ <div class="ad-bar">
444
+ <div class="ad-image">[IMG: Phone Dial Widget]</div>
445
+ <div class="ad-text">
446
+ <div style="font-weight:700;">Speed Dial Widget</div>
447
+ <div style="font-size:32px;color:#c7c7c7;">Just tap & dial</div>
448
+ </div>
449
+ <div class="ad-avatars">
450
+ <div class="avatar">[IMG: Contact]</div>
451
+ <div class="avatar">[IMG: Contact]</div>
452
+ <div class="avatar">[IMG: Contact]</div>
453
+ </div>
454
+ </div>
455
+
456
+ </div>
457
+ </body>
458
+ </html>
code/7342/7342_3.html ADDED
@@ -0,0 +1,419 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
5
+ <title>Tasks 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: 1080px;
11
+ height: 2400px;
12
+ overflow: hidden;
13
+ background: #101418;
14
+ border-radius: 28px;
15
+ box-shadow: 0 20px 40px rgba(0,0,0,0.35);
16
+ }
17
+
18
+ /* Top status bar */
19
+ .status-bar {
20
+ position: absolute;
21
+ top: 0;
22
+ left: 0;
23
+ width: 1080px;
24
+ height: 150px;
25
+ background: #0B3A73;
26
+ color: #fff;
27
+ display: flex;
28
+ align-items: center;
29
+ padding: 0 36px;
30
+ box-sizing: border-box;
31
+ }
32
+ .status-bar .time { font-size: 42px; font-weight: 600; }
33
+ .status-icons { margin-left: auto; display: flex; gap: 26px; align-items: center; }
34
+
35
+ /* App bar */
36
+ .app-bar {
37
+ position: absolute;
38
+ top: 150px;
39
+ left: 0;
40
+ width: 1080px;
41
+ height: 170px;
42
+ background: #0B3A73;
43
+ color: #fff;
44
+ display: flex;
45
+ align-items: center;
46
+ padding: 0 36px;
47
+ box-sizing: border-box;
48
+ }
49
+ .app-bar .title { font-size: 64px; font-weight: 700; margin-left: 26px; }
50
+ .app-actions { margin-left: auto; display: flex; gap: 34px; align-items: center; }
51
+
52
+ /* Content base */
53
+ .content {
54
+ position: absolute;
55
+ top: 320px;
56
+ left: 0;
57
+ width: 1080px;
58
+ height: 2080px;
59
+ background: #0E0F12;
60
+ color: #fff;
61
+ }
62
+
63
+ /* Red notification banner */
64
+ .alert-banner {
65
+ position: absolute;
66
+ top: 0;
67
+ left: 0;
68
+ width: 1080px;
69
+ height: 110px;
70
+ background: #2B1E1E;
71
+ border-top: 1px solid rgba(255,255,255,0.06);
72
+ border-bottom: 1px solid rgba(255,255,255,0.06);
73
+ display: flex;
74
+ align-items: center;
75
+ padding: 0 32px;
76
+ box-sizing: border-box;
77
+ }
78
+ .alert-banner .text {
79
+ color: #FF4A4A;
80
+ font-size: 36px;
81
+ }
82
+ .alert-banner .enable-btn {
83
+ margin-left: auto;
84
+ background: #23323A;
85
+ color: #9FC4E6;
86
+ padding: 16px 28px;
87
+ border-radius: 10px;
88
+ font-weight: 700;
89
+ border: 1px solid rgba(255,255,255,0.1);
90
+ }
91
+
92
+ /* Next 7 days header */
93
+ .section-header {
94
+ position: absolute;
95
+ top: 120px;
96
+ left: 0;
97
+ width: 1080px;
98
+ height: 90px;
99
+ background: #1D5DA6;
100
+ color: #EAF2FF;
101
+ display: flex;
102
+ align-items: center;
103
+ padding: 0 32px;
104
+ box-sizing: border-box;
105
+ font-size: 44px;
106
+ font-weight: 700;
107
+ }
108
+
109
+ /* Task card */
110
+ .task-card {
111
+ position: absolute;
112
+ top: 220px;
113
+ left: 0;
114
+ width: 1080px;
115
+ padding: 36px 32px;
116
+ box-sizing: border-box;
117
+ background: #0C0D10;
118
+ border-top: 1px solid rgba(255,255,255,0.06);
119
+ border-bottom: 1px solid rgba(255,255,255,0.06);
120
+ }
121
+ .task-title { font-size: 56px; font-weight: 700; margin-bottom: 24px; }
122
+ .task-meta { display: flex; align-items: center; gap: 26px; color: #B0B6BF; font-size: 34px; }
123
+ .task-meta .dot { width: 10px; height: 10px; background: #B0B6BF; border-radius: 50%; }
124
+ .task-date { margin-top: 18px; color: #B0B6BF; font-size: 34px; display: flex; align-items: center; gap: 18px; }
125
+
126
+ /* Extra rows behind dialog */
127
+ .extra-row {
128
+ position: absolute;
129
+ left: 36px;
130
+ right: 36px;
131
+ height: 84px;
132
+ background: #111317;
133
+ color: #B9C0C9;
134
+ display: flex;
135
+ align-items: center;
136
+ padding: 0 22px;
137
+ box-sizing: border-box;
138
+ border: 1px solid rgba(255,255,255,0.06);
139
+ border-radius: 10px;
140
+ }
141
+ .extra-row.row1 { top: 710px; }
142
+ .extra-row.row2 { top: 820px; }
143
+
144
+ /* Bottom ad strip */
145
+ .ad-strip {
146
+ position: absolute;
147
+ bottom: 150px;
148
+ left: 0;
149
+ width: 1080px;
150
+ height: 170px;
151
+ background: #1A1D22;
152
+ border-top: 1px solid rgba(255,255,255,0.08);
153
+ display: flex;
154
+ align-items: center;
155
+ padding: 0 24px;
156
+ box-sizing: border-box;
157
+ gap: 24px;
158
+ color: #D7E2EF;
159
+ font-size: 38px;
160
+ font-weight: 700;
161
+ }
162
+ .ad-icon {
163
+ width: 120px; height: 120px; border-radius: 22px;
164
+ background: #2B3240; display: flex; align-items: center; justify-content: center;
165
+ color: #9FB3C8; border: 1px solid rgba(255,255,255,0.1);
166
+ }
167
+ .avatar {
168
+ width: 120px; height: 120px; border-radius: 60px;
169
+ background: #E0E0E0; border: 1px solid #BDBDBD;
170
+ display: flex; align-items: center; justify-content: center; color: #757575; font-size: 22px;
171
+ }
172
+
173
+ /* Floating action button */
174
+ .fab {
175
+ position: absolute;
176
+ right: 40px;
177
+ bottom: 360px;
178
+ width: 150px; height: 150px; border-radius: 75px;
179
+ background: #216BCE;
180
+ box-shadow: 0 12px 26px rgba(0,0,0,0.35);
181
+ display: flex; align-items: center; justify-content: center;
182
+ }
183
+
184
+ /* Home indicator */
185
+ .home-indicator {
186
+ position: absolute;
187
+ bottom: 32px;
188
+ left: 50%;
189
+ transform: translateX(-50%);
190
+ width: 360px;
191
+ height: 12px;
192
+ background: #F4F5F7;
193
+ border-radius: 6px;
194
+ opacity: 0.9;
195
+ }
196
+
197
+ /* Dialog overlay */
198
+ .overlay {
199
+ position: absolute;
200
+ top: 320px;
201
+ left: 0;
202
+ width: 1080px;
203
+ height: 2080px;
204
+ background: rgba(0,0,0,0.55);
205
+ }
206
+ .dialog {
207
+ position: absolute;
208
+ top: 420px;
209
+ left: 40px;
210
+ width: 1000px;
211
+ background: #2A2E34;
212
+ border-radius: 16px;
213
+ box-shadow: 0 20px 40px rgba(0,0,0,0.4);
214
+ color: #EAF2FF;
215
+ padding-bottom: 30px;
216
+ }
217
+ .dialog-header {
218
+ height: 120px;
219
+ background: #1C66C8;
220
+ border-top-left-radius: 16px;
221
+ border-top-right-radius: 16px;
222
+ display: flex; align-items: center; padding: 0 26px; box-sizing: border-box;
223
+ font-size: 48px; font-weight: 700;
224
+ }
225
+ .dialog-header .spacer { margin-left: 18px; }
226
+ .save-btn {
227
+ margin-left: auto;
228
+ background: #37414B;
229
+ color: #CBE0FF;
230
+ padding: 16px 28px;
231
+ border-radius: 10px;
232
+ font-weight: 700;
233
+ border: 1px solid rgba(255,255,255,0.12);
234
+ }
235
+ .dialog-body { padding: 26px; box-sizing: border-box; }
236
+
237
+ .field {
238
+ margin-bottom: 24px;
239
+ background: #2F333A;
240
+ border: 1px solid rgba(255,255,255,0.08);
241
+ border-radius: 10px;
242
+ padding: 22px;
243
+ box-sizing: border-box;
244
+ }
245
+ .field-label { color: #98A7B8; font-size: 32px; margin-bottom: 12px; }
246
+ .field-value {
247
+ display: flex; align-items: center; justify-content: space-between;
248
+ font-size: 40px; color: #EAF2FF; font-weight: 700;
249
+ }
250
+ .inline-input {
251
+ background: #2F333A;
252
+ border: 1px solid rgba(255,255,255,0.08);
253
+ border-radius: 10px;
254
+ padding: 22px;
255
+ color: #EAF2FF; font-size: 40px; font-weight: 700;
256
+ }
257
+
258
+ .every-row {
259
+ display: flex; align-items: center; gap: 18px; color: #DCE6F6; font-size: 36px; padding: 10px 4px;
260
+ }
261
+ .slider-line {
262
+ flex: 1;
263
+ height: 4px;
264
+ background: #CED8EA;
265
+ border-radius: 2px;
266
+ margin: 0 16px;
267
+ }
268
+
269
+ .btns {
270
+ display: flex; gap: 20px; margin-top: 18px;
271
+ }
272
+ .btn {
273
+ flex: 1; height: 110px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
274
+ font-size: 44px; font-weight: 800; letter-spacing: 0.3px;
275
+ }
276
+ .btn.cancel { background: #B22A23; color: #fff; }
277
+ .btn.done { background: #2B78E7; color: #fff; }
278
+
279
+ /* Simple icon styles */
280
+ .icon { width: 56px; height: 56px; }
281
+ .icon-24 { width: 40px; height: 40px; }
282
+ .chevron { width: 40px; height: 40px; opacity: 0.85; }
283
+
284
+ </style>
285
+ </head>
286
+ <body>
287
+ <div id="render-target">
288
+
289
+ <!-- Status Bar -->
290
+ <div class="status-bar">
291
+ <div class="time">8:30</div>
292
+ <div class="status-icons">
293
+ <!-- simple wifi -->
294
+ <svg class="icon-24" viewBox="0 0 24 24" fill="#FFFFFF"><path d="M12 20l2-2-2-2-2 2 2 2zm-8.5-9.5l1.5 1.5c3.9-3.9 10.2-3.9 14.1 0l1.5-1.5c-4.7-4.7-12.3-4.7-17.1 0zm3.5 3.5l1.5 1.5c2.9-2.9 7.6-2.9 10.5 0l1.5-1.5c-3.8-3.8-9.7-3.8-13.5 0z"/></svg>
295
+ <!-- battery -->
296
+ <svg class="icon-24" viewBox="0 0 24 24" fill="#FFFFFF"><path d="M17 6h2v2h1c.6 0 1 .4 1 1v6c0 .6-.4 1-1 1h-1v2h-2V6zM3 9c0-.6.4-1 1-1h12c.6 0 1 .4 1 1v6c0 .6-.4 1-1 1H4c-.6 0-1-.4-1-1V9z"/></svg>
297
+ </div>
298
+ </div>
299
+
300
+ <!-- App Bar -->
301
+ <div class="app-bar">
302
+ <!-- hamburger -->
303
+ <svg class="icon" viewBox="0 0 24 24" fill="#FFFFFF"><path d="M3 6h18v2H3V6zm0 5h18v2H3v-2zm0 5h18v2H3v-2z"/></svg>
304
+ <div class="title">Tasks</div>
305
+ <div class="app-actions">
306
+ <!-- add with circle -->
307
+ <svg class="icon" viewBox="0 0 24 24" fill="#FFFFFF"><path d="M12 4a8 8 0 108 8 8 8 0 00-8-8zm1 4h-2v4H7v2h4v4h2v-4h4v-2h-4z"/></svg>
308
+ <!-- check -->
309
+ <svg class="icon" viewBox="0 0 24 24" fill="#FFFFFF"><path d="M9 16.2l-3.5-3.5 1.4-1.4L9 13.4l7.1-7.1 1.4 1.4z"/></svg>
310
+ <!-- search -->
311
+ <svg class="icon" viewBox="0 0 24 24" fill="#FFFFFF"><path d="M15.5 14h-.8l-.3-.3a6.5 6.5 0 10-1.4 1.4l.3.3v.8l5 5 1.5-1.5-5-5zm-6 0a4.5 4.5 0 110-9 4.5 4.5 0 010 9z"/></svg>
312
+ </div>
313
+ </div>
314
+
315
+ <!-- Content Area -->
316
+ <div class="content">
317
+ <!-- Red alert -->
318
+ <div class="alert-banner">
319
+ <div class="text">Please allow app to send you notification</div>
320
+ <div class="enable-btn">Enable</div>
321
+ </div>
322
+
323
+ <!-- Section header -->
324
+ <div class="section-header">Next 7 days</div>
325
+
326
+ <!-- Task card -->
327
+ <div class="task-card">
328
+ <div class="task-title">start gym</div>
329
+ <div class="task-meta">
330
+ <!-- clock icon -->
331
+ <svg class="icon-24" viewBox="0 0 24 24" fill="#B0B6BF"><path d="M12 2a10 10 0 1010 10A10 10 0 0012 2zm1 5h-2v6l5 3 .9-1.8-3.9-2.2z"/></svg>
332
+ <div>05:30 AM</div>
333
+ <div class="dot"></div>
334
+ <div>Once</div>
335
+ </div>
336
+ <div class="task-date">
337
+ <!-- calendar -->
338
+ <svg class="icon-24" viewBox="0 0 24 24" fill="#B0B6BF"><path d="M7 3h2v2h6V3h2v2h3c.6 0 1 .4 1 1v14c0 .6-.4 1-1 1H4c-.6 0-1-.4-1-1V6c0-.6.4-1 1-1h3V3zm13 6H4v10h16V9z"/></svg>
339
+ <div>Thu, Jun 15, 2023</div>
340
+ <div style="margin-left:auto;">
341
+ <!-- chevron -->
342
+ <svg class="chevron" viewBox="0 0 24 24" fill="#68707B"><path d="M9 6l6 6-6 6z"/></svg>
343
+ </div>
344
+ </div>
345
+ </div>
346
+
347
+ <!-- extra rows (visible behind dialog) -->
348
+ <div class="extra-row row1">Remind me before</div>
349
+ <div class="extra-row row2">Repeat: No repeat</div>
350
+
351
+ <!-- Bottom ad strip -->
352
+ <div class="ad-strip">
353
+ <div class="ad-icon">☎</div>
354
+ <div>Speed Dial Widget</div>
355
+ <div style="color:#93A3B5; font-size:32px; font-weight:600;">Just tap &amp; dial</div>
356
+ <div style="margin-left:auto; display:flex; gap:18px; align-items:center;">
357
+ <div class="avatar">[IMG: Avatar]</div>
358
+ <div class="avatar">[IMG: Wheel Photo]</div>
359
+ <div class="avatar">[IMG: Avatar]</div>
360
+ </div>
361
+ </div>
362
+
363
+ <!-- Floating action button -->
364
+ <div class="fab">
365
+ <svg viewBox="0 0 24 24" width="72" height="72" fill="#EAF2FF">
366
+ <path d="M12 3c3.9 0 7 3.1 7 7v2h-2V10c0-2.8-2.2-5-5-5s-5 2.2-5 5v2H5v-2c0-3.9 3.1-7 7-7zm-1 9H8v2h3v3h2v-3h3v-2h-3V9h-2v3z"/>
367
+ </svg>
368
+ </div>
369
+ </div>
370
+
371
+ <!-- Overlay and Dialog -->
372
+ <div class="overlay">
373
+ <div class="dialog">
374
+ <div class="dialog-header">
375
+ <svg class="icon-24" viewBox="0 0 24 24" fill="#EAF2FF"><path d="M5 7h2v10H5zm12 0h2v10h-2zM8 7h8v2H8zm0 6h8v2H8z"/></svg>
376
+ <div class="spacer"></div>
377
+ Edit Reminder
378
+ <div class="save-btn">SAVE</div>
379
+ </div>
380
+ <div class="dialog-body">
381
+ <div class="inline-input">Black day</div>
382
+
383
+ <div class="field">
384
+ <div class="field-label">Select</div>
385
+ <div class="field-value">
386
+ <div>REPEAT DAILY</div>
387
+ <svg class="chevron" viewBox="0 0 24 24" fill="#C8D6EB"><path d="M7 10l5 5 5-5z"/></svg>
388
+ </div>
389
+ </div>
390
+
391
+ <div class="field">
392
+ <div class="every-row">
393
+ <div style="color:#AFC1D7;">EVERY</div>
394
+ <div style="font-weight:800;">1</div>
395
+ <div class="slider-line"></div>
396
+ <div>day</div>
397
+ </div>
398
+ </div>
399
+
400
+ <div class="field">
401
+ <div class="field-value">
402
+ <div><span class="field-label" style="margin-right:16px;">ENDS:</span> <span style="font-size:40px; font-weight:700; color:#EAF2FF;">Never</span></div>
403
+ <svg class="chevron" viewBox="0 0 24 24" fill="#C8D6EB"><path d="M7 10l5 5 5-5z"/></svg>
404
+ </div>
405
+ </div>
406
+
407
+ <div class="btns">
408
+ <div class="btn cancel">Cancel</div>
409
+ <div class="btn done">Done</div>
410
+ </div>
411
+ </div>
412
+ </div>
413
+ </div>
414
+
415
+ <!-- Home indicator -->
416
+ <div class="home-indicator"></div>
417
+ </div>
418
+ </body>
419
+ </html>
code/7342/7342_4.html ADDED
@@ -0,0 +1,274 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Tasks - Edit Reminder UI</title>
5
+ <style>
6
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
7
+ #render-target {
8
+ width: 1080px; height: 2400px;
9
+ position: relative; overflow: hidden;
10
+ background: #0E3A7A; /* top bar color visible at top */
11
+ box-shadow: 0 0 0 0 rgba(0,0,0,0.1);
12
+ }
13
+
14
+ /* Base app background underneath the top bars */
15
+ .app-surface {
16
+ position: absolute; left: 0; top: 240px; right: 0; bottom: 0;
17
+ background: #121316;
18
+ color: #fff;
19
+ }
20
+
21
+ /* Status bar */
22
+ .status-bar {
23
+ position: absolute; left: 0; top: 0; width: 100%; height: 120px;
24
+ display: flex; align-items: center; justify-content: space-between;
25
+ color: #fff; padding: 0 40px; font-size: 40px;
26
+ }
27
+ .status-icons { display: flex; align-items: center; gap: 26px; }
28
+ .status-icons svg { width: 46px; height: 46px; fill: #fff; opacity: 0.9; }
29
+
30
+ /* App bar */
31
+ .app-bar {
32
+ position: absolute; left: 0; top: 120px; width: 100%; height: 120px;
33
+ display: flex; align-items: center; padding: 0 32px; color: #fff;
34
+ }
35
+ .app-bar .title { font-size: 64px; font-weight: 700; margin-left: 28px; }
36
+ .app-bar .actions { margin-left: auto; display: flex; gap: 36px; }
37
+ .icon-btn svg { width: 64px; height: 64px; fill: #cfe1ff; opacity: 0.95; }
38
+
39
+ /* Notification banner */
40
+ .notif-banner {
41
+ position: absolute; left: 0; top: 240px; width: 100%; height: 120px;
42
+ background: #1e1e1e; color: #ff6b6b; display: flex; align-items: center;
43
+ padding: 0 32px; gap: 24px;
44
+ box-shadow: inset 0 -1px 0 rgba(255,255,255,0.06), inset 0 1px 0 rgba(255,255,255,0.06);
45
+ }
46
+ .notif-banner .enable-btn {
47
+ margin-left: auto; background: #274e91; color: #d7e6ff;
48
+ padding: 18px 26px; border-radius: 8px; font-weight: 600; font-size: 36px;
49
+ }
50
+ .notif-banner svg { width: 54px; height: 54px; }
51
+
52
+ /* Content */
53
+ .content { position: absolute; left: 0; top: 360px; width: 100%; padding: 0 30px; }
54
+ .section-header {
55
+ color: #a6c2ff; background: #1b202a; padding: 18px 24px; font-size: 48px;
56
+ }
57
+
58
+ /* Task card */
59
+ .task-card {
60
+ margin-top: 24px; background: #111; color: #fff; border-radius: 8px;
61
+ padding: 28px; box-shadow: 0 2px 0 rgba(255,255,255,0.06) inset;
62
+ }
63
+ .task-title { font-size: 58px; font-weight: 700; margin-bottom: 22px; }
64
+ .task-row { display: flex; align-items: center; gap: 20px; color: #cfd3da; font-size: 40px; margin-bottom: 18px; }
65
+ .task-row svg { width: 42px; height: 42px; fill: #cfd3da; }
66
+ .task-card .right-caret { margin-left: auto; }
67
+ .task-card .right-caret svg { width: 42px; height: 42px; fill: #cfd3da; }
68
+
69
+ /* Floating Action Button */
70
+ .fab {
71
+ position: absolute; right: 48px; bottom: 320px; width: 180px; height: 180px;
72
+ background: #2a5db3; border-radius: 50%; display: flex; align-items: center; justify-content: center;
73
+ box-shadow: 0 12px 24px rgba(0,0,0,0.4);
74
+ }
75
+ .fab svg { width: 100px; height: 100px; fill: #e8f0ff; }
76
+
77
+ /* Speed Dial Widget bar */
78
+ .speed-dial-bar {
79
+ position: absolute; left: 0; bottom: 160px; width: 100%; height: 180px;
80
+ background: #1d2027; display: flex; align-items: center; padding: 0 28px; gap: 24px; color: #dbe6ff;
81
+ box-shadow: 0 -1px 0 rgba(255,255,255,0.08) inset;
82
+ }
83
+ .sdw-logo {
84
+ width: 240px; height: 140px; background: #E0E0E0; border: 1px solid #BDBDBD;
85
+ display: flex; flex-direction: column; align-items: center; justify-content: center; color: #757575; font-size: 34px; border-radius: 12px;
86
+ }
87
+ .contact {
88
+ display: flex; flex-direction: column; align-items: center; gap: 12px; margin-left: 8px;
89
+ }
90
+ .avatar {
91
+ width: 120px; height: 120px; border-radius: 50%; background: #E0E0E0; border: 1px solid #BDBDBD;
92
+ display: flex; align-items: center; justify-content: center; color: #757575; font-size: 28px;
93
+ }
94
+ .contact label { font-size: 32px; color: #cbd5e9; }
95
+
96
+ /* Home gesture indicator */
97
+ .home-indicator {
98
+ position: absolute; left: 50%; transform: translateX(-50%);
99
+ bottom: 48px; width: 320px; height: 14px; background: #ffffff; border-radius: 10px; opacity: 0.85;
100
+ }
101
+
102
+ /* Modal: Edit Reminder */
103
+ .modal-overlay {
104
+ position: absolute; left: 0; top: 0; width: 100%; height: 100%;
105
+ background: rgba(0,0,0,0.55);
106
+ }
107
+ .modal-panel {
108
+ position: absolute; left: 40px; right: 40px; top: 720px; bottom: 380px;
109
+ background: #2b2f36; border-radius: 8px; box-shadow: 0 18px 40px rgba(0,0,0,0.5);
110
+ overflow: hidden;
111
+ }
112
+ .modal-header {
113
+ height: 120px; background: #1b4e9a; color: #e9f2ff;
114
+ display: flex; align-items: center; padding: 0 24px; gap: 24px;
115
+ font-size: 54px; font-weight: 700;
116
+ }
117
+ .close-btn { margin-right: 12px; }
118
+ .close-btn svg { width: 56px; height: 56px; fill: #dce7ff; }
119
+ .save-btn {
120
+ margin-left: auto; background: #2d62b7; color: #fff; padding: 16px 24px; border-radius: 8px; font-size: 44px; font-weight: 700;
121
+ }
122
+
123
+ .selector-tabs {
124
+ display: flex; height: 100px; align-items: flex-end; gap: 40px; padding: 0 24px;
125
+ background: #23262d; color: #b3c5e9; font-size: 44px; font-weight: 700;
126
+ }
127
+ .tab-active { color: #ffffff; border-bottom: 6px solid #2e7bff; padding-bottom: 18px; }
128
+ .tab { padding-bottom: 18px; }
129
+
130
+ .dropdown-list {
131
+ position: absolute; left: 24px; right: 24px; top: 220px; bottom: 24px;
132
+ background: #30343c; overflow-y: auto; border-radius: 8px;
133
+ }
134
+ .dd-item {
135
+ padding: 34px 28px; font-size: 50px; color: #f1f4ff;
136
+ border-bottom: 1px solid rgba(255,255,255,0.08);
137
+ }
138
+ </style>
139
+ </head>
140
+ <body>
141
+ <div id="render-target">
142
+
143
+ <!-- STATUS BAR -->
144
+ <div class="status-bar">
145
+ <div>8:31</div>
146
+ <div class="status-icons">
147
+ <!-- Headset -->
148
+ <svg viewBox="0 0 24 24"><path d="M12 3c-4.4 0-8 3.6-8 8v6c0 1.1.9 2 2 2h2v-6H6v-2c0-3.3 2.7-6 6-6s6 2.7 6 6v2h-2v6h2c1.1 0 2-.9 2-2v-6c0-4.4-3.6-8-8-8z"/></svg>
149
+ <!-- Wi-Fi -->
150
+ <svg viewBox="0 0 24 24"><path d="M12 18l-2 2 2 2 2-2-2-2zm0-4c-2.2 0-4.3.8-6 2l2 2c1.1-.8 2.5-1.3 4-1.3s2.9.5 4 1.3l2-2c-1.7-1.2-3.8-2-6-2zm0-4c-3.6 0-7 .9-9.9 2.7l2 2C6.5 9.5 9.1 8.9 12 8.9s5.5.6 7.9 2.4l2-2C19 6.9 15.6 6 12 6z"/></svg>
151
+ <!-- Battery -->
152
+ <svg viewBox="0 0 24 24"><path d="M20 7h1v10h-1V7zM3 8c0-1.1.9-2 2-2h12c1.1 0 2 .9 2 2v8c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2V8zm3 1h10v6H6V9z"/></svg>
153
+ </div>
154
+ </div>
155
+
156
+ <!-- APP BAR -->
157
+ <div class="app-bar">
158
+ <!-- Hamburger -->
159
+ <div class="icon-btn">
160
+ <svg viewBox="0 0 24 24"><path d="M3 6h18v2H3V6zm0 5h18v2H3v-2zm0 5h18v2H3v-2z"/></svg>
161
+ </div>
162
+ <div class="title">Tasks</div>
163
+ <div class="actions">
164
+ <!-- Add -->
165
+ <div class="icon-btn">
166
+ <svg viewBox="0 0 24 24"><path d="M12 2a10 10 0 100 20 10 10 0 000-20zm1 5h-2v5H6v2h5v5h2v-5h5v-2h-5V7z"/></svg>
167
+ </div>
168
+ <!-- Check -->
169
+ <div class="icon-btn">
170
+ <svg viewBox="0 0 24 24"><path d="M12 2a10 10 0 100 20 10 10 0 000-20zm-1 14l-4-4 1.4-1.4L11 13.2l4.6-4.6L17 10l-6 6z"/></svg>
171
+ </div>
172
+ <!-- Search -->
173
+ <div class="icon-btn">
174
+ <svg viewBox="0 0 24 24"><path d="M10 2a8 8 0 105.3 14l4.6 4.6 1.4-1.4-4.6-4.6A8 8 0 0010 2zm0 14a6 6 0 110-12 6 6 0 010 12z"/></svg>
175
+ </div>
176
+ </div>
177
+ </div>
178
+
179
+ <!-- Notification banner -->
180
+ <div class="notif-banner">
181
+ <svg viewBox="0 0 24 24"><path fill="#ff6b6b" d="M12 2a10 10 0 100 20 10 10 0 000-20zm1 5h-2v7h2V7zm0 9h-2v2h2v-2z"/></svg>
182
+ <div style="font-size:40px;">Please allow app to send you notification</div>
183
+ <div class="enable-btn">Enable</div>
184
+ </div>
185
+
186
+ <!-- Main app surface -->
187
+ <div class="app-surface"></div>
188
+
189
+ <!-- Content -->
190
+ <div class="content">
191
+ <div class="section-header">Next 7 days</div>
192
+
193
+ <div class="task-card">
194
+ <div class="task-title">start gym</div>
195
+ <div class="task-row">
196
+ <!-- Clock -->
197
+ <svg viewBox="0 0 24 24"><path d="M12 2a10 10 0 100 20 10 10 0 000-20zm1 5h-2v6l5 3 .9-1.6-3.9-2.3V7z"/></svg>
198
+ <div>05:30 AM</div>
199
+ <!-- Repeat icon -->
200
+ <svg viewBox="0 0 24 24"><path d="M7 7h8V5l4 4-4 4V11H7v4l-4-4 4-4v2z"/></svg>
201
+ <div>Once</div>
202
+ <div class="right-caret">
203
+ <svg viewBox="0 0 24 24"><path d="M9 6l6 6-6 6V6z"/></svg>
204
+ </div>
205
+ </div>
206
+ <div class="task-row">
207
+ <!-- Calendar -->
208
+ <svg viewBox="0 0 24 24"><path d="M7 2h2v2h6V2h2v2h3c.6 0 1 .4 1 1v15c0 .6-.4 1-1 1H4c-.6 0-1-.4-1-1V5c0-.6.4-1 1-1h3V2zm13 6H4v10h16V8z"/></svg>
209
+ <div>Thu, Jun 15, 2023</div>
210
+ </div>
211
+ </div>
212
+ </div>
213
+
214
+ <!-- Floating action button -->
215
+ <div class="fab">
216
+ <svg viewBox="0 0 24 24">
217
+ <path d="M12 2a10 10 0 100 20 10 10 0 000-20zm1 5h-2v5H6v2h5v5h2v-5h5v-2h-5V7z"/>
218
+ </svg>
219
+ </div>
220
+
221
+ <!-- Speed Dial Widget bar -->
222
+ <div class="speed-dial-bar">
223
+ <div class="sdw-logo">[IMG: Speed Dial Widget Logo]</div>
224
+ <div style="color:#cfe1ff; font-size:34px; margin-right:auto;">Just tap &amp; dial</div>
225
+
226
+ <div class="contact">
227
+ <div class="avatar">[IMG: Avatar]</div>
228
+ <label>Dad</label>
229
+ </div>
230
+ <div class="contact">
231
+ <div class="avatar">[IMG: Avatar]</div>
232
+ <label>Big A</label>
233
+ </div>
234
+ <div class="contact">
235
+ <div class="avatar">[IMG: Avatar]</div>
236
+ <label>Mom</label>
237
+ </div>
238
+ </div>
239
+
240
+ <!-- Home indicator -->
241
+ <div class="home-indicator"></div>
242
+
243
+ <!-- Modal overlay and panel: Edit Reminder -->
244
+ <div class="modal-overlay">
245
+ <div class="modal-panel">
246
+ <div class="modal-header">
247
+ <div class="close-btn">
248
+ <svg viewBox="0 0 24 24"><path d="M18.3 5.7L5.7 18.3l1.4 1.4L19.7 7.1l-1.4-1.4zM5.7 7.1l12.6 12.6 1.4-1.4L7.1 5.7 5.7 7.1z"/></svg>
249
+ </div>
250
+ Edit Reminder
251
+ <div class="save-btn">SAVE</div>
252
+ </div>
253
+
254
+ <div class="selector-tabs">
255
+ <div class="tab-active">Select</div>
256
+ <div class="tab">EVERY</div>
257
+ <div class="tab">ENDS:</div>
258
+ </div>
259
+
260
+ <div class="dropdown-list">
261
+ <div class="dd-item">REPEAT MINUTE</div>
262
+ <div class="dd-item">REPEAT HOURLY</div>
263
+ <div class="dd-item">REPEAT DAILY</div>
264
+ <div class="dd-item">REPEAT WEEKLY</div>
265
+ <div class="dd-item">REPEAT WEEKDAYS</div>
266
+ <div class="dd-item">REPEAT MONTHLY</div>
267
+ <div class="dd-item">REPEAT YEARLY</div>
268
+ </div>
269
+ </div>
270
+ </div>
271
+
272
+ </div>
273
+ </body>
274
+ </html>
code/7342/7342_5.html ADDED
@@ -0,0 +1,425 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
5
+ <title>Tasks App UI Mock</title>
6
+ <style>
7
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
8
+ #render-target {
9
+ width: 1080px;
10
+ height: 2400px;
11
+ position: relative;
12
+ overflow: hidden;
13
+ background: #0b0f16;
14
+ color: #fff;
15
+ border-radius: 0;
16
+ }
17
+
18
+ /* Status bar */
19
+ .status-bar {
20
+ position: absolute;
21
+ top: 0; left: 0;
22
+ width: 100%;
23
+ height: 120px;
24
+ background: #0f3b7a;
25
+ display: flex;
26
+ align-items: center;
27
+ justify-content: space-between;
28
+ padding: 0 40px;
29
+ box-sizing: border-box;
30
+ }
31
+ .status-time { font-size: 40px; letter-spacing: 1px; }
32
+ .status-icons { display: flex; gap: 26px; align-items: center; }
33
+ .status-icons svg { width: 40px; height: 40px; opacity: 0.9; }
34
+
35
+ /* App bar */
36
+ .app-bar {
37
+ position: absolute;
38
+ top: 120px; left: 0;
39
+ width: 100%;
40
+ height: 140px;
41
+ background: #0f3b7a;
42
+ display: flex;
43
+ align-items: center;
44
+ padding: 0 36px;
45
+ box-sizing: border-box;
46
+ border-bottom: 1px solid rgba(255,255,255,0.08);
47
+ }
48
+ .app-title {
49
+ font-size: 64px;
50
+ font-weight: 700;
51
+ margin-left: 24px;
52
+ flex: 1;
53
+ }
54
+ .app-actions { display: flex; gap: 36px; align-items: center; }
55
+ .app-actions svg { width: 60px; height: 60px; }
56
+
57
+ /* Red notification banner */
58
+ .notify-banner {
59
+ position: absolute;
60
+ top: 260px; left: 0;
61
+ width: 100%;
62
+ height: 100px;
63
+ background: #20242c;
64
+ display: flex;
65
+ align-items: center;
66
+ padding: 0 36px;
67
+ box-sizing: border-box;
68
+ border-top: 1px solid rgba(255,255,255,0.06);
69
+ border-bottom: 1px solid rgba(255,255,255,0.06);
70
+ }
71
+ .notify-banner .msg {
72
+ color: #ff4a4a;
73
+ font-size: 38px;
74
+ flex: 1;
75
+ display: flex;
76
+ align-items: center;
77
+ gap: 20px;
78
+ }
79
+ .notify-banner .btn {
80
+ background: #2c3b52;
81
+ color: #cde1ff;
82
+ padding: 18px 28px;
83
+ border-radius: 10px;
84
+ font-size: 38px;
85
+ }
86
+
87
+ /* Section header */
88
+ .section-header {
89
+ position: absolute;
90
+ top: 360px; left: 0;
91
+ width: 100%;
92
+ height: 98px;
93
+ background: #1b4f87;
94
+ display: flex;
95
+ align-items: center;
96
+ padding: 0 36px;
97
+ box-sizing: border-box;
98
+ font-size: 52px;
99
+ font-weight: 600;
100
+ }
101
+
102
+ /* Task item */
103
+ .task-item {
104
+ position: absolute;
105
+ top: 470px; left: 0;
106
+ width: 100%;
107
+ padding: 20px 36px;
108
+ box-sizing: border-box;
109
+ background: #0d1118;
110
+ }
111
+ .task-title {
112
+ font-size: 64px;
113
+ margin-bottom: 22px;
114
+ }
115
+ .task-meta {
116
+ display: flex;
117
+ align-items: center;
118
+ gap: 20px;
119
+ color: #b9c3d3;
120
+ font-size: 40px;
121
+ }
122
+ .task-meta svg { width: 40px; height: 40px; opacity: 0.9; }
123
+ .task-date { color: #aab5c6; font-size: 38px; margin-top: 18px; }
124
+ .item-caret {
125
+ position: absolute;
126
+ right: 36px; top: 520px;
127
+ width: 46px; height: 46px; opacity: 0.7;
128
+ }
129
+
130
+ /* Overlay modal */
131
+ .overlay {
132
+ position: absolute;
133
+ top: 620px; left: 40px;
134
+ width: 1000px;
135
+ background: #2c2f36;
136
+ border-radius: 12px;
137
+ box-shadow: 0 12px 28px rgba(0,0,0,0.6);
138
+ padding-bottom: 30px;
139
+ border: 1px solid rgba(255,255,255,0.08);
140
+ }
141
+ .overlay-header {
142
+ background: #2a69b7;
143
+ color: #eaf3ff;
144
+ height: 110px;
145
+ border-top-left-radius: 12px;
146
+ border-top-right-radius: 12px;
147
+ display: flex;
148
+ align-items: center;
149
+ justify-content: space-between;
150
+ padding: 0 24px;
151
+ box-sizing: border-box;
152
+ font-size: 52px;
153
+ }
154
+ .close-btn { width: 56px; height: 56px; }
155
+ .save-btn {
156
+ background: #4a86d9;
157
+ color: #fff;
158
+ padding: 12px 24px;
159
+ border-radius: 12px;
160
+ font-size: 42px;
161
+ }
162
+ .overlay-content {
163
+ padding: 24px;
164
+ box-sizing: border-box;
165
+ }
166
+ .simple-title {
167
+ font-size: 58px;
168
+ margin-bottom: 18px;
169
+ }
170
+ .form-row {
171
+ display: flex;
172
+ align-items: center;
173
+ padding: 22px 0;
174
+ border-bottom: 1px solid rgba(255,255,255,0.06);
175
+ }
176
+ .form-label {
177
+ width: 170px;
178
+ color: #9fb2ca;
179
+ font-size: 42px;
180
+ }
181
+ .select-box, .select-box-dark {
182
+ flex: 1;
183
+ display: flex;
184
+ align-items: center;
185
+ background: #1f2229;
186
+ padding: 22px 24px;
187
+ border-radius: 8px;
188
+ font-size: 44px;
189
+ justify-content: space-between;
190
+ color: #e8f0ff;
191
+ border: 1px solid rgba(255,255,255,0.08);
192
+ }
193
+ .select-box-dark { background: #2e323a; }
194
+ .chev { width: 40px; height: 40px; opacity: 0.8; }
195
+ .every-input {
196
+ flex: 1;
197
+ font-size: 44px;
198
+ color: #fff;
199
+ display: flex;
200
+ align-items: center;
201
+ gap: 24px;
202
+ }
203
+ .underline {
204
+ flex: 1;
205
+ height: 2px;
206
+ background: #cfd7e6;
207
+ margin: 0 8px;
208
+ }
209
+ .buttons {
210
+ display: flex;
211
+ gap: 22px;
212
+ margin-top: 20px;
213
+ }
214
+ .btn-red, .btn-blue {
215
+ flex: 1;
216
+ height: 120px;
217
+ border-radius: 10px;
218
+ font-size: 54px;
219
+ display: flex;
220
+ align-items: center;
221
+ justify-content: center;
222
+ }
223
+ .btn-red { background: #b4251d; }
224
+ .btn-blue { background: #2f7ae5; }
225
+
226
+ /* Behind overlay extra items */
227
+ .behind-items {
228
+ position: absolute;
229
+ left: 36px;
230
+ top: 1140px;
231
+ width: 1000px;
232
+ color: #b6c1d1;
233
+ opacity: 0.6;
234
+ }
235
+ .behind-row {
236
+ display: flex;
237
+ align-items: center;
238
+ justify-content: space-between;
239
+ padding: 22px 0;
240
+ border-bottom: 1px solid rgba(255,255,255,0.04);
241
+ font-size: 44px;
242
+ }
243
+
244
+ /* Floating action button */
245
+ .fab {
246
+ position: absolute;
247
+ right: 40px;
248
+ bottom: 180px;
249
+ width: 150px;
250
+ height: 150px;
251
+ border-radius: 50%;
252
+ background: #2f7ae5;
253
+ box-shadow: 0 10px 18px rgba(0,0,0,0.5);
254
+ display: flex; align-items: center; justify-content: center;
255
+ }
256
+ .fab svg { width: 80px; height: 80px; }
257
+
258
+ /* Bottom widget bar */
259
+ .bottom-widget {
260
+ position: absolute;
261
+ bottom: 0; left: 0;
262
+ width: 100%;
263
+ height: 170px;
264
+ background: #1a1d24;
265
+ border-top: 1px solid rgba(255,255,255,0.06);
266
+ display: flex;
267
+ align-items: center;
268
+ padding: 0 36px;
269
+ box-sizing: border-box;
270
+ gap: 24px;
271
+ }
272
+ .widget-icon {
273
+ width: 120px; height: 120px;
274
+ background: #E0E0E0;
275
+ border: 1px solid #BDBDBD;
276
+ border-radius: 24px;
277
+ display: flex; align-items: center; justify-content: center;
278
+ color: #757575; font-size: 28px;
279
+ }
280
+ .widget-text { font-size: 46px; color: #b8c6d9; flex: 1; }
281
+ .avatar-list { display: flex; gap: 22px; }
282
+ .avatar {
283
+ width: 120px; height: 120px;
284
+ border-radius: 50%;
285
+ background: #E0E0E0;
286
+ border: 1px solid #BDBDBD;
287
+ display: flex; align-items: center; justify-content: center;
288
+ color: #757575; font-size: 24px;
289
+ }
290
+ </style>
291
+ </head>
292
+ <body>
293
+ <div id="render-target">
294
+
295
+ <!-- Status Bar -->
296
+ <div class="status-bar">
297
+ <div class="status-time">8:31</div>
298
+ <div class="status-icons">
299
+ <!-- Signal/WiFi -->
300
+ <svg viewBox="0 0 24 24"><path fill="#fff" d="M12 20l-2-2h4l-2 2zm0-4c-2.2 0-4 1.8-4 4h2c0-1.1.9-2 2-2s2 .9 2 2h2c0-2.2-1.8-4-4-4zm0-4c-4.4 0-8 3.6-8 8h2c0-3.3 2.7-6 6-6s6 2.7 6 6h2c0-4.4-3.6-8-8-8z"/></svg>
301
+ <!-- Battery -->
302
+ <svg viewBox="0 0 24 24"><path fill="#fff" d="M16 4h-8c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 12H8V6h8v10z"/><path fill="#fff" d="M20 9v4h2V9h-2z"/></svg>
303
+ </div>
304
+ </div>
305
+
306
+ <!-- App Bar -->
307
+ <div class="app-bar">
308
+ <!-- Hamburger -->
309
+ <svg viewBox="0 0 24 24" width="64" height="64"><path fill="#fff" d="M3 6h18v2H3V6zm0 5h18v2H3v-2zm0 5h18v2H3v-2z"/></svg>
310
+ <div class="app-title">Tasks</div>
311
+ <div class="app-actions">
312
+ <!-- Alarm + icon -->
313
+ <svg viewBox="0 0 24 24"><path fill="#fff" d="M12 6a7 7 0 100 14 7 7 0 000-14zm0 2a5 5 0 110 10 5 5 0 010-10z"/><path fill="#fff" d="M11 10h2v3h3v2h-5v-5z"/><path fill="#fff" d="M5 5l3-3 1.4 1.4L6.4 6.4 5 5zm14 0l-3-3-1.4 1.4 3 3L19 5z"/></svg>
314
+ <!-- Check circle -->
315
+ <svg viewBox="0 0 24 24"><path fill="#fff" d="M12 2a10 10 0 100 20 10 10 0 000-20zm-1 14l-4-4 1.4-1.4L11 13.2l5.6-5.6L18 9l-7 7z"/></svg>
316
+ <!-- Search -->
317
+ <svg viewBox="0 0 24 24"><path fill="#fff" d="M15.5 14h-.8l-.3-.3a6.5 6.5 0 10-.9.9l.3.3v.8l5 5 1.5-1.5-5-5zm-6 0a4.5 4.5 0 110-9 4.5 4.5 0 010 9z"/></svg>
318
+ </div>
319
+ </div>
320
+
321
+ <!-- Notification Banner -->
322
+ <div class="notify-banner">
323
+ <div class="msg">
324
+ <svg viewBox="0 0 24 24" width="44" height="44"><path fill="#ff4a4a" d="M1 21h22L12 2 1 21zm12-3h-2v2h2v-2zm0-8h-2v6h2V10z"/></svg>
325
+ Please allow app to send you notification
326
+ </div>
327
+ <div class="btn">Enable</div>
328
+ </div>
329
+
330
+ <!-- Section Header -->
331
+ <div class="section-header">Next 7 days</div>
332
+
333
+ <!-- Task Item -->
334
+ <div class="task-item">
335
+ <div class="task-title">start gym</div>
336
+ <div class="task-meta">
337
+ <svg viewBox="0 0 24 24"><path fill="#b9c3d3" d="M12 1a11 11 0 100 22 11 11 0 000-22zm1 6h-2v6h6v-2h-4V7z"/></svg>
338
+ <span>05:30 AM</span>
339
+ <svg viewBox="0 0 24 24"><path fill="#b9c3d3" d="M17 3v2H7V3H5v2H3v2h18V5h-2V3h-2zM5 9h14v10H5V9z"/></svg>
340
+ <span>Once</span>
341
+ </div>
342
+ <div class="task-date">Thu, Jun 15, 2023</div>
343
+ </div>
344
+ <!-- caret -->
345
+ <svg class="item-caret" viewBox="0 0 24 24"><path fill="#bfc7d6" d="M7 10l5 5 5-5H7z"/></svg>
346
+
347
+ <!-- Overlay Modal -->
348
+ <div class="overlay">
349
+ <div class="overlay-header">
350
+ <svg class="close-btn" viewBox="0 0 24 24"><path fill="#eaf3ff" d="M18.3 5.7L12 12l6.3 6.3-1.4 1.4L10.6 13.4 4.3 19.7 2.9 18.3 9.2 12 2.9 5.7 4.3 4.3l6.3 6.3 6.3-6.3 1.4 1.4z"/></svg>
351
+ <div>Edit Reminder</div>
352
+ <div class="save-btn">SAVE</div>
353
+ </div>
354
+ <div class="overlay-content">
355
+ <div class="simple-title">Black day</div>
356
+
357
+ <!-- Select REPEAT YEARLY -->
358
+ <div class="form-row">
359
+ <div class="form-label">Select</div>
360
+ <div class="select-box">
361
+ <span>REPEAT YEARLY</span>
362
+ <svg class="chev" viewBox="0 0 24 24"><path fill="#e8f0ff" d="M7 9l5 5 5-5H7z"/></svg>
363
+ </div>
364
+ </div>
365
+
366
+ <!-- Every 1 year -->
367
+ <div class="form-row">
368
+ <div class="form-label">EVERY</div>
369
+ <div class="every-input">
370
+ <span>1</span>
371
+ <div class="underline"></div>
372
+ <span>year</span>
373
+ </div>
374
+ </div>
375
+
376
+ <!-- Ends: Never -->
377
+ <div class="form-row" style="border-bottom: none;">
378
+ <div class="form-label">ENDS:</div>
379
+ <div class="select-box-dark">
380
+ <span>Never</span>
381
+ <svg class="chev" viewBox="0 0 24 24"><path fill="#e8f0ff" d="M7 9l5 5 5-5H7z"/></svg>
382
+ </div>
383
+ </div>
384
+
385
+ <div class="buttons">
386
+ <div class="btn-red">Cancel</div>
387
+ <div class="btn-blue">Done</div>
388
+ </div>
389
+ </div>
390
+ </div>
391
+
392
+ <!-- Behind overlay extra items -->
393
+ <div class="behind-items">
394
+ <div class="behind-row">
395
+ <span>Remind me before</span>
396
+ <svg viewBox="0 0 24 24" width="40" height="40"><path fill="#c6d0e1" d="M9 8l6 4-6 4V8z"/></svg>
397
+ </div>
398
+ <div class="behind-row" style="border-bottom:none;">
399
+ <span>Repeat: No repeat</span>
400
+ <svg viewBox="0 0 24 24" width="40" height="40"><path fill="#c6d0e1" d="M9 8l6 4-6 4V8z"/></svg>
401
+ </div>
402
+ </div>
403
+
404
+ <!-- Floating Action Button -->
405
+ <div class="fab">
406
+ <svg viewBox="0 0 24 24">
407
+ <path fill="#fff" d="M12 6a7 7 0 100 14 7 7 0 000-14zm0 2a5 5 0 110 10 5 5 0 010-10z"/>
408
+ <path fill="#fff" d="M11 10h2v3h3v2h-5v-5z"/>
409
+ </svg>
410
+ </div>
411
+
412
+ <!-- Bottom Widget -->
413
+ <div class="bottom-widget">
414
+ <div class="widget-icon">[IMG: Phone Icon]</div>
415
+ <div class="widget-text">Speed Dial Widget<br>Just tap &amp; dial</div>
416
+ <div class="avatar-list">
417
+ <div class="avatar">[IMG: Contact]</div>
418
+ <div class="avatar">[IMG: Wheel]</div>
419
+ <div class="avatar">[IMG: Contact]</div>
420
+ </div>
421
+ </div>
422
+
423
+ </div>
424
+ </body>
425
+ </html>
code/7342/7342_6.html ADDED
@@ -0,0 +1,388 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Mobile UI Rendering</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: #0E1216;
13
+ color: #FFFFFF;
14
+ }
15
+
16
+ /* Top App Bar */
17
+ .appbar {
18
+ position: absolute;
19
+ top: 0;
20
+ left: 0;
21
+ width: 1080px;
22
+ height: 170px;
23
+ background: #0F4C93;
24
+ display: flex;
25
+ align-items: center;
26
+ padding: 0 28px;
27
+ box-sizing: border-box;
28
+ }
29
+ .appbar .left-icons {
30
+ display: flex; align-items: center; gap: 28px;
31
+ }
32
+ .appbar .title {
33
+ font-size: 56px; font-weight: 700; margin-left: 24px;
34
+ }
35
+ .appbar .right-icons {
36
+ margin-left: auto; display: flex; gap: 34px; align-items: center;
37
+ }
38
+ .icon-btn { width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; }
39
+ .icon-btn svg { width: 58px; height: 58px; fill: none; stroke: #FFFFFF; stroke-width: 5; }
40
+
41
+ /* Notification banner */
42
+ .warning-banner {
43
+ position: absolute; top: 170px; left: 0;
44
+ width: 1080px; height: 110px;
45
+ background: #1A1E24;
46
+ display: flex; align-items: center; padding: 0 32px;
47
+ box-sizing: border-box;
48
+ border-bottom: 1px solid #222A33;
49
+ }
50
+ .warning-banner .dot {
51
+ width: 34px; height: 34px; border-radius: 50%; background: #C62828; margin-right: 16px;
52
+ }
53
+ .warning-banner .text { color: #FF5252; font-size: 36px; flex: 1; }
54
+ .warning-banner .enable-btn {
55
+ background: transparent; border: 2px solid #4FA2FF; color: #A5D2FF;
56
+ padding: 14px 28px; border-radius: 10px; font-size: 34px;
57
+ }
58
+
59
+ /* Section header */
60
+ .section-header {
61
+ position: absolute; top: 280px; left: 0; width: 1080px;
62
+ background: #164B86; color: #D6E8FF; height: 88px;
63
+ display: flex; align-items: center; padding: 0 32px; box-sizing: border-box;
64
+ font-size: 42px; font-weight: 700;
65
+ }
66
+
67
+ /* Task item */
68
+ .task-card {
69
+ position: absolute; top: 368px; left: 0; width: 1080px;
70
+ padding: 28px 32px; box-sizing: border-box;
71
+ background: #0E1216;
72
+ border-top: 1px solid #233040;
73
+ border-bottom: 1px solid #233040;
74
+ }
75
+ .task-title { font-size: 54px; font-weight: 700; margin-bottom: 20px; }
76
+ .task-meta { display: flex; align-items: center; gap: 24px; color: #B0C4D9; font-size: 34px; }
77
+ .task-meta .meta-item { display: flex; align-items: center; gap: 8px; }
78
+ .task-meta svg { width: 34px; height: 34px; stroke: #B0C4D9; }
79
+ .expand-arrow { position: absolute; right: 28px; top: 60px; opacity: 0.8; }
80
+
81
+ /* Modal / Edit Reminder */
82
+ .modal {
83
+ position: absolute;
84
+ top: 570px;
85
+ left: 60px;
86
+ width: 960px;
87
+ background: #2E2E33;
88
+ border-radius: 12px;
89
+ box-shadow: 0 12px 28px rgba(0,0,0,0.55);
90
+ overflow: hidden;
91
+ }
92
+ .modal-header {
93
+ background: #3A8BFF;
94
+ height: 120px; display: flex; align-items: center; padding: 0 24px; box-sizing: border-box;
95
+ }
96
+ .modal-header .close-btn { width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; margin-right: 20px; }
97
+ .modal-header .title { font-size: 46px; font-weight: 700; flex: 1; }
98
+ .modal-header .save-btn {
99
+ background: #F0F6FF; color: #1958C3; font-weight: 700;
100
+ border: none; border-radius: 12px; padding: 14px 26px; font-size: 36px;
101
+ }
102
+ .modal-body { padding: 18px 24px 28px; }
103
+ .field-row {
104
+ height: 120px; border-bottom: 1px solid #444;
105
+ display: flex; align-items: center; justify-content: space-between;
106
+ color: #FFFFFF; font-size: 42px; box-sizing: border-box;
107
+ padding: 0 8px;
108
+ }
109
+ .field-row .left { display: flex; align-items: center; gap: 18px; }
110
+ .field-row .left .icon {
111
+ width: 56px; height: 56px; display: flex; align-items: center; justify-content: center;
112
+ }
113
+ .field-row .right { display: flex; align-items: center; gap: 24px; }
114
+ .field-row .right .small-action {
115
+ width: 64px; height: 64px; display: flex; align-items: center; justify-content: center;
116
+ border-radius: 8px;
117
+ }
118
+ .subnote { color: #7AB1FF; font-size: 36px; margin-left: 12px; }
119
+ .chip-row { padding: 14px 8px; display: flex; gap: 16px; align-items: center; }
120
+ .chip {
121
+ background: #3A7FE8; color: #FFFFFF; padding: 14px 22px; border-radius: 40px;
122
+ font-size: 34px; display: flex; align-items: center; gap: 16px;
123
+ }
124
+ .chip .x {
125
+ width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,0.25);
126
+ display: inline-flex; align-items: center; justify-content: center;
127
+ }
128
+
129
+ /* Floating Action Button */
130
+ .fab {
131
+ position: absolute; right: 52px; bottom: 220px;
132
+ width: 160px; height: 160px; border-radius: 80px;
133
+ background: #2C78E3; display: flex; align-items: center; justify-content: center;
134
+ box-shadow: 0 8px 18px rgba(0,0,0,0.45);
135
+ }
136
+ .fab svg { width: 90px; height: 90px; stroke: #fff; stroke-width: 6; fill: none; }
137
+
138
+ /* Ad banner at bottom */
139
+ .ad-banner {
140
+ position: absolute; bottom: 110px; left: 0; width: 1080px; height: 150px;
141
+ background: #101418; border-top: 1px solid #263040;
142
+ display: flex; align-items: center; padding: 0 32px; box-sizing: border-box;
143
+ gap: 24px;
144
+ }
145
+ .ad-image {
146
+ width: 170px; height: 110px; background: #E0E0E0; border: 1px solid #BDBDBD;
147
+ display: flex; align-items: center; justify-content: center; color: #757575; font-size: 26px;
148
+ border-radius: 12px;
149
+ }
150
+ .ad-texts { display: flex; flex-direction: column; gap: 8px; }
151
+ .ad-title { font-size: 38px; font-weight: 700; color: #D9E8FF; }
152
+ .ad-sub { font-size: 30px; color: #B0C4D9; }
153
+
154
+ /* Bottom gesture bar */
155
+ .gesture-bar {
156
+ position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
157
+ width: 380px; height: 12px; background: #D8D8D8; border-radius: 8px; opacity: 0.85;
158
+ }
159
+ </style>
160
+ </head>
161
+ <body>
162
+ <div id="render-target">
163
+
164
+ <!-- Top App Bar -->
165
+ <div class="appbar">
166
+ <div class="left-icons">
167
+ <div class="icon-btn">
168
+ <!-- Hamburger -->
169
+ <svg viewBox="0 0 24 24"><path d="M3 6h18M3 12h18M3 18h18"/></svg>
170
+ </div>
171
+ <div class="title">Tasks</div>
172
+ </div>
173
+ <div class="right-icons">
174
+ <div class="icon-btn" title="Add reminder">
175
+ <!-- clock with plus -->
176
+ <svg viewBox="0 0 24 24">
177
+ <circle cx="12" cy="12" r="9"></circle>
178
+ <path d="M12 7v6l4 2"></path>
179
+ <path d="M19 5v4M17 7h4"></path>
180
+ </svg>
181
+ </div>
182
+ <div class="icon-btn" title="Mark done">
183
+ <!-- check circle -->
184
+ <svg viewBox="0 0 24 24">
185
+ <circle cx="12" cy="12" r="9"></circle>
186
+ <path d="M8 12l3 3 5-6"></path>
187
+ </svg>
188
+ </div>
189
+ <div class="icon-btn" title="Search">
190
+ <!-- magnifier -->
191
+ <svg viewBox="0 0 24 24">
192
+ <circle cx="10.5" cy="10.5" r="6.5"></circle>
193
+ <path d="M16 16l5 5"></path>
194
+ </svg>
195
+ </div>
196
+ </div>
197
+ </div>
198
+
199
+ <!-- Warning Banner -->
200
+ <div class="warning-banner">
201
+ <div class="dot"></div>
202
+ <div class="text">Please allow app to send you notification</div>
203
+ <button class="enable-btn">Enable</button>
204
+ </div>
205
+
206
+ <!-- Section Header -->
207
+ <div class="section-header">Next 7 days</div>
208
+
209
+ <!-- Task item -->
210
+ <div class="task-card">
211
+ <div class="task-title">start gym</div>
212
+ <div class="task-meta">
213
+ <div class="meta-item">
214
+ <svg viewBox="0 0 24 24"><circle cx="12" cy="12" r="9"></circle><path d="M12 8v5l4 2"></path></svg>
215
+ <span>05:30 AM</span>
216
+ </div>
217
+ <div class="meta-item">
218
+ <svg viewBox="0 0 24 24"><path d="M4 12h16M12 4v16"></path></svg>
219
+ <span>Once</span>
220
+ </div>
221
+ </div>
222
+ <div class="task-meta" style="margin-top: 12px;">
223
+ <div class="meta-item">
224
+ <svg viewBox="0 0 24 24"><rect x="3" y="4" width="18" height="16" rx="2" ry="2"></rect><path d="M16 2v4M8 2v4M3 10h18"></path></svg>
225
+ <span>Thu, Jun 15, 2023</span>
226
+ </div>
227
+ </div>
228
+ <div class="expand-arrow">
229
+ <svg viewBox="0 0 24 24" width="46" height="46"><path d="M6 9l6 6 6-6" stroke="#94ABD0" stroke-width="2" fill="none"/></svg>
230
+ </div>
231
+ </div>
232
+
233
+ <!-- Modal: Edit Reminder -->
234
+ <div class="modal">
235
+ <div class="modal-header">
236
+ <div class="close-btn">
237
+ <svg viewBox="0 0 24 24"><path d="M5 5l14 14M19 5L5 19" stroke="#FFFFFF" stroke-width="3" /></svg>
238
+ </div>
239
+ <div class="title">Edit Reminder</div>
240
+ <button class="save-btn">SAVE</button>
241
+ </div>
242
+ <div class="modal-body">
243
+ <!-- Title 1 -->
244
+ <div class="field-row">
245
+ <div class="left">
246
+ <div style="font-size:44px;">Black day</div>
247
+ </div>
248
+ <div class="right">
249
+ <!-- mic icon -->
250
+ <div class="small-action">
251
+ <svg viewBox="0 0 24 24" width="42" height="42">
252
+ <rect x="9" y="4" width="6" height="9" rx="3" ry="3" stroke="#D6E8FF" fill="none" stroke-width="2"></rect>
253
+ <path d="M6 10a6 6 0 0 0 12 0M12 16v4M9 20h6" stroke="#D6E8FF" fill="none" stroke-width="2"></path>
254
+ </svg>
255
+ </div>
256
+ </div>
257
+ </div>
258
+
259
+ <!-- Title 2 -->
260
+ <div class="field-row">
261
+ <div class="left"><div style="font-size:44px;">Worse day of life</div></div>
262
+ <div class="right">
263
+ <div class="small-action">
264
+ <svg viewBox="0 0 24 24" width="42" height="42">
265
+ <rect x="9" y="4" width="6" height="9" rx="3" ry="3" stroke="#D6E8FF" fill="none" stroke-width="2"></rect>
266
+ <path d="M6 10a6 6 0 0 0 12 0M12 16v4M9 20h6" stroke="#D6E8FF" fill="none" stroke-width="2"></path>
267
+ </svg>
268
+ </div>
269
+ </div>
270
+ </div>
271
+
272
+ <!-- Date -->
273
+ <div class="field-row">
274
+ <div class="left">
275
+ <div class="icon">
276
+ <svg viewBox="0 0 24 24" width="44" height="44">
277
+ <rect x="3" y="4" width="18" height="16" rx="2" ry="2" stroke="#D6E8FF" fill="none" stroke-width="2"></rect>
278
+ <path d="M16 2v4M8 2v4M3 10h18" stroke="#D6E8FF" stroke-width="2" />
279
+ </svg>
280
+ </div>
281
+ <div>Fri, Aug 25, 2023</div>
282
+ </div>
283
+ <div class="right">
284
+ <div class="small-action">
285
+ <svg viewBox="0 0 24 24" width="42" height="42">
286
+ <path d="M5 5l14 14M19 5L5 19" stroke="#D6E8FF" stroke-width="2" />
287
+ </svg>
288
+ </div>
289
+ </div>
290
+ </div>
291
+
292
+ <!-- Time -->
293
+ <div class="field-row">
294
+ <div class="left">
295
+ <div class="icon">
296
+ <svg viewBox="0 0 24 24" width="44" height="44">
297
+ <circle cx="12" cy="12" r="9" stroke="#D6E8FF" fill="none" stroke-width="2"></circle>
298
+ <path d="M12 8v5l4 2" stroke="#D6E8FF" stroke-width="2"></path>
299
+ </svg>
300
+ </div>
301
+ <div>01:06 AM <span class="subnote">+Add more time</span></div>
302
+ </div>
303
+ <div class="right">
304
+ <div class="small-action">
305
+ <svg viewBox="0 0 24 24" width="42" height="42">
306
+ <path d="M5 5l14 14M19 5L5 19" stroke="#D6E8FF" stroke-width="2" />
307
+ </svg>
308
+ </div>
309
+ </div>
310
+ </div>
311
+
312
+ <!-- Chip -->
313
+ <div class="chip-row">
314
+ <div class="chip">
315
+ <span>01:08 AM</span>
316
+ <span class="x">x</span>
317
+ </div>
318
+ </div>
319
+
320
+ <!-- Remind me before -->
321
+ <div class="field-row">
322
+ <div class="left">
323
+ <div class="icon">
324
+ <svg viewBox="0 0 24 24" width="44" height="44">
325
+ <circle cx="12" cy="12" r="9" stroke="#D6E8FF" fill="none" stroke-width="2"></circle>
326
+ <path d="M12 7v6l4 2" stroke="#D6E8FF" stroke-width="2"></path>
327
+ </svg>
328
+ </div>
329
+ <div>Remind me before</div>
330
+ </div>
331
+ <div class="right">
332
+ <svg viewBox="0 0 24 24" width="42" height="42">
333
+ <path d="M9 6l6 6-6 6" stroke="#D6E8FF" fill="none" stroke-width="2" />
334
+ </svg>
335
+ </div>
336
+ </div>
337
+
338
+ <!-- Repeat -->
339
+ <div class="field-row" style="border-bottom: none;">
340
+ <div class="left">
341
+ <div class="icon">
342
+ <svg viewBox="0 0 24 24" width="44" height="44">
343
+ <path d="M17 1v4h-4M7 23v-4h4M6 7a5 5 0 0 1 9-2M18 17a5 5 0 0 1-9 2" stroke="#D6E8FF" fill="none" stroke-width="2"/>
344
+ </svg>
345
+ </div>
346
+ <div>Repeat every 1 year</div>
347
+ </div>
348
+ <div class="right">
349
+ <div class="small-action">
350
+ <svg viewBox="0 0 24 24" width="42" height="42">
351
+ <path d="M5 5l14 14M19 5L5 19" stroke="#D6E8FF" stroke-width="2" />
352
+ </svg>
353
+ </div>
354
+ </div>
355
+ </div>
356
+ </div>
357
+ </div>
358
+
359
+ <!-- Floating Action Button -->
360
+ <div class="fab" title="Add alarm">
361
+ <svg viewBox="0 0 24 24">
362
+ <circle cx="12" cy="12" r="8"></circle>
363
+ <path d="M12 8v6M9 11h6"></path>
364
+ <path d="M6 4l3 2M18 4l-3 2"></path>
365
+ </svg>
366
+ </div>
367
+
368
+ <!-- Ad banner -->
369
+ <div class="ad-banner">
370
+ <div class="ad-image">[IMG: Phone Dial Icon]</div>
371
+ <div class="ad-texts">
372
+ <div class="ad-title">Speed Dial Widget</div>
373
+ <div class="ad-sub">Just tap & dial</div>
374
+ </div>
375
+ <!-- Avatars placeholders -->
376
+ <div style="margin-left:auto; display:flex; gap:24px;">
377
+ <div class="ad-image" style="width:100px; height:100px;">[IMG: Avatar]</div>
378
+ <div class="ad-image" style="width:100px; height:100px;">[IMG: Wheel Avatar]</div>
379
+ <div class="ad-image" style="width:100px; height:100px;">[IMG: Avatar]</div>
380
+ </div>
381
+ </div>
382
+
383
+ <!-- Bottom gesture bar -->
384
+ <div class="gesture-bar"></div>
385
+
386
+ </div>
387
+ </body>
388
+ </html>
code/7342/7342_7.html ADDED
@@ -0,0 +1,270 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Tasks UI</title>
5
+ <style>
6
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
7
+ #render-target {
8
+ width: 1080px; height: 2400px; position: relative; overflow: hidden;
9
+ background: #2b2b2b;
10
+ }
11
+
12
+ /* Top blue header */
13
+ .top-header {
14
+ position: absolute; left: 0; top: 0; width: 1080px; height: 280px;
15
+ background: #4A90E2;
16
+ color: #fff;
17
+ }
18
+ .status-bar {
19
+ height: 84px; display: flex; align-items: center; padding: 0 40px; gap: 24px; font-size: 40px; font-weight: 600;
20
+ }
21
+ .status-icons { margin-left: auto; display: flex; align-items: center; gap: 30px; }
22
+ .toolbar {
23
+ height: 196px; display: flex; align-items: center; padding: 0 36px; gap: 30px;
24
+ }
25
+ .toolbar-title { font-size: 64px; font-weight: 700; letter-spacing: 0.5px; margin-right: auto; }
26
+ .icon-btn { width: 92px; height: 92px; display: grid; place-items: center; }
27
+ .svg-white { fill: none; stroke: #fff; stroke-width: 6px; stroke-linecap: round; stroke-linejoin: round; }
28
+
29
+ /* Warning bar */
30
+ .warning-bar {
31
+ position: absolute; top: 280px; left: 0; width: 1080px; height: 110px;
32
+ background: #3a3a3a; display: flex; align-items: center; padding: 0 36px; gap: 20px;
33
+ border-bottom: 1px solid rgba(255,255,255,0.06);
34
+ }
35
+ .warning-text {
36
+ color: #ff6d6d; font-size: 40px; font-weight: 600;
37
+ }
38
+ .enable-btn {
39
+ margin-left: auto; background: #2f66d4; color: #fff; font-size: 40px; padding: 16px 34px;
40
+ border-radius: 10px;
41
+ }
42
+
43
+ /* Section headers */
44
+ .section-header {
45
+ width: 1080px; height: 92px; display: flex; align-items: center; padding: 0 28px; font-size: 48px; font-weight: 700;
46
+ }
47
+ .header-blue { background: #3fa5ff; color: #0c253a; }
48
+ .header-green { background: #b8e64c; color: #112b09; }
49
+
50
+ /* Task card */
51
+ .task-card {
52
+ width: 1080px; background: #2f2f2f; color: #fff; padding: 36px 36px; box-sizing: border-box;
53
+ border-bottom: 1px solid rgba(255,255,255,0.06);
54
+ position: relative;
55
+ }
56
+ .task-title { font-size: 54px; font-weight: 700; margin-bottom: 24px; }
57
+ .meta-row { display: flex; align-items: center; gap: 20px; color: #cbd1d8; font-size: 38px; margin-bottom: 18px; }
58
+ .meta-icon { width: 42px; height: 42px; display: grid; place-items: center; }
59
+ .chevron {
60
+ position: absolute; right: 24px; top: 48px; width: 72px; height: 72px; display: grid; place-items: center;
61
+ }
62
+ .svg-grey { stroke: #cfd8dc; fill: none; stroke-width: 6px; stroke-linecap: round; stroke-linejoin: round; }
63
+
64
+ /* FAB */
65
+ .fab {
66
+ position: absolute; right: 44px; bottom: 220px; width: 160px; height: 160px; border-radius: 50%;
67
+ background: #4aa4ff; box-shadow: 0 8px 24px rgba(0,0,0,0.35); display: grid; place-items: center;
68
+ }
69
+ .fab svg { stroke: #fff; }
70
+
71
+ /* Bottom ad banner */
72
+ .ad-banner {
73
+ position: absolute; left: 0; bottom: 0; width: 1080px; height: 180px; background: #ffffff;
74
+ display: flex; align-items: center; padding: 0 24px; box-sizing: border-box; gap: 24px;
75
+ border-top: 1px solid #e0e0e0;
76
+ }
77
+ .ad-icon {
78
+ width: 140px; height: 140px; border-radius: 16px; background: #7fd3d3;
79
+ display: grid; place-items: center;
80
+ }
81
+ .ad-text { display: flex; flex-direction: column; }
82
+ .ad-title { font-size: 48px; color: #1d1d1d; font-weight: 700; }
83
+ .ad-sub { font-size: 36px; color: #3a3a3a; }
84
+ .ad-avatars { margin-left: auto; display: flex; align-items: center; gap: 22px; }
85
+ .img-placeholder {
86
+ width: 128px; height: 128px; background: #E0E0E0; border: 1px solid #BDBDBD; border-radius: 50%;
87
+ display: flex; align-items: center; justify-content: center; color: #757575; font-size: 26px; text-align: center; padding: 8px;
88
+ }
89
+ </style>
90
+ </head>
91
+ <body>
92
+ <div id="render-target">
93
+
94
+ <!-- Blue Header -->
95
+ <div class="top-header">
96
+ <div class="status-bar">
97
+ <div>8:32</div>
98
+ <div class="status-icons">
99
+ <!-- Simple status icons -->
100
+ <svg width="40" height="40" class="svg-white">
101
+ <circle cx="20" cy="20" r="10"></circle>
102
+ <line x1="20" y1="2" x2="20" y2="8"></line>
103
+ </svg>
104
+ <svg width="40" height="40" class="svg-white">
105
+ <path d="M8 30 L32 20 L8 10 Z"></path>
106
+ </svg>
107
+ <svg width="40" height="40" class="svg-white">
108
+ <path d="M30 4 L10 36"></path>
109
+ </svg>
110
+ </div>
111
+ </div>
112
+
113
+ <div class="toolbar">
114
+ <!-- Hamburger -->
115
+ <div class="icon-btn">
116
+ <svg width="72" height="72" class="svg-white">
117
+ <line x1="12" y1="18" x2="60" y2="18"></line>
118
+ <line x1="12" y1="36" x2="60" y2="36"></line>
119
+ <line x1="12" y1="54" x2="60" y2="54"></line>
120
+ </svg>
121
+ </div>
122
+
123
+ <div class="toolbar-title">Tasks</div>
124
+
125
+ <!-- Add circle -->
126
+ <div class="icon-btn">
127
+ <svg width="72" height="72" class="svg-white">
128
+ <circle cx="36" cy="36" r="30"></circle>
129
+ <line x1="36" y1="22" x2="36" y2="50"></line>
130
+ <line x1="22" y1="36" x2="50" y2="36"></line>
131
+ </svg>
132
+ </div>
133
+ <!-- Check circle -->
134
+ <div class="icon-btn">
135
+ <svg width="72" height="72" class="svg-white">
136
+ <circle cx="36" cy="36" r="30"></circle>
137
+ <path d="M24 36 L34 46 L52 28"></path>
138
+ </svg>
139
+ </div>
140
+ <!-- Search -->
141
+ <div class="icon-btn">
142
+ <svg width="72" height="72" class="svg-white">
143
+ <circle cx="30" cy="30" r="20"></circle>
144
+ <line x1="46" y1="46" x2="66" y2="66"></line>
145
+ </svg>
146
+ </div>
147
+ </div>
148
+ </div>
149
+
150
+ <!-- Warning Bar -->
151
+ <div class="warning-bar">
152
+ <svg width="40" height="40" style="margin-right: 10px;">
153
+ <circle cx="20" cy="20" r="18" fill="none" stroke="#ff6d6d" stroke-width="6"></circle>
154
+ <line x1="20" y1="10" x2="20" y2="24" stroke="#ff6d6d" stroke-width="6"></line>
155
+ <circle cx="20" cy="32" r="3" fill="#ff6d6d"></circle>
156
+ </svg>
157
+ <div class="warning-text">Please allow app to send you notification</div>
158
+ <div class="enable-btn">Enable</div>
159
+ </div>
160
+
161
+ <!-- Sections and Tasks -->
162
+ <div class="section-header header-blue" style="top: 390px; position: absolute;">Next 7 days</div>
163
+
164
+ <div class="task-card" style="top: 482px; position: absolute;">
165
+ <div class="task-title">start gym</div>
166
+ <div class="meta-row">
167
+ <div class="meta-icon">
168
+ <svg width="42" height="42" class="svg-grey">
169
+ <circle cx="21" cy="21" r="18"></circle>
170
+ <line x1="21" y1="21" x2="21" y2="10"></line>
171
+ <line x1="21" y1="21" x2="32" y2="24"></line>
172
+ </svg>
173
+ </div>
174
+ <div>05:30 AM</div>
175
+ <div class="meta-icon">
176
+ <svg width="42" height="42" class="svg-grey">
177
+ <path d="M10 14 L32 14"></path>
178
+ <rect x="6" y="14" width="30" height="22" rx="4"></rect>
179
+ </svg>
180
+ </div>
181
+ <div>Once</div>
182
+ </div>
183
+ <div class="meta-row" style="margin-bottom:0;">
184
+ <div class="meta-icon">
185
+ <svg width="42" height="42" class="svg-grey">
186
+ <rect x="8" y="10" width="26" height="22" rx="3"></rect>
187
+ <line x1="8" y1="18" x2="34" y2="18"></line>
188
+ <line x1="16" y1="10" x2="16" y2="6"></line>
189
+ <line x1="26" y1="10" x2="26" y2="6"></line>
190
+ </svg>
191
+ </div>
192
+ <div>Thu, Jun 15, 2023</div>
193
+ </div>
194
+ <div class="chevron">
195
+ <svg width="56" height="56" class="svg-grey">
196
+ <polyline points="10,22 28,38 46,22"></polyline>
197
+ </svg>
198
+ </div>
199
+ </div>
200
+
201
+ <div class="section-header header-green" style="top: 742px; position: absolute;">Upcoming</div>
202
+
203
+ <div class="task-card" style="top: 834px; position: absolute;">
204
+ <div class="task-title">Black day</div>
205
+ <div class="meta-row">
206
+ <div class="meta-icon">
207
+ <svg width="42" height="42" class="svg-grey">
208
+ <circle cx="21" cy="21" r="18"></circle>
209
+ <line x1="21" y1="21" x2="21" y2="10"></line>
210
+ <line x1="21" y1="21" x2="32" y2="24"></line>
211
+ </svg>
212
+ </div>
213
+ <div>01:06 AM</div>
214
+ <div class="meta-icon">
215
+ <svg width="42" height="42" class="svg-grey">
216
+ <path d="M10 26 A12 12 0 1 1 32 26"></path>
217
+ <polyline points="32,26 26,26 26,20"></polyline>
218
+ </svg>
219
+ </div>
220
+ <div>1 year</div>
221
+ </div>
222
+ <div class="meta-row" style="margin-bottom:0;">
223
+ <div class="meta-icon">
224
+ <svg width="42" height="42" class="svg-grey">
225
+ <rect x="8" y="10" width="26" height="22" rx="3"></rect>
226
+ <line x1="8" y1="18" x2="34" y2="18"></line>
227
+ <line x1="16" y1="10" x2="16" y2="6"></line>
228
+ <line x1="26" y1="10" x2="26" y2="6"></line>
229
+ </svg>
230
+ </div>
231
+ <div>Fri, Aug 25, 2023</div>
232
+ </div>
233
+ <div class="chevron">
234
+ <svg width="56" height="56" class="svg-grey">
235
+ <polyline points="10,22 28,38 46,22"></polyline>
236
+ </svg>
237
+ </div>
238
+ </div>
239
+
240
+ <!-- Floating Action Button -->
241
+ <div class="fab">
242
+ <svg width="88" height="88" viewBox="0 0 88 88" fill="none" stroke-width="6" stroke-linecap="round" stroke-linejoin="round">
243
+ <circle cx="44" cy="50" r="24"></circle>
244
+ <line x1="28" y1="26" x2="60" y2="26"></line>
245
+ <line x1="44" y1="42" x2="44" y2="58"></line>
246
+ <line x1="36" y1="50" x2="52" y2="50"></line>
247
+ </svg>
248
+ </div>
249
+
250
+ <!-- Bottom Ad Banner -->
251
+ <div class="ad-banner">
252
+ <div class="ad-icon">
253
+ <svg width="90" height="90" viewBox="0 0 60 60" class="svg-white">
254
+ <path d="M12 18 C18 34 26 42 42 48 L50 40 C46 36 40 36 38 38 C34 36 24 26 22 22 C24 20 24 14 20 10 L12 18 Z" stroke="#fff"></path>
255
+ </svg>
256
+ </div>
257
+ <div class="ad-text">
258
+ <div class="ad-title">Speed Dial Widget</div>
259
+ <div class="ad-sub">Just tap &amp; dial</div>
260
+ </div>
261
+ <div class="ad-avatars">
262
+ <div class="img-placeholder">[IMG: Avatar]</div>
263
+ <div class="img-placeholder">[IMG: Avatar]</div>
264
+ <div class="img-placeholder">[IMG: Avatar]</div>
265
+ </div>
266
+ </div>
267
+
268
+ </div>
269
+ </body>
270
+ </html>
code/7345/7345_1.html ADDED
@@ -0,0 +1,364 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Meditation Library UI</title>
5
+ <style>
6
+ body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, system-ui, sans-serif; }
7
+ #render-target {
8
+ width: 1080px;
9
+ height: 2400px;
10
+ position: relative;
11
+ overflow: hidden;
12
+ background: linear-gradient(180deg, #0b2c56 0%, #173357 60%, #1c385e 100%);
13
+ color: #ffffff;
14
+ }
15
+
16
+ /* Top bar */
17
+ .top-bar {
18
+ position: absolute;
19
+ left: 0; right: 0; top: 0;
20
+ height: 220px;
21
+ padding: 40px 40px 0 40px;
22
+ }
23
+ .back-row {
24
+ display: flex;
25
+ align-items: center;
26
+ gap: 20px;
27
+ height: 60px;
28
+ }
29
+ .icon {
30
+ width: 48px; height: 48px;
31
+ }
32
+ .search-bar {
33
+ margin-top: 24px;
34
+ height: 100px;
35
+ border-radius: 24px;
36
+ background: rgba(255,255,255,0.10);
37
+ border: 1px solid rgba(255,255,255,0.20);
38
+ display: flex; align-items: center;
39
+ padding: 0 32px;
40
+ }
41
+ .search-bar input {
42
+ flex: 1;
43
+ background: transparent;
44
+ border: none;
45
+ color: #d7e6ff;
46
+ font-size: 40px;
47
+ outline: none;
48
+ }
49
+ .search-placeholder { color: #97b1d8; }
50
+ .filters {
51
+ position: absolute;
52
+ top: 240px;
53
+ left: 40px;
54
+ right: 40px;
55
+ display: flex;
56
+ gap: 24px;
57
+ }
58
+ .chip {
59
+ padding: 22px 28px;
60
+ border-radius: 60px;
61
+ background: rgba(255,255,255,0.08);
62
+ border: 1px solid rgba(255,255,255,0.18);
63
+ display: inline-flex;
64
+ align-items: center;
65
+ gap: 18px;
66
+ font-size: 36px;
67
+ color: #eaf2ff;
68
+ }
69
+ .results {
70
+ position: absolute;
71
+ top: 330px;
72
+ left: 40px;
73
+ font-size: 36px;
74
+ color: #c9dcff;
75
+ }
76
+
77
+ /* Cards grid */
78
+ .grid {
79
+ position: absolute;
80
+ top: 380px;
81
+ left: 40px;
82
+ right: 40px;
83
+ display: grid;
84
+ grid-template-columns: repeat(2, 1fr);
85
+ gap: 36px;
86
+ }
87
+ .card {
88
+ border-radius: 36px;
89
+ overflow: hidden;
90
+ background: rgba(255,255,255,0.06);
91
+ border: 1px solid rgba(255,255,255,0.15);
92
+ position: relative;
93
+ }
94
+ .card-img {
95
+ height: 520px;
96
+ background: #E0E0E0;
97
+ border-bottom: 1px solid #BDBDBD;
98
+ display: flex; justify-content: center; align-items: center;
99
+ color: #757575;
100
+ font-size: 34px;
101
+ text-align: center;
102
+ }
103
+ .card-body {
104
+ padding: 32px;
105
+ }
106
+ .card-title {
107
+ font-size: 48px;
108
+ line-height: 1.2;
109
+ margin-bottom: 12px;
110
+ }
111
+ .card-sub {
112
+ font-size: 32px;
113
+ color: #a8c3ef;
114
+ }
115
+ .badge {
116
+ position: absolute;
117
+ top: 22px;
118
+ left: 22px;
119
+ background: rgba(255,255,255,0.18);
120
+ color: #ffffff;
121
+ padding: 16px 22px;
122
+ border-radius: 44px;
123
+ font-size: 32px;
124
+ font-weight: 600;
125
+ backdrop-filter: blur(3px);
126
+ border: 1px solid rgba(255,255,255,0.25);
127
+ }
128
+ .lock-pill {
129
+ position: absolute;
130
+ top: 22px;
131
+ right: 22px;
132
+ width: 70px; height: 70px;
133
+ border-radius: 50%;
134
+ background: rgba(255,255,255,0.18);
135
+ border: 1px solid rgba(255,255,255,0.25);
136
+ display: flex; align-items: center; justify-content: center;
137
+ backdrop-filter: blur(3px);
138
+ }
139
+
140
+ /* CTA card */
141
+ .cta {
142
+ position: absolute;
143
+ left: 40px;
144
+ right: 40px;
145
+ bottom: 360px;
146
+ border-radius: 28px;
147
+ background: rgba(255,255,255,0.06);
148
+ border: 1px solid rgba(255,255,255,0.18);
149
+ padding: 40px;
150
+ }
151
+ .cta-title {
152
+ font-size: 58px;
153
+ font-weight: 700;
154
+ margin-bottom: 36px;
155
+ }
156
+ .cta-btn {
157
+ width: 640px;
158
+ height: 120px;
159
+ border-radius: 60px;
160
+ background: #ffb9a4;
161
+ color: #1a2f57;
162
+ font-size: 44px;
163
+ font-weight: 700;
164
+ display: flex; align-items: center; justify-content: center;
165
+ gap: 20px;
166
+ border: none;
167
+ }
168
+ .cta-btn .lock-icon {
169
+ width: 54px; height: 54px;
170
+ }
171
+
172
+ /* Bottom nav */
173
+ .bottom-nav {
174
+ position: absolute;
175
+ left: 0; right: 0; bottom: 0;
176
+ height: 180px;
177
+ background: rgba(10,29,58,0.9);
178
+ border-top: 1px solid rgba(255,255,255,0.15);
179
+ display: flex; justify-content: space-around; align-items: center;
180
+ }
181
+ .nav-item {
182
+ width: 160px; height: 140px;
183
+ border-radius: 28px;
184
+ display: flex; flex-direction: column; align-items: center; justify-content: center;
185
+ color: #cfe0ff;
186
+ gap: 18px;
187
+ }
188
+ .nav-item.active {
189
+ color: #ffffff;
190
+ }
191
+ .nav-icon {
192
+ width: 58px; height: 58px;
193
+ }
194
+ .lock-small {
195
+ position: absolute;
196
+ right: 22px;
197
+ top: 22px;
198
+ width: 54px; height: 54px;
199
+ border-radius: 50%;
200
+ background: rgba(255,255,255,0.18);
201
+ border: 1px solid rgba(255,255,255,0.25);
202
+ display: flex; align-items: center; justify-content: center;
203
+ }
204
+ </style>
205
+ </head>
206
+ <body>
207
+ <div id="render-target">
208
+
209
+ <!-- Top Bar with Back and Search -->
210
+ <div class="top-bar">
211
+ <div class="back-row">
212
+ <svg class="icon" viewBox="0 0 24 24" fill="#cfe0ff">
213
+ <path d="M15.5 19l-7-7 7-7" stroke="#cfe0ff" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
214
+ </svg>
215
+ </div>
216
+
217
+ <div class="search-bar">
218
+ <svg class="icon" viewBox="0 0 24 24" fill="#97b1d8" style="margin-right:16px;">
219
+ <circle cx="10" cy="10" r="6" stroke="#97b1d8" stroke-width="2" fill="none"></circle>
220
+ <path d="M15 15l6 6" stroke="#97b1d8" stroke-width="2" stroke-linecap="round"></path>
221
+ </svg>
222
+ <input type="text" placeholder="Search by name or topic" class="search-placeholder">
223
+ </div>
224
+ </div>
225
+
226
+ <!-- Filters -->
227
+ <div class="filters">
228
+ <div class="chip">
229
+ <span>All Types</span>
230
+ <svg viewBox="0 0 24 24" width="36" height="36" fill="#eaf2ff">
231
+ <path d="M6 9l6 6 6-6" stroke="#eaf2ff" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"></path>
232
+ </svg>
233
+ </div>
234
+ <div class="chip">
235
+ <span>All Durations</span>
236
+ <svg viewBox="0 0 24 24" width="36" height="36" fill="#eaf2ff">
237
+ <path d="M6 9l6 6 6-6" stroke="#eaf2ff" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"></path>
238
+ </svg>
239
+ </div>
240
+ <div class="chip">
241
+ <span>All Content</span>
242
+ <svg viewBox="0 0 24 24" width="36" height="36" fill="#eaf2ff">
243
+ <path d="M6 9l6 6 6-6" stroke="#eaf2ff" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"></path>
244
+ </svg>
245
+ </div>
246
+ </div>
247
+
248
+ <!-- Results count -->
249
+ <div class="results">1376 results found</div>
250
+
251
+ <!-- Cards Grid -->
252
+ <div class="grid">
253
+ <!-- Card 1 -->
254
+ <div class="card">
255
+ <div class="badge">New</div>
256
+ <div class="lock-pill">
257
+ <svg viewBox="0 0 24 24" width="34" height="34">
258
+ <path d="M7 10V8a5 5 0 0110 0v2M6 10h12v10H6z" stroke="#ffffff" stroke-width="2" fill="none" stroke-linecap="round"/>
259
+ </svg>
260
+ </div>
261
+ <div class="card-img">[IMG: Green meadow with snowy mountains]</div>
262
+ <div class="card-body">
263
+ <div class="card-title">That Midday Break</div>
264
+ <div class="card-sub">Meditation • 16 min</div>
265
+ </div>
266
+ </div>
267
+
268
+ <!-- Card 2 -->
269
+ <div class="card">
270
+ <div class="badge">New</div>
271
+ <div class="lock-pill">
272
+ <svg viewBox="0 0 24 24" width="34" height="34">
273
+ <path d="M7 10V8a5 5 0 0110 0v2M6 10h12v10H6z" stroke="#ffffff" stroke-width="2" fill="none" stroke-linecap="round"/>
274
+ </svg>
275
+ </div>
276
+ <div class="card-img">[IMG: Sunset lake with mountain range]</div>
277
+ <div class="card-body">
278
+ <div class="card-title">Great Outdoors Meditation</div>
279
+ <div class="card-sub">Meditation • 5 min</div>
280
+ </div>
281
+ </div>
282
+
283
+ <!-- Card 3 -->
284
+ <div class="card">
285
+ <div class="badge">New</div>
286
+ <div class="lock-pill">
287
+ <svg viewBox="0 0 24 24" width="34" height="34">
288
+ <path d="M7 10V8a5 5 0 0110 0v2M6 10h12v10H6z" stroke="#ffffff" stroke-width="2" fill="none" stroke-linecap="round"/>
289
+ </svg>
290
+ </div>
291
+ <div class="card-img">[IMG: Field of white flowers under blue sky]</div>
292
+ <div class="card-body">
293
+ <div class="card-title">A Pleasure Practice</div>
294
+ <div class="card-sub">Meditation • 18 min</div>
295
+ </div>
296
+ </div>
297
+
298
+ <!-- Card 4 -->
299
+ <div class="card">
300
+ <div class="badge">New</div>
301
+ <div class="lock-pill">
302
+ <svg viewBox="0 0 24 24" width="34" height="34">
303
+ <path d="M7 10V8a5 5 0 0110 0v2M6 10h12v10H6z" stroke="#ffffff" stroke-width="2" fill="none" stroke-linecap="round"/>
304
+ </svg>
305
+ </div>
306
+ <div class="card-img">[IMG: Lake surrounded by green hills at dusk]</div>
307
+ <div class="card-body">
308
+ <div class="card-title">Empty Nest</div>
309
+ <div class="card-sub">Meditation • 6 min</div>
310
+ </div>
311
+ </div>
312
+ </div>
313
+
314
+ <!-- CTA Unlock -->
315
+ <div class="cta">
316
+ <div class="cta-title">Unlock all the content you need!</div>
317
+ <button class="cta-btn">
318
+ <svg class="lock-icon" viewBox="0 0 24 24">
319
+ <path d="M7 10V8a5 5 0 0110 0v2M6 10h12v10H6z" stroke="#1a2f57" stroke-width="2" fill="none" stroke-linecap="round"/>
320
+ </svg>
321
+ <span>Get Full Access</span>
322
+ </button>
323
+ </div>
324
+
325
+ <!-- Bottom Navigation -->
326
+ <div class="bottom-nav">
327
+ <div class="nav-item">
328
+ <svg class="nav-icon" viewBox="0 0 24 24" fill="none">
329
+ <path d="M3 11l9-8 9 8v9H3z" stroke="#cfe0ff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
330
+ </svg>
331
+ <div>Today</div>
332
+ </div>
333
+ <div class="nav-item">
334
+ <svg class="nav-icon" viewBox="0 0 24 24" fill="none">
335
+ <path d="M12 2a7 7 0 00-7 7v7h14V9a7 7 0 00-7-7z" stroke="#cfe0ff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
336
+ </svg>
337
+ <div>Therapy</div>
338
+ </div>
339
+ <div class="nav-item">
340
+ <svg class="nav-icon" viewBox="0 0 24 24" fill="none">
341
+ <path d="M4 20v-6l8-8 8 8v6H4z" stroke="#cfe0ff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
342
+ <path d="M12 12v8" stroke="#cfe0ff" stroke-width="2"></path>
343
+ </svg>
344
+ <div>Goals</div>
345
+ </div>
346
+ <div class="nav-item active">
347
+ <svg class="nav-icon" viewBox="0 0 24 24" fill="none">
348
+ <path d="M4 5h16v14H4z" stroke="#ffffff" stroke-width="2"></path>
349
+ <path d="M8 9h8M8 13h8" stroke="#ffffff" stroke-width="2" stroke-linecap="round"></path>
350
+ </svg>
351
+ <div>Library</div>
352
+ </div>
353
+ <div class="nav-item">
354
+ <svg class="nav-icon" viewBox="0 0 24 24" fill="none">
355
+ <circle cx="12" cy="8" r="4" stroke="#cfe0ff" stroke-width="2"></circle>
356
+ <path d="M4 22c0-4 4-7 8-7s8 3 8 7" stroke="#cfe0ff" stroke-width="2" stroke-linecap="round"></path>
357
+ </svg>
358
+ <div>Profile</div>
359
+ </div>
360
+ </div>
361
+
362
+ </div>
363
+ </body>
364
+ </html>
code/7345/7345_2.html ADDED
@@ -0,0 +1,280 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Meditation Library - Mock</title>
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <style>
7
+ body { margin:0; padding:0; background:transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
8
+ #render-target {
9
+ width:1080px; height:2400px; position:relative; overflow:hidden;
10
+ background: linear-gradient(180deg, #0e3970 0%, #133b6c 35%, #0d2e59 100%);
11
+ color:#fff;
12
+ }
13
+
14
+ /* Status bar */
15
+ .status-bar { height:120px; display:flex; align-items:center; padding:0 40px; gap:24px; font-weight:600; font-size:44px; }
16
+ .status-icons { margin-left:auto; display:flex; align-items:center; gap:28px; }
17
+ .icon-dot { width:16px; height:16px; background:#ffffffaa; border-radius:50%; }
18
+ .icon-circle { width:34px; height:34px; border-radius:50%; border:3px solid #fff; opacity:.9; }
19
+ .icon-battery { width:48px; height:26px; border:3px solid #fff; border-radius:6px; position:relative; }
20
+ .icon-battery::after { content:""; position:absolute; right:-10px; top:6px; width:6px; height:14px; background:#fff; border-radius:2px; }
21
+ .icon-battery .level { position:absolute; left:3px; top:3px; height:16px; width:30px; background:#fff; }
22
+
23
+ /* Header + search */
24
+ .header { padding:10px 40px 0 40px; }
25
+ .search-row { display:flex; align-items:center; gap:28px; }
26
+ .back-wrap { width:70px; height:70px; display:flex; align-items:center; justify-content:center; }
27
+ .search-field {
28
+ flex:1; height:96px; border-radius:48px; background:#1b4c86; border:2px solid #2a5b97;
29
+ display:flex; align-items:center; padding:0 30px; gap:18px; color:#cfe2ff; font-size:38px;
30
+ }
31
+ .search-icon svg { width:38px; height:38px; }
32
+ .filters { margin-top:26px; display:flex; gap:24px; }
33
+ .chip {
34
+ padding:22px 30px; border-radius:44px; background:#264f83; border:2px solid #376aa5;
35
+ font-size:36px; color:#e6f0ff; display:flex; align-items:center; gap:18px;
36
+ }
37
+ .chip svg { width:24px; height:24px; }
38
+ .results { margin-top:26px; font-size:36px; color:#cbd8ee; }
39
+
40
+ /* Cards grid */
41
+ .grid { margin:30px 40px 0 40px; display:grid; grid-template-columns:1fr 1fr; gap:32px; }
42
+ .card {
43
+ position:relative; border-radius:28px; overflow:hidden; background:#1a355a;
44
+ box-shadow:0 10px 20px rgba(0,0,0,.35);
45
+ }
46
+ .card-img {
47
+ height:420px; background:#E0E0E0; border-bottom:1px solid #BDBDBD;
48
+ display:flex; justify-content:center; align-items:center; color:#555; font-weight:600;
49
+ }
50
+ .card-title { padding:28px; font-size:44px; line-height:1.16; }
51
+ .card-sub { padding:0 28px 32px 28px; font-size:34px; color:#cbd8ee; }
52
+ .badge { position:absolute; top:24px; left:24px; background:#6fa8ff; color:#fff; padding:14px 22px; border-radius:40px; font-size:32px; font-weight:700; }
53
+ .lock { position:absolute; top:24px; right:24px; width:58px; height:58px; border-radius:50%; background:#8fb3e9; display:flex; align-items:center; justify-content:center; }
54
+ .lock svg { width:30px; height:30px; }
55
+
56
+ /* Bottom navigation */
57
+ .tabbar {
58
+ position:absolute; bottom:980px; left:0; width:100%;
59
+ height:140px; background:#0e305c; border-top:1px solid #1d4a86;
60
+ display:flex; justify-content:space-around; align-items:center; color:#cfe2ff;
61
+ }
62
+ .tab { display:flex; flex-direction:column; align-items:center; gap:10px; font-size:30px; }
63
+ .tab svg { width:50px; height:50px; opacity:.95; }
64
+ .tab.active { color:#fff; }
65
+ .tab.active svg { fill:#fff; }
66
+ .tab svg path { fill:#cfe2ff; }
67
+
68
+ /* Keyboard overlay */
69
+ .keyboard {
70
+ position:absolute; bottom:0; left:0; width:100%; height:980px;
71
+ background:#eaf3e6; color:#111; border-top-left-radius:22px; border-top-right-radius:22px;
72
+ box-shadow:0 -8px 16px rgba(0,0,0,.25);
73
+ }
74
+ .kb-top-icons { display:flex; gap:26px; padding:26px 28px; }
75
+ .kb-ico {
76
+ width:68px; height:68px; border-radius:14px; background:#dbe9d5; display:flex; justify-content:center; align-items:center;
77
+ box-shadow: inset 0 0 0 1px #c7d9c1;
78
+ }
79
+ .kb-input-row { display:flex; align-items:center; gap:18px; padding:14px 26px; }
80
+ .kb-btn { background:#cfe1c6; border:1px solid #bcd3b1; border-radius:20px; padding:18px 26px; font-size:34px; }
81
+ .kb-textbox { flex:1; height:100px; background:#fff; border-radius:26px; border:1px solid #d2d2d2; }
82
+ .kb-search {
83
+ width:96px; height:96px; background:#00d347; border-radius:50%; display:flex; align-items:center; justify-content:center;
84
+ }
85
+ .kb-search svg { width:44px; height:44px; }
86
+ .kb-rows { padding:10px 22px 22px; }
87
+ .row { display:flex; justify-content:center; gap:16px; margin-top:22px; }
88
+ .key {
89
+ width:88px; height:110px; background:#f3faf0; border:1px solid #cfd9cc; border-radius:22px;
90
+ display:flex; align-items:center; justify-content:center; font-size:44px; font-weight:600;
91
+ }
92
+ .key.wide { width:140px; }
93
+ .key.space { flex:1; min-width:400px; }
94
+ .key.dark { background:#dbe9d5; }
95
+ .key.round { width:120px; height:120px; border-radius:60px; background:#cfe1c6; }
96
+
97
+ /* Small helper */
98
+ .img-label { padding:0 20px; text-align:center; }
99
+ </style>
100
+ </head>
101
+ <body>
102
+ <div id="render-target">
103
+
104
+ <!-- Status bar -->
105
+ <div class="status-bar">
106
+ <div>9:09</div>
107
+ <div class="status-icons">
108
+ <div class="icon-dot"></div>
109
+ <div class="icon-circle"></div>
110
+ <div class="icon-circle"></div>
111
+ <div class="icon-circle"></div>
112
+ <div class="icon-battery"><div class="level"></div></div>
113
+ </div>
114
+ </div>
115
+
116
+ <!-- Header / Search -->
117
+ <div class="header">
118
+ <div class="search-row">
119
+ <div class="back-wrap">
120
+ <svg viewBox="0 0 48 48">
121
+ <path d="M30 10 L14 24 L30 38" stroke="#fff" stroke-width="6" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
122
+ </svg>
123
+ </div>
124
+ <div class="search-field">
125
+ <div class="search-icon">
126
+ <svg viewBox="0 0 24 24"><circle cx="10" cy="10" r="7" stroke="#cfe2ff" stroke-width="2" fill="none"/><line x1="16" y1="16" x2="22" y2="22" stroke="#cfe2ff" stroke-width="2" /></svg>
127
+ </div>
128
+ <div>Search by name or topic</div>
129
+ </div>
130
+ </div>
131
+
132
+ <div class="filters">
133
+ <div class="chip">All Types
134
+ <svg viewBox="0 0 24 24"><path d="M6 9 L12 15 L18 9" stroke="#e6f0ff" stroke-width="2" fill="none" stroke-linecap="round"/></svg>
135
+ </div>
136
+ <div class="chip">All Durations
137
+ <svg viewBox="0 0 24 24"><path d="M6 9 L12 15 L18 9" stroke="#e6f0ff" stroke-width="2" fill="none" stroke-linecap="round"/></svg>
138
+ </div>
139
+ <div class="chip">All Content
140
+ <svg viewBox="0 0 24 24"><path d="M6 9 L12 15 L18 9" stroke="#e6f0ff" stroke-width="2" fill="none" stroke-linecap="round"/></svg>
141
+ </div>
142
+ </div>
143
+
144
+ <div class="results">1376 results found</div>
145
+ </div>
146
+
147
+ <!-- Cards Grid -->
148
+ <div class="grid">
149
+ <!-- Card 1 -->
150
+ <div class="card">
151
+ <div class="badge">New</div>
152
+ <div class="lock">
153
+ <svg viewBox="0 0 24 24"><path d="M7 10 V8a5 5 0 0 1 10 0v2" stroke="#0e305c" stroke-width="2" fill="none"/><rect x="6" y="10" width="12" height="9" rx="2" fill="#0e305c"/></svg>
154
+ </div>
155
+ <div class="card-img"><div class="img-label">[IMG: Sunny Mountain Meadow]</div></div>
156
+ <div class="card-title">That Midday Break</div>
157
+ <div class="card-sub">Meditation • 16 min</div>
158
+ </div>
159
+
160
+ <!-- Card 2 -->
161
+ <div class="card">
162
+ <div class="badge">New</div>
163
+ <div class="lock">
164
+ <svg viewBox="0 0 24 24"><path d="M7 10 V8a5 5 0 0 1 10 0v2" stroke="#0e305c" stroke-width="2" fill="none"/><rect x="6" y="10" width="12" height="9" rx="2" fill="#0e305c"/></svg>
165
+ </div>
166
+ <div class="card-img"><div class="img-label">[IMG: Sunset Lake & Mountains]</div></div>
167
+ <div class="card-title">Great Outdoors Meditation</div>
168
+ <div class="card-sub">Meditation • 5 min</div>
169
+ </div>
170
+
171
+ <!-- Card 3 -->
172
+ <div class="card">
173
+ <div class="badge">New</div>
174
+ <div class="lock">
175
+ <svg viewBox="0 0 24 24"><path d="M7 10 V8a5 5 0 0 1 10 0v2" stroke="#0e305c" stroke-width="2" fill="none"/><rect x="6" y="10" width="12" height="9" rx="2" fill="#0e305c"/></svg>
176
+ </div>
177
+ <div class="card-img"><div class="img-label">[IMG: Field with Trees & Blue Sky]</div></div>
178
+ <div class="card-title">Countryside Calm</div>
179
+ <div class="card-sub">Meditation • 8 min</div>
180
+ </div>
181
+
182
+ <!-- Card 4 -->
183
+ <div class="card">
184
+ <div class="badge">New</div>
185
+ <div class="lock">
186
+ <svg viewBox="0 0 24 24"><path d="M7 10 V8a5 5 0 0 1 10 0v2" stroke="#0e305c" stroke-width="2" fill="none"/><rect x="6" y="10" width="12" height="9" rx="2" fill="#0e305c"/></svg>
187
+ </div>
188
+ <div class="card-img"><div class="img-label">[IMG: Hills at Golden Hour]</div></div>
189
+ <div class="card-title">Evening Forest Retreat</div>
190
+ <div class="card-sub">Meditation • 12 min</div>
191
+ </div>
192
+ </div>
193
+
194
+ <!-- Bottom navigation -->
195
+ <div class="tabbar">
196
+ <div class="tab">
197
+ <svg viewBox="0 0 24 24"><path d="M12 3 L3 10 V20 H10 V14 H14 V20 H21 V10 Z"></path></svg>
198
+ <div>Today</div>
199
+ </div>
200
+ <div class="tab">
201
+ <svg viewBox="0 0 24 24"><path d="M4 5 H20 V15 H4 Z M7 19 H17" ></path></svg>
202
+ <div>Therapy</div>
203
+ </div>
204
+ <div class="tab">
205
+ <svg viewBox="0 0 24 24"><path d="M12 2 L14 8 L20 9 L15 13 L16 19 L12 16 L8 19 L9 13 L4 9 L10 8 Z"></path></svg>
206
+ <div>Goals</div>
207
+ </div>
208
+ <div class="tab active">
209
+ <svg viewBox="0 0 24 24"><path d="M10 2 A8 8 0 1 0 18 10 A8 8 0 0 0 10 2 Z M21 21 L16 16"></path></svg>
210
+ <div>Library</div>
211
+ </div>
212
+ <div class="tab">
213
+ <svg viewBox="0 0 24 24"><path d="M12 12 A6 6 0 1 0 12 0 A6 6 0 0 0 12 12 Z M2 22 C4 16 20 16 22 22" ></path></svg>
214
+ <div>Profile</div>
215
+ </div>
216
+ </div>
217
+
218
+ <!-- Keyboard -->
219
+ <div class="keyboard">
220
+ <div class="kb-top-icons">
221
+ <div class="kb-ico">😊</div>
222
+ <div class="kb-ico">GIF</div>
223
+ <div class="kb-ico">
224
+ <svg viewBox="0 0 24 24"><path d="M12 2 L22 22 H2 Z" fill="#5b7d5a"></path></svg>
225
+ </div>
226
+ <div class="kb-ico">
227
+ <svg viewBox="0 0 24 24"><path d="M8 5 H20 V17 H8 Z M4 9 H12 V21 H4 Z" fill="#5b7d5a"></path></svg>
228
+ </div>
229
+ <div class="kb-ico">
230
+ <svg viewBox="0 0 24 24"><circle cx="12" cy="12" r="8" fill="#5b7d5a"></circle></svg>
231
+ </div>
232
+ <div class="kb-ico">
233
+ <svg viewBox="0 0 24 24"><path d="M6 10 L12 4 L18 10 M12 4 V20" stroke="#5b7d5a" stroke-width="2" fill="none"/></svg>
234
+ </div>
235
+ </div>
236
+
237
+ <div class="kb-input-row">
238
+ <div class="kb-btn">?123</div>
239
+ <div class="kb-btn">,</div>
240
+ <div class="kb-btn">🙂</div>
241
+ <div class="kb-textbox"></div>
242
+ <div class="kb-btn">.</div>
243
+ <div class="kb-search">
244
+ <svg viewBox="0 0 24 24"><circle cx="10" cy="10" r="7" stroke="#fff" stroke-width="2" fill="none"/><line x1="16" y1="16" x2="22" y2="22" stroke="#fff" stroke-width="2"/></svg>
245
+ </div>
246
+ </div>
247
+
248
+ <div class="kb-rows">
249
+ <div class="row">
250
+ <div class="key">Q</div><div class="key">W</div><div class="key">E</div><div class="key">R</div><div class="key">T</div>
251
+ <div class="key">Y</div><div class="key">U</div><div class="key">I</div><div class="key">O</div><div class="key">P</div>
252
+ </div>
253
+ <div class="row">
254
+ <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>
255
+ <div class="key">H</div><div class="key">J</div><div class="key">K</div><div class="key">L</div>
256
+ </div>
257
+ <div class="row">
258
+ <div class="key wide dark">⇧</div>
259
+ <div class="key">Z</div><div class="key">X</div><div class="key">C</div><div class="key">V</div>
260
+ <div class="key">B</div><div class="key">N</div><div class="key">M</div>
261
+ <div class="key wide dark">
262
+ <svg viewBox="0 0 24 24"><path d="M5 8 L19 8 L12 15 Z" fill="#3a4b36"></path></svg>
263
+ </div>
264
+ </div>
265
+ <div class="row">
266
+ <div class="key wide">?123</div>
267
+ <div class="key">,</div>
268
+ <div class="key">🙂</div>
269
+ <div class="key space"></div>
270
+ <div class="key">.</div>
271
+ <div class="key round">
272
+ <svg viewBox="0 0 24 24"><circle cx="10" cy="10" r="7" stroke="#1e3d1e" stroke-width="2" fill="none"/><line x1="16" y1="16" x2="22" y2="22" stroke="#1e3d1e" stroke-width="2"/></svg>
273
+ </div>
274
+ </div>
275
+ </div>
276
+ </div>
277
+
278
+ </div>
279
+ </body>
280
+ </html>
code/7345/7345_3.html ADDED
@@ -0,0 +1,379 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Generated UI</title>
5
+ <style>
6
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
7
+ #render-target {
8
+ width: 1080px;
9
+ height: 2400px;
10
+ position: relative;
11
+ overflow: hidden;
12
+ background: linear-gradient(#0f2c5a, #0e2a56 40%, #0e2a56 65%, #dfeee0 65.2%, #dfeee0);
13
+ }
14
+ /* Status bar */
15
+ .status {
16
+ position: absolute;
17
+ top: 20px;
18
+ left: 24px;
19
+ right: 24px;
20
+ height: 60px;
21
+ color: #cfe0ff;
22
+ display: flex;
23
+ align-items: center;
24
+ justify-content: space-between;
25
+ font-weight: 600;
26
+ letter-spacing: 0.5px;
27
+ }
28
+ .status .right-icons { display: flex; gap: 18px; align-items: center; }
29
+ .dot { width: 12px; height: 12px; border-radius: 50%; background: #cfe0ff; opacity: 0.7; }
30
+ .wifi, .battery {
31
+ width: 28px; height: 18px; border: 2px solid #cfe0ff; border-radius: 4px; position: relative;
32
+ }
33
+ .wifi::before { content: ""; position: absolute; left: 3px; top: 3px; width: 18px; height: 12px; border-top: 3px solid #cfe0ff; border-radius: 50%; }
34
+ .battery::after { content: ""; position: absolute; right: -6px; top: 6px; width: 6px; height: 6px; background: #cfe0ff; border-radius: 1px; }
35
+
36
+ /* Header search area */
37
+ .back-btn {
38
+ position: absolute;
39
+ top: 110px;
40
+ left: 24px;
41
+ width: 72px;
42
+ height: 72px;
43
+ border-radius: 36px;
44
+ display: flex; align-items: center; justify-content: center;
45
+ }
46
+ .search-bar {
47
+ position: absolute;
48
+ top: 108px;
49
+ left: 110px;
50
+ width: 920px;
51
+ height: 82px;
52
+ border-radius: 41px;
53
+ background: #1f3a69;
54
+ display: flex;
55
+ align-items: center;
56
+ padding: 0 24px;
57
+ color: #e8f1ff;
58
+ box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
59
+ }
60
+ .search-bar .input-text { font-size: 36px; flex: 1; padding-left: 16px; }
61
+ .icon-btn { width: 52px; height: 52px; border-radius: 26px; display: flex; align-items: center; justify-content: center; }
62
+ .filters {
63
+ position: absolute;
64
+ top: 210px;
65
+ left: 24px;
66
+ right: 24px;
67
+ display: flex; gap: 22px;
68
+ }
69
+ .chip {
70
+ background: #213b64;
71
+ color: #cfe0ff;
72
+ border: 1px solid rgba(255,255,255,0.18);
73
+ height: 80px; padding: 0 28px;
74
+ border-radius: 40px; display: flex; align-items: center; gap: 16px; font-size: 34px;
75
+ }
76
+ .results-count {
77
+ position: absolute; top: 310px; left: 24px; color: #cfe0ff; font-size: 34px;
78
+ }
79
+
80
+ /* Card grid */
81
+ .grid {
82
+ position: absolute;
83
+ top: 360px; left: 24px; right: 24px;
84
+ display: grid;
85
+ grid-template-columns: 1fr 1fr;
86
+ gap: 28px;
87
+ }
88
+ .card {
89
+ position: relative;
90
+ height: 530px;
91
+ border-radius: 28px;
92
+ overflow: hidden;
93
+ box-shadow: 0 8px 20px rgba(0,0,0,0.35);
94
+ background: #E0E0E0;
95
+ border: 1px solid #BDBDBD;
96
+ display: flex; align-items: center; justify-content: center; color: #757575; font-size: 26px;
97
+ }
98
+ .card.small { height: 340px; }
99
+ .badge {
100
+ position: absolute; top: 18px; left: 18px;
101
+ background: rgba(255,255,255,0.85); color: #1b3a63;
102
+ font-weight: 700; border-radius: 26px; padding: 10px 22px; font-size: 30px;
103
+ }
104
+ .lock {
105
+ position: absolute; top: 18px; right: 18px;
106
+ width: 64px; height: 64px; border-radius: 32px;
107
+ background: rgba(255,255,255,0.85); display: flex; align-items: center; justify-content: center;
108
+ }
109
+ .card-title {
110
+ position: absolute; left: 24px; bottom: 74px; right: 24px;
111
+ color: #ffffff; font-size: 44px; font-weight: 700; line-height: 1.2;
112
+ text-shadow: 0 2px 8px rgba(0,0,0,0.6);
113
+ }
114
+ .card-sub {
115
+ position: absolute; left: 24px; bottom: 26px; color: #dfe5ff; font-size: 30px;
116
+ }
117
+ .overlay-gradient {
118
+ position: absolute; left: 0; right: 0; bottom: 0; height: 180px;
119
+ background: linear-gradient(transparent, rgba(0,0,0,0.65));
120
+ }
121
+
122
+ /* Bottom navigation */
123
+ .nav {
124
+ position: absolute; left: 0; right: 0; bottom: 840px;
125
+ height: 150px; background: transparent; display: flex; justify-content: space-around; align-items: center; color: #cfe0ff;
126
+ }
127
+ .nav-item { display: flex; flex-direction: column; align-items: center; gap: 10px; font-size: 28px; }
128
+ .nav-item .bubble {
129
+ width: 72px; height: 72px; border-radius: 36px; display: flex; align-items: center; justify-content: center; border: 2px solid rgba(255,255,255,0.3);
130
+ }
131
+ .nav-item.active .bubble { border-color: #8fe699; background: rgba(143,230,153,0.15); }
132
+ .nav-item.active .label { color: #ffffff; font-weight: 700; }
133
+
134
+ /* Keyboard area */
135
+ .keyboard {
136
+ position: absolute; left: 0; right: 0; bottom: 0;
137
+ height: 840px; background: #e6f3e6; border-top-left-radius: 24px; border-top-right-radius: 24px;
138
+ box-shadow: 0 -6px 12px rgba(0,0,0,0.12);
139
+ }
140
+ .kb-suggestions {
141
+ height: 100px; display: flex; align-items: center; gap: 30px; padding: 0 30px; color: #2a4c3a; font-size: 36px;
142
+ }
143
+ .kb-divider { width: 2px; height: 36px; background: #9fc4a6; }
144
+ .kb-row {
145
+ display: flex; justify-content: space-between;
146
+ padding: 14px 24px;
147
+ }
148
+ .key {
149
+ width: 90px; height: 90px; background: #ffffff; border-radius: 16px; display: flex; align-items: center; justify-content: center;
150
+ color: #333; font-size: 42px; box-shadow: inset 0 0 0 1px #d1d1d1;
151
+ }
152
+ .key.wide { width: 140px; }
153
+ .key.xwide { width: 250px; }
154
+ .kb-bottom {
155
+ display: flex; align-items: center; justify-content: space-between;
156
+ padding: 16px 24px;
157
+ }
158
+ .btn-circle {
159
+ width: 100px; height: 100px; border-radius: 50px; background: #2bdc6e; display: flex; align-items: center; justify-content: center;
160
+ }
161
+ .btn-plain { width: 110px; height: 110px; border-radius: 26px; background: #cfe3cf; display: flex; align-items: center; justify-content: center; color: #2a4c3a; font-size: 34px; }
162
+ /* Helper simple icons */
163
+ svg { fill: none; stroke: currentColor; stroke-width: 2; }
164
+ </style>
165
+ </head>
166
+ <body>
167
+ <div id="render-target">
168
+
169
+ <!-- Status bar -->
170
+ <div class="status">
171
+ <div class="left">9:09</div>
172
+ <div class="right-icons">
173
+ <div class="dot"></div>
174
+ <div class="dot" style="width:14px;height:14px;"></div>
175
+ <div class="dot" style="width:14px;height:14px;"></div>
176
+ <div class="wifi"></div>
177
+ <div class="battery"></div>
178
+ </div>
179
+ </div>
180
+
181
+ <!-- Search header -->
182
+ <div class="back-btn">
183
+ <svg width="40" height="40" viewBox="0 0 24 24" style="color:#cfe0ff">
184
+ <path d="M15 18l-6-6 6-6"/>
185
+ </svg>
186
+ </div>
187
+
188
+ <div class="search-bar">
189
+ <div class="icon-btn" style="color:#cfe0ff;">
190
+ <svg width="34" height="34" viewBox="0 0 24 24">
191
+ <circle cx="11" cy="11" r="6"></circle>
192
+ <path d="M20 20l-4.2-4.2"></path>
193
+ </svg>
194
+ </div>
195
+ <div class="input-text">sounds of nature</div>
196
+ <div class="icon-btn" style="color:#cfe0ff">
197
+ <svg width="30" height="30" viewBox="0 0 24 24">
198
+ <path d="M18 6L6 18M6 6l12 12"></path>
199
+ </svg>
200
+ </div>
201
+ </div>
202
+
203
+ <!-- Filter chips -->
204
+ <div class="filters">
205
+ <div class="chip">All Types
206
+ <svg width="24" height="24" viewBox="0 0 24 24" style="color:#cfe0ff"><path d="M6 9l6 6 6-6"/></svg>
207
+ </div>
208
+ <div class="chip">All Durations
209
+ <svg width="24" height="24" viewBox="0 0 24 24" style="color:#cfe0ff"><path d="M6 9l6 6 6-6"/></svg>
210
+ </div>
211
+ <div class="chip">All Content
212
+ <svg width="24" height="24" viewBox="0 0 24 24" style="color:#cfe0ff"><path d="M6 9l6 6 6-6"/></svg>
213
+ </div>
214
+ </div>
215
+
216
+ <div class="results-count">1376 results found</div>
217
+
218
+ <!-- Card grid -->
219
+ <div class="grid">
220
+ <!-- Card 1 -->
221
+ <div class="card">
222
+ <div>[IMG: Sunny Mountain Field]</div>
223
+ <div class="badge">New</div>
224
+ <div class="lock">
225
+ <svg width="28" height="28" viewBox="0 0 24 24" style="color:#1b3a63">
226
+ <rect x="6" y="10" width="12" height="10" rx="2"></rect>
227
+ <path d="M9 10V7a3 3 0 016 0v3"></path>
228
+ </svg>
229
+ </div>
230
+ <div class="overlay-gradient"></div>
231
+ <div class="card-title">That Midday Break</div>
232
+ <div class="card-sub">Meditation • 16 min</div>
233
+ </div>
234
+
235
+ <!-- Card 2 -->
236
+ <div class="card">
237
+ <div>[IMG: Lake at Sunset]</div>
238
+ <div class="badge">New</div>
239
+ <div class="lock">
240
+ <svg width="28" height="28" viewBox="0 0 24 24" style="color:#1b3a63">
241
+ <rect x="6" y="10" width="12" height="10" rx="2"></rect>
242
+ <path d="M9 10V7a3 3 0 016 0v3"></path>
243
+ </svg>
244
+ </div>
245
+ <div class="overlay-gradient"></div>
246
+ <div class="card-title">Great Outdoors Meditation</div>
247
+ <div class="card-sub">Meditation • 5 min</div>
248
+ </div>
249
+
250
+ <!-- Row 2 small cards -->
251
+ <div class="card small">
252
+ <div>[IMG: Meadow with Trees]</div>
253
+ <div class="badge">New</div>
254
+ <div class="lock">
255
+ <svg width="28" height="28" viewBox="0 0 24 24" style="color:#1b3a63">
256
+ <rect x="6" y="10" width="12" height="10" rx="2"></rect>
257
+ <path d="M9 10V7a3 3 0 016 0v3"></path>
258
+ </svg>
259
+ </div>
260
+ </div>
261
+ <div class="card small">
262
+ <div>[IMG: Hills and Ocean]</div>
263
+ <div class="badge">New</div>
264
+ <div class="lock">
265
+ <svg width="28" height="28" viewBox="0 0 24 24" style="color:#1b3a63">
266
+ <rect x="6" y="10" width="12" height="10" rx="2"></rect>
267
+ <path d="M9 10V7a3 3 0 016 0v3"></path>
268
+ </svg>
269
+ </div>
270
+ </div>
271
+ </div>
272
+
273
+ <!-- Bottom navigation -->
274
+ <div class="nav">
275
+ <div class="nav-item">
276
+ <div class="bubble">
277
+ <svg width="30" height="30" viewBox="0 0 24 24" style="color:#cfe0ff"><path d="M3 12l9-7 9 7v8H3z"/></svg>
278
+ </div>
279
+ <div class="label">Today</div>
280
+ </div>
281
+ <div class="nav-item">
282
+ <div class="bubble">
283
+ <svg width="30" height="30" viewBox="0 0 24 24" style="color:#cfe0ff"><path d="M4 20V8l8-4 8 4v12"/></svg>
284
+ </div>
285
+ <div class="label">Therapy</div>
286
+ </div>
287
+ <div class="nav-item">
288
+ <div class="bubble">
289
+ <svg width="30" height="30" viewBox="0 0 24 24" style="color:#cfe0ff"><path d="M12 3v18M3 12h18"/></svg>
290
+ </div>
291
+ <div class="label">Goals</div>
292
+ </div>
293
+ <div class="nav-item active">
294
+ <div class="bubble">
295
+ <svg width="30" height="30" viewBox="0 0 24 24" style="color:#8fe699">
296
+ <circle cx="11" cy="11" r="6"></circle>
297
+ <path d="M20 20l-4.2-4.2"></path>
298
+ </svg>
299
+ </div>
300
+ <div class="label">Library</div>
301
+ </div>
302
+ <div class="nav-item">
303
+ <div class="bubble">
304
+ <svg width="30" height="30" viewBox="0 0 24 24" style="color:#cfe0ff"><circle cx="12" cy="9" r="4"></circle><path d="M4 21c1.8-4 6-6 8-6s6.2 2 8 6"/></svg>
305
+ </div>
306
+ <div class="label">Profile</div>
307
+ </div>
308
+ </div>
309
+
310
+ <!-- Keyboard -->
311
+ <div class="keyboard">
312
+ <div class="kb-suggestions">
313
+ <div>nature</div>
314
+ <div class="kb-divider"></div>
315
+ <div>Nature</div>
316
+ <div class="kb-divider"></div>
317
+ <div>nanture</div>
318
+ <div style="margin-left:auto; display:flex; align-items:center; gap:18px; color:#2a4c3a;">
319
+ <svg width="34" height="34" viewBox="0 0 24 24">
320
+ <path d="M12 4v10"></path><path d="M5 10h14"></path>
321
+ </svg>
322
+ <div class="btn-circle" style="background:#1fd36d; color:#fff;">
323
+ <svg width="34" height="34" viewBox="0 0 24 24">
324
+ <circle cx="11" cy="11" r="6"></circle>
325
+ <path d="M20 20l-4.2-4.2"></path>
326
+ </svg>
327
+ </div>
328
+ </div>
329
+ </div>
330
+
331
+ <div class="kb-row" style="padding-top: 10px;">
332
+ <!-- qwertyuiop -->
333
+ <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>
334
+ <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>
335
+ </div>
336
+ <div class="kb-row">
337
+ <!-- asdfghjkl -->
338
+ <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>
339
+ <div class="key">h</div><div class="key">j</div><div class="key">k</div><div class="key">l</div>
340
+ <div class="key btn-plain" style="width:100px; background:#e3efe3;">
341
+ <svg width="28" height="28" viewBox="0 0 24 24" style="color:#2a4c3a">
342
+ <path d="M4 12l6 6M10 18l10-10"></path>
343
+ </svg>
344
+ </div>
345
+ </div>
346
+ <div class="kb-row">
347
+ <!-- zxcvbnm -->
348
+ <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>
349
+ <div class="key">n</div><div class="key">m</div>
350
+ <div class="key wide">
351
+ <svg width="28" height="28" viewBox="0 0 24 24" style="color:#2a4c3a">
352
+ <path d="M5 19l5-5 5 5"></path>
353
+ </svg>
354
+ </div>
355
+ <div class="key wide">
356
+ <svg width="28" height="28" viewBox="0 0 24 24" style="color:#2a4c3a">
357
+ <path d="M9 7v6a3 3 0 006 0V7"></path>
358
+ <rect x="6" y="13" width="12" height="7" rx="2"></rect>
359
+ </svg>
360
+ </div>
361
+ </div>
362
+
363
+ <div class="kb-bottom">
364
+ <div class="btn-plain">?123</div>
365
+ <div class="key" style="width:110px;">,</div>
366
+ <div class="key xwide"></div>
367
+ <div class="key" style="width:110px;">.</div>
368
+ <div class="btn-circle">
369
+ <svg width="34" height="34" viewBox="0 0 24 24" style="color:#fff">
370
+ <circle cx="11" cy="11" r="6"></circle>
371
+ <path d="M20 20l-4.2-4.2"></path>
372
+ </svg>
373
+ </div>
374
+ </div>
375
+ </div>
376
+
377
+ </div>
378
+ </body>
379
+ </html>
code/7345/7345_4.html ADDED
@@ -0,0 +1,224 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="utf-8">
4
+ <title>Mobile UI - Sounds of Nature</title>
5
+ <style>
6
+ body { margin:0; padding:0; background:transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; }
7
+ #render-target {
8
+ width:1080px; height:2400px; position:relative; overflow:hidden;
9
+ background: linear-gradient(180deg,#0e2b4a 0%, #173a5e 40%, #132f4e 100%);
10
+ color:#e9f1ff;
11
+ }
12
+ .statusbar {
13
+ height:96px;
14
+ padding:0 36px;
15
+ display:flex; align-items:center; justify-content:space-between;
16
+ font-weight:600; font-size:34px; letter-spacing:0.5px;
17
+ opacity:0.95;
18
+ }
19
+ .status-icons { display:flex; align-items:center; gap:22px; }
20
+ .dot { width:14px; height:14px; background:#cfe1ff; border-radius:50%; opacity:0.8; }
21
+ .pill {
22
+ background:#1e3d61; border:1px solid rgba(255,255,255,0.15);
23
+ border-radius:48px; color:#e9f1ff;
24
+ display:inline-flex; align-items:center; gap:16px;
25
+ padding:24px 30px; font-size:36px;
26
+ }
27
+ .top-row {
28
+ display:flex; align-items:center; gap:24px;
29
+ padding:10px 30px 0 30px;
30
+ }
31
+ .icon-btn {
32
+ width:84px; height:84px; border-radius:50%;
33
+ display:flex; align-items:center; justify-content:center;
34
+ }
35
+ .search-pill {
36
+ flex:1; justify-content:flex-start;
37
+ }
38
+ .search-text { opacity:0.95; font-size:40px; }
39
+ .filters {
40
+ display:flex; gap:24px; padding:28px 30px 10px 30px; flex-wrap:wrap;
41
+ }
42
+ .filters .pill { padding:18px 28px; font-size:34px; background:#1a3556; }
43
+ .results {
44
+ padding:8px 30px 18px 30px; font-size:32px; opacity:0.9;
45
+ }
46
+ .card {
47
+ margin:18px 30px; border-radius:34px; overflow:hidden; position:relative;
48
+ }
49
+ .img-ph {
50
+ height:460px; background:#E0E0E0; border:1px solid #BDBDBD;
51
+ display:flex; align-items:center; justify-content:center; color:#757575;
52
+ font-size:36px;
53
+ }
54
+ .card .overlay {
55
+ position:absolute; left:0; right:0; bottom:0; padding:28px;
56
+ background: linear-gradient(0deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.05) 70%, rgba(0,0,0,0) 100%);
57
+ }
58
+ .title { font-size:54px; font-weight:700; margin-bottom:10px; }
59
+ .subtitle { font-size:32px; opacity:0.9; }
60
+ .promo {
61
+ margin:24px 30px; height:420px; border-radius:28px; padding:34px;
62
+ background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
63
+ border:1px solid rgba(255,255,255,0.12);
64
+ position:relative;
65
+ }
66
+ .promo h2 { font-size:60px; line-height:1.2; margin:12px 0 42px 0; }
67
+ .cta {
68
+ display:inline-flex; align-items:center; gap:18px;
69
+ padding:26px 44px; background:#ffccb9; color:#1c2d46;
70
+ border-radius:60px; font-weight:700; font-size:44px; border:none;
71
+ box-shadow:0 6px 18px rgba(0,0,0,0.25);
72
+ }
73
+ .content-scroll {
74
+ position:absolute; left:0; right:0; top:0; bottom:200px; overflow:auto; padding-top:96px;
75
+ }
76
+ /* bottom nav */
77
+ .bottom-nav {
78
+ position:absolute; left:0; right:0; bottom:0; height:200px;
79
+ background:#132a46; border-top:1px solid rgba(255,255,255,0.1);
80
+ display:flex; align-items:center; justify-content:space-around;
81
+ }
82
+ .tab { display:flex; flex-direction:column; align-items:center; gap:12px; color:#c7d9ff; font-size:30px; }
83
+ .tab.active { color:#ffffff; }
84
+ .tab svg { width:54px; height:54px; }
85
+ /* helpers */
86
+ .spacer-8 { height:8px; }
87
+ </style>
88
+ </head>
89
+ <body>
90
+ <div id="render-target">
91
+
92
+ <!-- Status bar -->
93
+ <div class="statusbar">
94
+ <div>9:10</div>
95
+ <div class="status-icons">
96
+ <div class="dot"></div>
97
+ <div class="dot" style="width:12px;height:12px;border:2px solid #cfe1ff;background:transparent;border-radius:3px;"></div>
98
+ <div class="dot" style="width:14px;height:20px;border-radius:3px;background:#cfe1ff;"></div>
99
+ </div>
100
+ </div>
101
+
102
+ <div class="content-scroll">
103
+
104
+ <!-- Search row -->
105
+ <div class="top-row">
106
+ <div class="icon-btn">
107
+ <svg width="52" height="52" viewBox="0 0 24 24" fill="none" stroke="#ffffff" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round">
108
+ <path d="M15 18l-6-6 6-6"/>
109
+ </svg>
110
+ </div>
111
+ <div class="pill search-pill">
112
+ <svg width="40" height="40" viewBox="0 0 24 24" fill="none" stroke="#cfe1ff" stroke-width="2">
113
+ <circle cx="11" cy="11" r="7"></circle>
114
+ <path d="M20 20l-3.5-3.5"></path>
115
+ </svg>
116
+ <div class="search-text">sounds of nature</div>
117
+ <div style="margin-left:auto; display:flex; align-items:center;">
118
+ <svg width="40" height="40" viewBox="0 0 24 24" stroke="#cfe1ff" stroke-width="2.4" fill="none" stroke-linecap="round">
119
+ <path d="M18 6L6 18M6 6l12 12"></path>
120
+ </svg>
121
+ </div>
122
+ </div>
123
+ </div>
124
+
125
+ <!-- Filters -->
126
+ <div class="filters">
127
+ <div class="pill">
128
+ <span>All Types</span>
129
+ <svg width="28" height="28" viewBox="0 0 24 24" fill="none" stroke="#cfe1ff" stroke-width="2" stroke-linecap="round">
130
+ <path d="M6 9l6 6 6-6"></path>
131
+ </svg>
132
+ </div>
133
+ <div class="pill">
134
+ <span>All Durations</span>
135
+ <svg width="28" height="28" viewBox="0 0 24 24" fill="none" stroke="#cfe1ff" stroke-width="2" stroke-linecap="round">
136
+ <path d="M6 9l6 6 6-6"></path>
137
+ </svg>
138
+ </div>
139
+ <div class="pill">
140
+ <span>All Content</span>
141
+ <svg width="28" height="28" viewBox="0 0 24 24" fill="none" stroke="#cfe1ff" stroke-width="2" stroke-linecap="round">
142
+ <path d="M6 9l6 6 6-6"></path>
143
+ </svg>
144
+ </div>
145
+ </div>
146
+
147
+ <div class="results">238 results found</div>
148
+
149
+ <!-- Card 1 -->
150
+ <div class="card">
151
+ <div class="img-ph">[IMG: Warm abstract nature background]</div>
152
+ <div class="overlay">
153
+ <div class="title">Back to Nature</div>
154
+ <div class="subtitle">Music Playlist • 10 tracks • 3hr 36min</div>
155
+ </div>
156
+ </div>
157
+
158
+ <!-- Card 2 -->
159
+ <div class="card">
160
+ <div class="img-ph" style="background:#E0E8F6; color:#5b6d8d;">[IMG: Blue night nature scene]</div>
161
+ <div class="overlay">
162
+ <div class="title">Sounds at Night</div>
163
+ <div class="subtitle">Sounds Playlist • 3 tracks • 2hr 3min</div>
164
+ </div>
165
+ </div>
166
+
167
+ <!-- Promo -->
168
+ <div class="promo">
169
+ <h2>Unlock all the content you need!</h2>
170
+ <button class="cta">
171
+ <svg width="40" height="40" viewBox="0 0 24 24" fill="none" stroke="#1c2d46" stroke-width="2">
172
+ <rect x="4" y="10" width="16" height="10" rx="2"></rect>
173
+ <path d="M8 10V7a4 4 0 0 1 8 0v3"></path>
174
+ </svg>
175
+ Get Full Access
176
+ </button>
177
+ </div>
178
+
179
+ <!-- Spacer to ensure scroll above bottom nav -->
180
+ <div style="height:160px;"></div>
181
+ </div>
182
+
183
+ <!-- Bottom Navigation -->
184
+ <div class="bottom-nav">
185
+ <div class="tab">
186
+ <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
187
+ <path d="M3 11l9-7 9 7"></path>
188
+ <path d="M5 10v9h14v-9"></path>
189
+ </svg>
190
+ <div>Today</div>
191
+ </div>
192
+ <div class="tab">
193
+ <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
194
+ <rect x="3" y="5" width="18" height="14" rx="3"></rect>
195
+ <path d="M7 9h10M7 13h6"></path>
196
+ </svg>
197
+ <div>Therapy</div>
198
+ </div>
199
+ <div class="tab">
200
+ <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
201
+ <circle cx="12" cy="12" r="8"></circle>
202
+ <path d="M12 6v6l4 2"></path>
203
+ </svg>
204
+ <div>Goals</div>
205
+ </div>
206
+ <div class="tab active">
207
+ <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
208
+ <path d="M21 21l-5.2-5.2"></path>
209
+ <circle cx="10" cy="10" r="6"></circle>
210
+ </svg>
211
+ <div>Library</div>
212
+ </div>
213
+ <div class="tab">
214
+ <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
215
+ <circle cx="12" cy="7" r="4"></circle>
216
+ <path d="M5.5 21a6.5 6.5 0 0 1 13 0"></path>
217
+ </svg>
218
+ <div>Profile</div>
219
+ </div>
220
+ </div>
221
+
222
+ </div>
223
+ </body>
224
+ </html>
code/7345/7345_5.html ADDED
@@ -0,0 +1,460 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Back to Nature Playlist UI</title>
5
+ <style>
6
+ body {
7
+ margin: 0;
8
+ padding: 0;
9
+ background: transparent;
10
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
11
+ color: #ffffff;
12
+ }
13
+ #render-target {
14
+ width: 1080px;
15
+ height: 2400px;
16
+ position: relative;
17
+ overflow: hidden;
18
+ background: #0d2e55; /* deep navy */
19
+ }
20
+
21
+ /* Status bar */
22
+ .status-bar {
23
+ position: absolute;
24
+ top: 0;
25
+ left: 0;
26
+ width: 1080px;
27
+ height: 110px;
28
+ background: #08335e;
29
+ display: flex;
30
+ align-items: center;
31
+ padding: 0 40px;
32
+ box-sizing: border-box;
33
+ font-size: 36px;
34
+ letter-spacing: 1px;
35
+ }
36
+ .status-left { color: #fff; }
37
+ .status-right {
38
+ margin-left: auto;
39
+ display: flex;
40
+ align-items: center;
41
+ gap: 28px;
42
+ color: #fff;
43
+ opacity: 0.9;
44
+ }
45
+ .status-dot {
46
+ width: 10px; height: 10px; background:#fff; border-radius: 50%;
47
+ display:inline-block;
48
+ }
49
+
50
+ /* Hero/banner */
51
+ .hero {
52
+ position: absolute;
53
+ top: 110px;
54
+ left: 0;
55
+ width: 1080px;
56
+ height: 660px;
57
+ overflow: hidden;
58
+ background: linear-gradient(#245577, #173b5d);
59
+ }
60
+ .hero-img {
61
+ position: absolute;
62
+ inset: 0;
63
+ height: 100%;
64
+ width: 100%;
65
+ background: #E0E0E0;
66
+ border-top: 1px solid #BDBDBD;
67
+ border-bottom: 1px solid #BDBDBD;
68
+ display: flex;
69
+ align-items: flex-end;
70
+ justify-content: flex-start;
71
+ color: #333;
72
+ padding: 24px;
73
+ box-sizing: border-box;
74
+ }
75
+ .hero-img span {
76
+ background: rgba(255,255,255,0.7);
77
+ padding: 10px 14px;
78
+ border-radius: 12px;
79
+ font-size: 28px;
80
+ color: #333;
81
+ }
82
+ .hero-overlay {
83
+ position: absolute;
84
+ inset: 0;
85
+ background: linear-gradient(to bottom, rgba(13,46,85,0.1) 10%, rgba(13,46,85,0.85) 70%, #0d2e55 100%);
86
+ }
87
+
88
+ /* Top action icons */
89
+ .top-actions {
90
+ position: absolute;
91
+ top: 180px;
92
+ right: 40px;
93
+ display: flex;
94
+ gap: 24px;
95
+ z-index: 3;
96
+ }
97
+ .circle-btn {
98
+ width: 108px; height: 108px;
99
+ background: rgba(255,255,255,0.12);
100
+ border: 2px solid rgba(255,255,255,0.35);
101
+ border-radius: 54px;
102
+ display: flex; align-items: center; justify-content: center;
103
+ backdrop-filter: blur(2px);
104
+ }
105
+ .circle-btn svg { width: 54px; height: 54px; fill: #fff; opacity: 0.95; }
106
+
107
+ /* Back button */
108
+ .back-btn {
109
+ position: absolute;
110
+ top: 180px;
111
+ left: 32px;
112
+ width: 72px; height: 72px;
113
+ display: flex; align-items: center; justify-content: center;
114
+ }
115
+ .back-btn svg { width: 60px; height: 60px; fill: #fff; }
116
+
117
+ /* Title and description */
118
+ .title-wrap {
119
+ position: absolute;
120
+ top: 540px;
121
+ left: 40px;
122
+ right: 40px;
123
+ z-index: 2;
124
+ }
125
+ .page-title {
126
+ font-size: 86px;
127
+ font-weight: 700;
128
+ letter-spacing: 0.5px;
129
+ margin-bottom: 16px;
130
+ }
131
+ .subtitle {
132
+ font-size: 36px;
133
+ color: #89d7c7;
134
+ }
135
+ .desc {
136
+ margin-top: 40px;
137
+ font-size: 36px;
138
+ line-height: 1.6;
139
+ color: #d7e7f5;
140
+ }
141
+
142
+ /* Track header */
143
+ .tracks-header {
144
+ position: absolute;
145
+ top: 980px;
146
+ left: 40px;
147
+ font-size: 54px;
148
+ font-weight: 600;
149
+ }
150
+
151
+ /* Track list */
152
+ .track-list {
153
+ position: absolute;
154
+ top: 1060px;
155
+ left: 0;
156
+ right: 0;
157
+ padding: 0 40px 240px;
158
+ box-sizing: border-box;
159
+ }
160
+ .track-item {
161
+ display: flex;
162
+ align-items: center;
163
+ padding: 28px 0;
164
+ border-bottom: 1px solid rgba(255,255,255,0.06);
165
+ }
166
+ .thumb {
167
+ width: 220px; height: 220px;
168
+ border-radius: 36px;
169
+ background: #E0E0E0;
170
+ border: 1px solid #BDBDBD;
171
+ display: flex; align-items: center; justify-content: center;
172
+ color: #666; font-size: 28px; text-align: center;
173
+ position: relative;
174
+ overflow: hidden;
175
+ }
176
+ .thumb .play {
177
+ position: absolute;
178
+ width: 100px; height: 100px;
179
+ background: rgba(13,46,85,0.55);
180
+ border-radius: 50%;
181
+ display: flex; align-items: center; justify-content: center;
182
+ }
183
+ .thumb .play svg { width: 60px; height: 60px; fill: #fff; }
184
+ .thumb .lock {
185
+ position: absolute;
186
+ width: 96px; height: 96px;
187
+ background: rgba(13,46,85,0.55);
188
+ border-radius: 24px;
189
+ display: flex; align-items: center; justify-content: center;
190
+ }
191
+ .thumb .lock svg { width: 60px; height: 60px; fill: #fff; }
192
+
193
+ .track-info {
194
+ margin-left: 32px;
195
+ flex: 1;
196
+ }
197
+ .track-title {
198
+ font-size: 50px;
199
+ font-weight: 600;
200
+ margin-bottom: 10px;
201
+ }
202
+ .track-meta {
203
+ font-size: 34px;
204
+ color: #7fd6c6;
205
+ }
206
+ .more {
207
+ width: 24px; height: 24px;
208
+ margin-left: auto;
209
+ }
210
+ .more svg { width: 54px; height: 54px; fill: rgba(255,255,255,0.8); }
211
+
212
+ /* CTA button */
213
+ .cta {
214
+ position: absolute;
215
+ bottom: 240px;
216
+ left: 110px;
217
+ width: 860px;
218
+ height: 120px;
219
+ background: #f6b3a9;
220
+ border-radius: 60px;
221
+ display: flex; align-items: center; justify-content: center;
222
+ color: #1a2e44;
223
+ font-weight: 700;
224
+ font-size: 46px;
225
+ box-shadow: 0 10px 24px rgba(0,0,0,0.3);
226
+ }
227
+
228
+ /* Bottom nav */
229
+ .bottom-nav {
230
+ position: absolute;
231
+ bottom: 0;
232
+ left: 0;
233
+ width: 1080px;
234
+ height: 180px;
235
+ background: rgba(6,30,58,1);
236
+ border-top: 1px solid rgba(255,255,255,0.08);
237
+ display: flex;
238
+ align-items: center;
239
+ justify-content: space-around;
240
+ }
241
+ .nav-item {
242
+ display: flex;
243
+ flex-direction: column;
244
+ align-items: center;
245
+ gap: 16px;
246
+ color: #cfe0f5;
247
+ font-size: 34px;
248
+ }
249
+ .nav-item svg { width: 60px; height: 60px; fill: #cfe0f5; }
250
+ .nav-item.active { color: #ffffff; }
251
+ .nav-item.active svg { fill: #ffffff; }
252
+ .bottom-handle {
253
+ position: absolute;
254
+ bottom: 26px;
255
+ left: 50%;
256
+ transform: translateX(-50%);
257
+ width: 300px; height: 10px;
258
+ background: #e6e6e6;
259
+ border-radius: 6px;
260
+ opacity: 0.7;
261
+ }
262
+ </style>
263
+ </head>
264
+ <body>
265
+ <div id="render-target">
266
+
267
+ <!-- Status Bar -->
268
+ <div class="status-bar">
269
+ <div class="status-left">9:10</div>
270
+ <div class="status-right">
271
+ <span>◓</span>
272
+ <span>᛫᛫</span>
273
+ <span>▸</span>
274
+ <span class="status-dot"></span>
275
+ <span>📶</span>
276
+ <span>🔋</span>
277
+ </div>
278
+ </div>
279
+
280
+ <!-- Hero area -->
281
+ <div class="hero">
282
+ <div class="hero-img">
283
+ <span>[IMG: Misty Lake with Reeds]</span>
284
+ </div>
285
+ <div class="hero-overlay"></div>
286
+ </div>
287
+
288
+ <!-- Back button -->
289
+ <div class="back-btn">
290
+ <svg viewBox="0 0 24 24">
291
+ <path d="M15.5 4l-8 8 8 8 1.5-1.5-6.5-6.5 6.5-6.5L15.5 4z"></path>
292
+ </svg>
293
+ </div>
294
+
295
+ <!-- Top action icons -->
296
+ <div class="top-actions">
297
+ <div class="circle-btn" title="Share">
298
+ <svg viewBox="0 0 24 24">
299
+ <path d="M18 8a3 3 0 1 0-2.8-4H15a3 3 0 0 0 .1 1l-7.3 3.8a3 3 0 1 0 0 4.4l7.3 3.8a3 3 0 0 0-.1 1h.2A3 3 0 1 0 18 16a3 3 0 0 0-2.5 1.3l-7.3-3.8a3 3 0 0 0 0-2.9l7.3-3.8A3 3 0 0 0 18 8z"></path>
300
+ </svg>
301
+ </div>
302
+ <div class="circle-btn" title="Favorite">
303
+ <svg viewBox="0 0 24 24">
304
+ <path d="M12 21s-6.5-4.2-9.2-7c-2.4-2.6-2.3-6.7.5-9 2.3-1.9 5.7-1.5 7.7.9L12 7l.9-.9c2-2.4 5.4-2.8 7.7-.9 2.8 2.3 2.9 6.4.5 9C18.5 16.8 12 21 12 21z"></path>
305
+ </svg>
306
+ </div>
307
+ <div class="circle-btn" title="Download">
308
+ <svg viewBox="0 0 24 24">
309
+ <path d="M12 3v10l4-4 1.4 1.4L12 17l-5.4-5.6L8 9l4 4V3h0zM5 19h14v2H5v-2z"></path>
310
+ </svg>
311
+ </div>
312
+ </div>
313
+
314
+ <!-- Title & description -->
315
+ <div class="title-wrap">
316
+ <div class="page-title">Back to Nature</div>
317
+ <div class="subtitle">Music Playlist • 3hr 32min</div>
318
+ <div class="desc">
319
+ Get back to nature with this collection of sounds and compositions taken from beautiful locations around the world.
320
+ </div>
321
+ </div>
322
+
323
+ <!-- Tracks header -->
324
+ <div class="tracks-header">10 tracks</div>
325
+
326
+ <!-- Track list -->
327
+ <div class="track-list">
328
+ <!-- Track 1 -->
329
+ <div class="track-item">
330
+ <div class="thumb">
331
+ [IMG: Lake Thumbnail]
332
+ <div class="play">
333
+ <svg viewBox="0 0 24 24">
334
+ <path d="M8 5v14l11-7-11-7z"></path>
335
+ </svg>
336
+ </div>
337
+ </div>
338
+ <div class="track-info">
339
+ <div class="track-title">Gentle Rain & Peaceful Music</div>
340
+ <div class="track-meta">Music • 31min</div>
341
+ </div>
342
+ <div class="more">
343
+ <svg viewBox="0 0 24 24">
344
+ <circle cx="5" cy="12" r="2"></circle>
345
+ <circle cx="12" cy="12" r="2"></circle>
346
+ <circle cx="19" cy="12" r="2"></circle>
347
+ </svg>
348
+ </div>
349
+ </div>
350
+
351
+ <!-- Track 2 -->
352
+ <div class="track-item">
353
+ <div class="thumb">
354
+ [IMG: Leaf on Water]
355
+ <div class="lock">
356
+ <svg viewBox="0 0 24 24">
357
+ <path d="M12 2a4 4 0 0 0-4 4v3H6c-1.1 0-2 .9-2 2v7c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-7c0-1.1-.9-2-2-2h-2V6a4 4 0 0 0-4-4zm-2 7V6a2 2 0 1 1 4 0v3h-4z"></path>
358
+ </svg>
359
+ </div>
360
+ </div>
361
+ <div class="track-info">
362
+ <div class="track-title">Floating</div>
363
+ <div class="track-meta">Music • 32min</div>
364
+ </div>
365
+ <div class="more">
366
+ <svg viewBox="0 0 24 24">
367
+ <circle cx="5" cy="12" r="2"></circle>
368
+ <circle cx="12" cy="12" r="2"></circle>
369
+ <circle cx="19" cy="12" r="2"></circle>
370
+ </svg>
371
+ </div>
372
+ </div>
373
+
374
+ <!-- Track 3 (locked visual) -->
375
+ <div class="track-item">
376
+ <div class="thumb">
377
+ [IMG: Sunset Over Water]
378
+ <div class="lock">
379
+ <svg viewBox="0 0 24 24">
380
+ <path d="M12 2a4 4 0 0 0-4 4v3H6c-1.1 0-2 .9-2 2v7c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-7c0-1.1-.9-2-2-2h-2V6a4 4 0 0 0-4-4zm-2 7V6a2 2 0 1 1 4 0v3h-4z"></path>
381
+ </svg>
382
+ </div>
383
+ </div>
384
+ <div class="track-info">
385
+ <div class="track-title">Sun & Sky</div>
386
+ <div class="track-meta">Music • 28min</div>
387
+ </div>
388
+ <div class="more">
389
+ <svg viewBox="0 0 24 24">
390
+ <circle cx="5" cy="12" r="2"></circle>
391
+ <circle cx="12" cy="12" r="2"></circle>
392
+ <circle cx="19" cy="12" r="2"></circle>
393
+ </svg>
394
+ </div>
395
+ </div>
396
+
397
+ <!-- Track 4 -->
398
+ <div class="track-item">
399
+ <div class="thumb">[IMG: Forest Stream]</div>
400
+ <div class="track-info">
401
+ <div class="track-title">Forest Stream</div>
402
+ <div class="track-meta">Music • 29min</div>
403
+ </div>
404
+ <div class="more">
405
+ <svg viewBox="0 0 24 24">
406
+ <circle cx="5" cy="12" r="2"></circle>
407
+ <circle cx="12" cy="12" r="2"></circle>
408
+ <circle cx="19" cy="12" r="2"></circle>
409
+ </svg>
410
+ </div>
411
+ </div>
412
+
413
+ <!-- Track 5 -->
414
+ <div class="track-item">
415
+ <div class="thumb">[IMG: Mountain Breeze]</div>
416
+ <div class="track-info">
417
+ <div class="track-title">Mountain Breeze</div>
418
+ <div class="track-meta">Music • 24min</div>
419
+ </div>
420
+ <div class="more">
421
+ <svg viewBox="0 0 24 24">
422
+ <circle cx="5" cy="12" r="2"></circle>
423
+ <circle cx="12" cy="12" r="2"></circle>
424
+ <circle cx="19" cy="12" r="2"></circle>
425
+ </svg>
426
+ </div>
427
+ </div>
428
+ </div>
429
+
430
+ <!-- CTA -->
431
+ <div class="cta">Get Full Access</div>
432
+
433
+ <!-- Bottom Navigation -->
434
+ <div class="bottom-nav">
435
+ <div class="nav-item">
436
+ <svg viewBox="0 0 24 24"><path d="M12 3l9 8v10h-6v-6H9v6H3V11l9-8z"></path></svg>
437
+ <div>Today</div>
438
+ </div>
439
+ <div class="nav-item">
440
+ <svg viewBox="0 0 24 24"><path d="M12 3a9 9 0 0 0-9 9c0 5 4 9 9 9s9-4 9-9-4-9-9-9zm-1 5h2v5h-2V8zm1 10a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3z"></path></svg>
441
+ <div>Therapy</div>
442
+ </div>
443
+ <div class="nav-item">
444
+ <svg viewBox="0 0 24 24"><path d="M12 2l6 6-6 6-6-6 6-6zm0 14l6 6H6l6-6z"></path></svg>
445
+ <div>Goals</div>
446
+ </div>
447
+ <div class="nav-item active">
448
+ <svg viewBox="0 0 24 24"><path d="M10 20v-6H6l6-10 6 10h-4v6h-4z"></path></svg>
449
+ <div>Library</div>
450
+ </div>
451
+ <div class="nav-item">
452
+ <svg viewBox="0 0 24 24"><path d="M12 12a5 5 0 1 0-5-5 5 5 0 0 0 5 5zm0 2c-4.4 0-8 2.2-8 5v3h16v-3c0-2.8-3.6-5-8-5z"></path></svg>
453
+ <div>Profile</div>
454
+ </div>
455
+ <div class="bottom-handle"></div>
456
+ </div>
457
+
458
+ </div>
459
+ </body>
460
+ </html>
code/7345/7345_6.html ADDED
@@ -0,0 +1,382 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Gentle Rain & Peaceful Music - Mock 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: linear-gradient(180deg, #173d66 0%, #122c4e 40%, #0f2747 100%);
13
+ color: #ffffff;
14
+ }
15
+
16
+ /* Status bar */
17
+ .status-bar {
18
+ position: absolute;
19
+ top: 0;
20
+ left: 0;
21
+ width: 1080px;
22
+ height: 96px;
23
+ display: flex;
24
+ align-items: center;
25
+ justify-content: space-between;
26
+ padding: 0 36px;
27
+ box-sizing: border-box;
28
+ font-size: 34px;
29
+ letter-spacing: 0.5px;
30
+ color: #eaf4ff;
31
+ }
32
+ .sb-right {
33
+ display: flex;
34
+ gap: 26px;
35
+ align-items: center;
36
+ }
37
+ .sb-icon svg { width: 30px; height: 30px; fill: none; stroke: #eaf4ff; stroke-width: 3; }
38
+
39
+ /* Banner */
40
+ .banner {
41
+ position: absolute;
42
+ top: 96px;
43
+ left: 0;
44
+ width: 1080px;
45
+ height: 580px;
46
+ }
47
+ .banner-image {
48
+ position: absolute;
49
+ inset: 0;
50
+ background: #E0E0E0;
51
+ border-bottom: 1px solid #BDBDBD;
52
+ display: flex;
53
+ align-items: center;
54
+ justify-content: center;
55
+ color: #757575;
56
+ font-size: 30px;
57
+ }
58
+ .back-btn {
59
+ position: absolute;
60
+ top: 36px;
61
+ left: 30px;
62
+ width: 72px;
63
+ height: 72px;
64
+ display: flex;
65
+ align-items: center;
66
+ justify-content: center;
67
+ background: transparent;
68
+ }
69
+ .back-btn svg { width: 44px; height: 44px; stroke: #ffffff; stroke-width: 4; fill: none; }
70
+
71
+ .top-actions {
72
+ position: absolute;
73
+ top: 28px;
74
+ right: 30px;
75
+ display: flex;
76
+ gap: 24px;
77
+ }
78
+ .circle-icon {
79
+ width: 90px;
80
+ height: 90px;
81
+ background: rgba(10, 37, 70, 0.9);
82
+ border-radius: 50%;
83
+ display: flex;
84
+ align-items: center;
85
+ justify-content: center;
86
+ box-shadow: 0 4px 10px rgba(0,0,0,0.25) inset;
87
+ }
88
+ .circle-icon svg { width: 44px; height: 44px; fill: none; stroke: #ffffff; stroke-width: 3.2; }
89
+
90
+ .play-btn {
91
+ position: absolute;
92
+ left: 360px;
93
+ top: 210px;
94
+ width: 180px;
95
+ height: 180px;
96
+ border-radius: 50%;
97
+ background: rgba(255,255,255,0.25);
98
+ display: flex;
99
+ align-items: center;
100
+ justify-content: center;
101
+ backdrop-filter: blur(2px);
102
+ }
103
+ .play-btn svg { width: 70px; height: 70px; fill: #ffffff; }
104
+
105
+ /* Content */
106
+ .content {
107
+ position: absolute;
108
+ top: 700px;
109
+ left: 40px;
110
+ right: 40px;
111
+ }
112
+ .title {
113
+ font-size: 86px;
114
+ line-height: 1.05;
115
+ margin: 0 0 22px 0;
116
+ font-weight: 700;
117
+ letter-spacing: 0.2px;
118
+ }
119
+ .meta {
120
+ color: #7bd1a7;
121
+ font-size: 34px;
122
+ margin-bottom: 34px;
123
+ }
124
+ .desc {
125
+ font-size: 36px;
126
+ line-height: 1.4;
127
+ color: #eaf4ff;
128
+ margin: 0 0 30px 0;
129
+ max-width: 960px;
130
+ }
131
+ .author {
132
+ display: flex;
133
+ align-items: center;
134
+ gap: 18px;
135
+ margin-bottom: 48px;
136
+ }
137
+ .avatar {
138
+ width: 66px;
139
+ height: 66px;
140
+ border-radius: 50%;
141
+ background: #E0E0E0;
142
+ border: 1px solid #BDBDBD;
143
+ display: flex;
144
+ align-items: center;
145
+ justify-content: center;
146
+ color: #757575;
147
+ font-size: 18px;
148
+ }
149
+ .author .by {
150
+ font-size: 36px;
151
+ color: #ffffff;
152
+ opacity: 0.95;
153
+ }
154
+
155
+ .section-head {
156
+ font-size: 56px;
157
+ font-weight: 700;
158
+ margin: 18px 0 28px 0;
159
+ }
160
+
161
+ .cards {
162
+ display: flex;
163
+ gap: 30px;
164
+ }
165
+ .card {
166
+ width: 480px;
167
+ border-radius: 28px;
168
+ overflow: hidden;
169
+ background: #152b49;
170
+ box-shadow: 0 6px 18px rgba(0,0,0,0.4);
171
+ }
172
+ .card-img {
173
+ width: 100%;
174
+ height: 520px;
175
+ background: #E0E0E0;
176
+ border-bottom: 1px solid #BDBDBD;
177
+ display: flex;
178
+ align-items: center;
179
+ justify-content: center;
180
+ color: #757575;
181
+ font-size: 28px;
182
+ position: relative;
183
+ }
184
+ .lock {
185
+ position: absolute;
186
+ top: 18px;
187
+ right: 18px;
188
+ width: 62px;
189
+ height: 62px;
190
+ border-radius: 50%;
191
+ background: rgba(12, 38, 70, 0.95);
192
+ display: flex;
193
+ align-items: center;
194
+ justify-content: center;
195
+ }
196
+ .lock svg { width: 32px; height: 32px; stroke: #ffffff; fill: none; stroke-width: 3; }
197
+
198
+ .card-title {
199
+ font-size: 52px;
200
+ padding: 20px 26px 6px 26px;
201
+ font-weight: 700;
202
+ }
203
+ .card-sub {
204
+ font-size: 30px;
205
+ padding: 0 26px 28px 26px;
206
+ color: #a7e6c9;
207
+ }
208
+
209
+ /* Bottom navigation */
210
+ .bottom-nav {
211
+ position: absolute;
212
+ left: 0;
213
+ bottom: 90px;
214
+ width: 1080px;
215
+ height: 170px;
216
+ border-top: 1px solid rgba(255,255,255,0.08);
217
+ display: flex;
218
+ justify-content: space-around;
219
+ align-items: center;
220
+ background: rgba(15, 39, 71, 0.85);
221
+ backdrop-filter: blur(2px);
222
+ }
223
+ .nav-item {
224
+ display: flex;
225
+ flex-direction: column;
226
+ align-items: center;
227
+ gap: 14px;
228
+ color: #cfe3ff;
229
+ font-size: 28px;
230
+ }
231
+ .nav-item svg { width: 52px; height: 52px; stroke: #cfe3ff; fill: none; stroke-width: 3; }
232
+ .nav-item.active { color: #ffffff; }
233
+ .nav-item.active svg { stroke: #ffffff; }
234
+
235
+ /* Gesture bar */
236
+ .gesture {
237
+ position: absolute;
238
+ bottom: 26px;
239
+ left: 50%;
240
+ transform: translateX(-50%);
241
+ width: 220px;
242
+ height: 10px;
243
+ background: #ffffff;
244
+ border-radius: 8px;
245
+ opacity: 0.8;
246
+ }
247
+ </style>
248
+ </head>
249
+ <body>
250
+ <div id="render-target">
251
+
252
+ <!-- Status bar -->
253
+ <div class="status-bar">
254
+ <div class="sb-left">9:11</div>
255
+ <div class="sb-right">
256
+ <div class="sb-icon">
257
+ <!-- location/signal -->
258
+ <svg viewBox="0 0 32 32"><path d="M4 22c4-8 20-8 24 0" /><path d="M9 22c3-5 12-5 15 0" /><circle cx="16" cy="24" r="2" fill="#eaf4ff"></circle></svg>
259
+ </div>
260
+ <div class="sb-icon">
261
+ <!-- wifi -->
262
+ <svg viewBox="0 0 32 32"><path d="M3 12c7-7 19-7 26 0" /><path d="M7 16c5-5 13-5 18 0" /><path d="M11 20c3-3 7-3 10 0" /><circle cx="16" cy="24" r="2" fill="#eaf4ff"></circle></svg>
263
+ </div>
264
+ <div class="sb-icon">
265
+ <!-- battery -->
266
+ <svg viewBox="0 0 40 32"><rect x="2" y="8" width="28" height="16" rx="3"></rect><rect x="6" y="12" width="20" height="8" fill="#eaf4ff"></rect><rect x="32" y="12" width="6" height="8" rx="2"></rect></svg>
267
+ </div>
268
+ </div>
269
+ </div>
270
+
271
+ <!-- Banner -->
272
+ <div class="banner">
273
+ <div class="banner-image">[IMG: Reeds beside a foggy lake]</div>
274
+
275
+ <div class="back-btn">
276
+ <svg viewBox="0 0 48 48"><path d="M30 10 L16 24 L30 38" /></svg>
277
+ </div>
278
+
279
+ <div class="top-actions">
280
+ <div class="circle-icon">
281
+ <!-- lines/sort -->
282
+ <svg viewBox="0 0 48 48">
283
+ <path d="M10 14h28" />
284
+ <path d="M10 24h20" />
285
+ <path d="M10 34h12" />
286
+ </svg>
287
+ </div>
288
+ <div class="circle-icon">
289
+ <!-- share -->
290
+ <svg viewBox="0 0 48 48">
291
+ <circle cx="14" cy="32" r="6"></circle>
292
+ <circle cx="34" cy="16" r="6"></circle>
293
+ <path d="M19 29 L29 19" />
294
+ </svg>
295
+ </div>
296
+ <div class="circle-icon">
297
+ <!-- heart -->
298
+ <svg viewBox="0 0 48 48">
299
+ <path d="M24 36c-10-7-14-13-12-18 2-5 9-6 12 0 3-6 10-5 12 0 2 5-2 11-12 18z" />
300
+ </svg>
301
+ </div>
302
+ <div class="circle-icon">
303
+ <!-- download -->
304
+ <svg viewBox="0 0 48 48">
305
+ <path d="M24 10v16" />
306
+ <path d="M16 20l8 8 8-8" />
307
+ <path d="M12 36h24" />
308
+ </svg>
309
+ </div>
310
+ </div>
311
+
312
+ <div class="play-btn">
313
+ <svg viewBox="0 0 64 64"><polygon points="22,16 50,32 22,48"></polygon></svg>
314
+ </div>
315
+ </div>
316
+
317
+ <!-- Content -->
318
+ <div class="content">
319
+ <div class="title">Gentle Rain & Peaceful Music</div>
320
+ <div class="meta">Music • 31min</div>
321
+ <p class="desc">
322
+ Nothing is more calming than the sound of rain. Let this peaceful music and gentle rain song give you a sense of safety as you unwind.
323
+ </p>
324
+
325
+ <div class="author">
326
+ <div class="avatar">[IMG: Avatar]</div>
327
+ <span class="by">By Maja Jovanovska</span>
328
+ </div>
329
+
330
+ <div class="section-head">You might also like</div>
331
+
332
+ <div class="cards">
333
+ <div class="card">
334
+ <div class="card-img">[IMG: Raindrops on window with trees]</div>
335
+ <div class="card-title">Rain</div>
336
+ <div class="card-sub">Nature Sound • 31 min</div>
337
+ </div>
338
+
339
+ <div class="card">
340
+ <div class="card-img">
341
+ [IMG: Seedlings with rain in rainforest]
342
+ <div class="lock">
343
+ <svg viewBox="0 0 40 40">
344
+ <rect x="10" y="18" width="20" height="14" rx="3"></rect>
345
+ <path d="M14 18v-4c0-4 12-4 12 0v4" />
346
+ </svg>
347
+ </div>
348
+ </div>
349
+ <div class="card-title">Rain in the Rainforest</div>
350
+ <div class="card-sub">Nature Sound • 31 min</div>
351
+ </div>
352
+ </div>
353
+ </div>
354
+
355
+ <!-- Bottom navigation -->
356
+ <div class="bottom-nav">
357
+ <div class="nav-item">
358
+ <svg viewBox="0 0 52 52"><path d="M10 28 L26 14 L42 28" /><path d="M14 26v12h24V26" /></svg>
359
+ <div>Today</div>
360
+ </div>
361
+ <div class="nav-item">
362
+ <svg viewBox="0 0 52 52"><path d="M10 38h32" /><path d="M10 14h32" /><path d="M10 26h32" /></svg>
363
+ <div>Therapy</div>
364
+ </div>
365
+ <div class="nav-item">
366
+ <svg viewBox="0 0 52 52"><circle cx="26" cy="26" r="16"></circle><path d="M26 14v12l8 6" /></svg>
367
+ <div>Goals</div>
368
+ </div>
369
+ <div class="nav-item active">
370
+ <svg viewBox="0 0 52 52"><circle cx="22" cy="22" r="14"></circle><path d="M34 34l10 10" /></svg>
371
+ <div>Library</div>
372
+ </div>
373
+ <div class="nav-item">
374
+ <svg viewBox="0 0 52 52"><circle cx="26" cy="18" r="8"></circle><path d="M8 44c4-10 28-10 36 0" /></svg>
375
+ <div>Profile</div>
376
+ </div>
377
+ </div>
378
+
379
+ <div class="gesture"></div>
380
+ </div>
381
+ </body>
382
+ </html>
code/7345/7345_7.html ADDED
@@ -0,0 +1,238 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Audio Player UI</title>
5
+ <style>
6
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
7
+ #render-target {
8
+ width: 1080px;
9
+ height: 2400px;
10
+ position: relative;
11
+ overflow: hidden;
12
+ background: #1f2c48; /* deep navy main background */
13
+ }
14
+ /* Top status bar */
15
+ .top-bar {
16
+ position: absolute;
17
+ top: 0;
18
+ left: 0;
19
+ width: 1080px;
20
+ height: 140px;
21
+ background: #14355a; /* darker blue header */
22
+ }
23
+ /* Small music note icon */
24
+ .note-icon {
25
+ position: absolute;
26
+ top: 180px;
27
+ left: 36px;
28
+ width: 60px;
29
+ height: 60px;
30
+ opacity: 0.9;
31
+ }
32
+ /* Close (X) icon */
33
+ .close-btn {
34
+ position: absolute;
35
+ top: 180px;
36
+ right: 36px;
37
+ width: 72px;
38
+ height: 72px;
39
+ }
40
+ /* Center player circle */
41
+ .player {
42
+ position: absolute;
43
+ left: 50%;
44
+ top: 1450px;
45
+ transform: translateX(-50%);
46
+ width: 540px;
47
+ height: 540px;
48
+ border-radius: 50%;
49
+ border: 8px solid rgba(255,255,255,0.9);
50
+ box-sizing: border-box;
51
+ }
52
+ .player-dot {
53
+ position: absolute;
54
+ left: 50%;
55
+ top: -18px;
56
+ transform: translateX(-50%);
57
+ width: 38px;
58
+ height: 38px;
59
+ background: #fff;
60
+ border-radius: 50%;
61
+ box-shadow: 0 0 0 6px rgba(255,255,255,0.18);
62
+ }
63
+ .inner-circle {
64
+ position: absolute;
65
+ left: 50%;
66
+ top: 50%;
67
+ transform: translate(-50%,-50%);
68
+ width: 340px;
69
+ height: 340px;
70
+ border-radius: 50%;
71
+ background: radial-gradient(ellipse at center, #98a9b7 0%, #7f8f9e 55%, #5e7384 100%);
72
+ box-shadow: inset 0 0 40px rgba(0,0,0,0.2);
73
+ display: flex;
74
+ align-items: center;
75
+ justify-content: center;
76
+ }
77
+ .pause-bars {
78
+ width: 140px;
79
+ height: 140px;
80
+ display: flex;
81
+ gap: 26px;
82
+ align-items: center;
83
+ justify-content: center;
84
+ }
85
+ .pause-bars span {
86
+ display: block;
87
+ width: 40px;
88
+ height: 140px;
89
+ background: #e9eef3;
90
+ border-radius: 8px;
91
+ box-shadow: 0 2px 0 rgba(0,0,0,0.1);
92
+ }
93
+ /* Skip icons (15s) */
94
+ .skip {
95
+ position: absolute;
96
+ top: 1730px;
97
+ width: 160px;
98
+ height: 160px;
99
+ color: #fff;
100
+ opacity: 0.9;
101
+ }
102
+ .skip.left { left: 140px; }
103
+ .skip.right { right: 140px; }
104
+ .skip .label {
105
+ position: absolute;
106
+ left: 50%;
107
+ top: 98px;
108
+ transform: translateX(-50%);
109
+ font-size: 44px;
110
+ color: #ffffff;
111
+ letter-spacing: 1px;
112
+ }
113
+ /* Time & title */
114
+ .time {
115
+ position: absolute;
116
+ left: 0;
117
+ right: 0;
118
+ top: 2030px;
119
+ text-align: center;
120
+ color: #ffffff;
121
+ font-size: 46px;
122
+ opacity: 0.95;
123
+ }
124
+ .title {
125
+ position: absolute;
126
+ left: 100px;
127
+ right: 100px;
128
+ top: 2120px;
129
+ text-align: center;
130
+ color: #ffffff;
131
+ font-size: 54px;
132
+ font-weight: 600;
133
+ }
134
+ /* Bottom controls */
135
+ .bottom-controls {
136
+ position: absolute;
137
+ left: 0;
138
+ right: 0;
139
+ bottom: 130px;
140
+ height: 120px;
141
+ display: flex;
142
+ align-items: center;
143
+ justify-content: space-around;
144
+ padding: 0 160px;
145
+ }
146
+ .icon-btn {
147
+ width: 120px;
148
+ height: 120px;
149
+ color: #fff;
150
+ }
151
+ /* Helper for stroked icons */
152
+ svg { display: block; width: 100%; height: 100%; }
153
+ .stroke { stroke: #ffffff; stroke-width: 16; fill: none; stroke-linecap: round; stroke-linejoin: round; }
154
+ .stroke-soft { stroke: rgba(255,255,255,0.9); stroke-width: 16; fill: none; stroke-linecap: round; stroke-linejoin: round; }
155
+ </style>
156
+ </head>
157
+ <body>
158
+ <div id="render-target">
159
+
160
+ <!-- Top header bar -->
161
+ <div class="top-bar"></div>
162
+
163
+ <!-- Music note icon -->
164
+ <svg class="note-icon" viewBox="0 0 64 64">
165
+ <path class="stroke" d="M18 12v28c0 7-6 10-11 10s-7-3-7-7 4-7 9-7c3 0 6 1 9 3V16l40-8v26c0 7-6 10-11 10s-7-3-7-7 4-7 9-7c3 0 6 1 9 3V8L18 12z"/>
166
+ </svg>
167
+
168
+ <!-- Close button (X) -->
169
+ <svg class="close-btn" viewBox="0 0 100 100">
170
+ <path class="stroke" d="M20 20L80 80M80 20L20 80"/>
171
+ </svg>
172
+
173
+ <!-- Central player circle with pause -->
174
+ <div class="player">
175
+ <div class="player-dot"></div>
176
+ <div class="inner-circle">
177
+ <div class="pause-bars">
178
+ <span></span>
179
+ <span></span>
180
+ </div>
181
+ </div>
182
+ </div>
183
+
184
+ <!-- 15s backward -->
185
+ <div class="skip left">
186
+ <svg viewBox="0 0 120 120">
187
+ <path class="stroke-soft" d="M60 20c-22 0-40 18-40 40M20 60l-6-16M20 60l16-6"/>
188
+ <path class="stroke-soft" d="M60 20c22 0 40 18 40 40M100 60l-16-6M100 60l6-16"/>
189
+ </svg>
190
+ <div class="label">15</div>
191
+ </div>
192
+
193
+ <!-- 15s forward -->
194
+ <div class="skip right">
195
+ <svg viewBox="0 0 120 120">
196
+ <path class="stroke-soft" d="M60 20c22 0 40 18 40 40M100 60l-6-16M100 60l16-6"/>
197
+ <path class="stroke-soft" d="M60 20c-22 0-40 18-40 40M20 60l16-6M20 60l-6-16"/>
198
+ </svg>
199
+ <div class="label">15</div>
200
+ </div>
201
+
202
+ <!-- Time -->
203
+ <div class="time">31:14</div>
204
+
205
+ <!-- Title -->
206
+ <div class="title">Gentle Rain &amp; Peaceful Music</div>
207
+
208
+ <!-- Bottom controls: playlist, heart, repeat -->
209
+ <div class="bottom-controls">
210
+ <!-- Playlist + add -->
211
+ <div class="icon-btn">
212
+ <svg viewBox="0 0 100 100">
213
+ <path class="stroke" d="M14 26h56M14 46h56M14 66h36"/>
214
+ <path class="stroke" d="M76 56v24M64 68h24"/>
215
+ </svg>
216
+ </div>
217
+
218
+ <!-- Heart outline -->
219
+ <div class="icon-btn">
220
+ <svg viewBox="0 0 100 100">
221
+ <path class="stroke" d="M50 82s-26-16-34-30c-6-11 2-26 16-26 10 0 16 8 18 12 2-4 8-12 18-12 14 0 22 15 16 26-8 14-34 30-34 30z"/>
222
+ </svg>
223
+ </div>
224
+
225
+ <!-- Repeat arrows -->
226
+ <div class="icon-btn">
227
+ <svg viewBox="0 0 120 100">
228
+ <path class="stroke" d="M24 28h52c12 0 22 10 22 22"/>
229
+ <path class="stroke" d="M20 20l-4 16 16-4"/>
230
+ <path class="stroke" d="M96 72H44c-12 0-22-10-22-22"/>
231
+ <path class="stroke" d="M100 80l4-16-16 4"/>
232
+ </svg>
233
+ </div>
234
+ </div>
235
+
236
+ </div>
237
+ </body>
238
+ </html>
code/7345/7345_8.html ADDED
@@ -0,0 +1,261 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
5
+ <title>Audio Player Screen</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:#dde0e4;
14
+ }
15
+
16
+ /* Background photo placeholder */
17
+ .bg-photo {
18
+ position:absolute;
19
+ left:0; top:120px;
20
+ width:100%; height:2280px;
21
+ background:#E0E0E0;
22
+ border-top:1px solid #BDBDBD;
23
+ display:flex; align-items:center; justify-content:center;
24
+ color:#757575; font-size:34px; letter-spacing:0.5px;
25
+ }
26
+
27
+ /* Top status bar */
28
+ .status-bar {
29
+ position:absolute;
30
+ top:0; left:0; right:0;
31
+ height:120px;
32
+ background:#13365a;
33
+ color:#ffffff;
34
+ }
35
+ .status-content {
36
+ position:absolute;
37
+ left:32px; right:32px; top:0; bottom:0;
38
+ display:flex; align-items:center; justify-content:space-between;
39
+ padding:0 10px;
40
+ }
41
+ .status-left { display:flex; align-items:center; gap:20px; }
42
+ .status-right { display:flex; align-items:center; gap:22px; }
43
+ .status-time { font-size:44px; font-weight:600; letter-spacing:0.5px; }
44
+
45
+ .dot-icon { width:34px; height:34px; border-radius:50%; border:2px solid rgba(255,255,255,0.8); }
46
+ .wifi {
47
+ width:42px; height:42px; border-radius:50%;
48
+ border:2px solid rgba(255,255,255,0.9);
49
+ position:relative;
50
+ }
51
+ .battery {
52
+ width:42px; height:42px; border-radius:8px;
53
+ border:2px solid rgba(255,255,255,0.9);
54
+ position:relative;
55
+ }
56
+
57
+ /* In-content top icons */
58
+ .top-note {
59
+ position:absolute; left:36px; top:160px; color:#fff;
60
+ opacity:0.9;
61
+ }
62
+ .top-close {
63
+ position:absolute; right:36px; top:156px;
64
+ width:60px; height:60px;
65
+ }
66
+ .top-close svg { width:100%; height:100%; }
67
+ .top-close line { stroke:#f5e8d0; stroke-width:8; stroke-linecap:round; }
68
+
69
+ /* Player circle */
70
+ .player-wrap {
71
+ position:absolute;
72
+ left:50%; top:1190px;
73
+ transform:translate(-50%, -50%);
74
+ width:640px; height:640px;
75
+ }
76
+ .progress-ring {
77
+ position:absolute; left:0; top:0; width:100%; height:100%;
78
+ border-radius:50%;
79
+ border:6px solid rgba(255,255,255,0.9);
80
+ box-shadow: 0 0 0 3px rgba(255,255,255,0.25) inset;
81
+ }
82
+ /* progress knob */
83
+ .knob {
84
+ position:absolute;
85
+ width:44px; height:44px; border-radius:50%;
86
+ background:#fff;
87
+ box-shadow:0 2px 6px rgba(0,0,0,0.18);
88
+ /* place roughly at 330deg around the circle */
89
+ left:50%; top:-22px; transform:translateX(-50%);
90
+ }
91
+ .pause-btn {
92
+ position:absolute;
93
+ left:50%; top:50%;
94
+ transform:translate(-50%, -50%);
95
+ width:220px; height:220px;
96
+ border-radius:50%;
97
+ background:linear-gradient(180deg, rgba(120,168,206,0.95), rgba(90,124,162,0.95));
98
+ box-shadow:0 12px 30px rgba(0,0,0,0.25);
99
+ display:flex; align-items:center; justify-content:center;
100
+ }
101
+ .pause-bars {
102
+ display:flex; gap:26px;
103
+ }
104
+ .pause-bars div {
105
+ width:36px; height:110px; background:#ffffff; border-radius:6px;
106
+ }
107
+
108
+ /* Side controls */
109
+ .skip15 {
110
+ position:absolute; right:120px; top:1460px;
111
+ width:140px; height:140px;
112
+ display:flex; align-items:center; justify-content:center;
113
+ opacity:0.9;
114
+ }
115
+ .skip15 svg { width:100%; height:100%; }
116
+ .skip15 circle { fill:none; stroke:#ffffff; stroke-width:12; opacity:0.9; }
117
+ .skip15 path { fill:none; stroke:#ffffff; stroke-width:12; stroke-linecap:round; }
118
+ .skip15 text { fill:#ffffff; font-size:64px; font-weight:600; }
119
+
120
+ .small-left {
121
+ position:absolute; left:120px; top:1460px;
122
+ width:120px; height:120px; border-radius:60px;
123
+ border:6px solid rgba(255,255,255,0.35);
124
+ display:flex; align-items:center; justify-content:center;
125
+ color:rgba(255,255,255,0.6); font-size:52px;
126
+ }
127
+
128
+ /* Track info */
129
+ .time-label {
130
+ position:absolute; left:50%; top:1680px; transform:translateX(-50%);
131
+ color:#ffffff; font-size:48px; letter-spacing:1px;
132
+ text-shadow:0 2px 6px rgba(0,0,0,0.2);
133
+ }
134
+ .track-title {
135
+ position:absolute; left:50%; top:1770px; transform:translateX(-50%);
136
+ color:#ffffff; font-size:56px; font-weight:600;
137
+ text-shadow:0 2px 6px rgba(0,0,0,0.25);
138
+ }
139
+
140
+ /* Bottom action row */
141
+ .action-row {
142
+ position:absolute; left:0; right:0; bottom:180px;
143
+ display:flex; align-items:center; justify-content:center;
144
+ gap:160px;
145
+ }
146
+ .action-btn {
147
+ width:120px; height:120px; display:flex; align-items:center; justify-content:center;
148
+ color:#ffffff; opacity:0.95;
149
+ }
150
+ .action-btn svg { width:100%; height:100%; }
151
+ .heart path { stroke:#ffffff; stroke-width:10; fill:none; }
152
+ .playlist rect, .playlist path { stroke:#ffffff; stroke-width:10; fill:none; }
153
+ .shuffle path { stroke:#ffffff; stroke-width:10; fill:none; }
154
+
155
+ /* subtle overlay to mimic fog */
156
+ .fog {
157
+ position:absolute; left:0; top:120px; width:100%; height:2280px;
158
+ background:linear-gradient(to bottom, rgba(255,255,255,0.55), rgba(255,255,255,0.2) 35%, rgba(255,255,255,0.1) 60%, rgba(255,255,255,0.15));
159
+ pointer-events:none;
160
+ }
161
+ </style>
162
+ </head>
163
+ <body>
164
+ <div id="render-target">
165
+
166
+ <div class="status-bar">
167
+ <div class="status-content">
168
+ <div class="status-left">
169
+ <div class="status-time">9:11</div>
170
+ <div class="dot-icon"></div>
171
+ <div class="dot-icon" style="border-color: rgba(255,255,255,0.6);"></div>
172
+ <div class="dot-icon" style="border-color: rgba(255,255,255,0.6);"></div>
173
+ <div class="dot-icon" style="border-color: rgba(255,255,255,0.6);"></div>
174
+ </div>
175
+ <div class="status-right">
176
+ <div class="wifi"></div>
177
+ <div class="battery"></div>
178
+ </div>
179
+ </div>
180
+ </div>
181
+
182
+ <div class="bg-photo">[IMG: Misty Lake with Reeds on the Left]</div>
183
+ <div class="fog"></div>
184
+
185
+ <!-- top-left music note -->
186
+ <div class="top-note">
187
+ <svg width="60" height="60" viewBox="0 0 24 24">
188
+ <path d="M9 20a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM18 6v8a3 3 0 1 1-2-2.83V7l-7 2v7a3 3 0 1 1-2-2.83V6l11-3z" fill="rgba(255,255,255,0.9)"></path>
189
+ </svg>
190
+ </div>
191
+
192
+ <!-- top-right close X -->
193
+ <div class="top-close">
194
+ <svg viewBox="0 0 60 60">
195
+ <line x1="12" y1="12" x2="48" y2="48"></line>
196
+ <line x1="48" y1="12" x2="12" y2="48"></line>
197
+ </svg>
198
+ </div>
199
+
200
+ <!-- Central player -->
201
+ <div class="player-wrap">
202
+ <div class="progress-ring"></div>
203
+ <div class="knob"></div>
204
+
205
+ <div class="pause-btn">
206
+ <div class="pause-bars">
207
+ <div></div>
208
+ <div></div>
209
+ </div>
210
+ </div>
211
+ </div>
212
+
213
+ <!-- Side controls -->
214
+ <div class="skip15">
215
+ <svg viewBox="0 0 140 140">
216
+ <circle cx="70" cy="70" r="60"></circle>
217
+ <path d="M78 38c12 0 22 10 22 22" />
218
+ <path d="M86 40l-10 -2 4 -8" />
219
+ <text x="56" y="95" text-anchor="middle">15</text>
220
+ </svg>
221
+ </div>
222
+
223
+ <div class="small-left">5</div>
224
+
225
+ <!-- Track info -->
226
+ <div class="time-label">31:07</div>
227
+ <div class="track-title">Gentle Rain &amp; Peaceful Music</div>
228
+
229
+ <!-- Bottom action row -->
230
+ <div class="action-row">
231
+ <!-- Playlist add -->
232
+ <div class="action-btn playlist">
233
+ <svg viewBox="0 0 100 100">
234
+ <rect x="16" y="22" width="52" height="8" rx="4"></rect>
235
+ <rect x="16" y="42" width="52" height="8" rx="4"></rect>
236
+ <rect x="16" y="62" width="36" height="8" rx="4"></rect>
237
+ <path d="M76 48v-10m0 10h10m-10 0h-10" stroke-linecap="round"></path>
238
+ </svg>
239
+ </div>
240
+
241
+ <!-- Heart -->
242
+ <div class="action-btn heart">
243
+ <svg viewBox="0 0 100 100">
244
+ <path d="M50 82c-18-12-30-22-30-36a18 18 0 0 1 32-10 18 18 0 0 1 32 10c0 14-12 24-34 36z"></path>
245
+ </svg>
246
+ </div>
247
+
248
+ <!-- Shuffle/loop -->
249
+ <div class="action-btn shuffle">
250
+ <svg viewBox="0 0 100 100">
251
+ <path d="M16 30h22l10 12 10-12h26" stroke-linecap="round"></path>
252
+ <path d="M84 30l-8 -8m8 8l-8 8" stroke-linecap="round"></path>
253
+ <path d="M16 70h22l10-12 10 12h26" stroke-linecap="round"></path>
254
+ <path d="M84 70l-8 -8m8 8l-8 8" stroke-linecap="round"></path>
255
+ </svg>
256
+ </div>
257
+ </div>
258
+
259
+ </div>
260
+ </body>
261
+ </html>
code/7349/7349_0.html ADDED
@@ -0,0 +1,300 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>UI Render</title>
7
+ <style>
8
+ :root{
9
+ --bg:#0b0c0b;
10
+ --card:#1a1b19;
11
+ --card2:#121312;
12
+ --accent:#c9d9b0; /* light olive */
13
+ --text:#e9ece7;
14
+ --muted:#a8b89b;
15
+ --olive:#7f8f70;
16
+ }
17
+ body{ margin:0; padding:0; background:transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
18
+ #render-target{
19
+ width:1080px; height:2400px;
20
+ position:relative; overflow:hidden;
21
+ background:var(--bg);
22
+ border-radius:22px; box-shadow:0 20px 60px rgba(0,0,0,0.5);
23
+ color:var(--text);
24
+ }
25
+
26
+ /* Header */
27
+ .header{
28
+ position:relative;
29
+ height:520px;
30
+ padding:36px 42px 20px 42px;
31
+ background:linear-gradient(180deg,#5e6667 0%, #505657 60%, #444a4b 100%);
32
+ color:#fff;
33
+ }
34
+ .header::after{
35
+ content:"";
36
+ position:absolute; left:-120px; right:-120px; bottom:-160px;
37
+ height:340px;
38
+ background:var(--bg);
39
+ border-top-left-radius:70% 100%;
40
+ border-top-right-radius:70% 100%;
41
+ transform:scaleY(1.05);
42
+ }
43
+ .statusbar{ display:flex; justify-content:space-between; align-items:center; font-weight:600; font-size:36px; opacity:0.95; }
44
+ .status-icons{ display:flex; align-items:center; gap:18px; }
45
+ .city-wrap{ position:relative; margin-top:64px; display:flex; justify-content:space-between; align-items:flex-start; }
46
+ .city-left h1{ margin:0; font-size:84px; letter-spacing:2px; font-weight:800; }
47
+ .city-left .temp{ font-size:64px; font-weight:700; margin-top:8px; }
48
+ .city-right{ text-align:right; margin-top:16px; }
49
+ .city-right .cond{ font-size:40px; font-weight:700; letter-spacing:1px; }
50
+ .city-right .range{ font-size:32px; opacity:0.9; margin-top:12px; }
51
+ .tagline{ position:relative; text-align:center; margin-top:36px; font-size:30px; letter-spacing:2px; opacity:0.95; }
52
+
53
+ /* Cloudy image placeholder inside header */
54
+ .cloudy-art{
55
+ position:absolute; right:40px; top:120px;
56
+ width:540px; height:260px;
57
+ background:#E0E0E0; border:1px solid #BDBDBD;
58
+ display:flex; align-items:center; justify-content:center; color:#757575; font-size:28px; border-radius:18px;
59
+ opacity:0.75;
60
+ }
61
+
62
+ /* Cards & sections */
63
+ .content{ position:relative; padding:0 42px; margin-top:20px; }
64
+ .card{
65
+ background:var(--card);
66
+ border-radius:40px;
67
+ padding:40px;
68
+ box-shadow:0 12px 40px rgba(0,0,0,0.35);
69
+ }
70
+ .premium{ margin-top:40px; }
71
+ .premium .row{ display:flex; align-items:center; gap:28px; }
72
+ .prem-icon{
73
+ width:96px; height:96px; border-radius:52px;
74
+ background:linear-gradient(180deg,#214021,#193a1c);
75
+ display:flex; align-items:center; justify-content:center;
76
+ color:#b8d4a6; font-weight:800; font-size:48px;
77
+ }
78
+ .premium .label{ color:#8fa486; font-size:28px; letter-spacing:3px; }
79
+ .premium .title{ color:#c7d7b7; font-size:40px; margin-top:8px; }
80
+
81
+ .tabs{ display:flex; gap:140px; align-items:center; margin:54px 0 6px; }
82
+ .pill{
83
+ background:var(--accent); color:#121512; font-weight:700;
84
+ padding:24px 52px; border-radius:44px; font-size:36px;
85
+ box-shadow:0 6px 16px rgba(0,0,0,0.25);
86
+ }
87
+ .tab{ color:#b8c7af; font-size:36px; }
88
+
89
+ .tasks-card{ margin-top:40px; }
90
+ .tasks-header{ display:flex; align-items:center; gap:30px; }
91
+ .leaf-circle{
92
+ width:120px; height:120px; border-radius:80px; background:#c9d9b0; display:flex; align-items:center; justify-content:center;
93
+ }
94
+ .leaf-circle svg{ width:60px; height:60px; }
95
+ .tasks-card h2{ margin:0; font-size:54px; }
96
+ .tasks-card .sub{ margin-top:6px; font-size:28px; letter-spacing:2px; color:#c3cfbb; }
97
+
98
+ .water-card{ margin-top:40px; }
99
+ .water-title{ font-size:42px; font-weight:800; margin-bottom:26px; color:#e8efe3; }
100
+ .water-info{
101
+ background:var(--card2); color:#e6e6e6; border-radius:36px; padding:34px; font-size:32px; line-height:1.45; text-align:center; margin-bottom:40px;
102
+ box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
103
+ }
104
+ .plant-row{ display:flex; align-items:center; gap:26px; margin-top:6px; }
105
+ .avatar{
106
+ width:120px; height:120px; border-radius:60px;
107
+ background:#E0E0E0; border:1px solid #BDBDBD;
108
+ display:flex; align-items:center; justify-content:center; color:#757575; font-size:24px;
109
+ }
110
+ .plant-row .plant-name{ font-size:40px; font-weight:700; margin-bottom:6px; }
111
+ .plant-row .room{ font-size:28px; letter-spacing:2px; color:#c3cfbb; }
112
+
113
+ /* Floating actions */
114
+ .fab-stack{
115
+ position:absolute; right:66px; bottom:560px; display:flex; flex-direction:column; gap:30px; align-items:center;
116
+ }
117
+ .fab{
118
+ width:120px; height:120px; border-radius:60px;
119
+ background:#c9d9b0; display:flex; align-items:center; justify-content:center;
120
+ box-shadow:0 12px 24px rgba(0,0,0,0.45);
121
+ }
122
+ .fab.small{ width:104px; height:104px; border-radius:52px; background:#8fa486; }
123
+ .fab svg{ width:52px; height:52px; }
124
+
125
+ /* Bottom navigation bar */
126
+ .navbar{
127
+ position:absolute; left:0; right:0; bottom:0;
128
+ height:170px; background:#111311; box-shadow:0 -10px 26px rgba(0,0,0,0.45);
129
+ display:flex; align-items:center; justify-content:space-around;
130
+ padding:0 40px;
131
+ }
132
+ .nav-item{ width:140px; height:110px; display:flex; align-items:center; justify-content:center; position:relative; }
133
+ .nav-item.active::before{
134
+ content:""; position:absolute; width:88px; height:88px; border-radius:44px; background:#8fa486; opacity:0.25;
135
+ }
136
+ .navbar svg{ width:54px; height:54px; fill:#8fa486; }
137
+
138
+ /* iOS home indicator */
139
+ .home-indicator{
140
+ position:absolute; left:50%; bottom:28px; transform:translateX(-50%);
141
+ width:320px; height:12px; background:#d0d0d0; opacity:0.75; border-radius:8px;
142
+ }
143
+ </style>
144
+ </head>
145
+ <body>
146
+ <div id="render-target">
147
+
148
+ <!-- Top Weather Header -->
149
+ <div class="header">
150
+ <div class="statusbar">
151
+ <div>1:09</div>
152
+ <div class="status-icons">
153
+ <!-- simple dot placeholders to mimic small icons -->
154
+ <span style="font-size:32px; opacity:.75;">• • • • •</span>
155
+ <!-- speaker off -->
156
+ <svg viewBox="0 0 24 24" width="40" height="40" style="fill:#fff; opacity:.85;">
157
+ <path d="M3 10v4h4l5 5V5L7 10H3zm16.5 1.5-2-2 1.4-1.4 2 2-1.4 1.4zm0 3-5-5 1.4-1.4 5 5-1.4 1.4z"/>
158
+ </svg>
159
+ <!-- wifi -->
160
+ <svg viewBox="0 0 24 24" width="40" height="40" style="fill:#fff; opacity:.85;">
161
+ <path d="M12 20a2 2 0 1 0 0-4 2 2 0 0 0 0 4zm-7-7a11 11 0 0 1 14 0l-1.4 1.4a9 9 0 0 0-11.2 0L5 13zm-3-3a16 16 0 0 1 20 0l-1.4 1.4a14 14 0 0 0-17.2 0L2 10z"/>
162
+ </svg>
163
+ <!-- battery -->
164
+ <svg viewBox="0 0 24 24" width="44" height="44" style="fill:#fff; opacity:.85;">
165
+ <path d="M20 7h2v10h-2V7zM2 8a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8zm3 1h12v6H5V9z"/>
166
+ </svg>
167
+ </div>
168
+ </div>
169
+
170
+ <div class="city-wrap">
171
+ <div class="city-left">
172
+ <h1>NEW DELHI</h1>
173
+ <div class="temp">63°F</div>
174
+ </div>
175
+ <div class="city-right">
176
+ <div class="cond">CLOUDY</div>
177
+ <div class="range">H:73°F L:46°F</div>
178
+ </div>
179
+ </div>
180
+
181
+ <div class="tagline">THE SCHEDULE ADAPTS TO YOUR LOCAL WEATHER</div>
182
+
183
+ <div class="cloudy-art">[IMG: Cloudy sky illustration]</div>
184
+ </div>
185
+
186
+ <div class="content">
187
+
188
+ <!-- Premium Card -->
189
+ <div class="card premium">
190
+ <div class="row">
191
+ <div class="prem-icon">P</div>
192
+ <div>
193
+ <div class="label">PLANTA PREMIUM</div>
194
+ <div class="title">Upgrade to see weather alerts</div>
195
+ </div>
196
+ </div>
197
+ </div>
198
+
199
+ <!-- Tabs -->
200
+ <div class="tabs">
201
+ <div class="pill">Today</div>
202
+ <div class="tab">Upcoming</div>
203
+ </div>
204
+
205
+ <!-- Tasks Completed Card -->
206
+ <div class="card tasks-card">
207
+ <div class="tasks-header">
208
+ <div class="leaf-circle">
209
+ <svg viewBox="0 0 24 24">
210
+ <path d="M4 14c6-1 9-6 16-8-2 7-8 12-14 12-2 0-3-1-2-4z" fill="#3e5140"/>
211
+ </svg>
212
+ </div>
213
+ <div>
214
+ <h2>All tasks completed</h2>
215
+ <div class="sub">NEW TASKS WILL SHOW UP HERE</div>
216
+ </div>
217
+ </div>
218
+ </div>
219
+
220
+ <!-- Water Section -->
221
+ <div class="card water-card">
222
+ <div class="water-title">Water</div>
223
+ <div class="water-info">
224
+ When you have new plant care tasks to handle, they will be listed like this. Make sure to check them off once done.
225
+ </div>
226
+
227
+ <div class="plant-row">
228
+ <div class="avatar">[IMG: Plant avatar]</div>
229
+ <div>
230
+ <div class="plant-name">Ihi</div>
231
+ <div class="room">LIVING ROOM</div>
232
+ </div>
233
+ </div>
234
+
235
+ <div style="margin-top:46px; font-size:28px; letter-spacing:2px; color:#c3cfbb;">
236
+ TAP ON EACH TASK FOR INSTRUCTIONS
237
+ </div>
238
+ </div>
239
+
240
+ <!-- Floating Actions -->
241
+ <div class="fab-stack">
242
+ <div class="fab small">
243
+ <!-- check icon -->
244
+ <svg viewBox="0 0 24 24">
245
+ <path d="M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z" fill="#2a3227"/>
246
+ </svg>
247
+ </div>
248
+ <div class="fab small" style="background:#6f7f6a;">
249
+ <!-- list icon -->
250
+ <svg viewBox="0 0 24 24">
251
+ <path d="M4 7h16v2H4V7zm0 5h16v2H4v-2zm0 5h10v2H4v-2z" fill="#1a1d18"/>
252
+ </svg>
253
+ </div>
254
+ <div class="fab">
255
+ <!-- plus icon -->
256
+ <svg viewBox="0 0 24 24">
257
+ <path d="M11 5h2v6h6v2h-6v6h-2v-6H5v-2h6z" fill="#1a1d18"/>
258
+ </svg>
259
+ </div>
260
+ </div>
261
+
262
+ </div>
263
+
264
+ <!-- Bottom Navigation -->
265
+ <div class="navbar">
266
+ <div class="nav-item active">
267
+ <svg viewBox="0 0 24 24">
268
+ <path d="M12 3 3 10v10h6v-6h6v6h6V10z"/>
269
+ </svg>
270
+ </div>
271
+ <div class="nav-item">
272
+ <!-- leaf icon -->
273
+ <svg viewBox="0 0 24 24">
274
+ <path d="M4 14c6-1 9-6 16-8-2 7-8 12-14 12-2 0-3-1-2-4z"/>
275
+ </svg>
276
+ </div>
277
+ <div class="nav-item">
278
+ <!-- search icon -->
279
+ <svg viewBox="0 0 24 24">
280
+ <path d="M10 3a7 7 0 1 1 0 14 7 7 0 0 1 0-14zm8.7 13.3 3.3 3.3-1.4 1.4-3.3-3.3 1.4-1.4z"/>
281
+ </svg>
282
+ </div>
283
+ <div class="nav-item">
284
+ <!-- simple tool/stethoscope-like icon -->
285
+ <svg viewBox="0 0 24 24">
286
+ <path d="M6 4v6a4 4 0 1 0 8 0V4h-2v6a2 2 0 1 1-4 0V4H6zm11 9a3 3 0 0 0-1 5.8V21h3v-2.2A3 3 0 0 0 17 13z"/>
287
+ </svg>
288
+ </div>
289
+ <div class="nav-item">
290
+ <!-- letter P icon -->
291
+ <svg viewBox="0 0 24 24">
292
+ <path d="M5 4h8a5 5 0 1 1 0 10H9v6H5V4zm4 6h4a2 2 0 1 0 0-4H9v4z"/>
293
+ </svg>
294
+ </div>
295
+ </div>
296
+
297
+ <div class="home-indicator"></div>
298
+ </div>
299
+ </body>
300
+ </html>