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

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/14164/14164_3.html +259 -0
  2. code/14164/14164_5.html +364 -0
  3. code/14166/14166_0.html +283 -0
  4. code/14166/14166_10.html +298 -0
  5. code/14166/14166_11.html +337 -0
  6. code/14166/14166_12.html +257 -0
  7. code/14166/14166_2.html +332 -0
  8. code/14166/14166_3.html +399 -0
  9. code/14166/14166_4.html +320 -0
  10. code/14166/14166_5.html +181 -0
  11. code/14166/14166_6.html +160 -0
  12. code/14166/14166_7.html +204 -0
  13. code/14166/14166_8.html +181 -0
  14. code/14166/14166_9.html +194 -0
  15. code/14167/14167_0.html +340 -0
  16. code/14167/14167_1.html +279 -0
  17. code/14167/14167_2.html +373 -0
  18. code/14167/14167_3.html +278 -0
  19. code/14167/14167_4.html +186 -0
  20. code/14167/14167_5.html +253 -0
  21. code/14167/14167_6.html +240 -0
  22. code/14167/14167_7.html +232 -0
  23. code/14167/14167_8.html +221 -0
  24. code/14168/14168_0.html +327 -0
  25. code/14168/14168_1.html +210 -0
  26. code/14168/14168_2.html +217 -0
  27. code/14168/14168_3.html +290 -0
  28. code/14168/14168_4.html +267 -0
  29. code/14168/14168_5.html +321 -0
  30. code/14170/14170_0.html +369 -0
  31. code/14170/14170_1.html +304 -0
  32. code/14170/14170_10.html +212 -0
  33. code/14170/14170_2.html +293 -0
  34. code/14170/14170_3.html +201 -0
  35. code/14170/14170_4.html +252 -0
  36. code/14170/14170_5.html +318 -0
  37. code/14170/14170_6.html +234 -0
  38. code/14170/14170_7.html +249 -0
  39. code/14170/14170_8.html +207 -0
  40. code/14170/14170_9.html +223 -0
  41. code/14176/14176_0.html +303 -0
  42. code/14176/14176_1.html +163 -0
  43. code/14176/14176_2.html +326 -0
  44. code/14176/14176_3.html +293 -0
  45. code/14176/14176_4.html +222 -0
  46. code/14176/14176_5.html +259 -0
  47. code/14176/14176_6.html +204 -0
  48. code/14179/14179_0.html +249 -0
  49. code/14179/14179_1.html +308 -0
  50. code/14179/14179_2.html +310 -0
code/14164/14164_3.html ADDED
@@ -0,0 +1,259 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Advertisement 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: #000;
15
+ font-family: Arial, Helvetica, sans-serif;
16
+ color: #fff;
17
+ }
18
+ /* Status bar */
19
+ .statusbar {
20
+ position: absolute;
21
+ top: 0;
22
+ left: 0;
23
+ width: 1080px;
24
+ height: 120px;
25
+ background: #111;
26
+ display: flex;
27
+ align-items: center;
28
+ padding: 0 40px;
29
+ box-sizing: border-box;
30
+ }
31
+ .status-left {
32
+ display: flex;
33
+ align-items: center;
34
+ gap: 22px;
35
+ }
36
+ .time {
37
+ font-size: 38px;
38
+ letter-spacing: 1px;
39
+ }
40
+ .status-right {
41
+ margin-left: auto;
42
+ display: flex;
43
+ align-items: center;
44
+ gap: 26px;
45
+ }
46
+
47
+ /* Top labels */
48
+ .ad-label {
49
+ position: absolute;
50
+ top: 200px;
51
+ left: 0;
52
+ width: 100%;
53
+ text-align: center;
54
+ color: #8c94a0;
55
+ font-size: 28px;
56
+ letter-spacing: 2px;
57
+ }
58
+ .headline {
59
+ position: absolute;
60
+ top: 330px;
61
+ left: 120px;
62
+ width: 840px;
63
+ text-align: center;
64
+ font-size: 40px;
65
+ line-height: 1.3;
66
+ color: #fff;
67
+ }
68
+
69
+ /* Video placeholder */
70
+ .video-wrap {
71
+ position: absolute;
72
+ top: 780px;
73
+ left: 0;
74
+ width: 1080px;
75
+ height: 620px;
76
+ }
77
+ .video {
78
+ width: 100%;
79
+ height: 100%;
80
+ background: #E0E0E0;
81
+ border: 1px solid #BDBDBD;
82
+ display: flex;
83
+ justify-content: center;
84
+ align-items: center;
85
+ color: #757575;
86
+ font-size: 30px;
87
+ }
88
+ .learn-more {
89
+ position: absolute;
90
+ top: 10px;
91
+ right: 22px;
92
+ font-size: 32px;
93
+ color: #fff;
94
+ }
95
+ .skip-ad {
96
+ position: absolute;
97
+ right: 32px;
98
+ bottom: 140px;
99
+ background: rgba(0,0,0,0.9);
100
+ color: #fff;
101
+ padding: 22px 26px;
102
+ font-size: 36px;
103
+ }
104
+ .skip-ad svg { vertical-align: middle; margin-left: 8px; }
105
+
106
+ .ad-timer {
107
+ position: absolute;
108
+ bottom: 10px;
109
+ left: 26px;
110
+ display: flex;
111
+ align-items: center;
112
+ gap: 16px;
113
+ color: #e6e6e6;
114
+ font-size: 28px;
115
+ }
116
+ .ad-timer svg text { font-family: Arial, Helvetica, sans-serif; }
117
+
118
+ /* Progress bar */
119
+ .progress-area {
120
+ position: absolute;
121
+ top: 1590px;
122
+ left: 60px;
123
+ width: 960px;
124
+ height: 20px;
125
+ }
126
+ .progress-track {
127
+ position: absolute;
128
+ top: 8px;
129
+ left: 0;
130
+ width: 960px;
131
+ height: 6px;
132
+ background: #222;
133
+ }
134
+ .progress-fill {
135
+ position: absolute;
136
+ top: 8px;
137
+ left: 0;
138
+ width: 860px; /* progress value */
139
+ height: 6px;
140
+ background: #fff;
141
+ }
142
+
143
+ /* Promo section */
144
+ .promo {
145
+ position: absolute;
146
+ top: 1680px;
147
+ left: 60px;
148
+ right: 60px;
149
+ display: flex;
150
+ align-items: center;
151
+ justify-content: space-between;
152
+ }
153
+ .promo-text {
154
+ color: #eaeaea;
155
+ font-size: 34px;
156
+ line-height: 1.4;
157
+ }
158
+ .promo-text .bold {
159
+ font-weight: 700;
160
+ color: #fff;
161
+ }
162
+ .remove-btn {
163
+ background: #4a4a4a;
164
+ color: #fff;
165
+ padding: 22px 36px;
166
+ border-radius: 24px;
167
+ font-size: 32px;
168
+ }
169
+
170
+ /* Gesture bar */
171
+ .gesture-bar {
172
+ position: absolute;
173
+ bottom: 36px;
174
+ left: 50%;
175
+ transform: translateX(-50%);
176
+ width: 220px;
177
+ height: 10px;
178
+ background: #bfbfbf;
179
+ border-radius: 6px;
180
+ opacity: 0.85;
181
+ }
182
+ </style>
183
+ </head>
184
+ <body>
185
+ <div id="render-target">
186
+ <!-- Status bar -->
187
+ <div class="statusbar">
188
+ <div class="status-left">
189
+ <div class="time">11:14</div>
190
+ <!-- Simple triangle icon (store/play style) -->
191
+ <svg width="34" height="34" viewBox="0 0 24 24" fill="#fff" aria-label="Icon">
192
+ <path d="M4 3l16 9-16 9V3z"></path>
193
+ </svg>
194
+ </div>
195
+ <div class="status-right">
196
+ <!-- Wi-Fi -->
197
+ <svg width="40" height="28" viewBox="0 0 24 24" aria-label="Wi-Fi">
198
+ <path d="M2 8c5-4 15-4 20 0" stroke="#fff" stroke-width="2" fill="none" stroke-linecap="round"/>
199
+ <path d="M5 12c3-3 11-3 14 0" stroke="#fff" stroke-width="2" fill="none" stroke-linecap="round"/>
200
+ <path d="M9 16c2-2 4-2 6 0" stroke="#fff" stroke-width="2" fill="none" stroke-linecap="round"/>
201
+ <circle cx="12" cy="19" r="1.5" fill="#fff"/>
202
+ </svg>
203
+ <!-- Battery -->
204
+ <svg width="48" height="28" viewBox="0 0 28 16" aria-label="Battery">
205
+ <rect x="1" y="2" width="22" height="12" rx="2" ry="2" fill="none" stroke="#fff" stroke-width="2"/>
206
+ <rect x="3" y="4" width="18" height="8" fill="#fff"/>
207
+ <rect x="24" y="6" width="3" height="4" fill="#fff"/>
208
+ </svg>
209
+ </div>
210
+ </div>
211
+
212
+ <!-- Advertisement label -->
213
+ <div class="ad-label">ADVERTISEMENT</div>
214
+
215
+ <!-- Headline copy -->
216
+ <div class="headline">
217
+ Get next 30 mins of Uninterrupted Audio listening post this short Video
218
+ </div>
219
+
220
+ <!-- Video area -->
221
+ <div class="video-wrap">
222
+ <div class="video">[IMG: Video Ad showing payment terminal and trading charts]</div>
223
+ <div class="learn-more">Learn More</div>
224
+ <div class="skip-ad">
225
+ Skip Ad
226
+ <svg width="36" height="36" viewBox="0 0 24 24" fill="#fff" aria-label="Play">
227
+ <path d="M5 4l10 8-10 8V4z"></path>
228
+ <rect x="17" y="4" width="2" height="16" fill="#fff"></rect>
229
+ </svg>
230
+ </div>
231
+ <div class="ad-timer">
232
+ <div>Ad - (0:05)</div>
233
+ <svg width="28" height="28" viewBox="0 0 24 24" aria-label="Help">
234
+ <circle cx="12" cy="12" r="10" stroke="#BDBDBD" stroke-width="2" fill="none"/>
235
+ <text x="12" y="17" text-anchor="middle" font-size="14" fill="#BDBDBD">?</text>
236
+ </svg>
237
+ </div>
238
+ </div>
239
+
240
+ <!-- Progress bar -->
241
+ <div class="progress-area">
242
+ <div class="progress-track"></div>
243
+ <div class="progress-fill"></div>
244
+ </div>
245
+
246
+ <!-- Premium promo -->
247
+ <div class="promo">
248
+ <div class="promo-text">
249
+ Don't like interruptions?<br>
250
+ <span class="bold">Go Premium!</span>
251
+ </div>
252
+ <div class="remove-btn">Remove ads</div>
253
+ </div>
254
+
255
+ <!-- Gesture bar -->
256
+ <div class="gesture-bar"></div>
257
+ </div>
258
+ </body>
259
+ </html>
code/14164/14164_5.html ADDED
@@ -0,0 +1,364 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Music Player UI</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; }
9
+ #render-target {
10
+ width: 1080px; height: 2400px;
11
+ position: relative; overflow: hidden;
12
+ background: #0b0c0f;
13
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
14
+ color: #ffffff;
15
+ }
16
+ /* Status bar */
17
+ .status-bar {
18
+ position: absolute; top: 24px; left: 0; right: 0;
19
+ height: 60px; padding: 0 36px;
20
+ display: flex; align-items: center; justify-content: space-between;
21
+ color: #fff; opacity: 0.9; font-size: 36px; letter-spacing: 0.5px;
22
+ }
23
+ .status-right { display: flex; gap: 24px; align-items: center; }
24
+ .status-icon { width: 40px; height: 40px; }
25
+ /* Top hero */
26
+ .hero {
27
+ position: absolute; top: 0; left: 0; width: 100%; height: 980px;
28
+ background: linear-gradient(180deg, #23223a 0%, #1f1d33 50%, #151322 100%);
29
+ }
30
+ .hero::after {
31
+ content: ""; position: absolute; right: -280px; bottom: -160px;
32
+ width: 900px; height: 420px; background: #0b0c0f;
33
+ border-top-left-radius: 900px 420px;
34
+ box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
35
+ }
36
+ .title {
37
+ position: absolute; left: 72px; top: 180px;
38
+ font-size: 52px; font-weight: 700; color: #c9c2ff;
39
+ display: flex; align-items: center; gap: 16px;
40
+ }
41
+ .title svg { width: 36px; height: 36px; stroke: #c9c2ff; }
42
+ /* Album art placeholder */
43
+ .album {
44
+ position: absolute; left: 150px; top: 280px;
45
+ width: 780px; height: 780px; border-radius: 60px;
46
+ box-shadow: 0 40px 60px rgba(0,0,0,0.5);
47
+ overflow: hidden;
48
+ }
49
+ .album .img {
50
+ width: 100%; height: 100%;
51
+ background: #E0E0E0; border: 1px solid #BDBDBD;
52
+ display: flex; align-items: center; justify-content: center;
53
+ color: #757575; font-size: 40px; font-weight: 600; text-align: center; padding: 20px;
54
+ }
55
+ /* Progress */
56
+ .progress {
57
+ position: absolute; left: 72px; top: 1100px; right: 72px;
58
+ }
59
+ .time-row {
60
+ display: flex; justify-content: space-between; color: #a9a9b3;
61
+ font-size: 36px; margin-bottom: 24px;
62
+ }
63
+ .bar {
64
+ position: relative; height: 6px; background: #3b3b45; border-radius: 6px;
65
+ }
66
+ .bar .fill {
67
+ position: absolute; left: 0; top: 0; height: 6px; width: 48%;
68
+ background: #c35670; border-radius: 6px;
69
+ }
70
+ .bar .knob {
71
+ position: absolute; left: calc(48% - 16px); top: -12px;
72
+ width: 36px; height: 36px; border-radius: 50%;
73
+ background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.6);
74
+ }
75
+ /* Transport controls */
76
+ .controls {
77
+ position: absolute; top: 1200px; left: 0; width: 100%;
78
+ display: flex; align-items: center; justify-content: center; gap: 120px;
79
+ }
80
+ .icon-btn { width: 72px; height: 72px; opacity: 0.85; }
81
+ .icon-btn svg { width: 100%; height: 100%; stroke: #c8c8d6; fill: none; stroke-width: 2; }
82
+ .play-btn {
83
+ width: 160px; height: 160px; border-radius: 50%;
84
+ background: radial-gradient(ellipse at 50% 20%, #ff8b7d 0%, #ff6a6a 60%, #e85662 100%);
85
+ box-shadow: 0 20px 40px rgba(255,90,90,0.45);
86
+ display: flex; align-items: center; justify-content: center;
87
+ }
88
+ .play-btn .pause-bars {
89
+ width: 52px; height: 52px; position: relative;
90
+ }
91
+ .play-btn .pause-bars::before, .play-btn .pause-bars::after {
92
+ content: ""; position: absolute; top: 0; width: 14px; height: 52px;
93
+ background: #ffffff; border-radius: 4px;
94
+ }
95
+ .play-btn .pause-bars::before { left: 0; }
96
+ .play-btn .pause-bars::after { right: 0; }
97
+ /* Ad banner */
98
+ .ad {
99
+ position: absolute; top: 1380px; left: 72px; right: 72px;
100
+ display: grid; grid-template-columns: 120px 1fr 160px; align-items: center; gap: 24px;
101
+ }
102
+ .ad .ad-logo {
103
+ width: 120px; height: 120px; border-radius: 18px;
104
+ background: #E0E0E0; border: 1px solid #BDBDBD;
105
+ display: flex; align-items: center; justify-content: center; color: #757575; font-weight: 700;
106
+ }
107
+ .ad .ad-info {
108
+ display: flex; flex-direction: column; gap: 8px;
109
+ }
110
+ .ad .ad-top {
111
+ display: flex; align-items: center; gap: 12px; font-size: 36px;
112
+ }
113
+ .ad .ad-tag {
114
+ background: #f6d85a; color: #212121; font-weight: 700; border-radius: 8px;
115
+ padding: 6px 10px; font-size: 28px;
116
+ }
117
+ .ad .ad-title { font-size: 36px; color: #e6e6eb; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
118
+ .ad .ad-desc { font-size: 30px; color: #8c8c97; }
119
+ .ad .ad-actions {
120
+ display: flex; align-items: center; justify-content: flex-end; gap: 18px;
121
+ }
122
+ .chip {
123
+ border: 1px solid #3a3a42; color: #bdbdc7; padding: 10px 16px; border-radius: 18px; font-size: 28px;
124
+ }
125
+ .ad .open-btn {
126
+ background: #2f80ed; color: #fff; font-weight: 700; border-radius: 12px; padding: 22px 32px; font-size: 34px;
127
+ }
128
+ .ad .info-icon {
129
+ width: 42px; height: 42px; border-radius: 50%; border: 2px solid #c7dbff;
130
+ display: flex; align-items: center; justify-content: center; color: #c7dbff; font-size: 28px;
131
+ }
132
+ /* Action bar */
133
+ .action-bar {
134
+ position: absolute; top: 1600px; left: 36px; right: 36px;
135
+ background: #111214; border-radius: 36px; height: 200px;
136
+ display: flex; align-items: center; justify-content: space-around;
137
+ box-shadow: 0 8px 40px rgba(0,0,0,0.6);
138
+ }
139
+ .action-item { display: flex; flex-direction: column; align-items: center; gap: 14px; }
140
+ .action-item .ico { width: 68px; height: 68px; opacity: 0.9; }
141
+ .action-item .ico svg { width: 100%; height: 100%; stroke: #c8c8d6; fill: none; stroke-width: 2; }
142
+ .action-item .label { color: #cfcfd6; font-size: 30px; }
143
+ /* Sections */
144
+ .section {
145
+ position: absolute; left: 54px; right: 54px;
146
+ }
147
+ .up-next { top: 1860px; }
148
+ .section-header {
149
+ display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px;
150
+ }
151
+ .section-header .title { position: static; font-size: 48px; color: #ffffff; }
152
+ .section-header .link { font-size: 40px; color: #ff3d36; display: flex; align-items: center; gap: 10px; }
153
+ .queue-card {
154
+ background: #111214; border-radius: 28px; padding: 28px;
155
+ display: grid; grid-template-columns: 160px 1fr; gap: 24px; align-items: center;
156
+ box-shadow: 0 8px 24px rgba(0,0,0,0.3);
157
+ }
158
+ .queue-card .thumb {
159
+ width: 160px; height: 160px; border-radius: 18px;
160
+ background: #E0E0E0; border: 1px solid #BDBDBD;
161
+ display: flex; align-items: center; justify-content: center; color: #757575; font-size: 26px; text-align: center; padding: 10px;
162
+ }
163
+ .queue-card .text .main { font-size: 42px; color: #ffffff; margin-bottom: 6px; }
164
+ .queue-card .text .sub { font-size: 34px; color: #8d8d99; }
165
+ .similar { top: 2120px; }
166
+ .album-row {
167
+ display: flex; gap: 22px; overflow: hidden; padding-bottom: 8px;
168
+ }
169
+ .album-mini {
170
+ width: 190px; height: 190px; border-radius: 22px;
171
+ background: #E0E0E0; border: 1px solid #BDBDBD;
172
+ display: flex; align-items: center; justify-content: center; color: #757575; font-size: 22px; text-align: center; padding: 6px;
173
+ }
174
+ /* Gesture bar */
175
+ .gesture {
176
+ position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
177
+ width: 360px; height: 12px; border-radius: 6px; background: #e6e6ea; opacity: 0.85;
178
+ }
179
+ </style>
180
+ </head>
181
+ <body>
182
+ <div id="render-target">
183
+ <!-- Status Bar -->
184
+ <div class="status-bar">
185
+ <div>11:15</div>
186
+ <div class="status-right">
187
+ <svg class="status-icon" viewBox="0 0 24 24">
188
+ <path d="M3 16l5-6 4 5 3-4 6 7" stroke="#ffffff" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
189
+ </svg>
190
+ <svg class="status-icon" viewBox="0 0 24 24">
191
+ <path d="M3 10a9 9 0 0 1 18 0" stroke="#ffffff" stroke-width="2" fill="none"/>
192
+ <circle cx="12" cy="17" r="3" fill="#ffffff"/>
193
+ </svg>
194
+ </div>
195
+ </div>
196
+
197
+ <!-- Hero background -->
198
+ <div class="hero"></div>
199
+
200
+ <!-- Title -->
201
+ <div class="title">
202
+ Vishal Dadlani, VIJAY BHO
203
+ <svg viewBox="0 0 24 24">
204
+ <path d="M9 6l6 6-6 6" fill="none" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
205
+ </svg>
206
+ </div>
207
+
208
+ <!-- Album Art -->
209
+ <div class="album">
210
+ <div class="img">[IMG: Album Art - "Billo"]</div>
211
+ </div>
212
+
213
+ <!-- Progress -->
214
+ <div class="progress">
215
+ <div class="time-row">
216
+ <span>01:02</span>
217
+ <span>03:01</span>
218
+ </div>
219
+ <div class="bar">
220
+ <div class="fill"></div>
221
+ <div class="knob"></div>
222
+ </div>
223
+ </div>
224
+
225
+ <!-- Transport Controls -->
226
+ <div class="controls">
227
+ <div class="icon-btn">
228
+ <svg viewBox="0 0 24 24">
229
+ <path d="M4 6h6l3 3H7l-3 3" stroke-linecap="round" stroke-linejoin="round"/>
230
+ <path d="M13 12h4l3 3h-5l-2 2" stroke-linecap="round" stroke-linejoin="round"/>
231
+ </svg>
232
+ </div>
233
+ <div class="icon-btn">
234
+ <svg viewBox="0 0 24 24">
235
+ <path d="M15 6l-8 6 8 6V6z" fill="#c8c8d6" stroke="none"/>
236
+ <path d="M18 6v12" stroke-width="2"/>
237
+ </svg>
238
+ </div>
239
+ <div class="play-btn">
240
+ <div class="pause-bars"></div>
241
+ </div>
242
+ <div class="icon-btn">
243
+ <svg viewBox="0 0 24 24">
244
+ <path d="M9 6l8 6-8 6V6z" fill="#c8c8d6" stroke="none"/>
245
+ <path d="M6 6v12" stroke-width="2"/>
246
+ </svg>
247
+ </div>
248
+ <div class="icon-btn">
249
+ <svg viewBox="0 0 24 24">
250
+ <path d="M7 7a7 7 0 0 1 10 0" stroke-linecap="round"/>
251
+ <path d="M17 17a7 7 0 0 1-10 0" stroke-linecap="round"/>
252
+ <path d="M16 6v4h4" stroke-linecap="round" stroke-linejoin="round"/>
253
+ <path d="M4 14h4v4" stroke-linecap="round" stroke-linejoin="round"/>
254
+ </svg>
255
+ </div>
256
+ </div>
257
+
258
+ <!-- Ad banner -->
259
+ <div class="ad">
260
+ <div class="ad-logo">[IMG: Ad Logo]</div>
261
+ <div class="ad-info">
262
+ <div class="ad-top">
263
+ <span class="ad-tag">Ad</span>
264
+ <span class="ad-title">Booking.com: Download the highest ra...</span>
265
+ </div>
266
+ <div class="ad-desc">Download the highest rated travel app</div>
267
+ </div>
268
+ <div class="ad-actions">
269
+ <div class="chip">Remove Ad</div>
270
+ <div class="info-icon">i</div>
271
+ <div class="open-btn">OPEN</div>
272
+ </div>
273
+ </div>
274
+
275
+ <!-- Action bar -->
276
+ <div class="action-bar">
277
+ <div class="action-item">
278
+ <div class="ico">
279
+ <svg viewBox="0 0 24 24">
280
+ <path d="M12 21s-7-4.6-7-10a4 4 0 0 1 7-2 4 4 0 0 1 7 2c0 5.4-7 10-7 10z" stroke-linejoin="round"/>
281
+ </svg>
282
+ </div>
283
+ <div class="label">Like</div>
284
+ </div>
285
+ <div class="action-item">
286
+ <div class="ico">
287
+ <svg viewBox="0 0 24 24">
288
+ <path d="M4 6h12M4 12h12M4 18h8" stroke-linecap="round"/>
289
+ <path d="M20 9v6M20 15l-3-3" stroke-linecap="round" stroke-linejoin="round"/>
290
+ </svg>
291
+ </div>
292
+ <div class="label">Playlist</div>
293
+ </div>
294
+ <div class="action-item">
295
+ <div class="ico">
296
+ <svg viewBox="0 0 24 24">
297
+ <path d="M12 3v12" stroke-linecap="round"/>
298
+ <path d="M8 11l4 4 4-4" stroke-linecap="round" stroke-linejoin="round"/>
299
+ <path d="M5 21h14" stroke-linecap="round"/>
300
+ </svg>
301
+ </div>
302
+ <div class="label">Download</div>
303
+ </div>
304
+ <div class="action-item">
305
+ <div class="ico">
306
+ <svg viewBox="0 0 24 24">
307
+ <path d="M8 6v9a3 3 0 1 0 2-2" stroke-linecap="round" stroke-linejoin="round"/>
308
+ <circle cx="15" cy="8" r="1" />
309
+ </svg>
310
+ </div>
311
+ <div class="label">Hello Tune</div>
312
+ </div>
313
+ <div class="action-item">
314
+ <div class="ico">
315
+ <svg viewBox="0 0 24 24">
316
+ <circle cx="12" cy="5" r="2" fill="#c8c8d6" stroke="none"/>
317
+ <circle cx="12" cy="12" r="2" fill="#c8c8d6" stroke="none"/>
318
+ <circle cx="12" cy="19" r="2" fill="#c8c8d6" stroke="none"/>
319
+ </svg>
320
+ </div>
321
+ <div class="label">More</div>
322
+ </div>
323
+ </div>
324
+
325
+ <!-- Up Next -->
326
+ <div class="section up-next">
327
+ <div class="section-header">
328
+ <div class="title">Up Next</div>
329
+ <div class="link">Queue
330
+ <svg viewBox="0 0 24 24" width="32" height="32"><path d="M9 6l6 6-6 6" fill="none" stroke="#ff3d36" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
331
+ </div>
332
+ </div>
333
+ <div class="queue-card">
334
+ <div class="thumb">[IMG: Album Thumbnail]</div>
335
+ <div class="text">
336
+ <div class="main">Ek Tu Hi Hai</div>
337
+ <div class="sub">Tanishk Bagchi - Ek Tu Hi Hai</div>
338
+ </div>
339
+ </div>
340
+ </div>
341
+
342
+ <!-- Similar Songs -->
343
+ <div class="section similar">
344
+ <div class="section-header">
345
+ <div class="title">Similar Songs</div>
346
+ <div class="link">Play All
347
+ <svg viewBox="0 0 24 24" width="32" height="32"><path d="M9 6l6 6-6 6" fill="none" stroke="#ff3d36" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
348
+ </div>
349
+ </div>
350
+ <div class="album-row">
351
+ <div class="album-mini">[IMG: Song]</div>
352
+ <div class="album-mini">[IMG: Song]</div>
353
+ <div class="album-mini">[IMG: Song]</div>
354
+ <div class="album-mini">[IMG: Song]</div>
355
+ <div class="album-mini">[IMG: Song]</div>
356
+ <div class="album-mini">[IMG: Song]</div>
357
+ </div>
358
+ </div>
359
+
360
+ <!-- Gesture bar -->
361
+ <div class="gesture"></div>
362
+ </div>
363
+ </body>
364
+ </html>
code/14166/14166_0.html ADDED
@@ -0,0 +1,283 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Product Detail - Nike SB Chron 2 Canvas</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
+ border-radius: 0;
16
+ box-shadow: none;
17
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
18
+ color: #111;
19
+ }
20
+ /* Status bar */
21
+ .status-bar {
22
+ position: absolute;
23
+ top: 0;
24
+ left: 0;
25
+ width: 1080px;
26
+ height: 150px;
27
+ background: #000;
28
+ color: #fff;
29
+ display: flex;
30
+ align-items: center;
31
+ padding: 0 40px;
32
+ box-sizing: border-box;
33
+ font-size: 42px;
34
+ letter-spacing: 0.5px;
35
+ }
36
+ .status-right {
37
+ margin-left: auto;
38
+ display: flex;
39
+ gap: 24px;
40
+ align-items: center;
41
+ }
42
+ .screen {
43
+ position: absolute;
44
+ top: 150px;
45
+ left: 0;
46
+ width: 100%;
47
+ height: calc(100% - 150px);
48
+ overflow-y: hidden;
49
+ background: #fff;
50
+ }
51
+ .content {
52
+ padding: 40px 48px 120px 48px;
53
+ box-sizing: border-box;
54
+ }
55
+ /* Header row */
56
+ .title-row {
57
+ display: flex;
58
+ align-items: center;
59
+ gap: 28px;
60
+ margin-top: 8px;
61
+ margin-bottom: 24px;
62
+ }
63
+ .title {
64
+ font-size: 54px;
65
+ font-weight: 700;
66
+ letter-spacing: 0.2px;
67
+ flex: 1;
68
+ }
69
+ .header-actions {
70
+ display: flex;
71
+ align-items: center;
72
+ gap: 36px;
73
+ }
74
+ .icon-btn {
75
+ width: 72px;
76
+ height: 72px;
77
+ display: inline-flex;
78
+ justify-content: center;
79
+ align-items: center;
80
+ }
81
+ .bag-icon {
82
+ position: relative;
83
+ }
84
+ .bag-badge {
85
+ position: absolute;
86
+ right: -4px;
87
+ top: -6px;
88
+ width: 56px;
89
+ height: 56px;
90
+ border-radius: 14px;
91
+ border: 3px solid #111;
92
+ display: flex;
93
+ justify-content: center;
94
+ align-items: center;
95
+ font-size: 32px;
96
+ font-weight: 700;
97
+ }
98
+ /* Sub info */
99
+ .subtext {
100
+ color: #9E9E9E;
101
+ font-size: 38px;
102
+ line-height: 1.35;
103
+ margin-bottom: 40px;
104
+ }
105
+ .description {
106
+ font-size: 44px;
107
+ line-height: 1.6;
108
+ margin-bottom: 48px;
109
+ }
110
+ .bullet-list {
111
+ margin: 0 0 40px 0;
112
+ padding: 0;
113
+ list-style: disc;
114
+ font-size: 42px;
115
+ line-height: 1.6;
116
+ color: #111;
117
+ padding-left: 60px;
118
+ }
119
+ .link {
120
+ font-size: 42px;
121
+ color: #9E9E9E;
122
+ margin: 24px 0 48px 0;
123
+ }
124
+ /* Pills and buttons */
125
+ .pill {
126
+ height: 140px;
127
+ border-radius: 80px;
128
+ border: 3px solid #E0E0E0;
129
+ display: flex;
130
+ align-items: center;
131
+ justify-content: space-between;
132
+ padding: 0 56px;
133
+ box-sizing: border-box;
134
+ font-size: 46px;
135
+ color: #111;
136
+ margin-bottom: 36px;
137
+ background: #fff;
138
+ }
139
+ .btn-primary {
140
+ height: 150px;
141
+ border-radius: 90px;
142
+ background: #111;
143
+ color: #fff;
144
+ font-size: 48px;
145
+ font-weight: 600;
146
+ display: flex;
147
+ align-items: center;
148
+ justify-content: center;
149
+ margin: 20px 0 40px 0;
150
+ }
151
+ .favorite {
152
+ height: 140px;
153
+ border-radius: 80px;
154
+ border: 3px solid #E0E0E0;
155
+ display: flex;
156
+ align-items: center;
157
+ justify-content: center;
158
+ gap: 26px;
159
+ font-size: 46px;
160
+ color: #111;
161
+ background: #fff;
162
+ margin-bottom: 40px;
163
+ }
164
+ .divider {
165
+ height: 4px;
166
+ background: #eee;
167
+ margin: 20px 0 0 0;
168
+ }
169
+ .section-row {
170
+ display: flex;
171
+ align-items: center;
172
+ justify-content: space-between;
173
+ font-size: 48px;
174
+ padding: 40px 8px;
175
+ color: #111;
176
+ }
177
+ /* Bottom gesture bar (iOS style) */
178
+ .gesture-bar {
179
+ position: absolute;
180
+ bottom: 22px;
181
+ left: 50%;
182
+ transform: translateX(-50%);
183
+ width: 360px;
184
+ height: 16px;
185
+ border-radius: 10px;
186
+ background: #000;
187
+ opacity: 0.12;
188
+ }
189
+ /* Simple SVG styling */
190
+ svg { display: block; }
191
+ </style>
192
+ </head>
193
+ <body>
194
+ <div id="render-target">
195
+ <div class="status-bar">
196
+ <div>3:21</div>
197
+ <div class="status-right">
198
+ <span>•</span>
199
+ <span>◔</span>
200
+ <span>◐</span>
201
+ <span>◑</span>
202
+ <span>◒</span>
203
+ <span>⬡</span>
204
+ </div>
205
+ </div>
206
+
207
+ <div class="screen">
208
+ <div class="content">
209
+ <div class="title-row">
210
+ <div class="icon-btn" aria-label="Back">
211
+ <svg width="64" height="64" viewBox="0 0 24 24">
212
+ <path d="M14.5 18.5L8 12l6.5-6.5" fill="none" stroke="#111" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/>
213
+ </svg>
214
+ </div>
215
+ <div class="title">Nike SB Chron 2 Canvas</div>
216
+ <div class="header-actions">
217
+ <div class="icon-btn" aria-label="Search">
218
+ <svg width="64" height="64" viewBox="0 0 24 24">
219
+ <circle cx="11" cy="11" r="7" fill="none" stroke="#111" stroke-width="2.5"/>
220
+ <path d="M20 20l-4-4" stroke="#111" stroke-width="2.5" stroke-linecap="round"/>
221
+ </svg>
222
+ </div>
223
+ <div class="icon-btn bag-icon" aria-label="Bag">
224
+ <svg width="64" height="64" viewBox="0 0 24 24">
225
+ <path d="M7 8h10l-1 10H8L7 8z" fill="none" stroke="#111" stroke-width="2.2" stroke-linejoin="round"/>
226
+ <path d="M9 8V6a3 3 0 0 1 6 0v2" fill="none" stroke="#111" stroke-width="2.2" stroke-linecap="round"/>
227
+ </svg>
228
+ <div class="bag-badge">2</div>
229
+ </div>
230
+ </div>
231
+ </div>
232
+
233
+ <div class="subtext">
234
+ Incl. of taxes<br>(Also includes all applicable duties)
235
+ </div>
236
+
237
+ <div class="description">
238
+ The Nike SB Chron 2 Canvas is the newest member of the Chron family. The revamped
239
+ design includes a reshaped collar and heel for an improved fit—all while maintaining
240
+ the comfort and performance you expect from Nike SB.
241
+ </div>
242
+
243
+ <ul class="bullet-list">
244
+ <li>Shown: Dark Driftwood/Dark Driftwood/Black/White</li>
245
+ <li>Style: DM3494-200</li>
246
+ <li>Country/Region of Origin: Vietnam</li>
247
+ </ul>
248
+
249
+ <div class="link">View Product Details</div>
250
+
251
+ <div class="pill">
252
+ <div>Size UK 10</div>
253
+ <svg width="48" height="48" viewBox="0 0 24 24">
254
+ <path d="M6 9l6 6 6-6" fill="none" stroke="#111" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/>
255
+ </svg>
256
+ </div>
257
+
258
+ <div class="btn-primary">Add to Bag</div>
259
+
260
+ <div class="favorite">
261
+ <span>Favorite</span>
262
+ <svg width="54" height="54" viewBox="0 0 24 24">
263
+ <path d="M12 21s-6.5-4.2-8.4-7.2A5 5 0 0 1 12 6a5 5 0 0 1 8.4 7.8C18.5 16.8 12 21 12 21z" fill="none" stroke="#111" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round"/>
264
+ </svg>
265
+ </div>
266
+
267
+ <div class="divider"></div>
268
+
269
+ <div class="section-row">
270
+ <div>Size & Fit</div>
271
+ <svg width="52" height="52" viewBox="0 0 24 24">
272
+ <path d="M6 9l6 6 6-6" fill="none" stroke="#777" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/>
273
+ </svg>
274
+ </div>
275
+
276
+ <div class="divider"></div>
277
+ </div>
278
+
279
+ <div class="gesture-bar"></div>
280
+ </div>
281
+ </div>
282
+ </body>
283
+ </html>
code/14166/14166_10.html ADDED
@@ -0,0 +1,298 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Nike Product Detail Mock</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; }
9
+ #render-target {
10
+ width: 1080px;
11
+ height: 2400px;
12
+ position: relative;
13
+ overflow: hidden;
14
+ background: #ffffff;
15
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
16
+ color: #111111;
17
+ }
18
+
19
+ /* Status bar */
20
+ .status-bar {
21
+ position: absolute;
22
+ top: 0;
23
+ left: 0;
24
+ width: 100%;
25
+ height: 120px;
26
+ background: #000000;
27
+ color: #ffffff;
28
+ display: flex;
29
+ align-items: center;
30
+ justify-content: space-between;
31
+ padding: 0 44px;
32
+ box-sizing: border-box;
33
+ font-size: 42px;
34
+ letter-spacing: 0.5px;
35
+ }
36
+ .status-icons {
37
+ display: flex;
38
+ align-items: center;
39
+ gap: 22px;
40
+ font-size: 40px;
41
+ }
42
+ .battery {
43
+ width: 54px;
44
+ height: 28px;
45
+ border: 3px solid #fff;
46
+ border-radius: 6px;
47
+ position: relative;
48
+ }
49
+ .battery:after {
50
+ content: "";
51
+ position: absolute;
52
+ right: -8px;
53
+ top: 8px;
54
+ width: 6px;
55
+ height: 12px;
56
+ background: #fff;
57
+ border-radius: 2px;
58
+ }
59
+
60
+ /* Header */
61
+ .app-header {
62
+ position: absolute;
63
+ top: 120px;
64
+ left: 0;
65
+ width: 100%;
66
+ padding: 30px 44px 16px 44px;
67
+ box-sizing: border-box;
68
+ display: flex;
69
+ align-items: center;
70
+ justify-content: space-between;
71
+ }
72
+ .title-wrap {
73
+ display: flex;
74
+ align-items: center;
75
+ gap: 24px;
76
+ }
77
+ .title {
78
+ font-size: 50px;
79
+ font-weight: 700;
80
+ }
81
+ .header-actions {
82
+ display: flex;
83
+ align-items: center;
84
+ gap: 40px;
85
+ }
86
+ .icon {
87
+ width: 60px;
88
+ height: 60px;
89
+ display: inline-block;
90
+ }
91
+ .bag {
92
+ position: relative;
93
+ }
94
+ .bag-count {
95
+ position: absolute;
96
+ top: -6px;
97
+ right: -6px;
98
+ background: #ffffff;
99
+ border: 2px solid #111;
100
+ width: 40px;
101
+ height: 40px;
102
+ border-radius: 10px;
103
+ font-size: 28px;
104
+ line-height: 36px;
105
+ text-align: center;
106
+ font-weight: 700;
107
+ }
108
+
109
+ /* Content */
110
+ .content {
111
+ position: absolute;
112
+ top: 220px;
113
+ left: 0;
114
+ right: 0;
115
+ padding: 20px 44px 0 44px;
116
+ box-sizing: border-box;
117
+ }
118
+ .subtle {
119
+ color: #9E9E9E;
120
+ font-size: 34px;
121
+ line-height: 44px;
122
+ margin: 8px 0;
123
+ }
124
+ .desc {
125
+ margin-top: 36px;
126
+ font-size: 38px;
127
+ line-height: 58px;
128
+ color: #111;
129
+ }
130
+ .bullets {
131
+ margin: 36px 0 20px 0;
132
+ padding-left: 28px;
133
+ font-size: 38px;
134
+ line-height: 56px;
135
+ }
136
+ .link-muted {
137
+ color: #9E9E9E;
138
+ font-size: 36px;
139
+ margin-top: 26px;
140
+ }
141
+
142
+ /* Buttons */
143
+ .pill {
144
+ height: 154px;
145
+ border-radius: 90px;
146
+ display: flex;
147
+ align-items: center;
148
+ justify-content: center;
149
+ margin: 28px 16px;
150
+ box-sizing: border-box;
151
+ font-size: 46px;
152
+ font-weight: 600;
153
+ }
154
+ .pill-outline {
155
+ border: 2px solid #E5E5E5;
156
+ background: #ffffff;
157
+ color: #111;
158
+ }
159
+ .pill-solid {
160
+ background: #111111;
161
+ color: #ffffff;
162
+ }
163
+ .size-pill {
164
+ margin-top: 28px;
165
+ }
166
+ .size-pill span {
167
+ display: inline-flex;
168
+ align-items: center;
169
+ gap: 18px;
170
+ }
171
+ .favorite-pill {
172
+ justify-content: space-between;
173
+ padding: 0 48px;
174
+ }
175
+
176
+ /* Divider and section */
177
+ .divider {
178
+ height: 2px;
179
+ background: #EEEEEE;
180
+ margin: 36px 0;
181
+ }
182
+ .section-row {
183
+ height: 120px;
184
+ display: flex;
185
+ align-items: center;
186
+ justify-content: space-between;
187
+ font-size: 42px;
188
+ padding: 0 8px;
189
+ color: #111;
190
+ }
191
+
192
+ /* Home indicator */
193
+ .home-indicator {
194
+ position: absolute;
195
+ bottom: 22px;
196
+ left: 50%;
197
+ transform: translateX(-50%);
198
+ width: 360px;
199
+ height: 12px;
200
+ background: #CFCFCF;
201
+ border-radius: 12px;
202
+ }
203
+ </style>
204
+ </head>
205
+ <body>
206
+ <div id="render-target">
207
+
208
+ <!-- Status Bar -->
209
+ <div class="status-bar">
210
+ <div>3:27</div>
211
+ <div class="status-icons">
212
+ <span>●</span><span>●</span><span>●</span><span>●</span><span>•</span>
213
+ <span style="font-size:38px;">♦</span>
214
+ <div class="battery"></div>
215
+ </div>
216
+ </div>
217
+
218
+ <!-- Header -->
219
+ <div class="app-header">
220
+ <div class="title-wrap">
221
+ <!-- Back Icon -->
222
+ <svg class="icon" viewBox="0 0 24 24" fill="none" stroke="#111" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round">
223
+ <path d="M15 18l-6-6 6-6"/>
224
+ </svg>
225
+ <div class="title">Nike Rival Sprint</div>
226
+ </div>
227
+ <div class="header-actions">
228
+ <!-- Search Icon -->
229
+ <svg class="icon" viewBox="0 0 24 24" fill="none" stroke="#111" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round">
230
+ <circle cx="11" cy="11" r="7"></circle>
231
+ <path d="M21 21l-4.2-4.2"></path>
232
+ </svg>
233
+
234
+ <!-- Bag Icon with count -->
235
+ <div class="bag">
236
+ <svg class="icon" viewBox="0 0 24 24" fill="none" stroke="#111" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round">
237
+ <path d="M6 7h12l-1 12H7L6 7z"></path>
238
+ <path d="M9 7a3 3 0 0 1 6 0"></path>
239
+ </svg>
240
+ <div class="bag-count">2</div>
241
+ </div>
242
+ </div>
243
+ </div>
244
+
245
+ <!-- Main Content -->
246
+ <div class="content">
247
+ <div class="subtle">Incl. of taxes</div>
248
+ <div class="subtle">(Also includes all applicable duties)</div>
249
+
250
+ <div class="desc">
251
+ Race out of the starting blocks and finish with a flurry in a spike designed with speed in mind. Its robust, reinforced yet lightweight upper provides the key containment necessary to attack the turns and straightaways around the oval. Feel the power and drive of the forefoot plate as you get up on your toes and hightail it towards the tape.
252
+ </div>
253
+
254
+ <ul class="bullets">
255
+ <li>Shown: Hyper Pink/Laser Orange/Black</li>
256
+ <li>Style: DC8753-600</li>
257
+ <li>Country/Region of Origin: Vietnam</li>
258
+ </ul>
259
+
260
+ <div class="link-muted">View Product Details</div>
261
+
262
+ <!-- Size selector -->
263
+ <div class="pill pill-outline size-pill">
264
+ <span>Size UK 10
265
+ <svg width="34" height="34" viewBox="0 0 24 24" fill="none" stroke="#111" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round">
266
+ <path d="M6 9l6 6 6-6"/>
267
+ </svg>
268
+ </span>
269
+ </div>
270
+
271
+ <!-- Add to Bag -->
272
+ <div class="pill pill-solid" style="margin-top: 28px;">
273
+ Add to Bag
274
+ </div>
275
+
276
+ <!-- Favorite -->
277
+ <div class="pill pill-outline favorite-pill">
278
+ <div>Favorite</div>
279
+ <svg width="54" height="54" viewBox="0 0 24 24" fill="none" stroke="#111" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
280
+ <path d="M20.8 8.6a5 5 0 0 0-8.8-3.1A5 5 0 1 0 3.2 8.6c0 6.1 8.8 10.3 8.8 10.3s8.8-4.2 8.8-10.3z"/>
281
+ </svg>
282
+ </div>
283
+
284
+ <div class="divider"></div>
285
+
286
+ <div class="section-row">
287
+ <div>Size &amp; Fit</div>
288
+ <svg width="40" height="40" viewBox="0 0 24 24" fill="none" stroke="#111" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round">
289
+ <path d="M6 9l6 6 6-6"/>
290
+ </svg>
291
+ </div>
292
+ </div>
293
+
294
+ <!-- Home Indicator -->
295
+ <div class="home-indicator"></div>
296
+ </div>
297
+ </body>
298
+ </html>
code/14166/14166_11.html ADDED
@@ -0,0 +1,337 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Product Detail - Nike Rival Sprint</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
+ /* Status bar */
18
+ .status-bar {
19
+ height: 130px;
20
+ background: #000;
21
+ color: #fff;
22
+ padding: 0 36px;
23
+ display: flex;
24
+ align-items: center;
25
+ justify-content: space-between;
26
+ font-family: Arial, Helvetica, sans-serif;
27
+ }
28
+ .status-left {
29
+ display: flex;
30
+ align-items: center;
31
+ gap: 18px;
32
+ font-size: 40px;
33
+ font-weight: 600;
34
+ letter-spacing: 0.5px;
35
+ }
36
+ .status-center {
37
+ display: flex;
38
+ align-items: center;
39
+ gap: 18px;
40
+ }
41
+ .dot {
42
+ width: 20px;
43
+ height: 20px;
44
+ background: #fff;
45
+ border-radius: 50%;
46
+ opacity: 0.9;
47
+ }
48
+ .status-right {
49
+ display: flex;
50
+ align-items: center;
51
+ gap: 22px;
52
+ }
53
+ .status-icon svg { display: block; }
54
+
55
+ /* Header */
56
+ .header {
57
+ padding: 36px 40px;
58
+ display: flex;
59
+ align-items: center;
60
+ justify-content: space-between;
61
+ font-family: Arial, Helvetica, sans-serif;
62
+ color: #1a1a1a;
63
+ }
64
+ .header-left {
65
+ display: flex;
66
+ align-items: center;
67
+ gap: 26px;
68
+ }
69
+ .title {
70
+ font-size: 54px;
71
+ font-weight: 700;
72
+ }
73
+ .header-right {
74
+ display: flex;
75
+ align-items: center;
76
+ gap: 34px;
77
+ position: relative;
78
+ }
79
+ .icon-btn { width: 60px; height: 60px; }
80
+ .cart-wrapper { position: relative; }
81
+ .cart-badge {
82
+ position: absolute;
83
+ top: -8px;
84
+ right: -12px;
85
+ background: #000;
86
+ color: #fff;
87
+ border-radius: 12px;
88
+ padding: 8px 12px;
89
+ font-size: 28px;
90
+ line-height: 1;
91
+ font-weight: 700;
92
+ border: 2px solid #fff;
93
+ }
94
+
95
+ /* Content */
96
+ .content {
97
+ padding: 0 40px;
98
+ font-family: Arial, Helvetica, sans-serif;
99
+ }
100
+ .subtext {
101
+ color: #888;
102
+ font-size: 34px;
103
+ line-height: 48px;
104
+ margin-top: 12px;
105
+ }
106
+ .desc {
107
+ color: #2b2b2b;
108
+ font-size: 40px;
109
+ line-height: 64px;
110
+ margin-top: 42px;
111
+ }
112
+ .bullet-list {
113
+ margin-top: 40px;
114
+ padding-left: 36px;
115
+ color: #2b2b2b;
116
+ font-size: 38px;
117
+ line-height: 60px;
118
+ }
119
+ .link {
120
+ color: #2b2b2b;
121
+ font-size: 40px;
122
+ margin-top: 32px;
123
+ }
124
+
125
+ /* Controls */
126
+ .controls { padding: 40px; }
127
+ .pill {
128
+ height: 140px;
129
+ border: 2px solid #e5e5e5;
130
+ border-radius: 70px;
131
+ display: flex;
132
+ align-items: center;
133
+ justify-content: space-between;
134
+ padding: 0 48px;
135
+ font-size: 44px;
136
+ color: #222;
137
+ margin-bottom: 34px;
138
+ box-shadow: 0 2px 0 rgba(0,0,0,0.02);
139
+ }
140
+ .pill .caret {
141
+ width: 42px; height: 42px;
142
+ }
143
+
144
+ .cta {
145
+ height: 150px;
146
+ border-radius: 75px;
147
+ background: #000;
148
+ color: #fff;
149
+ display: flex;
150
+ align-items: center;
151
+ justify-content: center;
152
+ font-size: 48px;
153
+ font-weight: 700;
154
+ margin: 34px 0;
155
+ }
156
+
157
+ .favorite {
158
+ height: 140px;
159
+ border: 2px solid #e5e5e5;
160
+ border-radius: 70px;
161
+ display: flex;
162
+ align-items: center;
163
+ justify-content: space-between;
164
+ padding: 0 48px;
165
+ font-size: 44px;
166
+ color: #222;
167
+ }
168
+ .heart { width: 52px; height: 52px; }
169
+
170
+ .section-row {
171
+ margin-top: 70px;
172
+ padding: 0 40px;
173
+ display: flex;
174
+ align-items: center;
175
+ justify-content: space-between;
176
+ font-family: Arial, Helvetica, sans-serif;
177
+ font-size: 46px;
178
+ color: #222;
179
+ }
180
+ .chev { width: 38px; height: 38px; }
181
+
182
+ /* Overlay (Adding to Bag) */
183
+ .overlay {
184
+ position: absolute;
185
+ left: 0; top: 0; right: 0; bottom: 0;
186
+ background: rgba(0,0,0,0.62);
187
+ display: flex;
188
+ flex-direction: column;
189
+ align-items: center;
190
+ justify-content: center;
191
+ pointer-events: none;
192
+ }
193
+ .spinner {
194
+ width: 120px; height: 120px;
195
+ border-radius: 50%;
196
+ border: 10px solid rgba(255,255,255,0.22);
197
+ border-top-color: #ffffff;
198
+ border-left-color: #ffffff;
199
+ animation: spin 1s linear infinite;
200
+ margin-bottom: 36px;
201
+ }
202
+ @keyframes spin { to { transform: rotate(360deg); } }
203
+ .overlay-text {
204
+ color: #fff;
205
+ font-family: Arial, Helvetica, sans-serif;
206
+ font-size: 42px;
207
+ letter-spacing: 2px;
208
+ font-weight: 700;
209
+ }
210
+
211
+ /* Home indicator */
212
+ .home-indicator {
213
+ position: absolute;
214
+ bottom: 22px;
215
+ left: 50%;
216
+ transform: translateX(-50%);
217
+ width: 320px;
218
+ height: 18px;
219
+ background: #eaeaea;
220
+ border-radius: 12px;
221
+ }
222
+ </style>
223
+ </head>
224
+ <body>
225
+ <div id="render-target">
226
+ <!-- Status Bar -->
227
+ <div class="status-bar">
228
+ <div class="status-left">3:27</div>
229
+ <div class="status-center">
230
+ <div class="dot"></div>
231
+ <div class="dot"></div>
232
+ <div class="dot"></div>
233
+ <div class="dot"></div>
234
+ <span style="color:#fff;font-size:40px;">•</span>
235
+ </div>
236
+ <div class="status-right">
237
+ <div class="status-icon">
238
+ <!-- Wi-Fi (simple) -->
239
+ <svg width="56" height="56" viewBox="0 0 24 24">
240
+ <path d="M2 8c5-4 15-4 20 0" stroke="#fff" stroke-width="2" fill="none" stroke-linecap="round"/>
241
+ <path d="M6 12c3-3 9-3 12 0" stroke="#fff" stroke-width="2" fill="none" stroke-linecap="round"/>
242
+ <path d="M10 16c2-2 2-2 4 0" stroke="#fff" stroke-width="2" fill="none" stroke-linecap="round"/>
243
+ </svg>
244
+ </div>
245
+ <div class="status-icon">
246
+ <!-- Battery -->
247
+ <svg width="56" height="56" viewBox="0 0 24 24">
248
+ <rect x="2" y="6" width="18" height="12" rx="2" ry="2" stroke="#fff" stroke-width="2" fill="none"/>
249
+ <rect x="4" y="8" width="12" height="8" fill="#fff"/>
250
+ <rect x="20" y="9" width="2" height="6" fill="#fff"/>
251
+ </svg>
252
+ </div>
253
+ </div>
254
+ </div>
255
+
256
+ <!-- Header -->
257
+ <div class="header">
258
+ <div class="header-left">
259
+ <!-- Back Arrow -->
260
+ <svg class="icon-btn" viewBox="0 0 24 24">
261
+ <path d="M15 4 L7 12 L15 20" stroke="#222" stroke-width="2.5" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
262
+ </svg>
263
+ <div class="title">Nike Rival Sprint</div>
264
+ </div>
265
+ <div class="header-right">
266
+ <!-- Search -->
267
+ <svg class="icon-btn" viewBox="0 0 24 24">
268
+ <circle cx="11" cy="11" r="7" stroke="#222" stroke-width="2.5" fill="none"/>
269
+ <line x1="16.5" y1="16.5" x2="22" y2="22" stroke="#222" stroke-width="2.5" stroke-linecap="round"/>
270
+ </svg>
271
+ <!-- Cart with badge -->
272
+ <div class="cart-wrapper">
273
+ <svg class="icon-btn" viewBox="0 0 24 24">
274
+ <path d="M6 8h12v12H6z" stroke="#222" stroke-width="2.5" fill="none" />
275
+ <path d="M9 8c0-2 6-2 6 0" stroke="#222" stroke-width="2.5" fill="none" stroke-linecap="round"/>
276
+ </svg>
277
+ <div class="cart-badge">2</div>
278
+ </div>
279
+ </div>
280
+ </div>
281
+
282
+ <!-- Content -->
283
+ <div class="content">
284
+ <div class="subtext">Incl. of taxes</div>
285
+ <div class="subtext" style="margin-top:0;">(Also includes all applicable duties)</div>
286
+
287
+ <div class="desc">
288
+ Race out of the starting blocks and finish with a flurry in a spike designed with speed in mind. Its robust, reinforced yet lightweight upper provides the key containment necessary to attack the turns and straightaways around the oval. Feel the power and drive of the forefoot plate as you get up on your toes and hightail it towards the tape.
289
+ </div>
290
+
291
+ <ul class="bullet-list">
292
+ <li>Shown: Hyper Pink/Laser Orange/Black</li>
293
+ <li>Style: DC8753-600</li>
294
+ <li>Country/Region of Origin: Vietnam</li>
295
+ </ul>
296
+
297
+ <div class="link">View Product Details</div>
298
+ </div>
299
+
300
+ <!-- Controls -->
301
+ <div class="controls">
302
+ <div class="pill">
303
+ <span>Size UK 10</span>
304
+ <svg class="caret" viewBox="0 0 24 24">
305
+ <path d="M6 9l6 6 6-6" stroke="#222" stroke-width="2.5" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
306
+ </svg>
307
+ </div>
308
+
309
+ <div class="cta">Add to Bag</div>
310
+
311
+ <div class="favorite">
312
+ <span>Favorite</span>
313
+ <svg class="heart" viewBox="0 0 24 24">
314
+ <path d="M12 21s-7-4.5-7-10a4.5 4.5 0 0 1 8-2.8A4.5 4.5 0 0 1 19 11c0 5.5-7 10-7 10z" stroke="#222" stroke-width="2.2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
315
+ </svg>
316
+ </div>
317
+ </div>
318
+
319
+ <!-- Section row -->
320
+ <div class="section-row">
321
+ <div>Size & Fit</div>
322
+ <svg class="chev" viewBox="0 0 24 24">
323
+ <path d="M6 9l6 6 6-6" stroke="#222" stroke-width="2.5" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
324
+ </svg>
325
+ </div>
326
+
327
+ <!-- Overlay: Adding to Bag -->
328
+ <div class="overlay">
329
+ <div class="spinner"></div>
330
+ <div class="overlay-text">ADDING TO BAG</div>
331
+ </div>
332
+
333
+ <!-- Home indicator -->
334
+ <div class="home-indicator"></div>
335
+ </div>
336
+ </body>
337
+ </html>
code/14166/14166_12.html ADDED
@@ -0,0 +1,257 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Nike Product Details</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; }
9
+ #render-target {
10
+ position: relative;
11
+ width: 1080px;
12
+ height: 2400px;
13
+ overflow: hidden;
14
+ background: #FFFFFF;
15
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
16
+ color: #111111;
17
+ }
18
+ /* Status bar */
19
+ .status-bar {
20
+ height: 120px;
21
+ background: #000000;
22
+ color: #FFFFFF;
23
+ display: flex;
24
+ align-items: center;
25
+ justify-content: space-between;
26
+ padding: 0 44px;
27
+ box-sizing: border-box;
28
+ font-weight: 600;
29
+ font-size: 40px;
30
+ }
31
+ .status-icons {
32
+ display: flex;
33
+ align-items: center;
34
+ gap: 18px;
35
+ }
36
+ .dot { width: 10px; height: 10px; background: #fff; border-radius: 50%; opacity: 0.7; }
37
+ .battery {
38
+ width: 42px; height: 22px; border: 3px solid #fff; border-radius: 4px; position: relative;
39
+ }
40
+ .battery:after { content: ""; position: absolute; right: -8px; top: 6px; width: 6px; height: 10px; background: #fff; border-radius: 1px; }
41
+ .battery .fill { position: absolute; left: 3px; top: 3px; bottom: 3px; right: 10px; background: #fff; opacity: 0.9; }
42
+
43
+ /* App bar */
44
+ .app-bar {
45
+ height: 140px;
46
+ display: flex;
47
+ align-items: center;
48
+ padding: 0 44px;
49
+ box-sizing: border-box;
50
+ border-bottom: 1px solid #F0F0F0;
51
+ gap: 20px;
52
+ }
53
+ .app-title {
54
+ font-size: 52px;
55
+ font-weight: 700;
56
+ letter-spacing: -0.2px;
57
+ }
58
+ .app-bar .spacer { flex: 1; }
59
+ .icon-btn { width: 72px; height: 72px; display: flex; align-items: center; justify-content: center; color: #111; position: relative; }
60
+ .bag-badge {
61
+ position: absolute;
62
+ top: -2px;
63
+ right: -2px;
64
+ min-width: 38px;
65
+ height: 38px;
66
+ padding: 0 8px;
67
+ background: #ffffff;
68
+ border: 2px solid #111;
69
+ border-radius: 20px;
70
+ color: #111;
71
+ font-size: 26px;
72
+ line-height: 34px;
73
+ text-align: center;
74
+ font-weight: 700;
75
+ }
76
+
77
+ /* Content */
78
+ .content {
79
+ padding: 36px 56px 0 56px;
80
+ box-sizing: border-box;
81
+ }
82
+ .subdued {
83
+ color: #9E9E9E;
84
+ font-size: 36px;
85
+ line-height: 44px;
86
+ margin-top: 18px;
87
+ }
88
+ .description {
89
+ font-size: 44px;
90
+ line-height: 66px;
91
+ margin-top: 60px;
92
+ color: #111111;
93
+ }
94
+ .spec-list {
95
+ margin: 40px 0 24px 0;
96
+ padding-left: 40px;
97
+ font-size: 40px;
98
+ line-height: 64px;
99
+ }
100
+ .spec-list li { margin: 6px 0; }
101
+ .link {
102
+ color: #9E9E9E;
103
+ font-size: 38px;
104
+ margin: 30px 0 30px 0;
105
+ }
106
+
107
+ /* Controls */
108
+ .pill {
109
+ height: 140px;
110
+ border-radius: 80px;
111
+ display: flex;
112
+ align-items: center;
113
+ justify-content: center;
114
+ box-sizing: border-box;
115
+ font-size: 44px;
116
+ margin: 24px 0;
117
+ }
118
+ .pill.outline {
119
+ border: 2px solid #E0E0E0;
120
+ color: #111;
121
+ background: #fff;
122
+ }
123
+ .pill.solid {
124
+ background: #111111;
125
+ color: #fff;
126
+ }
127
+ .pill.favorite {
128
+ border: 2px solid #E0E0E0;
129
+ color: #111;
130
+ background: #fff;
131
+ justify-content: space-between;
132
+ padding: 0 46px;
133
+ }
134
+ .row {
135
+ display: flex;
136
+ align-items: center;
137
+ justify-content: space-between;
138
+ }
139
+ .divider {
140
+ height: 1px;
141
+ background: #EAEAEA;
142
+ margin: 36px 0;
143
+ }
144
+ .section-row {
145
+ font-size: 44px;
146
+ padding: 22px 0;
147
+ }
148
+
149
+ /* Bottom home indicator */
150
+ .home-indicator {
151
+ position: absolute;
152
+ bottom: 24px;
153
+ left: 50%;
154
+ transform: translateX(-50%);
155
+ width: 300px;
156
+ height: 12px;
157
+ background: #000;
158
+ opacity: 0.1;
159
+ border-radius: 8px;
160
+ }
161
+ /* Small helper styles */
162
+ .chev {
163
+ width: 28px; height: 28px; margin-left: 12px;
164
+ }
165
+ </style>
166
+ </head>
167
+ <body>
168
+ <div id="render-target">
169
+ <!-- Status bar -->
170
+ <div class="status-bar">
171
+ <div>3:27</div>
172
+ <div class="status-icons">
173
+ <div class="dot"></div>
174
+ <div class="dot"></div>
175
+ <div class="dot"></div>
176
+ <div class="dot"></div>
177
+ <div class="dot"></div>
178
+ <div class="battery"><div class="fill"></div></div>
179
+ </div>
180
+ </div>
181
+
182
+ <!-- App bar -->
183
+ <div class="app-bar">
184
+ <!-- Back -->
185
+ <div class="icon-btn" aria-label="Back">
186
+ <svg width="56" height="56" viewBox="0 0 24 24" fill="none" stroke="#111" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
187
+ <polyline points="15 18 9 12 15 6"></polyline>
188
+ </svg>
189
+ </div>
190
+ <div class="app-title">Nike Rival Sprint</div>
191
+ <div class="spacer"></div>
192
+ <!-- Search -->
193
+ <div class="icon-btn" aria-label="Search">
194
+ <svg width="56" height="56" viewBox="0 0 24 24" fill="none" stroke="#111" stroke-width="2">
195
+ <circle cx="11" cy="11" r="7"></circle>
196
+ <line x1="16.5" y1="16.5" x2="22" y2="22"></line>
197
+ </svg>
198
+ </div>
199
+ <!-- Bag with badge -->
200
+ <div class="icon-btn" aria-label="Bag" style="margin-left: 6px;">
201
+ <svg width="56" height="56" viewBox="0 0 24 24" fill="none" stroke="#111" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
202
+ <path d="M6 7h12l1.5 12H4.5L6 7z"></path>
203
+ <path d="M9 7V6a3 3 0 0 1 6 0v1"></path>
204
+ </svg>
205
+ <div class="bag-badge">3</div>
206
+ </div>
207
+ </div>
208
+
209
+ <!-- Content -->
210
+ <div class="content">
211
+ <div class="subdued">Incl. of taxes<br>(Also includes all applicable duties)</div>
212
+
213
+ <div class="description">
214
+ Race out of the starting blocks and finish with a flurry in a spike designed with speed in mind. Its robust, reinforced yet lightweight upper provides the key containment necessary to attack the turns and straightaways around the oval. Feel the power and drive of the forefoot plate as you get up on your toes and hightail it towards the tape.
215
+ </div>
216
+
217
+ <ul class="spec-list">
218
+ <li>Shown: Hyper Pink/Laser Orange/Black</li>
219
+ <li>Style: DC8753-600</li>
220
+ <li>Country/Region of Origin: Vietnam</li>
221
+ </ul>
222
+
223
+ <div class="link">View Product Details</div>
224
+
225
+ <!-- Size selector -->
226
+ <div class="pill outline row">
227
+ <div>Size UK 10</div>
228
+ <svg class="chev" viewBox="0 0 24 24" fill="none" stroke="#111" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
229
+ <polyline points="6 9 12 15 18 9"></polyline>
230
+ </svg>
231
+ </div>
232
+
233
+ <!-- Add to bag -->
234
+ <div class="pill solid">Add to Bag</div>
235
+
236
+ <!-- Favorite -->
237
+ <div class="pill favorite">
238
+ <div>Favorite</div>
239
+ <svg width="48" height="48" viewBox="0 0 24 24" fill="none" stroke="#111" stroke-width="2">
240
+ <path d="M12 21s-6.5-4.35-9-7.5C1.5 10 3 7 6 7c1.9 0 3 1.3 3 1.3S10.1 7 12 7s3 1.3 3 1.3S16.1 7 18 7c3 0 4.5 3 3 6.5-2.5 3.15-9 7.5-9 7.5z"></path>
241
+ </svg>
242
+ </div>
243
+
244
+ <div class="divider"></div>
245
+
246
+ <div class="section-row row">
247
+ <div>Size &amp; Fit</div>
248
+ <svg width="32" height="32" viewBox="0 0 24 24" fill="none" stroke="#111" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
249
+ <polyline points="6 9 12 15 18 9"></polyline>
250
+ </svg>
251
+ </div>
252
+ </div>
253
+
254
+ <div class="home-indicator"></div>
255
+ </div>
256
+ </body>
257
+ </html>
code/14166/14166_2.html ADDED
@@ -0,0 +1,332 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>All Shoes - Listing</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; }
9
+ #render-target {
10
+ width: 1080px;
11
+ height: 2400px;
12
+ position: relative;
13
+ overflow: hidden;
14
+ background: #ffffff;
15
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
16
+ color: #111;
17
+ }
18
+
19
+ /* Status bar */
20
+ .status-bar {
21
+ height: 120px;
22
+ background: #000;
23
+ color: #fff;
24
+ display: flex;
25
+ align-items: center;
26
+ padding: 0 40px;
27
+ font-size: 38px;
28
+ box-sizing: border-box;
29
+ }
30
+ .status-left { flex: 1; }
31
+ .status-center { flex: 1; text-align: center; opacity: 0.85; letter-spacing: 12px; }
32
+ .status-right { flex: 1; display: flex; justify-content: flex-end; align-items: center; gap: 22px; }
33
+ .battery {
34
+ width: 58px; height: 28px; border: 3px solid #fff; border-radius: 6px; position: relative;
35
+ }
36
+ .battery:after {
37
+ content: ""; position: absolute; right: -10px; top: 8px; width: 6px; height: 12px; background: #fff; border-radius: 2px;
38
+ }
39
+ .battery .level {
40
+ position: absolute; left: 3px; top: 3px; bottom: 3px; right: 14px; background: #fff; border-radius: 3px;
41
+ }
42
+
43
+ /* Top bar */
44
+ .topbar {
45
+ height: 120px;
46
+ display: flex;
47
+ align-items: center;
48
+ padding: 0 32px;
49
+ box-sizing: border-box;
50
+ border-bottom: 1px solid #eaeaea;
51
+ background: #fff;
52
+ }
53
+ .topbar .left {
54
+ display: flex; align-items: center; gap: 24px;
55
+ }
56
+ .title { font-size: 44px; font-weight: 600; }
57
+ .topbar .right {
58
+ margin-left: auto; display: flex; align-items: center; gap: 32px;
59
+ }
60
+ .icon-btn { width: 60px; height: 60px; display: inline-flex; align-items: center; justify-content: center; color: #111; }
61
+ .bag {
62
+ position: relative;
63
+ width: 60px; height: 60px; display: inline-flex; align-items: center; justify-content: center;
64
+ }
65
+ .bag .badge {
66
+ position: absolute; right: -2px; top: -4px;
67
+ min-width: 38px; height: 38px; padding: 0 8px;
68
+ background: #000; color: #fff; font-size: 26px; line-height: 38px; text-align: center; border-radius: 20px; font-weight: 600;
69
+ border: 2px solid #fff;
70
+ }
71
+
72
+ /* Tabs */
73
+ .tabs {
74
+ height: 110px;
75
+ display: flex;
76
+ align-items: flex-end;
77
+ gap: 44px;
78
+ padding: 0 24px 0 24px;
79
+ box-sizing: border-box;
80
+ overflow: hidden;
81
+ border-bottom: 1px solid #eee;
82
+ background: #fff;
83
+ }
84
+ .tab {
85
+ font-size: 38px;
86
+ color: #666;
87
+ padding: 30px 14px 24px;
88
+ position: relative;
89
+ white-space: nowrap;
90
+ }
91
+ .tab.active { color: #111; font-weight: 600; }
92
+ .tab.active:after {
93
+ content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 6px; background: #111; border-radius: 3px;
94
+ }
95
+
96
+ /* Grid */
97
+ .grid {
98
+ display: flex;
99
+ flex-wrap: wrap;
100
+ width: 100%;
101
+ }
102
+ .card {
103
+ width: 540px;
104
+ box-sizing: border-box;
105
+ border-right: 1px solid #f0f0f0;
106
+ padding-bottom: 36px;
107
+ }
108
+ .card:nth-child(2n) { border-right: none; }
109
+ .img-wrap {
110
+ position: relative;
111
+ margin: 28px 28px 0 28px;
112
+ height: 420px;
113
+ background: #F5F5F5;
114
+ display: flex; align-items: center; justify-content: center;
115
+ border-radius: 6px;
116
+ border: 1px solid #E0E0E0;
117
+ color: #757575;
118
+ font-size: 30px;
119
+ }
120
+ .favorite {
121
+ position: absolute; right: 18px; top: 18px;
122
+ width: 84px; height: 84px; border-radius: 50%;
123
+ background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.12);
124
+ display: flex; align-items: center; justify-content: center;
125
+ }
126
+
127
+ .info {
128
+ padding: 24px 28px 0 28px;
129
+ }
130
+ .name { font-size: 40px; font-weight: 600; line-height: 1.25; margin-bottom: 8px; }
131
+ .sub { font-size: 34px; color: #7d7d7d; margin-bottom: 18px; }
132
+ .price { font-size: 40px; font-weight: 700; margin: 10px 0 4px; }
133
+ .price small { font-weight: 500; color: #555; font-size: 32px; }
134
+ .strike { font-size: 34px; color: #888; text-decoration: line-through; margin-top: 6px; }
135
+
136
+ .swatches { display: flex; align-items: center; gap: 18px; margin-top: 22px; }
137
+ .dot {
138
+ width: 28px; height: 28px; border-radius: 50%; border: 2px solid #c9c9c9;
139
+ }
140
+ .dot.lg { width: 32px; height: 32px; border-color: #b7b7b7; }
141
+ .text-muted { color: #6c6c6c; font-size: 30px; }
142
+
143
+ /* Floating filter */
144
+ .fab {
145
+ position: absolute; right: 48px; bottom: 170px;
146
+ width: 150px; height: 150px; border-radius: 50%;
147
+ background: #fff; box-shadow: 0 18px 40px rgba(0,0,0,0.2), 0 3px 8px rgba(0,0,0,0.12);
148
+ display: flex; align-items: center; justify-content: center;
149
+ }
150
+
151
+ /* Home indicator */
152
+ .home-indicator {
153
+ position: absolute; bottom: 56px; left: 50%;
154
+ width: 420px; height: 14px; background: #000; border-radius: 14px; transform: translateX(-50%);
155
+ opacity: 0.9;
156
+ }
157
+
158
+ /* Utility */
159
+ .rupee { font-family: inherit; }
160
+ .small-muted { font-size: 32px; color: #888; }
161
+
162
+ /* Prevent text selection to mimic UI */
163
+ * { -webkit-tap-highlight-color: transparent; user-select: none; }
164
+ </style>
165
+ </head>
166
+ <body>
167
+ <div id="render-target">
168
+
169
+ <!-- Status bar -->
170
+ <div class="status-bar">
171
+ <div class="status-left">3:23</div>
172
+ <div class="status-center">• • • • •</div>
173
+ <div class="status-right">
174
+ <div style="width:22px;height:22px;border-radius:50%;background:#fff;opacity:.95"></div>
175
+ <div class="battery"><div class="level"></div></div>
176
+ </div>
177
+ </div>
178
+
179
+ <!-- Top navigation -->
180
+ <div class="topbar">
181
+ <div class="left">
182
+ <div class="icon-btn" aria-label="Back">
183
+ <svg width="44" height="44" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round">
184
+ <path d="M14 4 L6 12 L14 20"></path>
185
+ </svg>
186
+ </div>
187
+ <div class="title">All Shoes</div>
188
+ </div>
189
+ <div class="right">
190
+ <div class="icon-btn" aria-label="Search">
191
+ <svg width="42" height="42" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round">
192
+ <circle cx="11" cy="11" r="7.5"></circle>
193
+ <path d="M20 20 L16.5 16.5"></path>
194
+ </svg>
195
+ </div>
196
+ <div class="bag" aria-label="Cart">
197
+ <svg width="42" height="42" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round">
198
+ <path d="M6 8h12l-1 12H7L6 8z"></path>
199
+ <path d="M9 8V6a3 3 0 016 0v2"></path>
200
+ </svg>
201
+ <div class="badge">2</div>
202
+ </div>
203
+ </div>
204
+ </div>
205
+
206
+ <!-- Tabs -->
207
+ <div class="tabs">
208
+ <div class="tab active">Skateboarding</div>
209
+ <div class="tab">Golf</div>
210
+ <div class="tab">Tennis</div>
211
+ <div class="tab">Athletics</div>
212
+ <div class="tab">Walking</div>
213
+ </div>
214
+
215
+ <!-- Product grid -->
216
+ <div class="grid">
217
+
218
+ <!-- Card 1 -->
219
+ <div class="card">
220
+ <div class="img-wrap">
221
+ <div class="favorite">
222
+ <svg width="38" height="38" viewBox="0 0 24 24" fill="none" stroke="#111" stroke-width="1.8">
223
+ <path d="M12 21l-8-8a5 5 0 017-7l1 1 1-1a5 5 0 017 7l-8 8z"></path>
224
+ </svg>
225
+ </div>
226
+ <div style="width:100%; text-align:center;">
227
+ <div style="display:flex;justify-content:center;align-items:center;height:100%; color:#757575;">[IMG: Grey Skate Shoe]</div>
228
+ </div>
229
+ </div>
230
+ <div class="info">
231
+ <div class="name">Nike SB Chron 2 Canvas</div>
232
+ <div class="sub">Skate Shoe</div>
233
+ <div class="price"><span class="rupee">₹</span> 4 267.00 <small>MRP:</small></div>
234
+ <div class="strike"><span class="rupee">₹</span> 4 495.00</div>
235
+ <div class="swatches">
236
+ <div class="dot lg" style="background:#bfc4c9;"></div>
237
+ <div class="dot lg" style="background:#212121;"></div>
238
+ <div class="dot lg" style="background:#ffffff;"></div>
239
+ <div class="dot lg" style="background:#0b2540;"></div>
240
+ <div class="text-muted">+2</div>
241
+ </div>
242
+ </div>
243
+ </div>
244
+
245
+ <!-- Card 2 -->
246
+ <div class="card">
247
+ <div class="img-wrap">
248
+ <div class="favorite">
249
+ <svg width="38" height="38" viewBox="0 0 24 24" fill="none" stroke="#111" stroke-width="1.8">
250
+ <path d="M12 21l-8-8a5 5 0 017-7l1 1 1-1a5 5 0 017 7l-8 8z"></path>
251
+ </svg>
252
+ </div>
253
+ <div style="width:100%; text-align:center;">
254
+ <div style="display:flex;justify-content:center;align-items:center;height:100%; color:#757575;">[IMG: Beige/Black Skate Shoe]</div>
255
+ </div>
256
+ </div>
257
+ <div class="info">
258
+ <div class="name">Nike SB Zoom Blazer Low Pro GT</div>
259
+ <div class="sub">Skate Shoes</div>
260
+ <div class="price">MRP : <span class="rupee">₹</span> 6 795.00</div>
261
+ <div class="swatches">
262
+ <div class="dot" style="background:#ffffff;"></div>
263
+ <div class="dot" style="background:#111;"></div>
264
+ </div>
265
+ </div>
266
+ </div>
267
+
268
+ <!-- Card 3 -->
269
+ <div class="card">
270
+ <div class="img-wrap">
271
+ <div class="favorite">
272
+ <svg width="38" height="38" viewBox="0 0 24 24" fill="none" stroke="#111" stroke-width="1.8">
273
+ <path d="M12 21l-8-8a5 5 0 017-7l1 1 1-1a5 5 0 017 7l-8 8z"></path>
274
+ </svg>
275
+ </div>
276
+ <div style="width:100%; text-align:center;">
277
+ <div style="display:flex;justify-content:center;align-items:center;height:100%; color:#757575;">[IMG: Beige Doyenne Skate Shoe]</div>
278
+ </div>
279
+ </div>
280
+ <div class="info">
281
+ <div class="name">Nike SB Blazer Low x Doyenne</div>
282
+ <div class="sub">Skate Shoes</div>
283
+ <div class="price">MRP : <span class="rupee">₹</span> 8 695.00</div>
284
+ <div class="swatches">
285
+ <div class="dot" style="background:#ffffff;"></div>
286
+ <div class="dot" style="background:#111;"></div>
287
+ </div>
288
+ </div>
289
+ </div>
290
+
291
+ <!-- Card 4 -->
292
+ <div class="card">
293
+ <div class="img-wrap">
294
+ <div class="favorite">
295
+ <svg width="38" height="38" viewBox="0 0 24 24" fill="none" stroke="#111" stroke-width="1.8">
296
+ <path d="M12 21l-8-8a5 5 0 017-7l1 1 1-1a5 5 0 017 7l-8 8z"></path>
297
+ </svg>
298
+ </div>
299
+ <div style="width:100%; text-align:center;">
300
+ <div style="display:flex;justify-content:center;align-items:center;height:100%; color:#757575;">[IMG: White Skate Shoe]</div>
301
+ </div>
302
+ </div>
303
+ <div class="info">
304
+ <div class="name">Nike SB Force 58 Premium</div>
305
+ <div class="sub">Skate Shoe</div>
306
+ <div class="price">MRP : <span class="rupee">₹</span> 7 095.00</div>
307
+ <div class="swatches">
308
+ <div class="dot" style="background:#ffffff;"></div>
309
+ <div class="dot" style="background:#111;"></div>
310
+ </div>
311
+ </div>
312
+ </div>
313
+
314
+ </div>
315
+
316
+ <!-- Floating filter button -->
317
+ <div class="fab" aria-label="Filter">
318
+ <svg width="70" height="70" viewBox="0 0 24 24" fill="none" stroke="#111" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round">
319
+ <path d="M4 7h16"></path>
320
+ <circle cx="9" cy="7" r="2.2" fill="#111"></circle>
321
+ <path d="M4 12h16"></path>
322
+ <circle cx="15" cy="12" r="2.2" fill="#111"></circle>
323
+ <path d="M4 17h16"></path>
324
+ <circle cx="12" cy="17" r="2.2" fill="#111"></circle>
325
+ </svg>
326
+ </div>
327
+
328
+ <!-- Home indicator -->
329
+ <div class="home-indicator"></div>
330
+ </div>
331
+ </body>
332
+ </html>
code/14166/14166_3.html ADDED
@@ -0,0 +1,399 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>All Shoes - Athletics</title>
7
+ <style>
8
+ * { box-sizing: border-box; }
9
+ body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
10
+ #render-target {
11
+ width: 1080px;
12
+ height: 2400px;
13
+ position: relative;
14
+ overflow: hidden;
15
+ background: #ffffff;
16
+ color: #111;
17
+ }
18
+
19
+ /* Status bar */
20
+ .status-bar {
21
+ position: absolute;
22
+ top: 0;
23
+ left: 0;
24
+ width: 1080px;
25
+ height: 120px;
26
+ background: #000;
27
+ color: #fff;
28
+ display: flex;
29
+ align-items: center;
30
+ padding: 0 36px;
31
+ font-weight: 600;
32
+ font-size: 36px;
33
+ }
34
+ .status-icons {
35
+ margin-left: auto;
36
+ display: flex;
37
+ gap: 22px;
38
+ align-items: center;
39
+ }
40
+ .dot { width: 16px; height: 16px; background: #fff; border-radius: 50%; opacity: 0.9; }
41
+ .status-shape {
42
+ width: 30px; height: 30px; border: 2px solid #fff; border-radius: 4px;
43
+ }
44
+
45
+ /* Header */
46
+ .top-bar {
47
+ position: absolute;
48
+ top: 120px;
49
+ left: 0;
50
+ width: 1080px;
51
+ height: 120px;
52
+ background: #fff;
53
+ display: flex;
54
+ align-items: center;
55
+ padding: 0 32px;
56
+ border-bottom: 1px solid #eaeaea;
57
+ }
58
+ .left-actions, .right-actions {
59
+ display: flex; align-items: center; gap: 28px;
60
+ }
61
+ .title {
62
+ font-size: 44px;
63
+ font-weight: 600;
64
+ margin-left: 24px;
65
+ }
66
+ .icon-btn {
67
+ width: 64px;
68
+ height: 64px;
69
+ display: inline-flex;
70
+ align-items: center;
71
+ justify-content: center;
72
+ }
73
+ .badge {
74
+ position: absolute;
75
+ top: -6px;
76
+ right: -6px;
77
+ width: 40px; height: 40px;
78
+ background: #111; color: #fff; font-size: 26px;
79
+ display: flex; align-items: center; justify-content: center;
80
+ border-radius: 50%;
81
+ }
82
+
83
+ /* Tabs */
84
+ .tabs {
85
+ position: absolute;
86
+ top: 240px;
87
+ left: 0;
88
+ width: 1080px;
89
+ height: 120px;
90
+ background: #fff;
91
+ display: flex;
92
+ align-items: center;
93
+ padding: 0 28px;
94
+ gap: 40px;
95
+ border-bottom: 1px solid #e0e0e0;
96
+ overflow: hidden;
97
+ }
98
+ .tab {
99
+ font-size: 34px;
100
+ color: #666;
101
+ padding: 24px 10px 20px 10px;
102
+ position: relative;
103
+ white-space: nowrap;
104
+ }
105
+ .tab.active {
106
+ color: #111;
107
+ font-weight: 700;
108
+ }
109
+ .tab.active::after {
110
+ content: "";
111
+ position: absolute;
112
+ left: 0; right: 0; bottom: 0;
113
+ height: 6px;
114
+ background: #111;
115
+ border-radius: 3px;
116
+ width: 110%;
117
+ transform: translateX(-5%);
118
+ }
119
+
120
+ /* Content area */
121
+ .content {
122
+ position: absolute;
123
+ top: 360px;
124
+ left: 0;
125
+ width: 1080px;
126
+ height: 1840px;
127
+ padding: 24px;
128
+ overflow: hidden;
129
+ background: #fff;
130
+ }
131
+ .grid {
132
+ display: grid;
133
+ grid-template-columns: 1fr 1fr;
134
+ gap: 24px;
135
+ }
136
+ .card {
137
+ background: #fff;
138
+ border: 1px solid #eee;
139
+ }
140
+ .card .img-wrap {
141
+ position: relative;
142
+ width: 100%;
143
+ height: 420px;
144
+ background: #F7F7F7;
145
+ display: flex;
146
+ align-items: center;
147
+ justify-content: center;
148
+ border-bottom: 1px solid #eee;
149
+ }
150
+ .img-placeholder {
151
+ width: 90%;
152
+ height: 85%;
153
+ background: #E0E0E0;
154
+ border: 1px solid #BDBDBD;
155
+ display: flex; align-items: center; justify-content: center;
156
+ color: #757575; font-size: 28px; text-align: center; padding: 10px;
157
+ }
158
+ .fav {
159
+ position: absolute;
160
+ top: 22px; right: 22px;
161
+ width: 80px; height: 80px;
162
+ background: #fff;
163
+ border-radius: 50%;
164
+ box-shadow: 0 2px 8px rgba(0,0,0,0.08);
165
+ display: flex; align-items: center; justify-content: center;
166
+ border: 1px solid #e6e6e6;
167
+ }
168
+
169
+ .card .info {
170
+ padding: 28px;
171
+ }
172
+ .name {
173
+ font-size: 36px;
174
+ font-weight: 700;
175
+ margin-bottom: 10px;
176
+ }
177
+ .desc {
178
+ font-size: 30px;
179
+ color: #777;
180
+ margin-bottom: 22px;
181
+ line-height: 1.3;
182
+ }
183
+ .price {
184
+ font-size: 34px;
185
+ font-weight: 700;
186
+ margin-bottom: 12px;
187
+ }
188
+ .mrp-label {
189
+ font-weight: 600;
190
+ }
191
+ .strike {
192
+ color: #9e9e9e;
193
+ text-decoration: line-through;
194
+ font-weight: 500;
195
+ margin-top: 8px;
196
+ font-size: 30px;
197
+ }
198
+
199
+ .color-dots {
200
+ margin-top: 18px;
201
+ display: flex; gap: 18px;
202
+ }
203
+ .dot-color {
204
+ width: 22px; height: 22px; border-radius: 50%;
205
+ border: 2px solid #bbb;
206
+ }
207
+ .dot-white { background: #fff; }
208
+ .dot-gray { background: #cfcfcf; }
209
+ .dot-black { background: #111; border-color: #111; }
210
+ .dot-yellow { background: #f2c04b; }
211
+ .dot-pink { background: #ff3c9a; }
212
+
213
+ /* Floating filter button */
214
+ .fab {
215
+ position: absolute;
216
+ right: 40px;
217
+ bottom: 240px;
218
+ width: 140px; height: 140px;
219
+ border-radius: 50%;
220
+ background: #fff;
221
+ box-shadow: 0 10px 24px rgba(0,0,0,0.15);
222
+ display: flex; align-items: center; justify-content: center;
223
+ }
224
+
225
+ /* Bottom bar */
226
+ .bottom-bar {
227
+ position: absolute;
228
+ bottom: 0; left: 0;
229
+ width: 1080px; height: 120px;
230
+ background: #000;
231
+ display: flex; align-items: center; justify-content: center;
232
+ }
233
+ .home-pill {
234
+ width: 280px; height: 12px; background: #fff; opacity: 0.85; border-radius: 6px;
235
+ }
236
+ </style>
237
+ </head>
238
+ <body>
239
+ <div id="render-target">
240
+
241
+ <!-- Status Bar -->
242
+ <div class="status-bar">
243
+ 3:24
244
+ <div class="status-icons">
245
+ <div class="dot"></div>
246
+ <div class="dot"></div>
247
+ <div class="dot"></div>
248
+ <div class="dot"></div>
249
+ <div class="dot"></div>
250
+ <div class="dot"></div>
251
+ <div class="dot"></div>
252
+ <div class="dot"></div>
253
+ <div class="status-shape"></div>
254
+ </div>
255
+ </div>
256
+
257
+ <!-- Top Header -->
258
+ <div class="top-bar">
259
+ <div class="left-actions">
260
+ <div class="icon-btn">
261
+ <svg width="64" height="64" viewBox="0 0 64 64">
262
+ <path d="M38 14 L18 32 L38 50" stroke="#111" stroke-width="6" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
263
+ </svg>
264
+ </div>
265
+ <div class="title">All Shoes</div>
266
+ </div>
267
+ <div class="right-actions" style="margin-left:auto;">
268
+ <div class="icon-btn">
269
+ <svg width="64" height="64" viewBox="0 0 64 64">
270
+ <circle cx="26" cy="26" r="18" stroke="#111" stroke-width="6" fill="none"/>
271
+ <line x1="42" y1="42" x2="58" y2="58" stroke="#111" stroke-width="6" stroke-linecap="round"/>
272
+ </svg>
273
+ </div>
274
+ <div class="icon-btn" style="position:relative;">
275
+ <svg width="64" height="64" viewBox="0 0 64 64">
276
+ <path d="M20 24 C20 18 24 14 30 14 H34 C40 14 44 18 44 24 V52 H20 Z" stroke="#111" stroke-width="6" fill="none"/>
277
+ <path d="M24 24 H40" stroke="#111" stroke-width="6"/>
278
+ </svg>
279
+ <div class="badge">2</div>
280
+ </div>
281
+ </div>
282
+ </div>
283
+
284
+ <!-- Tabs -->
285
+ <div class="tabs">
286
+ <div class="tab">Boarding</div>
287
+ <div class="tab">Golf</div>
288
+ <div class="tab">Tennis</div>
289
+ <div class="tab active">Athletics</div>
290
+ <div class="tab">Walking</div>
291
+ </div>
292
+
293
+ <!-- Content Grid -->
294
+ <div class="content">
295
+ <div class="grid">
296
+ <!-- Card 1 -->
297
+ <div class="card">
298
+ <div class="img-wrap">
299
+ <div class="img-placeholder">[IMG: Nike Zoom Fly 5 - White/Teal Women's Road Running Shoe]</div>
300
+ <div class="fav">
301
+ <svg width="40" height="40" viewBox="0 0 64 64">
302
+ <path d="M32 54 C22 44 12 36 12 26 C12 18 18 14 24 14 C28 14 31 16 32 18 C33 16 36 14 40 14 C46 14 52 18 52 26 C52 36 42 44 32 54 Z" stroke="#111" stroke-width="4" fill="none"/>
303
+ </svg>
304
+ </div>
305
+ </div>
306
+ <div class="info">
307
+ <div class="name">Nike Zoom Fly 5</div>
308
+ <div class="desc">Women's Road Running Shoes</div>
309
+ <div class="price"><span class="mrp-label">MRP :</span> ₹ 14 995.00</div>
310
+ <div class="color-dots">
311
+ <span class="dot-color dot-white"></span>
312
+ <span class="dot-color dot-gray"></span>
313
+ <span class="dot-color dot-black"></span>
314
+ <span class="dot-color dot-yellow"></span>
315
+ </div>
316
+ </div>
317
+ </div>
318
+
319
+ <!-- Card 2 -->
320
+ <div class="card">
321
+ <div class="img-wrap">
322
+ <div class="img-placeholder">[IMG: Nike Zoom Fly 5 Premium - Multi Women's Road Running Shoe]</div>
323
+ <div class="fav">
324
+ <svg width="40" height="40" viewBox="0 0 64 64">
325
+ <path d="M32 54 C22 44 12 36 12 26 C12 18 18 14 24 14 C28 14 31 16 32 18 C33 16 36 14 40 14 C46 14 52 18 52 26 C52 36 42 44 32 54 Z" stroke="#111" stroke-width="4" fill="none"/>
326
+ </svg>
327
+ </div>
328
+ </div>
329
+ <div class="info">
330
+ <div class="name">Nike Zoom Fly 5 Premium</div>
331
+ <div class="desc">Women's Road Running Shoes</div>
332
+ <div class="price">₹ 15 197.00 <span style="color:#777; font-weight:600;">MRP :</span></div>
333
+ <div class="strike">₹ 15 995.00</div>
334
+ </div>
335
+ </div>
336
+
337
+ <!-- Card 3 -->
338
+ <div class="card">
339
+ <div class="img-wrap">
340
+ <div class="img-placeholder">[IMG: Nike Vaporfly 3 - Gray Women's Road Racing Shoe]</div>
341
+ <div class="fav">
342
+ <svg width="40" height="40" viewBox="0 0 64 64">
343
+ <path d="M32 54 C22 44 12 36 12 26 C12 18 18 14 24 14 C28 14 31 16 32 18 C33 16 36 14 40 14 C46 14 52 18 52 26 C52 36 42 44 32 54 Z" stroke="#111" stroke-width="4" fill="none"/>
344
+ </svg>
345
+ </div>
346
+ </div>
347
+ <div class="info">
348
+ <div class="name">Nike Vaporfly 3</div>
349
+ <div class="desc">Women's Road Racing Shoes</div>
350
+ <div class="price"><span class="mrp-label">MRP :</span> ₹ 20 695.00</div>
351
+ <div class="color-dots">
352
+ <span class="dot-color dot-white"></span>
353
+ <span class="dot-color dot-gray"></span>
354
+ <span class="dot-color dot-pink"></span>
355
+ </div>
356
+ </div>
357
+ </div>
358
+
359
+ <!-- Card 4 -->
360
+ <div class="card">
361
+ <div class="img-wrap">
362
+ <div class="img-placeholder">[IMG: Nike Rival Distance - Pink Athletics Spikes]</div>
363
+ <div class="fav">
364
+ <svg width="40" height="40" viewBox="0 0 64 64">
365
+ <path d="M32 54 C22 44 12 36 12 26 C12 18 18 14 24 14 C28 14 31 16 32 18 C33 16 36 14 40 14 C46 14 52 18 52 26 C52 36 42 44 32 54 Z" stroke="#111" stroke-width="4" fill="none"/>
366
+ </svg>
367
+ </div>
368
+ </div>
369
+ <div class="info">
370
+ <div class="name">Nike Rival Distance</div>
371
+ <div class="desc">Athletics Distance Spikes</div>
372
+ <div class="price">₹ 5 407.00 <span style="color:#777; font-weight:600;">MRP :</span></div>
373
+ <div class="strike">₹ 5 695.00</div>
374
+ </div>
375
+ </div>
376
+ </div>
377
+ </div>
378
+
379
+ <!-- Floating Action Button -->
380
+ <div class="fab">
381
+ <svg width="84" height="84" viewBox="0 0 64 64">
382
+ <!-- Slider lines -->
383
+ <line x1="12" y1="18" x2="52" y2="18" stroke="#111" stroke-width="6" stroke-linecap="round"/>
384
+ <circle cx="24" cy="18" r="6" fill="#111"/>
385
+ <line x1="12" y1="32" x2="52" y2="32" stroke="#111" stroke-width="6" stroke-linecap="round"/>
386
+ <circle cx="40" cy="32" r="6" fill="#111"/>
387
+ <line x1="12" y1="46" x2="52" y2="46" stroke="#111" stroke-width="6" stroke-linecap="round"/>
388
+ <circle cx="32" cy="46" r="6" fill="#111"/>
389
+ </svg>
390
+ </div>
391
+
392
+ <!-- Bottom Home Indicator -->
393
+ <div class="bottom-bar">
394
+ <div class="home-pill"></div>
395
+ </div>
396
+
397
+ </div>
398
+ </body>
399
+ </html>
code/14166/14166_4.html ADDED
@@ -0,0 +1,320 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>All Shoes</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; color: #111; }
9
+ #render-target {
10
+ width: 1080px;
11
+ height: 2400px;
12
+ position: relative;
13
+ overflow: hidden;
14
+ background: #ffffff;
15
+ }
16
+
17
+ /* Status bar */
18
+ .status-bar {
19
+ height: 110px;
20
+ background: #000;
21
+ color: #fff;
22
+ padding: 0 36px;
23
+ display: flex;
24
+ align-items: center;
25
+ justify-content: space-between;
26
+ font-weight: 600;
27
+ font-size: 34px;
28
+ letter-spacing: 0.5px;
29
+ }
30
+ .status-icons {
31
+ display: flex;
32
+ align-items: center;
33
+ gap: 18px;
34
+ }
35
+ .dot { width: 10px; height: 10px; background: #fff; opacity: 0.7; border-radius: 50%; display: inline-block; }
36
+ .icon-signal, .icon-wifi, .icon-battery { width: 40px; height: 28px; display: inline-block; }
37
+ .icon-signal { border-left: 4px solid #fff; border-bottom: 4px solid transparent; box-shadow: inset 0 0 0 0 #fff; }
38
+ .icon-wifi {
39
+ position: relative;
40
+ }
41
+ .icon-wifi:before, .icon-wifi:after {
42
+ content: ""; position: absolute; left: 0; right: 0; margin: auto; border: 4px solid transparent; border-top-color: #fff; border-radius: 50%;
43
+ }
44
+ .icon-wifi:before { top: 4px; width: 28px; height: 18px; }
45
+ .icon-wifi:after { top: 12px; width: 18px; height: 10px; }
46
+ .icon-battery {
47
+ position: relative; border: 4px solid #fff; border-radius: 4px;
48
+ }
49
+ .icon-battery:after {
50
+ content: ""; position: absolute; right: -8px; top: 6px; width: 6px; height: 12px; background: #fff; border-radius: 2px;
51
+ }
52
+
53
+ /* App bar */
54
+ .app-bar {
55
+ height: 120px;
56
+ border-bottom: 1px solid #eee;
57
+ display: flex;
58
+ align-items: center;
59
+ padding: 0 32px;
60
+ gap: 20px;
61
+ }
62
+ .app-title {
63
+ font-size: 44px;
64
+ font-weight: 700;
65
+ flex: 1;
66
+ }
67
+ .icon-btn {
68
+ width: 80px;
69
+ height: 80px;
70
+ display: flex;
71
+ align-items: center;
72
+ justify-content: center;
73
+ }
74
+ .icon {
75
+ width: 44px;
76
+ height: 44px;
77
+ }
78
+ .cart-badge {
79
+ position: relative;
80
+ }
81
+ .cart-badge .badge {
82
+ position: absolute;
83
+ top: -2px;
84
+ right: -2px;
85
+ background: #000;
86
+ color: #fff;
87
+ font-size: 24px;
88
+ width: 42px; height: 42px;
89
+ border-radius: 50%;
90
+ display: flex; align-items: center; justify-content: center;
91
+ border: 3px solid #fff;
92
+ }
93
+
94
+ /* Grid */
95
+ .content {
96
+ padding: 36px;
97
+ }
98
+ .grid {
99
+ display: grid;
100
+ grid-template-columns: 1fr 1fr;
101
+ gap: 36px;
102
+ }
103
+ .card {
104
+ background: #fff;
105
+ }
106
+ .img-wrap {
107
+ position: relative;
108
+ border-radius: 8px;
109
+ overflow: hidden;
110
+ }
111
+ .placeholder {
112
+ width: 100%;
113
+ height: 390px;
114
+ background: #E0E0E0;
115
+ border: 1px solid #BDBDBD;
116
+ display: flex; align-items: center; justify-content: center;
117
+ color: #757575;
118
+ font-size: 28px;
119
+ }
120
+ .wish {
121
+ position: absolute;
122
+ top: 18px;
123
+ right: 18px;
124
+ width: 90px; height: 90px;
125
+ background: #fff;
126
+ border-radius: 50%;
127
+ box-shadow: 0 2px 8px rgba(0,0,0,0.12);
128
+ display: flex; align-items: center; justify-content: center;
129
+ }
130
+ .card h3 {
131
+ margin: 26px 0 8px;
132
+ font-size: 36px;
133
+ line-height: 1.2;
134
+ font-weight: 700;
135
+ }
136
+ .card .sub {
137
+ margin: 0 0 20px;
138
+ font-size: 28px;
139
+ color: #777;
140
+ }
141
+ .price {
142
+ font-size: 34px;
143
+ font-weight: 700;
144
+ margin: 14px 0 6px;
145
+ }
146
+ .mrp-line {
147
+ font-size: 30px;
148
+ color: #9b9b9b;
149
+ margin: 0;
150
+ }
151
+ .mrp-line del { color: #9b9b9b; }
152
+
153
+ /* Color dots */
154
+ .dots { display: flex; gap: 18px; padding: 22px 0 4px; }
155
+ .dot-swatch {
156
+ width: 28px; height: 28px; border-radius: 50%;
157
+ border: 2px solid #cfcfcf; background: #fff;
158
+ }
159
+ .dot-swatch.pink { background: #e44a93; border-color: #e44a93; }
160
+
161
+ /* Floating filter button */
162
+ .fab {
163
+ position: absolute;
164
+ right: 46px;
165
+ bottom: 230px;
166
+ width: 150px; height: 150px;
167
+ background: #fff;
168
+ border-radius: 50%;
169
+ box-shadow: 0 12px 24px rgba(0,0,0,0.18);
170
+ display: flex; align-items: center; justify-content: center;
171
+ }
172
+
173
+ /* Bottom safe area */
174
+ .safe-area {
175
+ position: absolute;
176
+ left: 0; right: 0; bottom: 0;
177
+ height: 120px;
178
+ background: #fff;
179
+ display: flex; align-items: center; justify-content: center;
180
+ border-top: 1px solid #efefef;
181
+ }
182
+ .home-pill {
183
+ width: 240px; height: 12px; background: #111; border-radius: 8px;
184
+ }
185
+
186
+ /* Utility */
187
+ .muted { color: #777; font-weight: 500; }
188
+ </style>
189
+ </head>
190
+ <body>
191
+ <div id="render-target">
192
+
193
+ <!-- Status Bar -->
194
+ <div class="status-bar">
195
+ <div>3:25</div>
196
+ <div class="status-icons">
197
+ <span class="dot"></span>
198
+ <span class="dot"></span>
199
+ <span class="dot"></span>
200
+ <span class="dot"></span>
201
+ <span class="icon-signal"></span>
202
+ <span class="icon-wifi"></span>
203
+ <span class="icon-battery"></span>
204
+ </div>
205
+ </div>
206
+
207
+ <!-- App Bar -->
208
+ <div class="app-bar">
209
+ <div class="icon-btn" aria-label="Back">
210
+ <svg class="icon" viewBox="0 0 24 24"><path d="M15.5 4.5L8 12l7.5 7.5" stroke="#111" stroke-width="2.5" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>
211
+ </div>
212
+ <div class="app-title">All Shoes</div>
213
+ <div class="icon-btn" aria-label="Search">
214
+ <svg class="icon" viewBox="0 0 24 24"><circle cx="11" cy="11" r="7" stroke="#111" stroke-width="2.2" fill="none"/><path d="M20 20l-3.5-3.5" stroke="#111" stroke-width="2.2" stroke-linecap="round"/></svg>
215
+ </div>
216
+ <div class="icon-btn cart-badge" aria-label="Cart">
217
+ <svg class="icon" viewBox="0 0 24 24"><path d="M7 7h10l-.8 10H7.8L7 7Z" fill="none" stroke="#111" stroke-width="2"/><path d="M9 7V5a3 3 0 0 1 6 0v2" stroke="#111" stroke-width="2" fill="none"/></svg>
218
+ <div class="badge">2</div>
219
+ </div>
220
+ </div>
221
+
222
+ <!-- Content -->
223
+ <div class="content">
224
+ <div class="grid">
225
+
226
+ <!-- Card 1 -->
227
+ <div class="card">
228
+ <div class="img-wrap">
229
+ <div class="placeholder">[IMG: White Racing Shoe]</div>
230
+ <div class="wish">
231
+ <svg width="46" height="46" viewBox="0 0 24 24">
232
+ <path d="M12 21s-7-4.5-7-9.5A4.5 4.5 0 0 1 9.5 7c1.4 0 2.5.8 3.5 1.8C14 7.8 15.1 7 16.5 7A4.5 4.5 0 0 1 19 11.5C19 16.5 12 21 12 21Z"
233
+ fill="none" stroke="#111" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
234
+ </svg>
235
+ </div>
236
+ </div>
237
+ <h3>Nike Vaporfly 3</h3>
238
+ <p class="sub">Women's Road Racing Shoes</p>
239
+ <p class="price"><span class="muted">MRP :</span> ₹ 20 695.00</p>
240
+ <div class="dots">
241
+ <span class="dot-swatch"></span>
242
+ <span class="dot-swatch"></span>
243
+ <span class="dot-swatch pink"></span>
244
+ </div>
245
+ </div>
246
+
247
+ <!-- Card 2 -->
248
+ <div class="card">
249
+ <div class="img-wrap">
250
+ <div class="placeholder">[IMG: Pink Distance Spikes]</div>
251
+ <div class="wish">
252
+ <svg width="46" height="46" viewBox="0 0 24 24">
253
+ <path d="M12 21s-7-4.5-7-9.5A4.5 4.5 0 0 1 9.5 7c1.4 0 2.5.8 3.5 1.8C14 7.8 15.1 7 16.5 7A4.5 4.5 0 0 1 19 11.5C19 16.5 12 21 12 21Z"
254
+ fill="none" stroke="#111" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
255
+ </svg>
256
+ </div>
257
+ </div>
258
+ <h3>Nike Rival Distance</h3>
259
+ <p class="sub">Athletics Distance Spikes</p>
260
+ <p class="price">₹ 5 407.00 <span class="muted">MRP :</span></p>
261
+ <p class="mrp-line"><del>₹ 5 695.00</del></p>
262
+ </div>
263
+
264
+ <!-- Card 3 -->
265
+ <div class="card">
266
+ <div class="img-wrap">
267
+ <div class="placeholder">[IMG: Pink Spikes Side]</div>
268
+ <div class="wish">
269
+ <svg width="46" height="46" viewBox="0 0 24 24">
270
+ <path d="M12 21s-7-4.5-7-9.5A4.5 4.5 0 0 1 9.5 7c1.4 0 2.5.8 3.5 1.8C14 7.8 15.1 7 16.5 7A4.5 4.5 0 0 1 19 11.5C19 16.5 12 21 12 21Z"
271
+ fill="none" stroke="#111" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
272
+ </svg>
273
+ </div>
274
+ </div>
275
+ <h3>Nike Air Zoom Victory</h3>
276
+ <p class="sub">Athletics Distance Spikes</p>
277
+ <p class="price">₹ 15 197.00 <span class="muted">MRP :</span></p>
278
+ <p class="mrp-line"><del>₹ 15 995.00</del></p>
279
+ </div>
280
+
281
+ <!-- Card 4 -->
282
+ <div class="card">
283
+ <div class="img-wrap">
284
+ <div class="placeholder">[IMG: Pink Sprinting Spikes]</div>
285
+ <div class="wish">
286
+ <svg width="46" height="46" viewBox="0 0 24 24">
287
+ <path d="M12 21s-7-4.5-7-9.5A4.5 4.5 0 0 1 9.5 7c1.4 0 2.5.8 3.5 1.8C14 7.8 15.1 7 16.5 7A4.5 4.5 0 0 1 19 11.5C19 16.5 12 21 12 21Z"
288
+ fill="none" stroke="#111" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
289
+ </svg>
290
+ </div>
291
+ </div>
292
+ <h3>Nike Rival Sprint</h3>
293
+ <p class="sub">Athletics Sprinting Spikes</p>
294
+ <p class="price">₹ 5 407.00 <span class="muted">MRP :</span></p>
295
+ <p class="mrp-line"><del>₹ 5 695.00</del></p>
296
+ </div>
297
+
298
+ </div>
299
+ </div>
300
+
301
+ <!-- Floating Filter Button -->
302
+ <div class="fab" aria-label="Filter">
303
+ <svg width="72" height="72" viewBox="0 0 24 24">
304
+ <path d="M4 7h12" stroke="#111" stroke-width="2.3" stroke-linecap="round"/>
305
+ <circle cx="18" cy="7" r="2" fill="#111"/>
306
+ <path d="M4 12h8" stroke="#111" stroke-width="2.3" stroke-linecap="round"/>
307
+ <circle cx="14" cy="12" r="2" fill="#111"/>
308
+ <path d="M4 17h6" stroke="#111" stroke-width="2.3" stroke-linecap="round"/>
309
+ <circle cx="12" cy="17" r="2" fill="#111"/>
310
+ </svg>
311
+ </div>
312
+
313
+ <!-- Bottom Safe Area / Home Indicator -->
314
+ <div class="safe-area">
315
+ <div class="home-pill"></div>
316
+ </div>
317
+
318
+ </div>
319
+ </body>
320
+ </html>
code/14166/14166_5.html ADDED
@@ -0,0 +1,181 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>Nike Rival Sprint - Mock UI</title>
6
+ <style>
7
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
8
+ #render-target {
9
+ width: 1080px; height: 2400px;
10
+ position: relative; overflow: hidden;
11
+ background: #ffffff;
12
+ }
13
+
14
+ /* Status bar */
15
+ .status-bar {
16
+ height: 120px;
17
+ background: #000000;
18
+ color: #ffffff;
19
+ display: flex;
20
+ align-items: center;
21
+ justify-content: space-between;
22
+ padding: 0 40px;
23
+ box-sizing: border-box;
24
+ font-size: 34px;
25
+ }
26
+ .status-left, .status-right { display: flex; align-items: center; }
27
+ .dot { width: 14px; height: 14px; background: #ffffff; border-radius: 50%; margin-left: 16px; opacity: 0.9; }
28
+ .status-icon {
29
+ width: 42px; height: 42px; margin-left: 22px;
30
+ border: 2px solid #ffffff; border-radius: 8px; opacity: 0.95;
31
+ }
32
+
33
+ /* Header */
34
+ .header {
35
+ height: 130px;
36
+ background: #ffffff;
37
+ border-bottom: 1px solid #eaeaea;
38
+ display: flex;
39
+ align-items: center;
40
+ padding: 0 36px;
41
+ box-sizing: border-box;
42
+ }
43
+ .title {
44
+ font-size: 44px; font-weight: 600; color: #111;
45
+ margin-left: 20px;
46
+ }
47
+ .header-right { margin-left: auto; display: flex; align-items: center; }
48
+ .icon-btn { width: 64px; height: 64px; display: inline-flex; align-items: center; justify-content: center; margin-left: 28px; }
49
+ .bag-count {
50
+ width: 54px; height: 54px; border: 2px solid #111; border-radius: 10px;
51
+ display: inline-flex; align-items: center; justify-content: center;
52
+ font-size: 30px; font-weight: 600; color: #111; margin-left: 16px;
53
+ }
54
+
55
+ /* Content */
56
+ .content { padding: 40px; box-sizing: border-box; }
57
+ .hero-area {
58
+ width: 100%;
59
+ height: 980px;
60
+ background: #f7f7f7;
61
+ border: 1px solid #efefef;
62
+ box-sizing: border-box;
63
+ display: flex; align-items: center; justify-content: center;
64
+ }
65
+ .img-placeholder {
66
+ width: 980px; height: 560px;
67
+ background: #E0E0E0;
68
+ border: 1px solid #BDBDBD;
69
+ color: #757575;
70
+ display: flex; align-items: center; justify-content: center;
71
+ font-size: 32px;
72
+ }
73
+
74
+ .progress-wrap { display: flex; justify-content: center; margin: 40px 0 60px; }
75
+ .progress-bar {
76
+ width: 820px; height: 8px; background: #DADADA; border-radius: 6px; position: relative;
77
+ }
78
+ .progress-bar::before {
79
+ content: ""; position: absolute; left: 0; top: 0;
80
+ height: 8px; width: 160px; background: #6b6b6b; border-radius: 6px;
81
+ }
82
+
83
+ .thumb-and-info { display: block; }
84
+ .thumb {
85
+ width: 560px; height: 380px; background: #E0E0E0; border: 1px solid #BDBDBD;
86
+ color: #757575; display: flex; align-items: center; justify-content: center;
87
+ font-size: 26px; margin-left: 0;
88
+ }
89
+
90
+ .info {
91
+ margin-top: 50px;
92
+ color: #1a1a1a;
93
+ }
94
+ .subtitle {
95
+ font-size: 38px; color: #666666; margin-bottom: 18px;
96
+ }
97
+ .product-name {
98
+ font-size: 74px; font-weight: 800; color: #111111; line-height: 1.1;
99
+ }
100
+
101
+ /* Bottom home indicator */
102
+ .home-indicator {
103
+ position: absolute; left: 50%; transform: translateX(-50%);
104
+ bottom: 32px; width: 340px; height: 12px; background: rgba(0,0,0,0.85);
105
+ border-radius: 8px;
106
+ }
107
+
108
+ /* Simple SVG icons styling */
109
+ .svg-icon { fill: none; stroke: #111; stroke-width: 8; }
110
+ .svg-fill { fill: #111; stroke: none; }
111
+ </style>
112
+ </head>
113
+ <body>
114
+ <div id="render-target">
115
+
116
+ <!-- Status bar -->
117
+ <div class="status-bar">
118
+ <div class="status-left">
119
+ <div>3:26</div>
120
+ <div class="dot"></div>
121
+ <div class="dot"></div>
122
+ <div class="dot"></div>
123
+ <div class="dot"></div>
124
+ <div class="dot" style="margin-left: 10px; width: 10px; height: 10px; opacity:0.7;"></div>
125
+ </div>
126
+ <div class="status-right">
127
+ <div class="status-icon"></div>
128
+ <div class="status-icon" style="border-radius: 50%;"></div>
129
+ </div>
130
+ </div>
131
+
132
+ <!-- Header -->
133
+ <div class="header">
134
+ <div class="icon-btn" aria-label="Back">
135
+ <svg width="60" height="60" viewBox="0 0 60 60">
136
+ <path class="svg-icon" d="M36 12 L20 30 L36 48"></path>
137
+ </svg>
138
+ </div>
139
+ <div class="title">Nike Rival Sprint</div>
140
+ <div class="header-right">
141
+ <div class="icon-btn" aria-label="Search">
142
+ <svg width="60" height="60" viewBox="0 0 60 60">
143
+ <circle class="svg-icon" cx="26" cy="26" r="16"></circle>
144
+ <line class="svg-icon" x1="38" y1="38" x2="52" y2="52"></line>
145
+ </svg>
146
+ </div>
147
+ <div class="icon-btn" aria-label="Bag">
148
+ <svg width="60" height="60" viewBox="0 0 60 60">
149
+ <path class="svg-icon" d="M16 22 H44 V46 H16 Z"></path>
150
+ <path class="svg-icon" d="M22 22 C22 16 38 16 38 22"></path>
151
+ </svg>
152
+ </div>
153
+ <div class="bag-count">2</div>
154
+ </div>
155
+ </div>
156
+
157
+ <!-- Main content -->
158
+ <div class="content">
159
+ <div class="hero-area">
160
+ <div class="img-placeholder">[IMG: Pink Sprinting Shoe]</div>
161
+ </div>
162
+
163
+ <div class="progress-wrap">
164
+ <div class="progress-bar"></div>
165
+ </div>
166
+
167
+ <div class="thumb-and-info">
168
+ <div class="thumb">[IMG: Shoe Thumbnail]</div>
169
+
170
+ <div class="info">
171
+ <div class="subtitle">Athletics Sprinting Spikes</div>
172
+ <div class="product-name">Nike Rival Sprint</div>
173
+ </div>
174
+ </div>
175
+ </div>
176
+
177
+ <!-- Bottom home indicator -->
178
+ <div class="home-indicator"></div>
179
+ </div>
180
+ </body>
181
+ </html>
code/14166/14166_6.html ADDED
@@ -0,0 +1,160 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>Nike Rival Sprint - Product Detail</title>
6
+ <style>
7
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
8
+ #render-target {
9
+ width: 1080px; height: 2400px; position: relative; overflow: hidden;
10
+ background: #ffffff; border-radius: 20px;
11
+ }
12
+ /* Status bar */
13
+ .status-bar {
14
+ height: 110px; background: #000; color: #fff; display: flex; align-items: center;
15
+ padding: 0 40px; font-size: 36px; letter-spacing: 1px;
16
+ }
17
+ .status-left { flex: 1; }
18
+ .status-right { display: flex; gap: 24px; align-items: center; }
19
+ .status-dot { width: 10px; height: 10px; background: #fff; border-radius: 50%; opacity: 0.8; }
20
+ /* Header */
21
+ .header {
22
+ height: 160px; display: flex; align-items: center; padding: 0 40px; border-bottom: 1px solid #e9e9e9;
23
+ }
24
+ .header .title { font-size: 48px; font-weight: 600; color: #111; margin-left: 24px; }
25
+ .header-left { display: flex; align-items: center; }
26
+ .header-right { margin-left: auto; display: flex; align-items: center; gap: 40px; }
27
+ .icon-btn { width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; }
28
+ .bag { position: relative; }
29
+ .badge {
30
+ position: absolute; right: -6px; top: -6px; width: 56px; height: 56px;
31
+ border: 2px solid #111; border-radius: 14px; display: flex; align-items: center; justify-content: center;
32
+ font-size: 32px; color: #111; background: #fff;
33
+ }
34
+ /* Carousel indicator */
35
+ .carousel {
36
+ height: 180px; background: #f4f4f4; display: flex; align-items: center; justify-content: center;
37
+ border-bottom: 1px solid #eee;
38
+ }
39
+ .progress-track {
40
+ width: 900px; height: 6px; background: #d6d6d6; border-radius: 3px; position: relative;
41
+ }
42
+ .progress-thumb {
43
+ position: absolute; left: 140px; top: -8px; width: 140px; height: 6px; background: #555; border-radius: 3px;
44
+ }
45
+ /* Content */
46
+ .content { padding: 40px; }
47
+ .product-image {
48
+ width: 640px; height: 440px; background: #E0E0E0; border: 1px solid #BDBDBD;
49
+ display: flex; align-items: center; justify-content: center; color: #757575; font-size: 32px;
50
+ margin: 40px 0 40px 20px;
51
+ }
52
+ .category { font-size: 36px; color: #666; margin: 20px 20px; }
53
+ .product-title { font-size: 72px; font-weight: 700; color: #111; margin: 10px 20px 30px; }
54
+ .price-row { display: flex; align-items: baseline; gap: 20px; margin: 0 20px; }
55
+ .price { font-size: 44px; color: #111; }
56
+ .mrp { font-size: 44px; color: #9e9e9e; }
57
+ .discount { font-size: 40px; color: #22a652; margin: 20px 20px 30px; }
58
+ .tax-note { font-size: 34px; color: #9e9e9e; margin: 16px 20px 40px; }
59
+ .desc {
60
+ font-size: 40px; color: #222; line-height: 1.6; margin: 40px 20px 40px;
61
+ max-width: 980px;
62
+ }
63
+ .bullets { font-size: 38px; color: #222; margin: 20px 20px 20px; line-height: 1.6; }
64
+ /* Bottom home indicator area */
65
+ .bottom-area {
66
+ position: absolute; left: 0; right: 0; bottom: 0; height: 150px; background: #000;
67
+ display: flex; align-items: center; justify-content: center;
68
+ }
69
+ .home-indicator {
70
+ width: 240px; height: 14px; background: #cfcfcf; border-radius: 8px; opacity: 0.8;
71
+ }
72
+ /* SVG styles */
73
+ svg { display: block; }
74
+ </style>
75
+ </head>
76
+ <body>
77
+ <div id="render-target">
78
+ <!-- Status bar -->
79
+ <div class="status-bar">
80
+ <div class="status-left">3:26</div>
81
+ <div class="status-right">
82
+ <div class="status-dot"></div>
83
+ <div class="status-dot"></div>
84
+ <div class="status-dot"></div>
85
+ <div class="status-dot"></div>
86
+ <svg width="36" height="36" viewBox="0 0 24 24" fill="#fff" aria-hidden="true">
87
+ <circle cx="12" cy="12" r="10" fill="none" stroke="#fff" stroke-width="2"></circle>
88
+ <polygon points="12,6 9,13 13,13 12,18 15,11 11,11" fill="#fff"></polygon>
89
+ </svg>
90
+ </div>
91
+ </div>
92
+
93
+ <!-- Header -->
94
+ <div class="header">
95
+ <div class="header-left">
96
+ <div class="icon-btn">
97
+ <svg width="48" height="48" viewBox="0 0 24 24" aria-hidden="true">
98
+ <path d="M15 18l-6-6 6-6" stroke="#111" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"></path>
99
+ </svg>
100
+ </div>
101
+ <div class="title">Nike Rival Sprint</div>
102
+ </div>
103
+ <div class="header-right">
104
+ <div class="icon-btn">
105
+ <svg width="48" height="48" viewBox="0 0 24 24" aria-hidden="true">
106
+ <circle cx="11" cy="11" r="6.5" stroke="#111" stroke-width="2" fill="none"></circle>
107
+ <path d="M20 20l-4-4" stroke="#111" stroke-width="2" fill="none" stroke-linecap="round"></path>
108
+ </svg>
109
+ </div>
110
+ <div class="icon-btn bag">
111
+ <svg width="48" height="48" viewBox="0 0 24 24" aria-hidden="true">
112
+ <path d="M6 8h12l-1 10H7L6 8z" stroke="#111" stroke-width="2" fill="none" stroke-linejoin="round"></path>
113
+ <path d="M9 8a3 3 0 0 1 6 0" stroke="#111" stroke-width="2" fill="none"></path>
114
+ </svg>
115
+ <div class="badge">2</div>
116
+ </div>
117
+ </div>
118
+ </div>
119
+
120
+ <!-- Carousel indicator -->
121
+ <div class="carousel">
122
+ <div class="progress-track">
123
+ <div class="progress-thumb"></div>
124
+ </div>
125
+ </div>
126
+
127
+ <!-- Content -->
128
+ <div class="content">
129
+ <div class="product-image">[IMG: Pink Sprinting Shoe]</div>
130
+
131
+ <div class="category">Athletics Sprinting Spikes</div>
132
+ <div class="product-title">Nike Rival Sprint</div>
133
+
134
+ <div class="price-row">
135
+ <div class="price">₹ 5 407.00</div>
136
+ <div class="mrp">MRP : ₹ 5 695.00</div>
137
+ </div>
138
+
139
+ <div class="discount">5% off</div>
140
+
141
+ <div class="tax-note">Incl. of taxes<br>(Also includes all applicable duties)</div>
142
+
143
+ <div class="desc">
144
+ Race out of the starting blocks and finish with a flurry in a spike designed with speed in mind. Its robust, reinforced yet lightweight upper provides the key containment necessary to attack the turns and straightaways around the oval. Feel the power and drive of the forefoot plate as you get up on your toes and hightail it towards the tape.
145
+ </div>
146
+
147
+ <div class="bullets">
148
+ • Shown: Hyper Pink/Laser Orange/Black<br>
149
+ • Style: DC8753-600<br>
150
+ • Country/Region of Origin: Vietnam
151
+ </div>
152
+ </div>
153
+
154
+ <!-- Bottom home indicator -->
155
+ <div class="bottom-area">
156
+ <div class="home-indicator"></div>
157
+ </div>
158
+ </div>
159
+ </body>
160
+ </html>
code/14166/14166_7.html ADDED
@@ -0,0 +1,204 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1">
6
+ <title>Product Detail - Nike Rival Sprint</title>
7
+ <style>
8
+ body { margin:0; padding:0; background:transparent; }
9
+ #render-target {
10
+ width:1080px; height:2400px;
11
+ position:relative; overflow:hidden;
12
+ background:#fff; border-radius:0;
13
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
14
+ color:#111;
15
+ }
16
+ .status-bar {
17
+ position:absolute; top:0; left:0; width:100%; height:120px;
18
+ background:#000; color:#fff;
19
+ display:flex; align-items:center; justify-content:space-between;
20
+ padding:0 40px; box-sizing:border-box;
21
+ font-weight:600; font-size:42px;
22
+ }
23
+ .status-left { display:flex; align-items:center; gap:28px; }
24
+ .status-right { display:flex; align-items:center; gap:28px; }
25
+ .dot {
26
+ width:22px; height:22px; background:#fff; border-radius:50%;
27
+ opacity:0.8;
28
+ }
29
+ .wifi-icon, .battery-icon { width:44px; height:44px; }
30
+ .header {
31
+ position:absolute; top:120px; left:0; right:0; height:160px;
32
+ display:flex; align-items:center; justify-content:space-between;
33
+ padding:0 48px; box-sizing:border-box;
34
+ border-bottom:1px solid #eee;
35
+ }
36
+ .title {
37
+ font-size:54px; font-weight:700; letter-spacing:0.2px;
38
+ }
39
+ .header-left { display:flex; align-items:center; gap:28px; }
40
+ .header-right { display:flex; align-items:center; gap:40px; }
41
+ .icon-btn { width:60px; height:60px; }
42
+ .bag-wrap { position:relative; width:60px; height:60px; }
43
+ .bag-badge {
44
+ position:absolute; top:-10px; right:-10px;
45
+ width:52px; height:52px; background:#fff;
46
+ border:2px solid #111; border-radius:12px;
47
+ display:flex; align-items:center; justify-content:center;
48
+ font-size:32px; font-weight:700;
49
+ }
50
+
51
+ .content {
52
+ position:absolute; top:280px; left:0; right:0; bottom:0;
53
+ padding:40px 54px 220px; box-sizing:border-box;
54
+ overflow:hidden;
55
+ }
56
+ .subtle { color:#9E9E9E; font-size:38px; }
57
+ .subtle small { display:block; color:#B0B0B0; margin-top:8px; }
58
+ .desc {
59
+ margin-top:56px; font-size:42px; line-height:1.55; color:#222;
60
+ }
61
+ .bullets {
62
+ margin-top:40px; margin-left:10px;
63
+ font-size:40px; line-height:1.6; color:#222;
64
+ }
65
+ .bullets li { margin:10px 0; }
66
+ .link {
67
+ margin-top:48px; font-size:40px; color:#9E9E9E;
68
+ }
69
+
70
+ .pill {
71
+ height:160px; border-radius:90px;
72
+ display:flex; align-items:center; justify-content:center;
73
+ font-size:46px; font-weight:600;
74
+ margin:36px 0;
75
+ }
76
+ .pill.outlined { border:2px solid #E0E0E0; background:#fff; color:#111; }
77
+ .pill.filled { background:#111; color:#fff; }
78
+ .pill .chev {
79
+ margin-left:18px;
80
+ }
81
+ .favorite-row {
82
+ display:flex; align-items:center; justify-content:center; gap:16px;
83
+ }
84
+ .divider {
85
+ width:100%; height:2px; background:#eee; margin:40px 0 24px;
86
+ }
87
+ .section-row {
88
+ display:flex; align-items:center; justify-content:space-between;
89
+ padding:18px 6px; font-size:46px; font-weight:600;
90
+ }
91
+
92
+ .home-indicator {
93
+ position:absolute; left:50%; transform:translateX(-50%);
94
+ bottom:28px; width:360px; height:16px; background:#CFCFCF; border-radius:10px;
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">
104
+ <div>3:26</div>
105
+ <div class="dot"></div>
106
+ <div class="dot"></div>
107
+ <div class="dot"></div>
108
+ <div class="dot"></div>
109
+ <div class="dot" style="opacity:0.5;"></div>
110
+ </div>
111
+ <div class="status-right">
112
+ <!-- Simple wifi icon -->
113
+ <svg class="wifi-icon" viewBox="0 0 48 48" fill="none" stroke="#fff" stroke-width="4">
114
+ <path d="M6 18c9-8 27-8 36 0"/>
115
+ <path d="M12 24c6-5 18-5 24 0"/>
116
+ <path d="M18 30c3-3 9-3 12 0"/>
117
+ <circle cx="24" cy="36" r="2" fill="#fff"></circle>
118
+ </svg>
119
+ <!-- Simple battery icon -->
120
+ <svg class="battery-icon" viewBox="0 0 48 48" fill="none" stroke="#fff" stroke-width="4">
121
+ <rect x="4" y="10" width="34" height="20" rx="4"></rect>
122
+ <rect x="40" y="16" width="4" height="8" rx="2" fill="#fff" stroke="#fff"></rect>
123
+ <rect x="8" y="14" width="26" height="12" fill="#fff" stroke="none"></rect>
124
+ </svg>
125
+ </div>
126
+ </div>
127
+
128
+ <!-- Header -->
129
+ <div class="header">
130
+ <div class="header-left">
131
+ <svg class="icon-btn" viewBox="0 0 48 48" fill="none" stroke="#111" stroke-width="4" stroke-linecap="round" stroke-linejoin="round">
132
+ <path d="M28 8 L12 24 L28 40"></path>
133
+ </svg>
134
+ <div class="title">Nike Rival Sprint</div>
135
+ </div>
136
+ <div class="header-right">
137
+ <svg class="icon-btn" viewBox="0 0 48 48" fill="none" stroke="#111" stroke-width="4" stroke-linecap="round">
138
+ <circle cx="20" cy="20" r="12"></circle>
139
+ <path d="M32 32 L44 44"></path>
140
+ </svg>
141
+ <div class="bag-wrap">
142
+ <svg class="icon-btn" viewBox="0 0 48 48" fill="none" stroke="#111" stroke-width="4" stroke-linecap="round" stroke-linejoin="round">
143
+ <path d="M12 16h24v22H12z"></path>
144
+ <path d="M16 16c0-6 16-6 16 0"></path>
145
+ </svg>
146
+ <div class="bag-badge">2</div>
147
+ </div>
148
+ </div>
149
+ </div>
150
+
151
+ <!-- Content -->
152
+ <div class="content">
153
+ <div class="subtle">
154
+ Incl. of taxes
155
+ <small>(Also includes all applicable duties)</small>
156
+ </div>
157
+
158
+ <div class="desc">
159
+ Race out of the starting blocks and finish with a flurry in a spike designed with speed in mind. Its robust, reinforced yet lightweight upper provides the key containment necessary to attack the turns and straightaways around the oval. Feel the power and drive of the forefoot plate as you get up on your toes and hightail it towards the tape.
160
+ </div>
161
+
162
+ <ul class="bullets">
163
+ <li>Shown: Hyper Pink/Laser Orange/Black</li>
164
+ <li>Style: DC8753-600</li>
165
+ <li>Country/Region of Origin: Vietnam</li>
166
+ </ul>
167
+
168
+ <div class="link">View Product Details</div>
169
+
170
+ <!-- Select Size -->
171
+ <div class="pill outlined">
172
+ <div>Select Size</div>
173
+ <svg class="chev" width="44" height="44" viewBox="0 0 48 48" fill="none" stroke="#111" stroke-width="4" stroke-linecap="round" stroke-linejoin="round">
174
+ <path d="M12 18 L24 30 L36 18"></path>
175
+ </svg>
176
+ </div>
177
+
178
+ <!-- Add to Bag -->
179
+ <div class="pill filled">Add to Bag</div>
180
+
181
+ <!-- Favorite -->
182
+ <div class="pill outlined favorite-row">
183
+ <div>Favorite</div>
184
+ <svg width="56" height="56" viewBox="0 0 48 48" fill="none" stroke="#111" stroke-width="4" stroke-linecap="round" stroke-linejoin="round">
185
+ <path d="M24 40s-14-9-14-18c0-5 4-9 9-9 4 0 5 2 5 2s1-2 5-2c5 0 9 4 9 9 0 9-14 18-14 18z"></path>
186
+ </svg>
187
+ </div>
188
+
189
+ <div class="divider"></div>
190
+
191
+ <div class="section-row">
192
+ <div>Size &amp; Fit</div>
193
+ <svg width="44" height="44" viewBox="0 0 48 48" fill="none" stroke="#111" stroke-width="4" stroke-linecap="round" stroke-linejoin="round">
194
+ <path d="M12 18 L24 30 L36 18"></path>
195
+ </svg>
196
+ </div>
197
+ </div>
198
+
199
+ <!-- Home indicator -->
200
+ <div class="home-indicator"></div>
201
+
202
+ </div>
203
+ </body>
204
+ </html>
code/14166/14166_8.html ADDED
@@ -0,0 +1,181 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>Sizes Sheet</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: #000000;
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: #000;
24
+ color: #fff;
25
+ }
26
+ .status-time {
27
+ position: absolute;
28
+ left: 0;
29
+ right: 0;
30
+ top: 24px;
31
+ text-align: center;
32
+ font-size: 46px;
33
+ font-weight: 600;
34
+ letter-spacing: 1px;
35
+ }
36
+ .status-icons {
37
+ position: absolute;
38
+ right: 30px;
39
+ top: 38px;
40
+ display: flex;
41
+ align-items: center;
42
+ gap: 22px;
43
+ }
44
+ .dot {
45
+ width: 16px;
46
+ height: 16px;
47
+ background: #fff;
48
+ border-radius: 50%;
49
+ opacity: 0.9;
50
+ }
51
+ .wifi svg, .battery svg {
52
+ display: block;
53
+ }
54
+
55
+ /* Bottom sheet */
56
+ .sheet {
57
+ position: absolute;
58
+ top: 120px;
59
+ left: 0;
60
+ width: 1080px;
61
+ height: 2140px;
62
+ background: #ffffff;
63
+ border-top-left-radius: 48px;
64
+ border-top-right-radius: 48px;
65
+ box-shadow: 0 -10px 30px rgba(0,0,0,0.25);
66
+ overflow: hidden;
67
+ }
68
+ .sheet-header {
69
+ display: flex;
70
+ align-items: center;
71
+ justify-content: space-between;
72
+ padding: 44px 48px;
73
+ border-bottom: 1px solid #EEEEEE;
74
+ }
75
+ .sheet-title {
76
+ font-size: 52px;
77
+ font-weight: 700;
78
+ color: #222;
79
+ }
80
+ .sheet-cancel {
81
+ font-size: 44px;
82
+ font-weight: 600;
83
+ color: #9E9E9E;
84
+ }
85
+
86
+ .sheet-list {
87
+ width: 100%;
88
+ }
89
+ .row {
90
+ display: flex;
91
+ align-items: center;
92
+ height: 160px;
93
+ padding: 0 48px;
94
+ border-bottom: 1px solid #E6E6E6;
95
+ font-size: 44px;
96
+ color: #666666;
97
+ }
98
+ .row.disabled {
99
+ background: #F3F3F3;
100
+ color: #9A9A9A;
101
+ }
102
+ .row.active {
103
+ background: #FFFFFF;
104
+ color: #111111;
105
+ font-weight: 700;
106
+ }
107
+
108
+ /* Home indicator */
109
+ .home-indicator {
110
+ position: absolute;
111
+ bottom: 26px;
112
+ left: 50%;
113
+ transform: translateX(-50%);
114
+ width: 300px;
115
+ height: 12px;
116
+ background: #D0D0D0;
117
+ border-radius: 8px;
118
+ opacity: 0.85;
119
+ }
120
+ </style>
121
+ </head>
122
+ <body>
123
+ <div id="render-target">
124
+ <!-- Status Bar -->
125
+ <div class="status-bar">
126
+ <div class="status-time">3:27</div>
127
+ <div class="status-icons">
128
+ <div class="dot"></div>
129
+ <div class="dot"></div>
130
+ <div class="dot"></div>
131
+ <div class="dot"></div>
132
+ <div class="dot" style="margin-right:8px;"></div>
133
+ <!-- Small separator dot -->
134
+ <div class="dot" style="width:10px;height:10px;opacity:0.7;"></div>
135
+ <!-- WiFi icon -->
136
+ <div class="wifi">
137
+ <svg width="44" height="44" viewBox="0 0 44 44" fill="none">
138
+ <path d="M4 16c10-10 26-10 36 0" stroke="#fff" stroke-width="3" stroke-linecap="round"/>
139
+ <path d="M10 22c7-7 17-7 24 0" stroke="#fff" stroke-width="3" stroke-linecap="round"/>
140
+ <path d="M16 28c4-4 8-4 12 0" stroke="#fff" stroke-width="3" stroke-linecap="round"/>
141
+ <circle cx="22" cy="34" r="2.8" fill="#fff"/>
142
+ </svg>
143
+ </div>
144
+ <!-- Battery icon -->
145
+ <div class="battery">
146
+ <svg width="50" height="40" viewBox="0 0 50 40" fill="none">
147
+ <rect x="2" y="8" width="40" height="24" rx="4" stroke="#fff" stroke-width="3"/>
148
+ <rect x="6" y="12" width="28" height="16" rx="2" fill="#fff"/>
149
+ <rect x="44" y="14" width="4" height="12" rx="1" fill="#fff"/>
150
+ </svg>
151
+ </div>
152
+ </div>
153
+ </div>
154
+
155
+ <!-- Bottom Sheet -->
156
+ <div class="sheet">
157
+ <div class="sheet-header">
158
+ <div class="sheet-title">Sizes</div>
159
+ <div class="sheet-cancel">Cancel</div>
160
+ </div>
161
+
162
+ <div class="sheet-list">
163
+ <div class="row disabled">UK 5.5</div>
164
+ <div class="row disabled">UK 6 (EU 39)</div>
165
+ <div class="row disabled">UK 6 (EU 40)</div>
166
+ <div class="row disabled">UK 6.5</div>
167
+ <div class="row disabled">UK 7</div>
168
+ <div class="row disabled">UK 7.5</div>
169
+
170
+ <div class="row active">UK 8</div>
171
+ <div class="row active">UK 8.5</div>
172
+ <div class="row active">UK 9</div>
173
+ <div class="row active">UK 9.5</div>
174
+ </div>
175
+ </div>
176
+
177
+ <!-- Home indicator -->
178
+ <div class="home-indicator"></div>
179
+ </div>
180
+ </body>
181
+ </html>
code/14166/14166_9.html ADDED
@@ -0,0 +1,194 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Sizes Selector</title>
7
+ <style>
8
+ body {
9
+ margin: 0;
10
+ padding: 0;
11
+ background: transparent;
12
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
13
+ }
14
+ #render-target {
15
+ width: 1080px;
16
+ height: 2400px;
17
+ position: relative;
18
+ overflow: hidden;
19
+ background: #000;
20
+ }
21
+
22
+ /* Top status bar */
23
+ .status-bar {
24
+ position: absolute;
25
+ top: 0;
26
+ left: 0;
27
+ width: 1080px;
28
+ height: 110px;
29
+ background: #000;
30
+ color: #fff;
31
+ }
32
+ .status-inner {
33
+ height: 100%;
34
+ display: flex;
35
+ align-items: center;
36
+ justify-content: center;
37
+ position: relative;
38
+ font-size: 34px;
39
+ letter-spacing: 1px;
40
+ }
41
+ .status-icons {
42
+ position: absolute;
43
+ right: 32px;
44
+ top: 50%;
45
+ transform: translateY(-50%);
46
+ display: flex;
47
+ align-items: center;
48
+ gap: 20px;
49
+ }
50
+ .dot {
51
+ width: 10px;
52
+ height: 10px;
53
+ background: #fff;
54
+ border-radius: 50%;
55
+ opacity: 0.9;
56
+ }
57
+ .wifi-icon, .battery-icon {
58
+ display: inline-block;
59
+ }
60
+ .wifi-icon {
61
+ width: 34px;
62
+ height: 24px;
63
+ }
64
+ .battery-icon {
65
+ width: 40px;
66
+ height: 24px;
67
+ }
68
+
69
+ /* Bottom sheet / content */
70
+ .sheet {
71
+ position: absolute;
72
+ top: 110px;
73
+ left: 0;
74
+ width: 1080px;
75
+ height: 2140px;
76
+ background: #ffffff;
77
+ border-top-left-radius: 28px;
78
+ border-top-right-radius: 28px;
79
+ box-shadow: 0 -2px 8px rgba(0,0,0,0.12);
80
+ overflow: hidden;
81
+ }
82
+ .header {
83
+ height: 150px;
84
+ display: flex;
85
+ align-items: center;
86
+ justify-content: space-between;
87
+ padding: 0 40px;
88
+ }
89
+ .title {
90
+ font-size: 50px;
91
+ font-weight: 600;
92
+ color: #1f1f1f;
93
+ }
94
+ .cancel {
95
+ font-size: 40px;
96
+ color: #9e9e9e;
97
+ font-weight: 500;
98
+ }
99
+
100
+ .list {
101
+ width: 100%;
102
+ }
103
+ .item {
104
+ height: 170px;
105
+ display: flex;
106
+ align-items: center;
107
+ padding: 0 40px;
108
+ border-top: 1px solid #e6e6e6;
109
+ font-size: 42px;
110
+ color: #2c2c2c;
111
+ background: #fff;
112
+ }
113
+ .item:first-child {
114
+ background: #eeeeee;
115
+ color: #9a9a9a;
116
+ border-top-color: #dcdcdc;
117
+ }
118
+
119
+ /* Bottom navigation bar */
120
+ .nav-bar {
121
+ position: absolute;
122
+ bottom: 0;
123
+ left: 0;
124
+ width: 1080px;
125
+ height: 130px;
126
+ background: #000;
127
+ }
128
+ .home-indicator {
129
+ width: 320px;
130
+ height: 14px;
131
+ background: #d8d8d8;
132
+ border-radius: 7px;
133
+ position: absolute;
134
+ left: 50%;
135
+ bottom: 36px;
136
+ transform: translateX(-50%);
137
+ opacity: 0.85;
138
+ }
139
+ </style>
140
+ </head>
141
+ <body>
142
+ <div id="render-target">
143
+ <!-- Status Bar -->
144
+ <div class="status-bar">
145
+ <div class="status-inner">
146
+ 3:27
147
+ <div class="status-icons">
148
+ <div class="dot"></div>
149
+ <div class="dot"></div>
150
+ <div class="dot"></div>
151
+ <div class="dot"></div>
152
+ <svg class="wifi-icon" viewBox="0 0 24 24" fill="none">
153
+ <path d="M2 8c5-4 15-4 20 0" stroke="#fff" stroke-width="2" stroke-linecap="round"/>
154
+ <path d="M6 12c3-3 9-3 12 0" stroke="#fff" stroke-width="2" stroke-linecap="round"/>
155
+ <path d="M10 16c2-2 6-2 8 0" stroke="#fff" stroke-width="2" stroke-linecap="round"/>
156
+ <circle cx="18" cy="20" r="1.5" fill="#fff"/>
157
+ </svg>
158
+ <svg class="battery-icon" viewBox="0 0 28 16" fill="none">
159
+ <rect x="1" y="1" width="22" height="14" rx="3" stroke="#fff" stroke-width="2"/>
160
+ <rect x="4" y="4" width="16" height="8" rx="2" fill="#fff"/>
161
+ <rect x="24" y="5" width="3" height="6" rx="1" fill="#fff"/>
162
+ </svg>
163
+ </div>
164
+ </div>
165
+ </div>
166
+
167
+ <!-- Content Sheet -->
168
+ <div class="sheet">
169
+ <div class="header">
170
+ <div class="title">Sizes</div>
171
+ <div class="cancel">Cancel</div>
172
+ </div>
173
+
174
+ <div class="list">
175
+ <div class="item">UK 7.5</div>
176
+ <div class="item">UK 8</div>
177
+ <div class="item">UK 8.5</div>
178
+ <div class="item">UK 9</div>
179
+ <div class="item">UK 9.5</div>
180
+ <div class="item">UK 10</div>
181
+ <div class="item">UK 10.5</div>
182
+ <div class="item">UK 11</div>
183
+ <div class="item">UK 11.5</div>
184
+ <div class="item">UK 12</div>
185
+ </div>
186
+ </div>
187
+
188
+ <!-- Bottom Navigation Bar -->
189
+ <div class="nav-bar">
190
+ <div class="home-indicator"></div>
191
+ </div>
192
+ </div>
193
+ </body>
194
+ </html>
code/14167/14167_0.html ADDED
@@ -0,0 +1,340 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
5
+ <title>Google Mobile 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
+ overflow: hidden;
11
+ width: 1080px;
12
+ height: 2400px;
13
+ background: #121212;
14
+ color: #eaeaea;
15
+ }
16
+
17
+ /* Status bar */
18
+ .status-bar {
19
+ position: absolute;
20
+ top: 0;
21
+ left: 0;
22
+ width: 1080px;
23
+ height: 64px;
24
+ padding: 0 30px;
25
+ box-sizing: border-box;
26
+ display: flex;
27
+ align-items: center;
28
+ justify-content: space-between;
29
+ color: #eaeaea;
30
+ font-weight: 600;
31
+ letter-spacing: 0.5px;
32
+ }
33
+ .status-right {
34
+ display: flex;
35
+ align-items: center;
36
+ gap: 22px;
37
+ }
38
+ .dot { width: 8px; height: 8px; background:#9e9e9e; border-radius:50%; display:inline-block; }
39
+
40
+ /* Top app bar with URL field */
41
+ .top-bar {
42
+ position: absolute;
43
+ top: 64px;
44
+ left: 0;
45
+ width: 1080px;
46
+ height: 100px;
47
+ display: flex;
48
+ align-items: center;
49
+ padding: 0 24px;
50
+ box-sizing: border-box;
51
+ gap: 18px;
52
+ }
53
+ .icon-btn {
54
+ width: 64px; height: 64px; display:flex; align-items:center; justify-content:center; border-radius: 14px;
55
+ color:#cfcfcf;
56
+ }
57
+ .url-field {
58
+ flex: 1;
59
+ height: 78px;
60
+ background:#1f1f1f;
61
+ border-radius: 40px;
62
+ display:flex;
63
+ align-items:center;
64
+ padding: 0 28px;
65
+ box-sizing:border-box;
66
+ gap: 18px;
67
+ border: 1px solid #2a2a2a;
68
+ }
69
+ .url-text {
70
+ color:#cfd8dc;
71
+ font-size: 30px;
72
+ letter-spacing: 0.3px;
73
+ white-space: nowrap;
74
+ overflow: hidden;
75
+ text-overflow: ellipsis;
76
+ }
77
+ .pill {
78
+ min-width: 62px; height: 62px; background:#1f1f1f; border:1px solid #2a2a2a; border-radius:18px;
79
+ display:flex; align-items:center; justify-content:center; color:#eaeaea; font-weight:700;
80
+ }
81
+
82
+ /* Tabs + menu */
83
+ .tabs-row {
84
+ position: absolute;
85
+ top: 182px;
86
+ width: 100%;
87
+ height: 92px;
88
+ display: flex;
89
+ align-items: center;
90
+ padding: 0 30px;
91
+ box-sizing: border-box;
92
+ color:#cfcfcf;
93
+ }
94
+ .hamburger { margin-right: 12px; }
95
+ .tabs {
96
+ display:flex; align-items:center; gap: 40px;
97
+ }
98
+ .tab {
99
+ font-size: 34px; color:#9fa8da; padding: 8px 6px; position: relative;
100
+ }
101
+ .tab.active { color:#ffffff; font-weight:700; }
102
+ .tab.active::after {
103
+ content:""; position:absolute; left:0; bottom:-16px; width:100%; height:6px; background:#3f51b5; border-radius:4px;
104
+ }
105
+ .tabs-row-right {
106
+ margin-left:auto; display:flex; align-items:center; gap:30px;
107
+ }
108
+ .avatar {
109
+ width: 78px; height: 78px; border-radius: 50%;
110
+ background: #5C6BC0; display:flex; align-items:center; justify-content:center; font-weight:700;
111
+ }
112
+
113
+ /* Google logo */
114
+ .logo {
115
+ position: absolute;
116
+ top: 290px;
117
+ left: 0;
118
+ width: 100%;
119
+ text-align: center;
120
+ font-size: 160px;
121
+ font-weight: 700;
122
+ letter-spacing: -2px;
123
+ color:#eaeaea;
124
+ }
125
+
126
+ /* Search bar */
127
+ .search-wrap {
128
+ position: absolute;
129
+ top: 540px;
130
+ left: 0;
131
+ width: 100%;
132
+ display:flex; justify-content:center;
133
+ }
134
+ .search-bar {
135
+ width: 1000px;
136
+ height: 96px;
137
+ background:#1f1f1f;
138
+ border-radius: 48px;
139
+ border: 1px solid #2a2a2a;
140
+ display:flex; align-items:center; padding:0 26px; box-sizing:border-box; gap:22px;
141
+ }
142
+ .search-input {
143
+ flex:1; color:#bdbdbd; font-size:34px;
144
+ }
145
+ .search-actions { display:flex; align-items:center; gap: 26px; }
146
+
147
+ /* Languages */
148
+ .langs {
149
+ position: absolute;
150
+ top: 680px;
151
+ width: 100%;
152
+ text-align: center;
153
+ color:#bdbdbd;
154
+ font-size: 32px;
155
+ line-height: 56px;
156
+ }
157
+ .lang-links { margin-top: 12px; color:#8ab4f8; }
158
+ .lang-links span { margin: 0 18px; }
159
+
160
+ /* Trending section */
161
+ .trend-wrap {
162
+ position: absolute;
163
+ top: 890px;
164
+ left: 0;
165
+ width: 100%;
166
+ padding: 0 30px;
167
+ box-sizing: border-box;
168
+ }
169
+ .trend-header {
170
+ display:flex; align-items:center; justify-content:space-between;
171
+ color:#ffffff; font-size:54px; font-weight:700; margin-bottom: 20px;
172
+ }
173
+ .trend-list {
174
+ border-top:1px solid #2a2a2a;
175
+ }
176
+ .trend-item {
177
+ display:flex; align-items:center; gap:28px;
178
+ height: 120px; border-bottom:1px solid #2a2a2a; color:#e0e0e0; font-size:42px;
179
+ }
180
+ .trend-arrow {
181
+ width: 40px; height: 40px; color:#cfd8dc;
182
+ }
183
+
184
+ /* Bottom gesture bar */
185
+ .home-indicator {
186
+ position: absolute;
187
+ bottom: 30px;
188
+ left: 50%;
189
+ transform: translateX(-50%);
190
+ width: 340px; height: 12px; border-radius: 8px; background:#2e2e2e;
191
+ }
192
+
193
+ /* Helper: simple icon styles */
194
+ svg { display:block; }
195
+ </style>
196
+ </head>
197
+ <body>
198
+ <div id="render-target">
199
+
200
+ <!-- Status Bar -->
201
+ <div class="status-bar">
202
+ <div style="font-size:34px;">10:22</div>
203
+ <div class="status-right">
204
+ <span class="dot"></span>
205
+ <span class="dot"></span>
206
+ <span class="dot"></span>
207
+ <!-- WiFi -->
208
+ <svg width="42" height="24" viewBox="0 0 24 24" fill="none" stroke="#eaeaea" stroke-width="2"><path d="M2 8c5-4 15-4 20 0"/><path d="M5 11c4-3 10-3 14 0"/><path d="M8 14c3-2 5-2 8 0"/><circle cx="12" cy="18" r="1.8" fill="#eaeaea"/></svg>
209
+ <!-- Battery -->
210
+ <svg width="50" height="24" viewBox="0 0 30 16" fill="none"><rect x="1" y="2" width="24" height="12" rx="3" stroke="#eaeaea" stroke-width="2"/><rect x="3" y="4" width="18" height="8" rx="2" fill="#eaeaea"/><rect x="25" y="6" width="4" height="4" rx="1" fill="#eaeaea"/></svg>
211
+ </div>
212
+ </div>
213
+
214
+ <!-- Top URL bar -->
215
+ <div class="top-bar">
216
+ <div class="icon-btn" title="Home">
217
+ <svg width="40" height="40" viewBox="0 0 24 24" fill="#cfcfcf"><path d="M12 3l9 8h-3v9h-12v-9h-3z"/></svg>
218
+ </div>
219
+ <div class="url-field">
220
+ <svg width="34" height="34" viewBox="0 0 24 24" fill="none" stroke="#90caf9" stroke-width="2">
221
+ <path d="M12 17a5 5 0 100-10 5 5 0 000 10z"/><path d="M21 21l-4.3-4.3"/>
222
+ </svg>
223
+ <div class="url-text">google.com/?sa=X&amp;ved=</div>
224
+ </div>
225
+ <div class="icon-btn" title="New Tab">
226
+ <svg width="40" height="40" viewBox="0 0 24 24" fill="#cfcfcf"><path d="M11 11V5h2v6h6v2h-6v6h-2v-6H5v-2z"/></svg>
227
+ </div>
228
+ <div class="pill">5</div>
229
+ <div class="icon-btn" title="Share">
230
+ <svg width="40" height="40" viewBox="0 0 24 24" fill="#cfcfcf"><path d="M4 12v7h16v-7h2v9H2v-9h2z"/><path d="M12 3l6 6h-4v6h-4V9H6l6-6z"/></svg>
231
+ </div>
232
+ </div>
233
+
234
+ <!-- Tabs row -->
235
+ <div class="tabs-row">
236
+ <div class="hamburger icon-btn" style="background:none;">
237
+ <svg width="44" height="44" viewBox="0 0 24 24" fill="#cfcfcf"><path d="M3 6h18v2H3zM3 11h18v2H3zM3 16h18v2H3z"/></svg>
238
+ </div>
239
+ <div class="tabs">
240
+ <div class="tab active">ALL</div>
241
+ <div class="tab">IMAGES</div>
242
+ </div>
243
+ <div class="tabs-row-right">
244
+ <div class="icon-btn" style="background:none;">
245
+ <!-- Google apps grid -->
246
+ <svg width="44" height="44" viewBox="0 0 24 24" fill="#cfcfcf">
247
+ <circle cx="5" cy="5" r="2.2"/><circle cx="12" cy="5" r="2.2"/><circle cx="19" cy="5" r="2.2"/>
248
+ <circle cx="5" cy="12" r="2.2"/><circle cx="12" cy="12" r="2.2"/><circle cx="19" cy="12" r="2.2"/>
249
+ <circle cx="5" cy="19" r="2.2"/><circle cx="12" cy="19" r="2.2"/><circle cx="19" cy="19" r="2.2"/>
250
+ </svg>
251
+ </div>
252
+ <div class="avatar">C</div>
253
+ </div>
254
+ </div>
255
+
256
+ <!-- Google logo -->
257
+ <div class="logo">Google</div>
258
+
259
+ <!-- Search bar -->
260
+ <div class="search-wrap">
261
+ <div class="search-bar">
262
+ <svg width="42" height="42" viewBox="0 0 24 24" fill="none" stroke="#9e9e9e" stroke-width="2">
263
+ <circle cx="11" cy="11" r="7"/><path d="M20 20l-4.2-4.2"/>
264
+ </svg>
265
+ <div class="search-input"></div>
266
+ <div class="search-actions">
267
+ <!-- Microphone -->
268
+ <svg width="40" height="40" viewBox="0 0 24 24" fill="#4fc3f7">
269
+ <path d="M12 14a4 4 0 0 0 4-4V6a4 4 0 0 0-8 0v4a4 4 0 0 0 4 4z"/>
270
+ <path fill="#4fc3f7" d="M5 12h2a5 5 0 0 0 10 0h2a7 7 0 0 1-6 6v3h-2v-3a7 7 0 0 1-6-6z"/>
271
+ </svg>
272
+ <!-- Lens -->
273
+ <svg width="40" height="40" viewBox="0 0 24 24" fill="#8ab4f8">
274
+ <rect x="4" y="4" width="16" height="16" rx="5"/>
275
+ </svg>
276
+ </div>
277
+ </div>
278
+ </div>
279
+
280
+ <!-- Languages -->
281
+ <div class="langs">
282
+ Google offered in:
283
+ <div class="lang-links">
284
+ <span>हिन्दी</span>
285
+ <span>বাংলা</span>
286
+ <span>తెలుగు</span>
287
+ <span>मराठी</span>
288
+ <span>தமிழ்</span>
289
+ <span>ગુજરાતી</span>
290
+ <span>ಕನ್ನಡ</span>
291
+ <span>മലയാളം</span>
292
+ <span>ਪੰਜਾਬੀ</span>
293
+ </div>
294
+ </div>
295
+
296
+ <!-- Trending searches -->
297
+ <div class="trend-wrap">
298
+ <div class="trend-header">
299
+ <div>Trending searches</div>
300
+ <div>
301
+ <svg width="44" height="44" viewBox="0 0 24 24" fill="#cfcfcf"><circle cx="12" cy="5" r="2"/><circle cx="12" cy="12" r="2"/><circle cx="12" cy="19" r="2"/></svg>
302
+ </div>
303
+ </div>
304
+ <div class="trend-list">
305
+ <div class="trend-item">
306
+ <svg class="trend-arrow" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M3 17l7-7 4 4 7-7"/><path d="M14 7h7v7"/></svg>
307
+ <div>apple iphone 16</div>
308
+ </div>
309
+ <div class="trend-item">
310
+ <svg class="trend-arrow" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M3 17l7-7 4 4 7-7"/><path d="M14 7h7v7"/></svg>
311
+ <div>japan airlines plane crash wikipedia</div>
312
+ </div>
313
+ <div class="trend-item">
314
+ <svg class="trend-arrow" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M3 17l7-7 4 4 7-7"/><path d="M14 7h7v7"/></svg>
315
+ <div>three of us movie ending explained</div>
316
+ </div>
317
+ <div class="trend-item">
318
+ <svg class="trend-arrow" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M3 17l7-7 4 4 7-7"/><path d="M14 7h7v7"/></svg>
319
+ <div>cyber kidnapping cases</div>
320
+ </div>
321
+ <div class="trend-item">
322
+ <svg class="trend-arrow" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M3 17l7-7 4 4 7-7"/><path d="M14 7h7v7"/></svg>
323
+ <div>samsung galaxy s24 ultra</div>
324
+ </div>
325
+ <div class="trend-item">
326
+ <svg class="trend-arrow" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M3 17l7-7 4 4 7-7"/><path d="M14 7h7v7"/></svg>
327
+ <div>netflix twins diet documentary</div>
328
+ </div>
329
+ <div class="trend-item">
330
+ <svg class="trend-arrow" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M3 17l7-7 4 4 7-7"/><path d="M14 7h7v7"/></svg>
331
+ <div>iit guwahati student death</div>
332
+ </div>
333
+ </div>
334
+ </div>
335
+
336
+ <!-- Bottom gesture bar -->
337
+ <div class="home-indicator"></div>
338
+ </div>
339
+ </body>
340
+ </html>
code/14167/14167_1.html ADDED
@@ -0,0 +1,279 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
5
+ <title>Limited Time Offer - Nature Guide</title>
6
+ <link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Inter:wght@400;600;700&display=swap" rel="stylesheet">
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: 'Inter', Arial, sans-serif; }
9
+ #render-target {
10
+ width: 1080px;
11
+ height: 2400px;
12
+ position: relative;
13
+ overflow: hidden;
14
+ background: #ffffff;
15
+ }
16
+
17
+ /* Top decorative image area */
18
+ .hero {
19
+ position: absolute;
20
+ top: 0;
21
+ left: 0;
22
+ width: 1080px;
23
+ height: 860px;
24
+ background: #E0E0E0;
25
+ border-bottom: 1px solid #BDBDBD;
26
+ display: flex;
27
+ justify-content: center;
28
+ align-items: center;
29
+ color: #757575;
30
+ letter-spacing: 0.5px;
31
+ font-size: 32px;
32
+ }
33
+ .hero-gradient {
34
+ position: absolute;
35
+ top: 400px;
36
+ left: 0;
37
+ width: 1080px;
38
+ height: 500px;
39
+ background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.85) 45%, #ffffff 100%);
40
+ }
41
+
42
+ /* Status bar (simplified) */
43
+ .status-bar {
44
+ position: absolute;
45
+ top: 30px;
46
+ left: 30px;
47
+ right: 30px;
48
+ height: 48px;
49
+ display: flex;
50
+ align-items: center;
51
+ justify-content: space-between;
52
+ color: #242424;
53
+ font-size: 34px;
54
+ opacity: 0.9;
55
+ }
56
+ .status-icons {
57
+ display: flex;
58
+ align-items: center;
59
+ gap: 20px;
60
+ font-size: 26px;
61
+ color: #3a3a3a;
62
+ }
63
+ .dot {
64
+ width: 18px;
65
+ height: 18px;
66
+ background: #bdbdbd;
67
+ border-radius: 50%;
68
+ display: inline-block;
69
+ }
70
+
71
+ /* Close button */
72
+ .close-btn {
73
+ position: absolute;
74
+ top: 330px;
75
+ left: 40px;
76
+ width: 96px;
77
+ height: 96px;
78
+ background: #ffffff;
79
+ border-radius: 50%;
80
+ box-shadow: 0 6px 14px rgba(0,0,0,0.08);
81
+ display: flex;
82
+ align-items: center;
83
+ justify-content: center;
84
+ border: 1px solid #e5e5e5;
85
+ }
86
+ .close-btn svg { width: 42px; height: 42px; stroke: #4a4a4a; }
87
+
88
+ /* Main content */
89
+ .content {
90
+ position: absolute;
91
+ top: 800px;
92
+ left: 0;
93
+ width: 100%;
94
+ padding: 0 60px;
95
+ text-align: center;
96
+ }
97
+
98
+ .badge {
99
+ display: inline-block;
100
+ padding: 22px 40px;
101
+ background: #F4D08A;
102
+ color: #204E37;
103
+ border-radius: 70px;
104
+ font-weight: 700;
105
+ font-size: 44px;
106
+ letter-spacing: 0.3px;
107
+ }
108
+
109
+ .discount {
110
+ margin-top: 50px;
111
+ font-family: 'Playfair Display', serif;
112
+ font-weight: 900;
113
+ font-size: 360px;
114
+ line-height: 1;
115
+ color: #2F5E45;
116
+ }
117
+
118
+ .subtext {
119
+ margin-top: 40px;
120
+ color: #2F5E45;
121
+ font-weight: 700;
122
+ font-size: 48px;
123
+ line-height: 1.35;
124
+ }
125
+
126
+ /* Timer */
127
+ .timer {
128
+ margin-top: 50px;
129
+ display: flex;
130
+ align-items: center;
131
+ justify-content: center;
132
+ gap: 40px;
133
+ }
134
+ .timer-box {
135
+ width: 240px;
136
+ height: 190px;
137
+ border: 2px solid #C9D6CA;
138
+ border-radius: 60px;
139
+ display: flex;
140
+ align-items: center;
141
+ justify-content: center;
142
+ color: #2F5E45;
143
+ font-weight: 800;
144
+ font-size: 110px;
145
+ }
146
+ .timer-colon {
147
+ font-family: 'Playfair Display', serif;
148
+ color: #2F5E45;
149
+ font-size: 150px;
150
+ font-weight: 700;
151
+ margin-top: -10px;
152
+ }
153
+
154
+ /* Pricing */
155
+ .pricing {
156
+ margin-top: 60px;
157
+ display: flex;
158
+ align-items: baseline;
159
+ justify-content: center;
160
+ gap: 40px;
161
+ }
162
+ .old-price {
163
+ color: #9AA4A0;
164
+ font-size: 48px;
165
+ text-decoration: line-through;
166
+ }
167
+ .new-price {
168
+ color: #2F5E45;
169
+ font-size: 56px;
170
+ font-weight: 800;
171
+ }
172
+
173
+ /* CTA */
174
+ .cta {
175
+ margin: 140px auto 0;
176
+ width: 930px;
177
+ height: 160px;
178
+ background: #3EB26E;
179
+ color: #ffffff;
180
+ border-radius: 100px;
181
+ display: flex;
182
+ align-items: center;
183
+ justify-content: center;
184
+ font-size: 64px;
185
+ font-weight: 800;
186
+ letter-spacing: 0.5px;
187
+ box-shadow: 0 20px 28px rgba(62,178,110,0.25);
188
+ }
189
+
190
+ /* Footer links */
191
+ .footer-links {
192
+ position: absolute;
193
+ bottom: 160px;
194
+ left: 0;
195
+ width: 100%;
196
+ display: flex;
197
+ gap: 80px;
198
+ justify-content: center;
199
+ color: #2F5E45;
200
+ font-size: 42px;
201
+ }
202
+ .footer-links a {
203
+ color: #2F5E45;
204
+ text-decoration: underline;
205
+ font-weight: 600;
206
+ }
207
+
208
+ /* Home indicator */
209
+ .home-indicator {
210
+ position: absolute;
211
+ bottom: 70px;
212
+ left: 50%;
213
+ transform: translateX(-50%);
214
+ width: 320px;
215
+ height: 16px;
216
+ border-radius: 10px;
217
+ background: #bfbfbf;
218
+ opacity: 0.75;
219
+ }
220
+ </style>
221
+ </head>
222
+ <body>
223
+ <div id="render-target">
224
+ <!-- Decorative background image placeholder -->
225
+ <div class="hero">[IMG: Gardening tools and flowers background]</div>
226
+ <div class="hero-gradient"></div>
227
+
228
+ <!-- Simplified status bar -->
229
+ <div class="status-bar">
230
+ <div>10:23</div>
231
+ <div class="status-icons">
232
+ <span class="dot"></span>
233
+ <span class="dot"></span>
234
+ <span class="dot"></span>
235
+ <span style="font-size:28px;">⬤</span>
236
+ </div>
237
+ </div>
238
+
239
+ <!-- Close button -->
240
+ <div class="close-btn" aria-label="Close">
241
+ <svg viewBox="0 0 24 24" fill="none">
242
+ <path d="M5 5 L19 19 M19 5 L5 19" stroke-width="2.5" stroke-linecap="round"/>
243
+ </svg>
244
+ </div>
245
+
246
+ <!-- Main content -->
247
+ <div class="content">
248
+ <div class="badge">Limited Time Offer</div>
249
+
250
+ <div class="discount">-50%</div>
251
+
252
+ <div class="subtext">
253
+ Unlimited Access<br/>
254
+ to Your Personal Nature Guide
255
+ </div>
256
+
257
+ <div class="timer">
258
+ <div class="timer-box">58</div>
259
+ <div class="timer-colon">:</div>
260
+ <div class="timer-box">47</div>
261
+ </div>
262
+
263
+ <div class="pricing">
264
+ <div class="old-price">₹1,800.00</div>
265
+ <div class="new-price">₹850.00/year</div>
266
+ </div>
267
+
268
+ <div class="cta">Subscribe now</div>
269
+ </div>
270
+
271
+ <div class="footer-links">
272
+ <a href="#">Terms of Use</a>
273
+ <a href="#">Privacy Policy</a>
274
+ </div>
275
+
276
+ <div class="home-indicator"></div>
277
+ </div>
278
+ </body>
279
+ </html>
code/14167/14167_2.html ADDED
@@ -0,0 +1,373 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Plantum Mockup</title>
5
+ <style>
6
+ body { margin: 0; padding: 0; background: transparent; font-family: "Segoe UI", Arial, sans-serif; }
7
+ #render-target {
8
+ width: 1080px;
9
+ height: 2400px;
10
+ position: relative;
11
+ overflow: hidden;
12
+ background: linear-gradient(180deg, #d6e9f6 0%, #e6f1ef 35%, #e3efe9 100%);
13
+ color: #083b36;
14
+ }
15
+
16
+ .status-bar {
17
+ height: 88px;
18
+ padding: 0 36px;
19
+ display: flex;
20
+ align-items: center;
21
+ justify-content: space-between;
22
+ font-weight: 600;
23
+ color: #202124;
24
+ font-size: 36px;
25
+ }
26
+ .status-icons {
27
+ display: flex;
28
+ align-items: center;
29
+ gap: 22px;
30
+ }
31
+ .dot { width: 22px; height: 22px; background:#1f1f1f; border-radius:50%; }
32
+ .wifi {
33
+ width: 36px; height: 24px;
34
+ }
35
+ .battery {
36
+ width: 32px; height: 24px;
37
+ }
38
+
39
+ .content {
40
+ padding: 0 36px;
41
+ }
42
+
43
+ .location {
44
+ margin-top: 8px;
45
+ display: flex;
46
+ align-items: flex-start;
47
+ gap: 18px;
48
+ }
49
+ .location .icon {
50
+ width: 24px; height: 24px; background:#2e7d32; border-radius:4px;
51
+ clip-path: polygon(50% 0, 0 100%, 100% 100%);
52
+ margin-top: 6px;
53
+ }
54
+ .location .title { color:#2e7d32; font-weight:700; font-size:36px; }
55
+ .location .subtitle { color:#5f6b6f; font-size:28px; margin-top: 6px; }
56
+
57
+ .greeting {
58
+ margin-top: 22px;
59
+ display: flex;
60
+ align-items: center;
61
+ gap: 24px;
62
+ }
63
+ .avatar {
64
+ width: 96px; height:96px; border-radius:50%;
65
+ background:#e0e6e9; color:#2b3f3d; display:flex; align-items:center; justify-content:center;
66
+ font-size: 44px; font-weight: 700;
67
+ }
68
+ .greeting h1 {
69
+ margin: 0;
70
+ font-size: 54px;
71
+ color:#0f433a;
72
+ letter-spacing: -0.5px;
73
+ }
74
+
75
+ .search {
76
+ margin-top: 28px;
77
+ background:#ffffff;
78
+ border-radius: 60px;
79
+ height: 98px;
80
+ display: flex;
81
+ align-items: center;
82
+ padding: 0 28px;
83
+ box-shadow: 0 6px 18px rgba(0,0,0,0.05);
84
+ border: 1px solid rgba(0,0,0,0.06);
85
+ }
86
+ .search .icon {
87
+ width: 42px; height: 42px; margin-right:16px;
88
+ }
89
+ .search .placeholder {
90
+ color:#8aa1a1; font-size: 36px;
91
+ }
92
+
93
+ .promo {
94
+ margin-top: 28px;
95
+ height: 180px;
96
+ background: #0c4c45;
97
+ border-radius: 28px;
98
+ padding: 28px;
99
+ color: #ecfff8;
100
+ display: flex;
101
+ align-items: center;
102
+ justify-content: space-between;
103
+ position: relative;
104
+ overflow: hidden;
105
+ }
106
+ .promo .confetti {
107
+ position:absolute; left:12px; top:8px; font-size: 42px; color:#ff6f91; opacity:0.8;
108
+ }
109
+ .promo .text .big { font-size: 44px; font-weight: 800; }
110
+ .promo .text .small { font-size: 30px; opacity: 0.9; margin-top: 6px; }
111
+ .promo .envelope {
112
+ width: 120px; height: 88px; background:#f0f5f5; border-radius: 22px;
113
+ display:flex; align-items:center; justify-content:center; color:#1f3c39; font-weight:700;
114
+ border: 2px solid rgba(255,255,255,0.35);
115
+ }
116
+
117
+ .grid {
118
+ margin-top: 34px;
119
+ display: grid;
120
+ grid-template-columns: 1fr 1fr;
121
+ gap: 28px;
122
+ }
123
+ .card {
124
+ height: 370px;
125
+ border-radius: 36px;
126
+ background: #f1f5f4;
127
+ padding: 28px;
128
+ position: relative;
129
+ box-shadow: inset 0 0 0 1px rgba(0,0,0,0.04);
130
+ }
131
+ .card.orange {
132
+ background: linear-gradient(160deg, #ff9c52 0%, #ff8331 100%);
133
+ color: #fff;
134
+ }
135
+ .card h3 {
136
+ margin: 0;
137
+ font-size: 54px;
138
+ line-height: 1.1;
139
+ color: #0c4a43;
140
+ }
141
+ .card p {
142
+ margin: 10px 0 0 0;
143
+ font-size: 30px;
144
+ color: #68807e;
145
+ }
146
+ .card.orange h3 { color: #ffffff; }
147
+ .card.orange p { color: rgba(255,255,255,0.9); }
148
+
149
+ .icon-badge {
150
+ position: absolute;
151
+ top: 22px; left: 22px;
152
+ width: 72px; height: 72px; border-radius: 16px;
153
+ background: rgba(0,0,0,0.06);
154
+ display:flex; align-items:center; justify-content:center;
155
+ }
156
+ .leaf {
157
+ position: absolute;
158
+ right: -12px; bottom: -6px;
159
+ width: 280px; height: 220px; opacity: 0.35;
160
+ background: rgba(255,255,255,0.35);
161
+ border-radius: 0 0 36px 0;
162
+ transform: rotate(8deg);
163
+ }
164
+
165
+ .section-title {
166
+ margin: 42px 0 18px;
167
+ font-size: 54px; font-weight: 800; color:#0d4e45;
168
+ }
169
+
170
+ .wide-card {
171
+ height: 190px;
172
+ background:#f6fbf9;
173
+ border-radius: 28px;
174
+ padding: 26px;
175
+ display:flex; align-items:center; gap: 22px;
176
+ border: 1px solid rgba(0,0,0,0.05);
177
+ }
178
+ .wide-card .sun {
179
+ width: 56px; height: 56px; border-radius: 50%; background:#fff3cd; border:1px solid #f0d774;
180
+ }
181
+ .wide-card .title { font-size: 46px; font-weight: 700; color:#10433c; }
182
+ .wide-card .subtitle { font-size: 28px; color:#6f8582; margin-top: 4px; }
183
+
184
+ .bottom-nav {
185
+ position: absolute;
186
+ left: 0; right: 0; bottom: 0;
187
+ height: 160px;
188
+ background: #ffffff;
189
+ border-top-left-radius: 28px;
190
+ border-top-right-radius: 28px;
191
+ box-shadow: 0 -6px 20px rgba(0,0,0,0.08);
192
+ display:flex; align-items: center; justify-content: space-around;
193
+ padding: 0 24px;
194
+ }
195
+ .nav-item {
196
+ text-align:center; font-size: 28px; color:#6c7a78;
197
+ }
198
+ .nav-item .label { margin-top: 8px; display:block; }
199
+ .nav-icon { width: 48px; height: 48px; margin: 0 auto; }
200
+
201
+ .fab {
202
+ position: absolute;
203
+ left: 50%;
204
+ transform: translateX(-50%);
205
+ bottom: 96px;
206
+ width: 152px; height: 152px; border-radius: 50%;
207
+ background: #ff8c3b;
208
+ box-shadow: 0 10px 24px rgba(255,140,59,0.45);
209
+ display: flex; align-items: center; justify-content: center;
210
+ border: 8px solid #fff;
211
+ }
212
+
213
+ .red-dot {
214
+ position: absolute;
215
+ right: 16px; top: 16px; width: 18px; height: 18px; border-radius: 50%;
216
+ background:#ff3b3b;
217
+ }
218
+ </style>
219
+ </head>
220
+ <body>
221
+ <div id="render-target">
222
+ <!-- Status Bar -->
223
+ <div class="status-bar">
224
+ <div>10:23</div>
225
+ <div class="status-icons">
226
+ <div class="dot"></div>
227
+ <div class="dot" style="background:#0a0a0a;"></div>
228
+ <svg class="wifi" viewBox="0 0 24 24" fill="#2f3b3a">
229
+ <path d="M12 18a2 2 0 1 1 0 4 2 2 0 0 1 0-4zm-6-5c3.87-3.87 10.13-3.87 14 0l-2 2c-2.76-2.76-7.24-2.76-10 0l-2-2zm-4-4c5.86-5.86 18.14-5.86 24 0l-2.5 2.5c-4.67-4.67-14.33-4.67-19 0L2 9z"/>
230
+ </svg>
231
+ <svg class="battery" viewBox="0 0 24 24" fill="#2f3b3a">
232
+ <rect x="1" y="7" width="18" height="10" rx="2" ry="2" stroke="none"></rect>
233
+ <rect x="3" y="9" width="12" height="6" fill="#9ccc65"></rect>
234
+ <rect x="20" y="10" width="2" height="4"></rect>
235
+ </svg>
236
+ </div>
237
+ </div>
238
+
239
+ <div class="content">
240
+ <!-- Location -->
241
+ <div class="location">
242
+ <div class="icon"></div>
243
+ <div>
244
+ <div class="title">Location Unavailable</div>
245
+ <div class="subtitle">Tap to enable geolocation and get weather updates.</div>
246
+ </div>
247
+ </div>
248
+
249
+ <!-- Greeting -->
250
+ <div class="greeting">
251
+ <div class="avatar">F</div>
252
+ <h1>Good Morning, Ffion Harris!</h1>
253
+ </div>
254
+
255
+ <!-- Search -->
256
+ <div class="search">
257
+ <svg class="icon" viewBox="0 0 24 24" fill="#6d8481">
258
+ <path d="M10 2a8 8 0 1 1 5.29 14.07l4.32 4.32-1.41 1.41-4.32-4.32A8 8 0 0 1 10 2zm0 2a6 6 0 1 0 .001 12.001A6 6 0 0 0 10 4z"/>
259
+ </svg>
260
+ <div class="placeholder">Search Plantum</div>
261
+ </div>
262
+
263
+ <!-- Promo -->
264
+ <div class="promo">
265
+ <div class="confetti">✿</div>
266
+ <div class="text">
267
+ <div class="big">Try Plantum Premium for Free</div>
268
+ <div class="small">Claim your offer now.</div>
269
+ </div>
270
+ <div class="envelope">✉</div>
271
+ </div>
272
+
273
+ <!-- Grid -->
274
+ <div class="grid">
275
+ <!-- Insects -->
276
+ <div class="card">
277
+ <div class="icon-badge">
278
+ <svg width="36" height="36" viewBox="0 0 24 24" fill="#8aa1a0">
279
+ <path d="M12 7c1.66 0 3 1.34 3 3v4c0 1.66-1.34 3-3 3s-3-1.34-3-3v-4c0-1.66 1.34-3 3-3zm-6 3h2v4H6v-4zm10 0h2v4h-2v-4zM8 6l-2-2 1-1 2 2-1 1zm8 0l-1-1 2-2 1 1-2 2z"/>
280
+ </svg>
281
+ </div>
282
+ <h3>Insects</h3>
283
+ <p>Tap to recognize insects</p>
284
+ </div>
285
+
286
+ <!-- Identify -->
287
+ <div class="card orange">
288
+ <div class="icon-badge" style="background: rgba(255,255,255,0.25);">
289
+ <svg width="40" height="40" viewBox="0 0 24 24" fill="#ffffff">
290
+ <path d="M12 5a3 3 0 0 0-3 3v1H7v8h10V9h-2V8a3 3 0 0 0-3-3zm0 2a1 1 0 0 1 1 1v1h-2V8a1 1 0 0 1 1-1z"/>
291
+ </svg>
292
+ </div>
293
+ <div class="leaf"></div>
294
+ <h3>Identify</h3>
295
+ <p>Tap to recognize plants</p>
296
+ </div>
297
+
298
+ <!-- Mushrooms -->
299
+ <div class="card">
300
+ <div class="icon-badge">
301
+ <svg width="36" height="36" viewBox="0 0 24 24" fill="#8aa1a0">
302
+ <path d="M12 4c-5 0-8 3-8 5s3 3 8 3 8-1 8-3-3-5-8-5zm-4 9h8v2c0 2.2-1.8 4-4 4s-4-1.8-4-4v-2z"/>
303
+ </svg>
304
+ </div>
305
+ <h3>Mushrooms</h3>
306
+ <p>Recognize mushrooms</p>
307
+ </div>
308
+
309
+ <!-- Rocks -->
310
+ <div class="card">
311
+ <div class="icon-badge">
312
+ <svg width="36" height="36" viewBox="0 0 24 24" fill="#8aa1a0">
313
+ <path d="M4 18l4-8 6-2 6 6-2 4H4z"/>
314
+ </svg>
315
+ </div>
316
+ <h3>Rocks</h3>
317
+ <p>Recognize rocks</p>
318
+ </div>
319
+ </div>
320
+
321
+ <div class="section-title">Plantum Tools</div>
322
+
323
+ <!-- Light Meter -->
324
+ <div class="wide-card">
325
+ <div class="sun"></div>
326
+ <div>
327
+ <div class="title">Light Meter</div>
328
+ <div class="subtitle">Measure light intensity for your plants</div>
329
+ </div>
330
+ </div>
331
+ </div>
332
+
333
+ <!-- Floating Camera Button -->
334
+ <div class="fab">
335
+ <svg width="64" height="64" viewBox="0 0 24 24" fill="#fff">
336
+ <path d="M9 4l2-2h2l2 2h3v14H4V4h5zm3 4a5 5 0 1 0 0 10 5 5 0 0 0 0-10zm0 2a3 3 0 1 1 0 6 3 3 0 0 1 0-6z"/>
337
+ </svg>
338
+ </div>
339
+
340
+ <!-- Bottom Navigation -->
341
+ <div class="bottom-nav">
342
+ <div class="nav-item">
343
+ <svg class="nav-icon" viewBox="0 0 24 24" fill="#167a66">
344
+ <path d="M12 3l9 8h-3v9h-12v-9H3l9-8z"/>
345
+ </svg>
346
+ <span class="label" style="color:#0f6a58; font-weight:700;">Home</span>
347
+ </div>
348
+ <div class="nav-item">
349
+ <svg class="nav-icon" viewBox="0 0 24 24" fill="#6c7a78">
350
+ <path d="M12 2l8 4v6c0 5-3.5 9.74-8 10-4.5-.26-8-5-8-10V6l8-4zm0 4.3L8 8v3.7c0 3.3 1.9 6.3 4 6.9 2.1-.6 4-3.6 4-6.9V8l-4-1.7z"/>
351
+ </svg>
352
+ <span class="label">Diagnose</span>
353
+ </div>
354
+ <div class="nav-item" style="position:relative; top:-18px; opacity:0;">
355
+ <!-- placeholder to give center space -->
356
+ </div>
357
+ <div class="nav-item">
358
+ <svg class="nav-icon" viewBox="0 0 24 24" fill="#6c7a78">
359
+ <path d="M7 20v-9l5-5 5 5v9H7z"/>
360
+ </svg>
361
+ <span class="label">My Plants</span>
362
+ </div>
363
+ <div class="nav-item" style="position:relative;">
364
+ <svg class="nav-icon" viewBox="0 0 24 24" fill="#6c7a78">
365
+ <path d="M4 6h16v2H4V6zm0 5h16v2H4v-2zm0 5h16v2H4v-2z"/>
366
+ </svg>
367
+ <span class="label">Explore</span>
368
+ <div class="red-dot"></div>
369
+ </div>
370
+ </div>
371
+ </div>
372
+ </body>
373
+ </html>
code/14167/14167_3.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>Android Permission Dialog 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: #000000;
14
+ font-family: Arial, Helvetica, sans-serif;
15
+ color: #ffffff;
16
+ }
17
+
18
+ /* Status bar */
19
+ .status-bar {
20
+ position: absolute;
21
+ top: 0;
22
+ left: 0;
23
+ width: 1080px;
24
+ height: 120px;
25
+ padding: 0 36px;
26
+ box-sizing: border-box;
27
+ display: flex;
28
+ align-items: center;
29
+ justify-content: space-between;
30
+ color: #fff;
31
+ font-size: 44px;
32
+ letter-spacing: 1px;
33
+ }
34
+ .status-icons {
35
+ display: flex;
36
+ align-items: center;
37
+ gap: 26px;
38
+ }
39
+ .icon {
40
+ display: inline-flex;
41
+ align-items: center;
42
+ justify-content: center;
43
+ }
44
+ .icon svg { display: block; }
45
+
46
+ /* Dark dim layer */
47
+ .dim {
48
+ position: absolute;
49
+ top: 120px;
50
+ left: 0;
51
+ right: 0;
52
+ bottom: 0;
53
+ background: rgba(0,0,0,0.66);
54
+ }
55
+
56
+ /* Top-left close */
57
+ .close-x {
58
+ position: absolute;
59
+ top: 150px;
60
+ left: 66px;
61
+ width: 72px;
62
+ height: 72px;
63
+ color: #c9c9c9;
64
+ font-size: 62px;
65
+ line-height: 72px;
66
+ text-align: center;
67
+ }
68
+
69
+ /* Snap Tips sheet behind dialog */
70
+ .tips-card {
71
+ position: absolute;
72
+ left: 60px;
73
+ right: 60px;
74
+ top: 210px;
75
+ height: 760px;
76
+ background: #f3f6f5;
77
+ color: #0d3d35;
78
+ border-radius: 44px;
79
+ box-shadow: 0 16px 40px rgba(0,0,0,0.35);
80
+ padding: 46px 56px;
81
+ box-sizing: border-box;
82
+ }
83
+ .tips-title {
84
+ text-align: center;
85
+ font-size: 72px;
86
+ font-weight: 800;
87
+ color: #0a5a4a;
88
+ margin-top: 20px;
89
+ margin-bottom: 30px;
90
+ }
91
+ .tips-row {
92
+ display: flex;
93
+ align-items: flex-start;
94
+ gap: 28px;
95
+ margin-top: 18px;
96
+ }
97
+ .img-ph {
98
+ width: 140px;
99
+ height: 140px;
100
+ background: #E0E0E0;
101
+ border: 1px solid #BDBDBD;
102
+ color: #757575;
103
+ display: flex;
104
+ align-items: center;
105
+ justify-content: center;
106
+ font-size: 26px;
107
+ border-radius: 10px;
108
+ }
109
+ .tips-text {
110
+ font-size: 44px;
111
+ line-height: 1.4;
112
+ color: #0b3f37;
113
+ margin-top: 6px;
114
+ }
115
+ .tips-text b { font-weight: 800; }
116
+
117
+ /* Permission dialog */
118
+ .perm-dialog {
119
+ position: absolute;
120
+ left: 60px;
121
+ right: 60px;
122
+ top: 800px;
123
+ background: #2f3639;
124
+ border-radius: 44px;
125
+ padding: 60px 56px 40px;
126
+ box-sizing: border-box;
127
+ color: #fff;
128
+ box-shadow: 0 18px 50px rgba(0,0,0,0.55);
129
+ }
130
+ .perm-title {
131
+ font-size: 60px;
132
+ line-height: 1.25;
133
+ text-align: center;
134
+ font-weight: 700;
135
+ margin: 10px 0 40px;
136
+ }
137
+ .perm-title .app { font-weight: 800; }
138
+ .perm-btn {
139
+ width: 100%;
140
+ background: #CAE5FF;
141
+ color: #092136;
142
+ border: none;
143
+ border-radius: 32px;
144
+ padding: 36px 24px;
145
+ font-size: 48px;
146
+ font-weight: 700;
147
+ margin: 18px 0;
148
+ text-align: center;
149
+ box-shadow: inset 0 0 0 1px rgba(9,33,54,0.06);
150
+ }
151
+ .perm-btn:last-child {
152
+ margin-bottom: 12px;
153
+ }
154
+
155
+ /* Camera area in the back (bottom) */
156
+ .camera-bar {
157
+ position: absolute;
158
+ left: 0;
159
+ right: 0;
160
+ bottom: 120px;
161
+ height: 520px;
162
+ background: #062824;
163
+ }
164
+ .shutter {
165
+ position: absolute;
166
+ left: 50%;
167
+ top: 90px;
168
+ transform: translateX(-50%);
169
+ width: 260px;
170
+ height: 260px;
171
+ border-radius: 50%;
172
+ background: #4e4e4e;
173
+ box-shadow: inset 0 0 0 20px #2b2b2b;
174
+ }
175
+ .photos-pill {
176
+ position: absolute;
177
+ right: 60px;
178
+ top: 190px;
179
+ background: #0d3d35;
180
+ color: #cfe8e1;
181
+ padding: 28px 36px;
182
+ border-radius: 40px;
183
+ font-size: 40px;
184
+ }
185
+ .thumb {
186
+ position: absolute;
187
+ left: 60px;
188
+ top: 190px;
189
+ width: 120px;
190
+ height: 120px;
191
+ background: #E0E0E0;
192
+ border: 1px solid #BDBDBD;
193
+ color: #757575;
194
+ display: flex;
195
+ align-items: center;
196
+ justify-content: center;
197
+ border-radius: 22px;
198
+ font-size: 26px;
199
+ }
200
+
201
+ /* Bottom gesture bar */
202
+ .gesture {
203
+ position: absolute;
204
+ left: 50%;
205
+ bottom: 34px;
206
+ transform: translateX(-50%);
207
+ width: 540px;
208
+ height: 10px;
209
+ background: #e6e6e6;
210
+ border-radius: 6px;
211
+ opacity: 0.95;
212
+ }
213
+ </style>
214
+ </head>
215
+ <body>
216
+ <div id="render-target">
217
+
218
+ <!-- Status bar -->
219
+ <div class="status-bar">
220
+ <div>10:23</div>
221
+ <div class="status-icons">
222
+ <div class="icon" style="opacity:.9;">
223
+ <!-- Simple circle icons to mimic Android dots -->
224
+ <svg width="22" height="22"><circle cx="11" cy="11" r="9" fill="#fff"/></svg>
225
+ </div>
226
+ <div class="icon">
227
+ <!-- Wi‑Fi -->
228
+ <svg width="46" height="34" viewBox="0 0 24 16" fill="none">
229
+ <path d="M2 6.5C6-1 18-1 22 6.5" stroke="#ffffff" stroke-width="2.4" stroke-linecap="round"/>
230
+ <path d="M5 9.5c4-5 10-5 14 0" stroke="#ffffff" stroke-width="2.4" stroke-linecap="round"/>
231
+ <circle cx="12" cy="13" r="2" fill="#ffffff"/>
232
+ </svg>
233
+ </div>
234
+ <div class="icon">
235
+ <!-- Battery -->
236
+ <svg width="64" height="32" viewBox="0 0 42 20" fill="none">
237
+ <rect x="1" y="3" width="34" height="14" rx="3" stroke="#ffffff" stroke-width="2"/>
238
+ <rect x="3" y="5" width="24" height="10" rx="2" fill="#ffffff"/>
239
+ <rect x="36" y="7" width="5" height="6" rx="1.5" fill="#ffffff"/>
240
+ </svg>
241
+ </div>
242
+ </div>
243
+ </div>
244
+
245
+ <div class="dim"></div>
246
+
247
+ <div class="close-x">×</div>
248
+
249
+ <!-- Snap Tips card behind the permission dialog -->
250
+ <div class="tips-card">
251
+ <div class="tips-title">Snap Tips</div>
252
+ <div class="tips-row">
253
+ <div class="img-ph">[IMG: Plant Illustration]</div>
254
+ <div class="tips-text">
255
+ Place the plant <b>in the center</b> of the frame.
256
+ </div>
257
+ </div>
258
+ </div>
259
+
260
+ <!-- Permission dialog -->
261
+ <div class="perm-dialog">
262
+ <div class="perm-title">Allow <span class="app">Plantum</span> to take pictures<br>and record video?</div>
263
+ <div class="perm-btn">While using the app</div>
264
+ <div class="perm-btn">Only this time</div>
265
+ <div class="perm-btn">Don’t allow</div>
266
+ </div>
267
+
268
+ <!-- Camera UI behind the dialog -->
269
+ <div class="camera-bar">
270
+ <div class="thumb">[IMG: Plant]</div>
271
+ <div class="shutter"></div>
272
+ <div class="photos-pill">3 photos left +</div>
273
+ </div>
274
+
275
+ <div class="gesture"></div>
276
+ </div>
277
+ </body>
278
+ </html>
code/14167/14167_4.html ADDED
@@ -0,0 +1,186 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Android Permission UI Mock</title>
5
+ <style>
6
+ body { margin:0; padding:0; background:transparent; font-family: Arial, Helvetica, sans-serif; }
7
+ #render-target {
8
+ width:1080px; height:2400px; position:relative; overflow:hidden;
9
+ background:#000000; border-radius:0;
10
+ }
11
+
12
+ /* Status bar */
13
+ .statusbar {
14
+ position:absolute; top:0; left:0; right:0; height:90px;
15
+ padding:0 36px; display:flex; align-items:center; color:#fff;
16
+ font-size:40px;
17
+ }
18
+ .statusbar .time { font-weight:600; }
19
+ .statusbar .right { margin-left:auto; display:flex; align-items:center; gap:22px; }
20
+ .sb-dot { width:30px; height:30px; background:#fff; border-radius:50%; opacity:0.9; }
21
+ .wifi { width:40px; height:28px; border:3px solid #fff; border-radius:6px; }
22
+ .battery {
23
+ width:56px; height:28px; border:3px solid #fff; border-radius:6px; position:relative;
24
+ }
25
+ .battery::after { content:""; position:absolute; right:-10px; top:8px; width:8px; height:12px; background:#fff; border-radius:2px; }
26
+
27
+ /* Top overlay icons */
28
+ .top-icons {
29
+ position:absolute; top:120px; left:0; right:0; height:90px; display:flex; align-items:center; justify-content:space-between; padding:0 40px;
30
+ }
31
+ .top-icon { width:70px; height:70px; display:flex; align-items:center; justify-content:center; }
32
+ .top-icon svg { width:60px; height:60px; fill:#9fb1a6; }
33
+
34
+ /* Snap Tips card behind modal */
35
+ .tips-card {
36
+ position:absolute; top:300px; left:60px; width:960px; background:#19332f;
37
+ color:#cfe3dc; border-radius:48px; padding:60px 60px 80px 60px;
38
+ box-shadow:0 20px 60px rgba(0,0,0,0.6);
39
+ }
40
+ .tips-arrow {
41
+ position:absolute; top:-26px; left:50%; transform:translateX(-50%);
42
+ width:0; height:0; border-left:22px solid transparent; border-right:22px solid transparent; border-bottom:26px solid #19332f;
43
+ }
44
+ .tips-title {
45
+ text-align:center; color:#9ad0c1; font-size:62px; font-weight:800; margin-bottom:28px;
46
+ }
47
+ .tips-row { display:flex; gap:28px; align-items:flex-start; }
48
+ .img-placeholder {
49
+ width:140px; height:160px; background:#E0E0E0; border:1px solid #BDBDBD;
50
+ display:flex; align-items:center; justify-content:center; color:#757575; border-radius:16px;
51
+ }
52
+ .tips-text {
53
+ font-size:42px; line-height:1.4; color:#cfe3dc;
54
+ }
55
+ .tips-text b { color:#e8fff6; }
56
+
57
+ /* Permission modal */
58
+ .permission-wrap {
59
+ position:absolute; top:820px; left:80px; width:920px;
60
+ background:#2f3337; border-radius:60px; padding:70px 60px; color:#fff;
61
+ box-shadow:0 40px 90px rgba(0,0,0,0.75);
62
+ }
63
+ .permission-title {
64
+ font-size:52px; line-height:1.3; font-weight:800; margin-bottom:60px;
65
+ text-align:center;
66
+ }
67
+ .perm-btn {
68
+ background:#cfe7ff; color:#0c2742; font-size:42px; font-weight:700;
69
+ border:none; border-radius:40px; padding:38px 36px; text-align:center;
70
+ margin-bottom:28px;
71
+ box-shadow:inset 0 0 0 1px rgba(0,0,0,0.06);
72
+ }
73
+ .perm-btn:last-child { margin-bottom:0; }
74
+ .perm-btn.secondary { background:#cfe7ff; }
75
+ .perm-btn.deny { background:#cfe7ff; color:#0c2742; }
76
+
77
+ /* Camera controls bottom */
78
+ .bottom-ui {
79
+ position:absolute; bottom:130px; left:0; right:0; height:360px;
80
+ display:flex; align-items:center; justify-content:center;
81
+ }
82
+ .left-thumb {
83
+ position:absolute; left:36px; bottom:50%; transform:translateY(50%);
84
+ width:120px; height:120px; border-radius:24px; background:#0b2a27;
85
+ display:flex; align-items:center; justify-content:center; color:#a8cbbf; font-size:28px; border:1px solid #123f39;
86
+ }
87
+ .shutter {
88
+ width:240px; height:240px; border-radius:50%;
89
+ background:#3b3f41; border:12px solid #cfd2d4;
90
+ box-shadow:0 8px 0 rgba(0,0,0,0.3) inset;
91
+ }
92
+ .photos-pill {
93
+ position:absolute; right:60px; bottom:50%; transform:translateY(50%);
94
+ display:flex; align-items:center; gap:26px;
95
+ background:#0c2f29; color:#a8cbbf; padding:24px 34px; border-radius:44px; border:1px solid #123f39; font-size:42px;
96
+ }
97
+ .photos-pill .plus {
98
+ width:64px; height:64px; border-radius:50%; background:#123f39;
99
+ display:flex; align-items:center; justify-content:center;
100
+ }
101
+ .photos-pill .plus svg { width:34px; height:34px; fill:#a8cbbf; }
102
+
103
+ /* Home bar */
104
+ .homebar {
105
+ position:absolute; bottom:40px; left:50%; transform:translateX(-50%);
106
+ width:520px; height:12px; background:#ffffff; border-radius:8px; opacity:0.85;
107
+ }
108
+ </style>
109
+ </head>
110
+ <body>
111
+ <div id="render-target">
112
+
113
+ <!-- Status Bar -->
114
+ <div class="statusbar">
115
+ <div class="time">10:23</div>
116
+ <div class="right">
117
+ <div class="sb-dot"></div>
118
+ <div class="sb-dot"></div>
119
+ <div class="sb-dot"></div>
120
+ <div class="sb-dot"></div>
121
+ <div class="wifi"></div>
122
+ <div class="battery"></div>
123
+ </div>
124
+ </div>
125
+
126
+ <!-- Top overlay icons -->
127
+ <div class="top-icons">
128
+ <div class="top-icon">
129
+ <svg viewBox="0 0 24 24">
130
+ <path 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.3z"/>
131
+ </svg>
132
+ </div>
133
+ <div class="top-icon">
134
+ <svg viewBox="0 0 24 24">
135
+ <circle cx="12" cy="12" r="10"></circle>
136
+ <rect x="11" y="7" width="2" height="7" fill="#19332f"></rect>
137
+ <circle cx="12" cy="17" r="1.5" fill="#19332f"></circle>
138
+ </svg>
139
+ </div>
140
+ <div class="top-icon">
141
+ <svg viewBox="0 0 24 24">
142
+ <path d="M13 2L3 14h7l-1 8 12-14h-8l0-6z"></path>
143
+ </svg>
144
+ </div>
145
+ </div>
146
+
147
+ <!-- Snap Tips card -->
148
+ <div class="tips-card">
149
+ <div class="tips-arrow"></div>
150
+ <div class="tips-title">Snap Tips</div>
151
+ <div class="tips-row">
152
+ <div class="img-placeholder">[IMG: Plant on phone]</div>
153
+ <div class="tips-text">
154
+ Place the plant <b>in the center</b> of the frame.
155
+ </div>
156
+ </div>
157
+ </div>
158
+
159
+ <!-- Permission modal -->
160
+ <div class="permission-wrap">
161
+ <div class="permission-title">
162
+ Allow Plantum to take pictures and record video?
163
+ </div>
164
+ <div class="perm-btn">While using the app</div>
165
+ <div class="perm-btn secondary">Only this time</div>
166
+ <div class="perm-btn deny">Don’t allow</div>
167
+ </div>
168
+
169
+ <!-- Bottom camera UI -->
170
+ <div class="bottom-ui">
171
+ <div class="left-thumb">[IMG: Plant icon]</div>
172
+ <div class="shutter"></div>
173
+ <div class="photos-pill">
174
+ <div>3 photos left</div>
175
+ <div class="plus">
176
+ <svg viewBox="0 0 24 24"><path d="M11 4h2v6h6v2h-6v6h-2v-6H5v-2h6z"/></svg>
177
+ </div>
178
+ </div>
179
+ </div>
180
+
181
+ <!-- Home bar -->
182
+ <div class="homebar"></div>
183
+
184
+ </div>
185
+ </body>
186
+ </html>
code/14167/14167_5.html ADDED
@@ -0,0 +1,253 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Camera 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: #0a0a0a;
13
+ }
14
+
15
+ /* Camera feed placeholder */
16
+ .camera-feed {
17
+ position: absolute;
18
+ left: 0;
19
+ top: 0;
20
+ width: 1080px;
21
+ height: 2040px;
22
+ background: #E0E0E0;
23
+ border: 1px solid #BDBDBD;
24
+ color: #757575;
25
+ display: flex;
26
+ align-items: center;
27
+ justify-content: center;
28
+ font-size: 28px;
29
+ letter-spacing: 0.3px;
30
+ }
31
+
32
+ /* Status bar */
33
+ .status-bar {
34
+ position: absolute;
35
+ top: 18px;
36
+ left: 24px;
37
+ width: 1032px;
38
+ height: 60px;
39
+ color: #ffffff;
40
+ font-size: 32px;
41
+ display: flex;
42
+ align-items: center;
43
+ justify-content: space-between;
44
+ pointer-events: none;
45
+ }
46
+ .status-left, .status-right {
47
+ display: flex;
48
+ align-items: center;
49
+ gap: 18px;
50
+ }
51
+ .dot {
52
+ width: 18px;
53
+ height: 18px;
54
+ background: #ffffff;
55
+ opacity: 0.85;
56
+ border-radius: 50%;
57
+ }
58
+
59
+ /* Top overlay controls */
60
+ .top-controls {
61
+ position: absolute;
62
+ top: 160px;
63
+ left: 0;
64
+ width: 1080px;
65
+ height: 80px;
66
+ display: flex;
67
+ align-items: center;
68
+ justify-content: space-between;
69
+ padding: 0 60px;
70
+ pointer-events: none;
71
+ }
72
+ .icon-btn {
73
+ width: 64px;
74
+ height: 64px;
75
+ }
76
+
77
+ /* Corner brackets */
78
+ .corner {
79
+ position: absolute;
80
+ width: 240px;
81
+ height: 220px;
82
+ border-radius: 34px;
83
+ }
84
+ .corner.tl { left: 120px; top: 580px; border-top: 10px solid #ffffff; border-left: 10px solid #ffffff; }
85
+ .corner.tr { right: 120px; top: 580px; border-top: 10px solid #ffffff; border-right: 10px solid #ffffff; }
86
+ .corner.bl { left: 120px; top: 1280px; border-bottom: 10px solid #ffffff; border-left: 10px solid #ffffff; }
87
+ .corner.br { right: 120px; top: 1280px; border-bottom: 10px solid #ffffff; border-right: 10px solid #ffffff; }
88
+
89
+ /* Bottom control bar */
90
+ .bottom-bar {
91
+ position: absolute;
92
+ bottom: 0;
93
+ left: 0;
94
+ width: 1080px;
95
+ height: 360px;
96
+ background: #006a63;
97
+ box-shadow: 0 -8px 24px rgba(0,0,0,0.35) inset;
98
+ }
99
+ .bottom-content {
100
+ position: absolute;
101
+ left: 0;
102
+ right: 0;
103
+ bottom: 108px;
104
+ display: flex;
105
+ align-items: center;
106
+ justify-content: space-between;
107
+ padding: 0 48px;
108
+ }
109
+ .preview-square {
110
+ width: 120px;
111
+ height: 120px;
112
+ border-radius: 24px;
113
+ background: #e7f4ef;
114
+ display: flex;
115
+ align-items: center;
116
+ justify-content: center;
117
+ color: #2e7d6f;
118
+ font-size: 56px;
119
+ border: 2px solid rgba(255,255,255,0.35);
120
+ }
121
+
122
+ .shutter {
123
+ width: 200px;
124
+ height: 200px;
125
+ border-radius: 50%;
126
+ background: #ffffff;
127
+ border: 16px solid #e6e6e6;
128
+ box-shadow: 0 10px 18px rgba(0,0,0,0.25);
129
+ }
130
+
131
+ .photos-pill {
132
+ height: 100px;
133
+ min-width: 460px;
134
+ background: #004f48;
135
+ border-radius: 60px;
136
+ display: flex;
137
+ align-items: center;
138
+ justify-content: space-between;
139
+ padding: 0 28px;
140
+ color: #ffffff;
141
+ font-size: 40px;
142
+ box-shadow: inset 0 0 0 2px rgba(255,255,255,0.1);
143
+ }
144
+ .plus-circle {
145
+ width: 78px;
146
+ height: 78px;
147
+ background: #4caf50;
148
+ border-radius: 50%;
149
+ display: flex;
150
+ align-items: center;
151
+ justify-content: center;
152
+ box-shadow: 0 4px 10px rgba(0,0,0,0.25);
153
+ }
154
+ .drag-bar {
155
+ position: absolute;
156
+ left: 50%;
157
+ transform: translateX(-50%);
158
+ bottom: 24px;
159
+ width: 280px;
160
+ height: 12px;
161
+ border-radius: 6px;
162
+ background: rgba(255,255,255,0.6);
163
+ }
164
+
165
+ /* Helper: make SVGs white */
166
+ .svg-white path, .svg-white line, .svg-white circle, .svg-white polygon {
167
+ stroke: #ffffff;
168
+ fill: #ffffff;
169
+ }
170
+ </style>
171
+ </head>
172
+ <body>
173
+ <div id="render-target">
174
+
175
+ <!-- Camera view -->
176
+ <div class="camera-feed">[IMG: Laptop Keyboard Close-Up]</div>
177
+
178
+ <!-- Status bar -->
179
+ <div class="status-bar">
180
+ <div class="status-left">
181
+ <div style="font-weight:600;">10:23</div>
182
+ <div class="dot"></div>
183
+ <div class="dot" style="opacity:0.6;"></div>
184
+ <div class="dot" style="opacity:0.35;"></div>
185
+ </div>
186
+ <div class="status-right">
187
+ <!-- Wi-Fi icon -->
188
+ <svg class="svg-white" width="42" height="42" viewBox="0 0 24 24">
189
+ <path d="M12 18.5c.8 0 1.5.7 1.5 1.5S12.8 21.5 12 21.5 10.5 20.8 10.5 20s.7-1.5 1.5-1.5z"></path>
190
+ <path d="M3 10c5-4 13-4 18 0" fill="none" stroke-width="2"></path>
191
+ <path d="M6 13.5c3.5-2.8 8.5-2.8 12 0" fill="none" stroke-width="2"></path>
192
+ <path d="M9 17c2-1.5 4-1.5 6 0" fill="none" stroke-width="2"></path>
193
+ </svg>
194
+ <!-- Battery icon -->
195
+ <svg class="svg-white" width="50" height="42" viewBox="0 0 28 18">
196
+ <rect x="1" y="3" width="22" height="12" rx="2" ry="2" fill="none" stroke-width="2"></rect>
197
+ <rect x="24" y="6" width="3" height="6" rx="1" ry="1"></rect>
198
+ <rect x="3" y="5" width="18" height="8" rx="1" ry="1"></rect>
199
+ </svg>
200
+ </div>
201
+ </div>
202
+
203
+ <!-- Top overlay controls -->
204
+ <div class="top-controls">
205
+ <!-- Close (X) -->
206
+ <svg class="icon-btn" viewBox="0 0 48 48">
207
+ <line x1="10" y1="10" x2="38" y2="38" stroke="#ffffff" stroke-width="5" stroke-linecap="round"></line>
208
+ <line x1="10" y1="38" x2="38" y2="10" stroke="#ffffff" stroke-width="5" stroke-linecap="round"></line>
209
+ </svg>
210
+
211
+ <!-- Info circle -->
212
+ <svg class="icon-btn" viewBox="0 0 48 48">
213
+ <circle cx="24" cy="24" r="20" fill="none" stroke="#ffffff" stroke-width="4"></circle>
214
+ <circle cx="24" cy="16" r="3" fill="#ffffff"></circle>
215
+ <rect x="22" y="22" width="4" height="14" rx="2" fill="#ffffff"></rect>
216
+ </svg>
217
+
218
+ <!-- Flash icon -->
219
+ <svg class="icon-btn" viewBox="0 0 48 48">
220
+ <polygon points="20,6 36,6 26,22 34,22 18,42 22,26 14,26" fill="#ffffff"></polygon>
221
+ </svg>
222
+ </div>
223
+
224
+ <!-- Corner brackets for focus frame -->
225
+ <div class="corner tl"></div>
226
+ <div class="corner tr"></div>
227
+ <div class="corner bl"></div>
228
+ <div class="corner br"></div>
229
+
230
+ <!-- Bottom control bar -->
231
+ <div class="bottom-bar">
232
+ <div class="bottom-content">
233
+ <div class="preview-square">🌵</div>
234
+
235
+ <div class="shutter"></div>
236
+
237
+ <div class="photos-pill">
238
+ <span>3 photos left</span>
239
+ <div class="plus-circle">
240
+ <svg width="42" height="42" viewBox="0 0 24 24">
241
+ <line x1="12" y1="5" x2="12" y2="19" stroke="#ffffff" stroke-width="3" stroke-linecap="round"></line>
242
+ <line x1="5" y1="12" x2="19" y2="12" stroke="#ffffff" stroke-width="3" stroke-linecap="round"></line>
243
+ </svg>
244
+ </div>
245
+ </div>
246
+ </div>
247
+
248
+ <div class="drag-bar"></div>
249
+ </div>
250
+
251
+ </div>
252
+ </body>
253
+ </html>
code/14167/14167_6.html ADDED
@@ -0,0 +1,240 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Camera UI Mock</title>
5
+ <style>
6
+ body { margin: 0; padding: 0; background: transparent; font-family: "Segoe UI", Roboto, Arial, sans-serif; }
7
+ #render-target {
8
+ width: 1080px;
9
+ height: 2400px;
10
+ position: relative;
11
+ overflow: hidden;
12
+ background: #000;
13
+ }
14
+
15
+ /* Camera preview area */
16
+ .camera-preview {
17
+ position: absolute;
18
+ left: 0;
19
+ top: 0;
20
+ width: 1080px;
21
+ height: 2080px; /* remaining height above control bar */
22
+ background: #E0E0E0;
23
+ border: 1px solid #BDBDBD;
24
+ display: flex;
25
+ align-items: center;
26
+ justify-content: center;
27
+ color: #555;
28
+ font-size: 32px;
29
+ text-align: center;
30
+ }
31
+
32
+ /* Status bar */
33
+ .status-bar {
34
+ position: absolute;
35
+ top: 24px;
36
+ left: 24px;
37
+ right: 24px;
38
+ height: 80px;
39
+ display: flex;
40
+ align-items: center;
41
+ color: #fff;
42
+ }
43
+ .status-left {
44
+ display: flex;
45
+ align-items: center;
46
+ gap: 18px;
47
+ font-weight: 600;
48
+ font-size: 34px;
49
+ }
50
+ .status-right {
51
+ margin-left: auto;
52
+ display: flex;
53
+ align-items: center;
54
+ gap: 22px;
55
+ }
56
+ .dot-icon {
57
+ width: 22px; height: 22px; border-radius: 50%; background: rgba(255,255,255,0.7);
58
+ }
59
+
60
+ /* Top overlay controls */
61
+ .top-controls {
62
+ position: absolute;
63
+ top: 150px;
64
+ left: 0; right: 0;
65
+ display: flex;
66
+ align-items: center;
67
+ justify-content: space-between;
68
+ padding: 0 56px;
69
+ color: #fff;
70
+ }
71
+ .icon-btn {
72
+ width: 54px; height: 54px;
73
+ }
74
+ .info-circle {
75
+ width: 66px; height: 66px; border-radius: 50%;
76
+ border: 3px solid rgba(255,255,255,0.85);
77
+ display: flex; align-items: center; justify-content: center;
78
+ margin: 0 auto;
79
+ color: #fff; font-weight: 700; font-size: 30px;
80
+ }
81
+
82
+ /* Scan frame corners */
83
+ .corner {
84
+ position: absolute;
85
+ width: 190px;
86
+ height: 190px;
87
+ border: 12px solid rgba(255,255,255,0.95);
88
+ border-radius: 28px;
89
+ }
90
+ .corner.tl { top: 820px; left: 120px; border-right: none; border-bottom: none; }
91
+ .corner.tr { top: 820px; right: 120px; border-left: none; border-bottom: none; }
92
+ .corner.bl { top: 1460px; left: 120px; border-right: none; border-top: none; }
93
+ .corner.br { top: 1460px; right: 120px; border-left: none; border-top: none; }
94
+
95
+ /* Bottom control bar */
96
+ .bottom-bar {
97
+ position: absolute;
98
+ bottom: 0;
99
+ left: 0;
100
+ width: 1080px;
101
+ height: 320px;
102
+ background: #0A6F64; /* teal green */
103
+ box-shadow: 0 -8px 20px rgba(0,0,0,0.3);
104
+ }
105
+
106
+ /* Shutter button */
107
+ .shutter-wrap {
108
+ position: absolute;
109
+ bottom: 140px;
110
+ left: 50%;
111
+ transform: translateX(-50%);
112
+ width: 188px; height: 188px;
113
+ border-radius: 50%;
114
+ border: 12px solid #ECECEC;
115
+ background: transparent;
116
+ display: flex; align-items: center; justify-content: center;
117
+ }
118
+ .shutter-inner {
119
+ width: 148px; height: 148px; border-radius: 50%; background: #fff;
120
+ box-shadow: inset 0 0 0 4px rgba(0,0,0,0.06);
121
+ }
122
+
123
+ /* Left small app icon */
124
+ .app-mini {
125
+ position: absolute;
126
+ bottom: 154px;
127
+ left: 40px;
128
+ width: 116px; height: 116px;
129
+ border-radius: 24px;
130
+ background: #E0E0E0;
131
+ border: 1px solid #BDBDBD;
132
+ display: flex; align-items: center; justify-content: center;
133
+ color: #666; font-size: 26px;
134
+ }
135
+
136
+ /* Right pill for remaining photos */
137
+ .count-pill {
138
+ position: absolute;
139
+ bottom: 170px;
140
+ right: 210px;
141
+ height: 74px;
142
+ padding: 0 30px;
143
+ border-radius: 38px;
144
+ background: rgba(0,40,32,0.65);
145
+ color: #fff;
146
+ display: flex; align-items: center; gap: 16px;
147
+ font-size: 30px; font-weight: 600;
148
+ }
149
+ .plus-btn {
150
+ width: 68px; height: 68px; border-radius: 50%;
151
+ background: #22A66F;
152
+ display: flex; align-items: center; justify-content: center;
153
+ color: #fff; font-size: 42px; font-weight: 700;
154
+ }
155
+
156
+ /* Bottom handle */
157
+ .home-handle {
158
+ position: absolute;
159
+ bottom: 26px;
160
+ left: 50%;
161
+ transform: translateX(-50%);
162
+ width: 280px; height: 8px; border-radius: 6px; background: #DDE7E4;
163
+ }
164
+
165
+ /* Simple icon styling */
166
+ svg { display: block; }
167
+ </style>
168
+ </head>
169
+ <body>
170
+ <div id="render-target">
171
+ <!-- Camera preview -->
172
+ <div class="camera-preview">[IMG: Close-up of a hand on a laptop keyboard]</div>
173
+
174
+ <!-- Status Bar -->
175
+ <div class="status-bar">
176
+ <div class="status-left">
177
+ <span>10:23</span>
178
+ <div class="dot-icon"></div>
179
+ <div class="dot-icon"></div>
180
+ <div class="dot-icon"></div>
181
+ </div>
182
+ <div class="status-right">
183
+ <!-- Wi-Fi icon -->
184
+ <svg width="40" height="28" viewBox="0 0 40 28">
185
+ <path d="M2 8c9-8 27-8 36 0" stroke="#fff" stroke-width="3" fill="none" stroke-linecap="round"/>
186
+ <path d="M8 14c6-5 18-5 24 0" stroke="#fff" stroke-width="3" fill="none" stroke-linecap="round"/>
187
+ <circle cx="20" cy="22" r="3" fill="#fff"/>
188
+ </svg>
189
+ <!-- Battery icon -->
190
+ <svg width="52" height="26" viewBox="0 0 52 26">
191
+ <rect x="1" y="4" width="44" height="18" rx="4" stroke="#fff" stroke-width="3" fill="none"/>
192
+ <rect x="4" y="7" width="30" height="12" rx="2" fill="#fff"/>
193
+ <rect x="47" y="9" width="4" height="8" rx="1" fill="#fff"/>
194
+ </svg>
195
+ </div>
196
+ </div>
197
+
198
+ <!-- Top overlay controls -->
199
+ <div class="top-controls">
200
+ <!-- Close X -->
201
+ <svg class="icon-btn" viewBox="0 0 24 24">
202
+ <path d="M5 5l14 14M19 5L5 19" stroke="#fff" stroke-width="3" stroke-linecap="round"/>
203
+ </svg>
204
+
205
+ <div class="info-circle">i</div>
206
+
207
+ <!-- Flash icon -->
208
+ <svg class="icon-btn" viewBox="0 0 24 24">
209
+ <path d="M13 2L6 14h5l-1 8 8-14h-6z" fill="#fff"/>
210
+ </svg>
211
+ </div>
212
+
213
+ <!-- Scan frame corners -->
214
+ <div class="corner tl"></div>
215
+ <div class="corner tr"></div>
216
+ <div class="corner bl"></div>
217
+ <div class="corner br"></div>
218
+
219
+ <!-- Bottom control bar -->
220
+ <div class="bottom-bar"></div>
221
+
222
+ <!-- Shutter button -->
223
+ <div class="shutter-wrap">
224
+ <div class="shutter-inner"></div>
225
+ </div>
226
+
227
+ <!-- Small app icon left -->
228
+ <div class="app-mini">[IMG: Small app icon]</div>
229
+
230
+ <!-- Remaining photos pill -->
231
+ <div class="count-pill">
232
+ <span>3 photos left</span>
233
+ <div class="plus-btn">+</div>
234
+ </div>
235
+
236
+ <!-- Bottom home handle -->
237
+ <div class="home-handle"></div>
238
+ </div>
239
+ </body>
240
+ </html>
code/14167/14167_7.html ADDED
@@ -0,0 +1,232 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="utf-8">
4
+ <title>Best Matches - UI Mock</title>
5
+ <style>
6
+ body { margin:0; padding:0; background:transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
7
+ #render-target {
8
+ width:1080px; height:2400px;
9
+ position:relative; overflow:hidden;
10
+ background:#ffffff;
11
+ }
12
+
13
+ /* Status bar */
14
+ .status-bar {
15
+ height:90px;
16
+ padding:0 36px;
17
+ display:flex; align-items:center; justify-content:space-between;
18
+ color:#1a1a1a; font-weight:600; font-size:36px;
19
+ }
20
+ .status-right { display:flex; align-items:center; gap:24px; }
21
+ .dot { width:14px; height:14px; background:#1a1a1a; border-radius:50%; }
22
+ .status-icon { width:40px; height:40px; }
23
+
24
+ /* Top nav */
25
+ .top-nav {
26
+ height:110px;
27
+ display:flex; align-items:center;
28
+ padding:0 24px;
29
+ position:relative;
30
+ }
31
+ .back-btn {
32
+ width:84px; height:84px; display:flex; align-items:center; justify-content:center;
33
+ border-radius:42px;
34
+ }
35
+ .top-title {
36
+ position:absolute; left:0; right:0; text-align:center;
37
+ font-size:60px; font-weight:700; color:#0a6b5f;
38
+ }
39
+
40
+ /* Dots */
41
+ .carousel-dots {
42
+ display:flex; gap:22px; justify-content:center; margin-top:12px;
43
+ }
44
+ .carousel-dots span {
45
+ width:22px; height:22px; border-radius:50%;
46
+ background:#c7d7cf;
47
+ }
48
+ .carousel-dots span.active { background:#0a6b5f; }
49
+
50
+ /* Main image */
51
+ .hero-img {
52
+ width:980px; height:640px; margin:40px auto 0;
53
+ background:#E0E0E0; border:1px solid #BDBDBD; border-radius:44px;
54
+ display:flex; align-items:center; justify-content:center; color:#757575; font-size:36px; text-align:center;
55
+ position:relative;
56
+ }
57
+ .avatar {
58
+ position:absolute; bottom:-90px; left:50%; transform:translateX(-50%);
59
+ width:210px; height:210px; border-radius:50%;
60
+ background:#E0E0E0; border:8px solid #ffffff;
61
+ display:flex; align-items:center; justify-content:center; color:#757575; font-size:26px;
62
+ box-shadow:0 8px 16px rgba(0,0,0,0.08);
63
+ }
64
+
65
+ /* Title section */
66
+ .plant-title { margin-top:130px; text-align:center; color:#0a6b5f; font-size:72px; font-weight:800; }
67
+ .plant-subtitle { text-align:center; color:#2f5d56; font-size:40px; font-style:italic; margin-top:10px; }
68
+
69
+ /* Chips */
70
+ .chips { display:flex; justify-content:center; gap:22px; margin-top:26px; flex-wrap:wrap; }
71
+ .chip {
72
+ padding:22px 34px; border-radius:40px; font-size:38px; font-weight:700;
73
+ color:#0a6b5f; background:#e6f3ef;
74
+ }
75
+ .chip.pink { background:#ffdce6; color:#c34764; }
76
+
77
+ /* Card */
78
+ .health-card {
79
+ width:980px; margin:34px auto 0; background:#e9f0ee; border-radius:40px; padding:36px;
80
+ box-sizing:border-box;
81
+ }
82
+ .card-header { display:flex; align-items:center; gap:24px; }
83
+ .card-title { font-size:52px; font-weight:800; color:#2e3c39; }
84
+ .beta-pill {
85
+ margin-left:12px; padding:8px 18px; background:#d9e5df; color:#2e3c39; border-radius:24px; font-size:34px; font-weight:700;
86
+ }
87
+ .health-ok {
88
+ margin-top:26px; font-size:44px; color:#0a6b5f; font-weight:800;
89
+ }
90
+ .card-text {
91
+ margin-top:18px; font-size:38px; color:#3b4a47; line-height:1.5;
92
+ }
93
+ .cta-btn {
94
+ margin-top:30px; width:100%; height:120px; border-radius:60px; background:#5fa49a; color:#ffffff; font-size:46px; font-weight:800;
95
+ display:flex; align-items:center; justify-content:center;
96
+ }
97
+
98
+ /* Bottom action bar */
99
+ .bottom-bar {
100
+ position:absolute; left:0; right:0; bottom:150px;
101
+ padding:0 40px; display:flex; align-items:center; gap:40px;
102
+ }
103
+ .round-btn {
104
+ width:140px; height:140px; border-radius:70px; display:flex; align-items:center; justify-content:center;
105
+ box-shadow:0 8px 16px rgba(0,0,0,0.08);
106
+ }
107
+ .camera { background:#ffa64d; }
108
+ .share { background:#0a6b5f; }
109
+ .primary-action {
110
+ flex:1; height:140px; border-radius:80px; background:#006c5f; color:#ffffff; font-size:52px; font-weight:800;
111
+ display:flex; align-items:center; justify-content:center;
112
+ }
113
+
114
+ /* Gesture bar */
115
+ .gesture-bar {
116
+ position:absolute; bottom:40px; left:50%; transform:translateX(-50%);
117
+ width:540px; height:12px; background:#c7c7c7; border-radius:6px;
118
+ }
119
+ </style>
120
+ </head>
121
+ <body>
122
+ <div id="render-target">
123
+
124
+ <!-- Status Bar -->
125
+ <div class="status-bar">
126
+ <div>10:24</div>
127
+ <div class="status-right">
128
+ <!-- simple search icon -->
129
+ <svg class="status-icon" viewBox="0 0 24 24">
130
+ <circle cx="10" cy="10" r="7" fill="none" stroke="#1a1a1a" stroke-width="2"></circle>
131
+ <line x1="15.5" y1="15.5" x2="22" y2="22" stroke="#1a1a1a" stroke-width="2"></line>
132
+ </svg>
133
+ <div class="dot"></div>
134
+ <!-- play icon -->
135
+ <svg class="status-icon" viewBox="0 0 24 24">
136
+ <polygon points="6,4 20,12 6,20" fill="#1a1a1a"></polygon>
137
+ </svg>
138
+ <div class="dot" style="background:#8c8c8c;"></div>
139
+ <!-- signal / battery simple icons -->
140
+ <svg class="status-icon" viewBox="0 0 24 24">
141
+ <rect x="3" y="7" width="16" height="10" fill="none" stroke="#1a1a1a" stroke-width="2"></rect>
142
+ <rect x="20" y="10" width="2" height="4" fill="#1a1a1a"></rect>
143
+ </svg>
144
+ </div>
145
+ </div>
146
+
147
+ <!-- Top Navigation -->
148
+ <div class="top-nav">
149
+ <div class="back-btn">
150
+ <svg width="48" height="48" viewBox="0 0 24 24">
151
+ <polyline points="15,4 7,12 15,20" fill="none" stroke="#0a6b5f" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"></polyline>
152
+ </svg>
153
+ </div>
154
+ <div class="top-title">Best Matches</div>
155
+ </div>
156
+
157
+ <!-- Carousel dots -->
158
+ <div class="carousel-dots">
159
+ <span class="active"></span>
160
+ <span></span>
161
+ <span></span>
162
+ <span></span>
163
+ <span></span>
164
+ </div>
165
+
166
+ <!-- Main image -->
167
+ <div class="hero-img">
168
+ [IMG: Chinese evergreen foliage plant]
169
+ <div class="avatar">[IMG: Small plant]</div>
170
+ </div>
171
+
172
+ <!-- Plant title and subtitle -->
173
+ <div class="plant-title">Chinese evergreens</div>
174
+ <div class="plant-subtitle">Foliage Plants</div>
175
+
176
+ <!-- Chips -->
177
+ <div class="chips">
178
+ <div class="chip">Air-purifying</div>
179
+ <div class="chip">Easy</div>
180
+ <div class="chip pink">Pet-toxic</div>
181
+ <div class="chip">Trendy</div>
182
+ </div>
183
+
184
+ <!-- Health card -->
185
+ <div class="health-card">
186
+ <div class="card-header">
187
+ <!-- info icon -->
188
+ <svg width="60" height="60" viewBox="0 0 24 24">
189
+ <circle cx="12" cy="12" r="10" fill="none" stroke="#2e3c39" stroke-width="2"></circle>
190
+ <circle cx="12" cy="7" r="1.8" fill="#2e3c39"></circle>
191
+ <rect x="11" y="10" width="2" height="7" fill="#2e3c39"></rect>
192
+ </svg>
193
+ <div class="card-title">Plant Health</div>
194
+ <div class="beta-pill">Beta</div>
195
+ </div>
196
+ <div class="health-ok">Hooray! Your plant looks healthy!</div>
197
+ <div class="card-text">
198
+ The plant was diagnosed automatically.<br>
199
+ Contact our botany experts to be sure about the result.
200
+ </div>
201
+ <div class="cta-btn">Ask experts</div>
202
+ </div>
203
+
204
+ <!-- Bottom actions -->
205
+ <div class="bottom-bar">
206
+ <div class="round-btn camera">
207
+ <!-- camera icon -->
208
+ <svg width="60" height="60" viewBox="0 0 24 24">
209
+ <rect x="3" y="6" width="18" height="13" rx="2" fill="none" stroke="#ffffff" stroke-width="2"></rect>
210
+ <circle cx="12" cy="12.5" r="4" fill="none" stroke="#ffffff" stroke-width="2"></circle>
211
+ <rect x="8" y="3.5" width="8" height="3" rx="1" fill="#ffffff"></rect>
212
+ </svg>
213
+ </div>
214
+ <div class="round-btn share">
215
+ <!-- share icon -->
216
+ <svg width="64" height="64" viewBox="0 0 24 24">
217
+ <circle cx="5" cy="12" r="3" fill="#ffffff"></circle>
218
+ <circle cx="19" cy="5" r="3" fill="#ffffff"></circle>
219
+ <circle cx="19" cy="19" r="3" fill="#ffffff"></circle>
220
+ <line x1="7.5" y1="10.5" x2="16" y2="6.5" stroke="#ffffff" stroke-width="2"></line>
221
+ <line x1="7.5" y1="13.5" x2="16" y2="17.5" stroke="#ffffff" stroke-width="2"></line>
222
+ </svg>
223
+ </div>
224
+ <div class="primary-action">Add to My Plants</div>
225
+ </div>
226
+
227
+ <!-- Gesture bar -->
228
+ <div class="gesture-bar"></div>
229
+
230
+ </div>
231
+ </body>
232
+ </html>
code/14167/14167_8.html ADDED
@@ -0,0 +1,221 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Best Matches - Plant App</title>
5
+ <style>
6
+ body { margin:0; padding:0; background: transparent; font-family: Arial, Helvetica, sans-serif; color:#0b3d36;}
7
+ #render-target {
8
+ width:1080px; height:2400px;
9
+ position:relative; overflow:hidden;
10
+ background:#ffffff;
11
+ }
12
+
13
+ /* Status bar */
14
+ .status-bar {
15
+ height:90px; padding:0 36px;
16
+ display:flex; align-items:center; justify-content:space-between;
17
+ color:#2b2b2b; font-size:36px;
18
+ }
19
+ .status-icons { display:flex; align-items:center; gap:20px;}
20
+ .dot {
21
+ width:26px; height:26px; background:#2b2b2b; border-radius:50%;
22
+ }
23
+ .tiny-dot { width:10px; height:10px; background:#2b2b2b; border-radius:50%; opacity:.8;}
24
+
25
+ /* App bar */
26
+ .app-bar {
27
+ height:120px; display:flex; align-items:center; padding:0 28px;
28
+ border-bottom:1px solid #eaeaea;
29
+ }
30
+ .app-title {
31
+ flex:1; text-align:center; font-size:56px; font-weight:700; color:#0b7368;
32
+ }
33
+ .back-btn {
34
+ width:84px; height:84px; border-radius:50%; display:flex; align-items:center; justify-content:center;
35
+ cursor:pointer;
36
+ }
37
+ .back-btn svg { width:44px; height:44px; fill:#0b7368; }
38
+
39
+ /* Pager dots */
40
+ .pager-dots {
41
+ display:flex; justify-content:center; align-items:center; gap:22px; margin:24px 0 6px 0;
42
+ }
43
+ .pager-dots span {
44
+ width:22px; height:22px; border-radius:50%;
45
+ background:#d6e5df;
46
+ }
47
+ .pager-dots .active { background:#2b7a6b; }
48
+
49
+ /* Hero image */
50
+ .hero-wrap { padding:0 36px; }
51
+ .hero {
52
+ width:100%; height:640px;
53
+ background:#E0E0E0; border:1px solid #BDBDBD; border-radius:36px;
54
+ display:flex; align-items:center; justify-content:center; color:#666; font-size:40px;
55
+ }
56
+
57
+ /* Overlay circular image */
58
+ .overlay-avatar {
59
+ width:220px; height:220px; border-radius:50%;
60
+ background:#E0E0E0; border:8px solid #fff; box-shadow:0 6px 18px rgba(0,0,0,0.12);
61
+ display:flex; align-items:center; justify-content:center; color:#666; font-size:28px;
62
+ position:absolute; left:50%; transform:translateX(-50%);
63
+ top:960px;
64
+ }
65
+
66
+ /* Title */
67
+ .title-block {
68
+ margin-top:140px; text-align:center;
69
+ }
70
+ .plant-title {
71
+ font-size:74px; font-weight:800; color:#0d7a6b; margin:0 40px 10px 40px;
72
+ }
73
+ .subtitle {
74
+ font-size:40px; color:#2b7a6b; font-style:italic;
75
+ }
76
+
77
+ /* Chips */
78
+ .chips {
79
+ margin:28px 36px;
80
+ display:flex; flex-wrap:wrap; gap:24px;
81
+ }
82
+ .chip {
83
+ padding:18px 28px; border-radius:36px; font-size:38px; color:#0d7a6b;
84
+ background:#e6f3ef;
85
+ }
86
+ .chip.pink { background:#ffe3ec; color:#cc456b; }
87
+ .chip.gray { background:#eaf5f2; }
88
+
89
+ /* Card */
90
+ .card {
91
+ margin:20px 36px 0 36px;
92
+ padding:28px; background:#e0ece9; border-radius:36px; color:#2c4a46;
93
+ }
94
+ .card-header {
95
+ display:flex; align-items:center; gap:18px; margin-bottom:12px;
96
+ }
97
+ .card-header .icon {
98
+ width:56px; height:56px; border-radius:50%; background:#b4ccc5; color:#123; display:flex; align-items:center; justify-content:center;
99
+ font-weight:700; font-size:40px;
100
+ }
101
+ .card-header .title {
102
+ font-size:52px; font-weight:800; color:#204b46;
103
+ }
104
+ .beta {
105
+ margin-left:14px; padding:6px 16px; border-radius:16px; background:#dce8e4; color:#3f615b; font-size:32px;
106
+ }
107
+ .card p {
108
+ margin:16px 4px; font-size:40px; line-height:1.35; color:#2e4945;
109
+ }
110
+ .cta {
111
+ margin-top:26px;
112
+ width:100%; height:120px; border-radius:60px;
113
+ background:#6aa79b; color:#fff; font-size:46px; font-weight:700;
114
+ display:flex; align-items:center; justify-content:center; cursor:pointer;
115
+ }
116
+
117
+ /* Bottom action bar */
118
+ .bottom-bar {
119
+ position:absolute; left:0; right:0; bottom:120px;
120
+ display:flex; align-items:center; justify-content:space-between;
121
+ padding:0 48px;
122
+ }
123
+ .circle-btn {
124
+ width:160px; height:160px; border-radius:50%;
125
+ display:flex; align-items:center; justify-content:center;
126
+ box-shadow:0 6px 14px rgba(0,0,0,0.15); color:#fff; font-size:34px;
127
+ }
128
+ .circle-btn.orange { background:#ff9f4b; }
129
+ .circle-btn.green { background:#0f7c6c; }
130
+ .circle-btn svg { width:70px; height:70px; fill:#fff; }
131
+
132
+ .primary-pill {
133
+ flex:1; margin-left:40px;
134
+ height:160px; border-radius:90px; background:#0b7368; color:#fff;
135
+ display:flex; align-items:center; justify-content:center; font-size:54px; font-weight:800;
136
+ box-shadow:0 6px 14px rgba(0,0,0,0.18);
137
+ }
138
+ </style>
139
+ </head>
140
+ <body>
141
+ <div id="render-target">
142
+
143
+ <!-- Status Bar -->
144
+ <div class="status-bar">
145
+ <div style="display:flex; align-items:center; gap:18px;">
146
+ <div style="font-weight:700;">10:24</div>
147
+ <div class="tiny-dot"></div>
148
+ </div>
149
+ <div class="status-icons">
150
+ <div class="dot"></div>
151
+ <div class="dot" style="background:#a8a8a8;"></div>
152
+ <div class="dot" style="background:#2b2b2b;"></div>
153
+ </div>
154
+ </div>
155
+
156
+ <!-- App Bar -->
157
+ <div class="app-bar">
158
+ <div class="back-btn">
159
+ <svg viewBox="0 0 24 24"><path d="M15.41 7.41 14 6l-6 6 6 6 1.41-1.41L10.83 12z"/></svg>
160
+ </div>
161
+ <div class="app-title">Best Matches</div>
162
+ <div style="width:84px;"></div>
163
+ </div>
164
+
165
+ <!-- Pager dots -->
166
+ <div class="pager-dots">
167
+ <span class="active"></span>
168
+ <span></span>
169
+ <span></span>
170
+ <span style="opacity:.6;"></span>
171
+ <span style="opacity:.6;"></span>
172
+ </div>
173
+
174
+ <!-- Hero image -->
175
+ <div class="hero-wrap">
176
+ <div class="hero">[IMG: Variegated foliage plant]</div>
177
+ </div>
178
+
179
+ <!-- Overlay circular photo -->
180
+ <div class="overlay-avatar">[IMG: Plant close-up]</div>
181
+
182
+ <!-- Title and subtitle -->
183
+ <div class="title-block">
184
+ <div class="plant-title">Chinese evergreens</div>
185
+ <div class="subtitle">Foliage Plants</div>
186
+ </div>
187
+
188
+ <!-- Chips -->
189
+ <div class="chips">
190
+ <div class="chip">Air-purifying</div>
191
+ <div class="chip gray">Easy</div>
192
+ <div class="chip pink">Pet-toxic</div>
193
+ <div class="chip gray">Trendy</div>
194
+ </div>
195
+
196
+ <!-- Plant Health card -->
197
+ <div class="card">
198
+ <div class="card-header">
199
+ <div class="icon">!</div>
200
+ <div class="title">Plant Health</div>
201
+ <div class="beta">Beta</div>
202
+ </div>
203
+ <p style="font-weight:800; color:#0b3d36;">Hooray! Your plant looks healthy!</p>
204
+ <p>The plant was diagnosed automatically. Contact our botany experts to be sure about the result.</p>
205
+ <div class="cta">Ask experts</div>
206
+ </div>
207
+
208
+ <!-- Bottom bar -->
209
+ <div class="bottom-bar">
210
+ <div class="circle-btn orange" title="Camera">
211
+ <svg viewBox="0 0 24 24"><path d="M12 5c-3.86 0-7 3.14-7 7s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7zm-1 10-3-3 1.41-1.41L11 11.17l4.59-4.58L17 8l-6 7z"/></svg>
212
+ </div>
213
+ <div class="circle-btn green" title="Share">
214
+ <svg viewBox="0 0 24 24"><path d="M18 16.08c-.76 0-1.44.3-1.96.77L8.91 12.7a2.5 2.5 0 0 0 0-1.39l7.02-4.11A2.99 2.99 0 1 0 15 5a3 3 0 0 0 .04.48L8.02 9.59A3 3 0 1 0 9 14.5c0-.17-.02-.34-.05-.5l7.03 4.11c.52.47 1.2.77 1.97.77a3 3 0 1 0 0-6z"/></svg>
215
+ </div>
216
+ <div class="primary-pill">Add to My Plants</div>
217
+ </div>
218
+
219
+ </div>
220
+ </body>
221
+ </html>
code/14168/14168_0.html ADDED
@@ -0,0 +1,327 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Reviews UI</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
9
+ #render-target {
10
+ width: 1080px; height: 2400px;
11
+ position: relative; overflow: hidden;
12
+ background: #ffffff; color: #202124;
13
+ }
14
+ .status-bar {
15
+ height: 90px; padding: 0 36px;
16
+ display: flex; align-items: center; justify-content: space-between;
17
+ font-size: 36px; color: #5f6368;
18
+ }
19
+ .status-icons { display: flex; gap: 24px; align-items: center; }
20
+ .header {
21
+ height: 130px; padding: 0 24px; display: flex; align-items: center; gap: 24px; border-bottom: 1px solid #eee;
22
+ }
23
+ .header .title {
24
+ font-size: 46px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
25
+ flex: 1;
26
+ }
27
+ .icon-btn { width: 88px; height: 88px; display: flex; align-items: center; justify-content: center; border-radius: 44px; }
28
+ .tabs {
29
+ height: 94px; display: flex; align-items: center; gap: 36px; padding: 0 24px; border-bottom: 1px solid #eee; color: #5f6368; font-size: 34px; letter-spacing: 0.2px;
30
+ }
31
+ .tab { padding: 20px 10px; position: relative; }
32
+ .tab.active { color: #1a73e8; font-weight: 600; }
33
+ .tab.active::after {
34
+ content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 6px; background: #1a73e8; border-radius: 3px;
35
+ }
36
+
37
+ .content { height: calc(2400px - 90px - 130px - 94px); overflow-y: auto; }
38
+ .section { padding: 24px; }
39
+ .rating-summary {
40
+ display: flex; gap: 36px; align-items: flex-start; padding: 24px; border-bottom: 1px solid #eee;
41
+ }
42
+ .rating-left { width: 260px; }
43
+ .rating-score { font-size: 96px; font-weight: 600; line-height: 1; }
44
+ .stars { display: flex; gap: 8px; margin-top: 12px; }
45
+ .stars.small svg { width: 28px; height: 28px; }
46
+ .stars.large svg { width: 40px; height: 40px; }
47
+ .rating-count { font-size: 32px; color: #5f6368; margin-top: 8px; }
48
+ .bars { flex: 1; margin-top: 20px; }
49
+ .bar-row { display: flex; align-items: center; gap: 18px; margin: 14px 0; }
50
+ .bar { height: 18px; background: #e0e0e0; border-radius: 9px; width: 100%; overflow: hidden; }
51
+ .bar .fill { height: 100%; background: #fbbc04; }
52
+ .info-dot { width: 40px; height: 40px; border-radius: 20px; background: #f1f3f4; display: flex; align-items: center; justify-content: center; }
53
+
54
+ .rate-review { padding: 24px; border-bottom: 1px solid #eee; }
55
+ .rate-review h3 { margin: 0; font-size: 42px; font-weight: 600; }
56
+ .rate-review p { margin: 12px 0 24px; color: #5f6368; font-size: 34px; }
57
+ .rating-input { display: flex; align-items: center; gap: 24px; }
58
+ .avatar {
59
+ width: 96px; height: 96px; border-radius: 48px; background: #795548; color: #fff;
60
+ display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 42px;
61
+ }
62
+ .star-input { display: flex; gap: 24px; }
63
+ .star-outline svg { width: 56px; height: 56px; }
64
+
65
+ .sort-bar { display: flex; gap: 18px; padding: 24px; border-bottom: 1px solid #eee; }
66
+ .chip { padding: 18px 26px; border: 1px solid #dadce0; border-radius: 48px; font-size: 34px; color: #3c4043; display: flex; align-items: center; gap: 16px; }
67
+ .chip.active { border-color: #1a73e8; background: #e8f0fe; color: #1a73e8; }
68
+
69
+ .review-card { padding: 24px; border-bottom: 1px solid #eee; }
70
+ .review-header { display: flex; justify-content: space-between; align-items: center; }
71
+ .review-user { display: flex; align-items: center; gap: 24px; }
72
+ .user-avatar {
73
+ width: 80px; height: 80px; border-radius: 40px; overflow: hidden; display: flex; align-items: center; justify-content: center;
74
+ }
75
+ .user-avatar .img {
76
+ width: 80px; height: 80px; background: #E0E0E0; border: 1px solid #BDBDBD;
77
+ display: flex; align-items: center; justify-content: center; color: #757575; font-size: 24px; border-radius: 40px;
78
+ }
79
+ .user-info { display: flex; flex-direction: column; }
80
+ .user-name { font-weight: 700; font-size: 38px; }
81
+ .guide { display: flex; align-items: center; gap: 10px; color: #5f6368; font-size: 30px; margin-top: 6px; }
82
+ .dot-menu { width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; }
83
+
84
+ .review-meta { display: flex; align-items: center; gap: 16px; margin-top: 18px; color: #5f6368; font-size: 32px; }
85
+ .review-text { margin-top: 16px; font-size: 36px; line-height: 1.4; color: #202124; }
86
+ .actions { display: flex; gap: 18px; margin-top: 24px; }
87
+ .btn-outline {
88
+ padding: 18px 30px; border: 1px solid #dadce0; border-radius: 48px; font-size: 34px; color: #1a73e8; display: flex; align-items: center; gap: 16px; background: #fff;
89
+ }
90
+
91
+ .bottom-actions {
92
+ position: absolute; left: 0; right: 0; bottom: 120px;
93
+ display: flex; justify-content: space-around; padding: 12px 24px;
94
+ background: #fff;
95
+ }
96
+ .bottom-chip {
97
+ flex: 1; margin: 0 10px; padding: 24px; border: 1px solid #dadce0; border-radius: 48px;
98
+ display: flex; align-items: center; justify-content: center; gap: 16px; font-size: 34px; color: #3c4043;
99
+ background: #fff;
100
+ }
101
+ .gesture {
102
+ position: absolute; left: 50%; bottom: 36px; transform: translateX(-50%);
103
+ width: 240px; height: 12px; background: #c7c7c7; border-radius: 6px;
104
+ }
105
+ /* Simple icon colors */
106
+ .i-gray { fill: #5f6368; }
107
+ .i-blue { fill: #1a73e8; }
108
+ .i-yellow { fill: #fbbc04; }
109
+ .i-outline { stroke: #5f6368; }
110
+ </style>
111
+ </head>
112
+ <body>
113
+ <div id="render-target">
114
+ <!-- Status Bar -->
115
+ <div class="status-bar">
116
+ <div>8:21</div>
117
+ <div class="status-icons">
118
+ <span>Ⓟ</span>
119
+ <span>✎</span>
120
+ <span>🌐</span>
121
+ <span>my</span>
122
+ <span>•</span>
123
+ <span>📍</span>
124
+ <span>🔊</span>
125
+ <span>🔋</span>
126
+ </div>
127
+ </div>
128
+
129
+ <!-- Header -->
130
+ <div class="header">
131
+ <div class="icon-btn">
132
+ <svg width="44" height="44" viewBox="0 0 24 24"><path class="i-gray" d="M15.5 4.5L7 12l8.5 7.5-1.5 1.5L4 12l10-9 1.5 1.5z"/></svg>
133
+ </div>
134
+ <div class="title">Gwal pahadi selfie point गवाल...</div>
135
+ <div class="icon-btn">
136
+ <svg width="44" height="44" viewBox="0 0 24 24"><path class="i-gray" d="M21 21l-4.3-4.3a7 7 0 10-1.4 1.4L21 21zM10 16a6 6 0 110-12 6 6 0 010 12z"/></svg>
137
+ </div>
138
+ <div class="icon-btn">
139
+ <svg width="44" height="44" viewBox="0 0 24 24"><path class="i-gray" d="M12 5a2 2 0 110-4 2 2 0 010 4zm0 9a2 2 0 110-4 2 2 0 010 4zm0 9a2 2 0 110-4 2 2 0 010 4z"/></svg>
140
+ </div>
141
+ </div>
142
+
143
+ <!-- Tabs -->
144
+ <div class="tabs">
145
+ <div class="tab">OVERVIEW</div>
146
+ <div class="tab active">REVIEWS</div>
147
+ <div class="tab">PHOTOS</div>
148
+ <div class="tab">UPDATES</div>
149
+ <div class="tab">ABOUT</div>
150
+ </div>
151
+
152
+ <div class="content">
153
+ <!-- Rating summary -->
154
+ <div class="rating-summary">
155
+ <div class="rating-left">
156
+ <div class="rating-score">4.7</div>
157
+ <div class="stars large">
158
+ <!-- 4 full, one half-ish -->
159
+ <svg viewBox="0 0 24 24"><path class="i-yellow" d="M12 17.3l-6.1 3.7 1.7-6.9L2 9.8l7-.6L12 2l3 7.2 7 .6-5.6 4.3 1.7 6.9z"/></svg>
160
+ <svg viewBox="0 0 24 24"><path class="i-yellow" d="M12 17.3l-6.1 3.7 1.7-6.9L2 9.8l7-.6L12 2l3 7.2 7 .6-5.6 4.3 1.7 6.9z"/></svg>
161
+ <svg viewBox="0 0 24 24"><path class="i-yellow" d="M12 17.3l-6.1 3.7 1.7-6.9L2 9.8l7-.6L12 2l3 7.2 7 .6-5.6 4.3 1.7 6.9z"/></svg>
162
+ <svg viewBox="0 0 24 24"><path class="i-yellow" d="M12 17.3l-6.1 3.7 1.7-6.9L2 9.8l7-.6L12 2l3 7.2 7 .6-5.6 4.3 1.7 6.9z"/></svg>
163
+ <svg viewBox="0 0 24 24"><path class="i-yellow" d="M12 17.3l-6.1 3.7 1.7-6.9L2 9.8l7-.6L12 2l3 7.2 7 .6-5.6 4.3 1.7 6.9z"/></svg>
164
+ </div>
165
+ <div class="rating-count">(6)</div>
166
+ </div>
167
+ <div class="bars">
168
+ <div class="bar-row">
169
+ <div class="bar"><div class="fill" style="width: 96%;"></div></div>
170
+ <div class="info-dot"><svg width="20" height="20" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10" fill="#9aa0a6"/><rect x="11" y="11" width="2" height="6" fill="#fff"/><circle cx="12" cy="8" r="1.3" fill="#fff"/></svg></div>
171
+ </div>
172
+ <div class="bar-row">
173
+ <div class="bar"><div class="fill" style="width: 68%;"></div></div>
174
+ <div class="info-dot"></div>
175
+ </div>
176
+ <div class="bar-row">
177
+ <div class="bar"><div class="fill" style="width: 24%; background:#e0e0e0;"></div></div>
178
+ <div class="info-dot"></div>
179
+ </div>
180
+ <div class="bar-row">
181
+ <div class="bar"><div class="fill" style="width: 12%; background:#e0e0e0;"></div></div>
182
+ <div class="info-dot"></div>
183
+ </div>
184
+ </div>
185
+ </div>
186
+
187
+ <!-- Rate and review -->
188
+ <div class="rate-review">
189
+ <h3>Rate and review</h3>
190
+ <p>Share your experience to help others</p>
191
+ <div class="rating-input">
192
+ <div class="avatar">C</div>
193
+ <div class="star-input">
194
+ <div class="star-outline"><svg viewBox="0 0 24 24"><path fill="none" stroke="#5f6368" stroke-width="1.5" d="M12 2l3 7.2 7 .6-5.6 4.3 1.7 6.9L12 17l-6.1 4 1.7-6.9L2 9.8l7-.6z"/></svg></div>
195
+ <div class="star-outline"><svg viewBox="0 0 24 24"><path fill="none" stroke="#5f6368" stroke-width="1.5" d="M12 2l3 7.2 7 .6-5.6 4.3 1.7 6.9L12 17l-6.1 4 1.7-6.9L2 9.8l7-.6z"/></svg></div>
196
+ <div class="star-outline"><svg viewBox="0 0 24 24"><path fill="none" stroke="#5f6368" stroke-width="1.5" d="M12 2l3 7.2 7 .6-5.6 4.3 1.7 6.9L12 17l-6.1 4 1.7-6.9L2 9.8l7-.6z"/></svg></div>
197
+ <div class="star-outline"><svg viewBox="0 0 24 24"><path fill="none" stroke="#5f6368" stroke-width="1.5" d="M12 2l3 7.2 7 .6-5.6 4.3 1.7 6.9L12 17l-6.1 4 1.7-6.9L2 9.8l7-.6z"/></svg></div>
198
+ <div class="star-outline"><svg viewBox="0 0 24 24"><path fill="none" stroke="#5f6368" stroke-width="1.5" d="M12 2l3 7.2 7 .6-5.6 4.3 1.7 6.9L12 17l-6.1 4 1.7-6.9L2 9.8l7-.6z"/></svg></div>
199
+ </div>
200
+ </div>
201
+ </div>
202
+
203
+ <!-- Sort chips -->
204
+ <div class="sort-bar">
205
+ <div class="chip active">
206
+ <svg width="26" height="26" viewBox="0 0 24 24"><path class="i-blue" d="M9 16.2l-3.5-3.5-1.5 1.5L9 19.2l11-11-1.5-1.5z"/></svg>
207
+ <span>Most relevant</span>
208
+ </div>
209
+ <div class="chip">Newest</div>
210
+ <div class="chip">Highest</div>
211
+ <div class="chip">Lowest</div>
212
+ </div>
213
+
214
+ <!-- Review 1 -->
215
+ <div class="review-card">
216
+ <div class="review-header">
217
+ <div class="review-user">
218
+ <div class="user-avatar">
219
+ <div class="img">[IMG: Avatar]</div>
220
+ </div>
221
+ <div class="user-info">
222
+ <div class="user-name">Reviewer A</div>
223
+ <div class="guide">
224
+ <svg width="22" height="22" viewBox="0 0 24 24"><path class="i-yellow" d="M12 17.3l-6.1 3.7 1.7-6.9L2 9.8l7-.6L12 2l3 7.2 7 .6-5.6 4.3 1.7 6.9z"/></svg>
225
+ <span>Local Guide · 120 reviews</span>
226
+ </div>
227
+ </div>
228
+ </div>
229
+ <div class="dot-menu">
230
+ <svg width="32" height="32" viewBox="0 0 24 24"><path class="i-gray" d="M12 5a2 2 0 110-4 2 2 0 010 4zm0 9a2 2 0 110-4 2 2 0 010 4zm0 9a2 2 0 110-4 2 2 0 010 4z"/></svg>
231
+ </div>
232
+ </div>
233
+ <div class="review-meta">
234
+ <div class="stars small">
235
+ <svg viewBox="0 0 24 24"><path class="i-yellow" d="M12 17.3l-6.1 3.7 1.7-6.9L2 9.8l7-.6L12 2l3 7.2 7 .6-5.6 4.3 1.7 6.9z"/></svg>
236
+ <svg viewBox="0 0 24 24"><path class="i-yellow" d="M12 17.3l-6.1 3.7 1.7-6.9L2 9.8l7-.6L12 2l3 7.2 7 .6-5.6 4.3 1.7 6.9z"/></svg>
237
+ <svg viewBox="0 0 24 24"><path class="i-yellow" d="M12 17.3l-6.1 3.7 1.7-6.9L2 9.8l7-.6L12 2l3 7.2 7 .6-5.6 4.3 1.7 6.9z"/></svg>
238
+ <svg viewBox="0 0 24 24"><path class="i-yellow" d="M12 17.3l-6.1 3.7 1.7-6.9L2 9.8l7-.6L12 2l3 7.2 7 .6-5.6 4.3 1.7 6.9z"/></svg>
239
+ <svg viewBox="0 0 24 24"><path fill="none" stroke="#e0e0e0" stroke-width="1.5" d="M12 2l3 7.2 7 .6-5.6 4.3 1.7 6.9L12 17l-6.1 4 1.7-6.9L2 9.8l7-.6z"/></svg>
240
+ </div>
241
+ <span>a year ago</span>
242
+ </div>
243
+ <div class="review-text">
244
+ Good to see but not easy to reach if you don't have personal vehicle.
245
+ </div>
246
+ <div class="actions">
247
+ <button class="btn-outline">
248
+ <svg width="28" height="28" viewBox="0 0 24 24"><path class="i-blue" d="M14 2H6a4 4 0 00-4 4v10a4 4 0 004 4h4l6-6-4-4 4-4-6-4z"/></svg>
249
+ Helpful (2)
250
+ </button>
251
+ <button class="btn-outline" style="color:#3c4043">
252
+ <svg width="28" height="28" viewBox="0 0 24 24"><path fill="#5f6368" d="M10 22h8a4 4 0 004-4V8a4 4 0 00-4-4h-4l-6 6 4 4-4 4 6 4z"/></svg>
253
+ Not helpful
254
+ </button>
255
+ </div>
256
+ </div>
257
+
258
+ <!-- Review 2 -->
259
+ <div class="review-card">
260
+ <div class="review-header">
261
+ <div class="review-user">
262
+ <div class="user-avatar">
263
+ <div class="img">[IMG: Avatar]</div>
264
+ </div>
265
+ <div class="user-info">
266
+ <div class="user-name">Reviewer B</div>
267
+ <div class="guide">
268
+ <svg width="22" height="22" viewBox="0 0 24 24"><path class="i-yellow" d="M12 17.3l-6.1 3.7 1.7-6.9L2 9.8l7-.6L12 2l3 7.2 7 .6-5.6 4.3 1.7 6.9z"/></svg>
269
+ <span>Local Guide · 164 reviews</span>
270
+ </div>
271
+ </div>
272
+ </div>
273
+ <div class="dot-menu">
274
+ <svg width="32" height="32" viewBox="0 0 24 24"><path class="i-gray" d="M12 5a2 2 0 110-4 2 2 0 010 4zm0 9a2 2 0 110-4 2 2 0 010 4zm0 9a2 2 0 110-4 2 2 0 010 4z"/></svg>
275
+ </div>
276
+ </div>
277
+ <div class="review-meta">
278
+ <div class="stars small">
279
+ <svg viewBox="0 0 24 24"><path class="i-yellow" d="M12 17.3l-6.1 3.7 1.7-6.9L2 9.8l7-.6L12 2l3 7.2 7 .6-5.6 4.3 1.7 6.9z"/></svg>
280
+ <svg viewBox="0 0 24 24"><path class="i-yellow" d="M12 17.3l-6.1 3.7 1.7-6.9L2 9.8l7-.6L12 2l3 7.2 7 .6-5.6 4.3 1.7 6.9z"/></svg>
281
+ <svg viewBox="0 0 24 24"><path class="i-yellow" d="M12 17.3l-6.1 3.7 1.7-6.9L2 9.8l7-.6L12 2l3 7.2 7 .6-5.6 4.3 1.7 6.9z"/></svg>
282
+ <svg viewBox="0 0 24 24"><path class="i-yellow" d="M12 17.3l-6.1 3.7 1.7-6.9L2 9.8l7-.6L12 2l3 7.2 7 .6-5.6 4.3 1.7 6.9z"/></svg>
283
+ <svg viewBox="0 0 24 24"><path class="i-yellow" d="M12 17.3l-6.1 3.7 1.7-6.9L2 9.8l7-.6L12 2l3 7.2 7 .6-5.6 4.3 1.7 6.9z"/></svg>
284
+ </div>
285
+ <span>8 months ago</span>
286
+ </div>
287
+ <div class="review-text">
288
+ We spoiled the Nature,
289
+ </div>
290
+ <div class="actions">
291
+ <button class="btn-outline">
292
+ <svg width="28" height="28" viewBox="0 0 24 24"><path class="i-blue" d="M14 2H6a4 4 0 00-4 4v10a4 4 0 004 4h4l6-6-4-4 4-4-6-4z"/></svg>
293
+ Helpful
294
+ </button>
295
+ <button class="btn-outline" style="color:#3c4043">
296
+ <svg width="28" height="28" viewBox="0 0 24 24"><path fill="#5f6368" d="M10 22h8a4 4 0 004-4V8a4 4 0 00-4-4h-4l-6 6 4 4-4 4 6 4z"/></svg>
297
+ Not helpful
298
+ </button>
299
+ </div>
300
+ </div>
301
+ </div>
302
+
303
+ <!-- Bottom action chips -->
304
+ <div class="bottom-actions">
305
+ <div class="bottom-chip">
306
+ <svg width="28" height="28" viewBox="0 0 24 24"><path class="i-gray" d="M12 2l7 7-7 13L5 9l7-7z"/></svg>
307
+ <span>Directions</span>
308
+ </div>
309
+ <div class="bottom-chip">
310
+ <svg width="28" height="28" viewBox="0 0 24 24"><path class="i-gray" d="M19 3H5a2 2 0 00-2 2v16l9-4 9 4V5a2 2 0 00-2-2z"/></svg>
311
+ <span>Save</span>
312
+ </div>
313
+ <div class="bottom-chip">
314
+ <svg width="28" height="28" viewBox="0 0 24 24"><path class="i-gray" d="M4 12l8-8v6h8v4h-8v6z"/></svg>
315
+ <span>Share</span>
316
+ </div>
317
+ <div class="bottom-chip">
318
+ <svg width="28" height="28" viewBox="0 0 24 24"><path class="i-gray" d="M5 4h14v4H5V4zm0 6h14v10H5V10z"/></svg>
319
+ <span>Post</span>
320
+ </div>
321
+ </div>
322
+
323
+ <!-- Gesture bar -->
324
+ <div class="gesture"></div>
325
+ </div>
326
+ </body>
327
+ </html>
code/14168/14168_1.html ADDED
@@ -0,0 +1,210 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Detail Page - Waste to Wonder Park</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
9
+ #render-target {
10
+ width: 1080px; height: 2400px; position: relative; overflow: hidden;
11
+ background: #ffffff; color: #111;
12
+ }
13
+
14
+ /* Status bar */
15
+ .status-bar {
16
+ height: 86px;
17
+ padding: 0 28px;
18
+ display: flex; align-items: center; justify-content: space-between;
19
+ color: #6b6b6b; font-size: 34px;
20
+ }
21
+ .status-icons { display: flex; align-items: center; gap: 22px; }
22
+ .dot { width: 10px; height: 10px; background:#6b6b6b; border-radius: 50%; display:inline-block; }
23
+
24
+ /* App bar */
25
+ .app-bar {
26
+ height: 120px; display:flex; align-items:center; justify-content: space-between;
27
+ padding: 0 28px;
28
+ }
29
+ .icon-btn { width: 88px; height: 88px; border-radius: 44px; border: 0; background: transparent; display:flex; align-items:center; justify-content:center; }
30
+ .actions { display:flex; gap: 28px; }
31
+
32
+ /* Hero image area */
33
+ .hero { width: 100%; }
34
+ .hero-img {
35
+ width: 100%; height: 720px; background: #E0E0E0;
36
+ border-top: 1px solid #BDBDBD; border-bottom: 1px solid #BDBDBD;
37
+ display:flex; align-items:center; justify-content:center; color:#757575; font-size: 40px; position: relative;
38
+ }
39
+ .photo-count {
40
+ position: absolute; right: 28px; bottom: 26px;
41
+ background: rgba(0,0,0,0.85); color: #fff; padding: 14px 22px; border-radius: 18px;
42
+ font-weight: 700; font-size: 32px;
43
+ }
44
+
45
+ /* Content */
46
+ .content { padding: 44px 44px 0 44px; }
47
+ h1 { margin: 18px 0 22px; font-size: 76px; line-height: 1.1; letter-spacing: -0.5px; }
48
+ .rating-row { display:flex; align-items:center; gap: 26px; margin: 6px 0 18px; }
49
+ .bubbles { display:flex; gap: 12px; }
50
+ .bubble { width: 28px; height: 28px; border-radius: 50%; background:#34E0A1; }
51
+ .bubble.outline { background: transparent; border: 4px solid #34E0A1; }
52
+ .link { color:#147E6E; text-decoration: underline; font-size: 36px; }
53
+ .meta { font-size: 38px; color:#333; margin-top: 10px; }
54
+ .meta a { color:#147E6E; text-decoration: underline; }
55
+ .meta2 { font-size: 34px; color:#555; margin-top: 10px; }
56
+
57
+ /* Suggested duration card-like row */
58
+ .duration-row {
59
+ margin: 54px 0 36px; display:flex; align-items:center; gap: 28px;
60
+ }
61
+ .duration-icon {
62
+ width: 120px; height: 120px; border-radius: 60px; background:#F0F0F0; border: 1px solid #E0E0E0;
63
+ display:flex; align-items:center; justify-content:center;
64
+ }
65
+ .dur-title { font-weight: 700; font-size: 42px; margin-bottom: 6px; }
66
+ .dur-sub { font-size: 36px; color:#444; }
67
+
68
+ h2 { font-size: 64px; margin: 40px 0 20px; }
69
+
70
+ /* Bottom nav */
71
+ .bottom-nav {
72
+ position: absolute; left: 0; right: 0; bottom: 0;
73
+ height: 210px; background: #ffffff; border-top: 1px solid #E6E6E6;
74
+ display:flex; align-items: center; justify-content: space-around;
75
+ padding-bottom: 28px;
76
+ }
77
+ .nav-item { width: 20%; display:flex; flex-direction: column; align-items:center; justify-content:center; color:#7a7a7a; }
78
+ .nav-label { font-size: 28px; margin-top: 12px; }
79
+ .active { color:#111; }
80
+ .active .nav-label { color:#111; }
81
+ .nav-indicator {
82
+ position: absolute; top: 0; height: 8px; width: 200px; background:#34E0A1; border-radius: 4px;
83
+ left: calc(50% - 100px); /* center over Search item */
84
+ }
85
+
86
+ /* Gesture bar */
87
+ .gesture {
88
+ position: absolute; bottom: 220px; left: 50%; transform: translateX(-50%);
89
+ width: 320px; height: 18px; background:#BDBDBD; border-radius: 12px;
90
+ opacity: 0.85;
91
+ }
92
+ </style>
93
+ </head>
94
+ <body>
95
+ <div id="render-target">
96
+
97
+ <!-- Status Bar -->
98
+ <div class="status-bar">
99
+ <div>8:23</div>
100
+ <div class="status-icons">
101
+ <!-- simple placeholders for system icons -->
102
+ <svg width="38" height="38" viewBox="0 0 24 24" fill="#6b6b6b"><circle cx="12" cy="12" r="10"/></svg>
103
+ <svg width="38" height="38" viewBox="0 0 24 24" fill="none" stroke="#6b6b6b" stroke-width="2"><path d="M3 12h18"/><path d="M12 3v18"/></svg>
104
+ <svg width="38" height="38" viewBox="0 0 24 24" fill="none" stroke="#6b6b6b" stroke-width="2"><circle cx="12" cy="12" r="8"/><path d="M12 2v4M12 18v4M2 12h4M18 12h4"/></svg>
105
+ <svg width="38" height="38" viewBox="0 0 24 24" fill="none" stroke="#6b6b6b" stroke-width="2"><path d="M2 8l10-5 10 5v8l-10 5-10-5z"/></svg>
106
+ <div class="dot"></div>
107
+ <svg width="38" height="38" viewBox="0 0 24 24" fill="none" stroke="#6b6b6b" stroke-width="2"><path d="M3 12a9 9 0 0 1 18 0"/><path d="M21 12v7H3v-7"/></svg>
108
+ <svg width="38" height="38" viewBox="0 0 24 24" fill="#6b6b6b"><path d="M12 2l4 4v12l-4 4-4-4V6z"/></svg>
109
+ </div>
110
+ </div>
111
+
112
+ <!-- App Bar -->
113
+ <div class="app-bar">
114
+ <button class="icon-btn" aria-label="Back">
115
+ <svg width="44" height="44" viewBox="0 0 24 24" fill="none" stroke="#111" stroke-width="2"><path d="M15 18l-6-6 6-6"/></svg>
116
+ </button>
117
+ <div class="actions">
118
+ <button class="icon-btn" aria-label="Share">
119
+ <svg width="44" height="44" viewBox="0 0 24 24" fill="none" stroke="#111" stroke-width="2">
120
+ <circle cx="18" cy="5" r="3"/><circle cx="6" cy="12" r="3"/><circle cx="18" cy="19" r="3"/>
121
+ <path d="M8.6 11.2l6.8-4.4M8.6 12.8l6.8 4.4"/>
122
+ </svg>
123
+ </button>
124
+ <button class="icon-btn" aria-label="Favorite">
125
+ <svg width="44" height="44" viewBox="0 0 24 24" fill="none" stroke="#111" stroke-width="2">
126
+ <path d="M12 21s-7-4.35-7-10a4 4 0 0 1 7-2 4 4 0 0 1 7 2c0 5.65-7 10-7 10z"/>
127
+ </svg>
128
+ </button>
129
+ <button class="icon-btn" aria-label="Cart">
130
+ <svg width="44" height="44" viewBox="0 0 24 24" fill="none" stroke="#111" stroke-width="2">
131
+ <circle cx="9" cy="20" r="2"/><circle cx="17" cy="20" r="2"/>
132
+ <path d="M3 4h3l2.5 10h9l2-7H6"/>
133
+ </svg>
134
+ </button>
135
+ </div>
136
+ </div>
137
+
138
+ <!-- Hero Image -->
139
+ <div class="hero">
140
+ <div class="hero-img">
141
+ [IMG: Park landmark image]
142
+ <div class="photo-count">6/306</div>
143
+ </div>
144
+ </div>
145
+
146
+ <!-- Content -->
147
+ <div class="content">
148
+ <h1>Waste to Wonder Park</h1>
149
+
150
+ <div class="rating-row">
151
+ <div class="bubbles">
152
+ <div class="bubble"></div>
153
+ <div class="bubble"></div>
154
+ <div class="bubble"></div>
155
+ <div class="bubble"></div>
156
+ <div class="bubble outline"></div>
157
+ </div>
158
+ <a class="link" href="#">82 reviews</a>
159
+ </div>
160
+
161
+ <div class="meta">#62 of 558 things to do in <a href="#">New Delhi</a></div>
162
+ <div class="meta2">Points of Interest &amp; Landmarks</div>
163
+
164
+ <div class="duration-row">
165
+ <div class="duration-icon">
166
+ <svg width="60" height="60" viewBox="0 0 24 24" fill="none" stroke="#7a7a7a" stroke-width="2">
167
+ <circle cx="12" cy="12" r="8"/>
168
+ <path d="M12 8v5l3 2"/>
169
+ </svg>
170
+ </div>
171
+ <div>
172
+ <div class="dur-title">Suggested duration</div>
173
+ <div class="dur-sub">2-3 hours</div>
174
+ </div>
175
+ </div>
176
+
177
+ <h2>Explore the area</h2>
178
+ </div>
179
+
180
+ <!-- Gesture bar (system) -->
181
+ <div class="gesture"></div>
182
+
183
+ <!-- Bottom Navigation -->
184
+ <div class="bottom-nav">
185
+ <div class="nav-indicator"></div>
186
+ <div class="nav-item">
187
+ <svg width="44" height="44" viewBox="0 0 24 24" fill="none" stroke="#7a7a7a" stroke-width="2"><path d="M3 9l9-7 9 7v11H3z"/><path d="M9 22V12h6v10"/></svg>
188
+ <div class="nav-label">Explore</div>
189
+ </div>
190
+ <div class="nav-item active">
191
+ <svg width="44" height="44" viewBox="0 0 24 24" fill="none" stroke="#111" stroke-width="2"><circle cx="11" cy="11" r="7"/><path d="M21 21l-4.3-4.3"/></svg>
192
+ <div class="nav-label">Search</div>
193
+ </div>
194
+ <div class="nav-item">
195
+ <svg width="44" height="44" viewBox="0 0 24 24" fill="none" stroke="#7a7a7a" stroke-width="2"><path d="M12 21s-7-4.35-7-10a4 4 0 0 1 7-2 4 4 0 0 1 7 2c0 5.65-7 10-7 10z"/></svg>
196
+ <div class="nav-label">Plan</div>
197
+ </div>
198
+ <div class="nav-item">
199
+ <svg width="44" height="44" viewBox="0 0 24 24" fill="none" stroke="#7a7a7a" stroke-width="2"><path d="M4 20h16"/><path d="M6 17l8-8 3 3-8 8H6z"/><path d="M14 6l2-2 3 3-2 2z"/></svg>
200
+ <div class="nav-label">Review</div>
201
+ </div>
202
+ <div class="nav-item">
203
+ <svg width="44" height="44" viewBox="0 0 24 24" fill="none" stroke="#7a7a7a" stroke-width="2"><circle cx="12" cy="8" r="4"/><path d="M4 21c0-4 4-7 8-7s8 3 8 7"/></svg>
204
+ <div class="nav-label">Account</div>
205
+ </div>
206
+ </div>
207
+
208
+ </div>
209
+ </body>
210
+ </html>
code/14168/14168_2.html ADDED
@@ -0,0 +1,217 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Explore the area - Mock</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; }
9
+ #render-target {
10
+ width: 1080px; height: 2400px;
11
+ position: relative; overflow: hidden;
12
+ background: #ffffff; color: #111;
13
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
14
+ }
15
+ /* Status bar */
16
+ .status-bar {
17
+ height: 86px;
18
+ padding: 0 36px;
19
+ display: flex; align-items: center; justify-content: space-between;
20
+ font-size: 34px; color: #2b2b2b;
21
+ }
22
+ .status-icons { display: flex; align-items: center; gap: 22px; color: #707070; }
23
+ .circle-dot { width: 10px; height: 10px; background:#707070; border-radius: 50%; display: inline-block; }
24
+
25
+ /* Top app bar */
26
+ .app-bar {
27
+ height: 120px;
28
+ padding: 0 32px;
29
+ display: flex; align-items: center; justify-content: space-between;
30
+ }
31
+ .icon-btn { width: 84px; height: 84px; display: flex; align-items: center; justify-content: center; }
32
+ .icon { width: 44px; height: 44px; stroke: #111; fill: none; stroke-width: 3; }
33
+ .thin-line { height: 2px; background: #eee; }
34
+
35
+ .content { padding: 36px 48px 0 48px; }
36
+ .h1 { font-size: 72px; font-weight: 700; letter-spacing: -0.5px; margin: 18px 0 28px; }
37
+ .map-box {
38
+ position: relative;
39
+ width: 984px; height: 420px; border-radius: 12px; overflow: hidden;
40
+ background:#E0E0E0; border:1px solid #BDBDBD;
41
+ display: flex; align-items: center; justify-content: center; color:#757575; font-size:38px;
42
+ }
43
+ .pin {
44
+ position: absolute; right: 340px; top: 120px;
45
+ width: 150px; height: 150px; border-radius: 999px;
46
+ background: rgba(0,128,96,0.15); display:flex; align-items:center; justify-content:center;
47
+ }
48
+ .pin-inner {
49
+ width: 98px; height: 98px; background:#0f6; border:4px solid #083; border-radius: 999px;
50
+ display:flex; align-items:center; justify-content:center; color:#083; font-weight:700;
51
+ }
52
+
53
+ .section-title { font-size: 48px; font-weight: 700; margin-top: 52px; }
54
+ .address-link {
55
+ margin-top: 12px;
56
+ font-size: 38px; line-height: 1.35; color: #0a0a0a; text-decoration: underline;
57
+ }
58
+ .muted { color:#444; opacity:0.8; font-size: 34px; margin-top: 16px; }
59
+
60
+ .h2 { font-size: 64px; font-weight: 800; margin: 70px 0 24px; }
61
+ .divider { height: 2px; background:#e8e8e8; margin: 22px 0; }
62
+
63
+ .card {
64
+ display: flex; gap: 26px; padding: 26px 6px;
65
+ }
66
+ .thumb {
67
+ width: 210px; height: 210px; background:#E0E0E0; border:1px solid #BDBDBD;
68
+ display:flex; align-items:center; justify-content:center; color:#757575; font-size:30px; border-radius: 10px;
69
+ flex-shrink: 0;
70
+ }
71
+ .card-body { flex: 1; padding-top: 8px; }
72
+ .title {
73
+ font-size: 44px; font-weight: 700; color:#111; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
74
+ margin-bottom: 8px;
75
+ }
76
+ .rating {
77
+ display:flex; align-items:center; gap: 14px; margin: 8px 0 6px;
78
+ }
79
+ .dots { display:flex; gap: 6px; }
80
+ .dot { width: 20px; height: 20px; background:#16b37e; border-radius:50%; }
81
+ .reviews { font-size: 32px; color:#444; }
82
+ .price { font-size: 34px; color:#333; }
83
+
84
+ /* Bottom navigation */
85
+ .bottom-nav {
86
+ position: absolute; left: 0; right: 0; bottom: 0;
87
+ height: 200px; background:#fff; border-top:1px solid #e8e8e8;
88
+ display:flex; align-items: center; justify-content: space-around;
89
+ }
90
+ .nav-item { width: 180px; display:flex; flex-direction: column; align-items:center; gap: 8px; color:#8f8f8f; font-size: 28px; }
91
+ .nav-item svg { width: 52px; height: 52px; stroke:#8f8f8f; fill:none; stroke-width:3; }
92
+ .nav-item.active { color:#12b886; }
93
+ .nav-item.active svg { stroke:#12b886; }
94
+ .active-indicator {
95
+ position: absolute; top: -6px; width: 180px; height: 8px; background:#12b886; border-radius: 8px;
96
+ }
97
+ .home-indicator {
98
+ position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
99
+ width: 300px; height: 12px; background:#bdbdbd; border-radius: 8px; opacity:0.8;
100
+ }
101
+ </style>
102
+ </head>
103
+ <body>
104
+ <div id="render-target">
105
+ <!-- Status bar -->
106
+ <div class="status-bar">
107
+ <div>8:23</div>
108
+ <div class="status-icons">
109
+ <span>📄</span>
110
+ <span>🌐</span>
111
+ <span class="circle-dot"></span>
112
+ <svg class="icon" viewBox="0 0 24 24"><path d="M3 12h6l4 8 4-16h4"/></svg>
113
+ <svg class="icon" viewBox="0 0 24 24"><path d="M3 6h18M3 12h14M3 18h10"/></svg>
114
+ </div>
115
+ </div>
116
+
117
+ <!-- App bar -->
118
+ <div class="app-bar">
119
+ <div class="icon-btn" aria-label="Back">
120
+ <svg class="icon" viewBox="0 0 24 24">
121
+ <path d="M15 4L7 12l8 8"/>
122
+ </svg>
123
+ </div>
124
+ <div style="display:flex; align-items:center; gap:24px;">
125
+ <div class="icon-btn" aria-label="Share">
126
+ <svg class="icon" viewBox="0 0 24 24">
127
+ <circle cx="6" cy="12" r="2"/><circle cx="18" cy="6" r="2"/><circle cx="18" cy="18" r="2"/>
128
+ <path d="M8 12l8-6M8 12l8 6"/>
129
+ </svg>
130
+ </div>
131
+ <div class="icon-btn" aria-label="Favorite">
132
+ <svg class="icon" viewBox="0 0 24 24">
133
+ <path d="M12 20s-7-4.5-7-10a4.5 4.5 0 0 1 8-3 4.5 4.5 0 0 1 8 3c0 5.5-7 10-7 10z"/>
134
+ </svg>
135
+ </div>
136
+ <div class="icon-btn" aria-label="Cart">
137
+ <svg class="icon" viewBox="0 0 24 24">
138
+ <circle cx="9" cy="20" r="1.8"/><circle cx="17" cy="20" r="1.8"/>
139
+ <path d="M3 4h3l2.5 12h10.5l2-9H7.2"/>
140
+ </svg>
141
+ </div>
142
+ </div>
143
+ </div>
144
+ <div class="thin-line"></div>
145
+
146
+ <div class="content">
147
+ <div class="h1">Explore the area</div>
148
+
149
+ <div class="map-box">
150
+ [IMG: Google Map of New Delhi with markers]
151
+ <div class="pin">
152
+ <div class="pin-inner">TIX</div>
153
+ </div>
154
+ </div>
155
+
156
+ <div class="section-title">Address</div>
157
+ <div class="address-link">
158
+ Block A, Ganga Vihar, Sarai Kale Khan Near Nizammudin Metro Station, New Delhi 110013 India
159
+ </div>
160
+ <div class="muted">12 mi from your location</div>
161
+
162
+ <div class="h2">Browse tour options</div>
163
+
164
+ <div class="divider"></div>
165
+ <div class="card">
166
+ <div class="thumb">[IMG: Temple Night View]</div>
167
+ <div class="card-body">
168
+ <div class="title">Akshardham Temple with Wast...</div>
169
+ <div class="price">from $37.34 per adult (price varies by group size)</div>
170
+ </div>
171
+ </div>
172
+
173
+ <div class="divider"></div>
174
+ <div class="card">
175
+ <div class="thumb">[IMG: Humayun's Tomb]</div>
176
+ <div class="card-body">
177
+ <div class="title">Private Full Day Old and New D...</div>
178
+ <div class="rating">
179
+ <div class="dots">
180
+ <div class="dot"></div><div class="dot"></div><div class="dot"></div><div class="dot"></div><div class="dot"></div>
181
+ </div>
182
+ <div class="reviews">1,297</div>
183
+ </div>
184
+ <div class="price">from $19.00 per adult (price varies by group size)</div>
185
+ </div>
186
+ </div>
187
+ <div class="divider"></div>
188
+ </div>
189
+
190
+ <!-- Bottom navigation -->
191
+ <div class="bottom-nav">
192
+ <div class="nav-item">
193
+ <svg viewBox="0 0 24 24"><path d="M3 10l9-7 9 7v9H3zM9 22V12h6v10"/></svg>
194
+ <div>Explore</div>
195
+ </div>
196
+ <div class="nav-item active" style="position: relative;">
197
+ <div class="active-indicator"></div>
198
+ <svg viewBox="0 0 24 24"><circle cx="11" cy="11" r="7"/><path d="M20 20l-4-4"/></svg>
199
+ <div>Search</div>
200
+ </div>
201
+ <div class="nav-item">
202
+ <svg viewBox="0 0 24 24"><path d="M12 21s-7-4.5-7-10a4.5 4.5 0 0 1 8-3 4.5 4.5 0 0 1 8 3c0 5.5-7 10-7 10z"/></svg>
203
+ <div>Plan</div>
204
+ </div>
205
+ <div class="nav-item">
206
+ <svg viewBox="0 0 24 24"><path d="M4 4h16v4H4zM6 8v12m6-12v12m6-12v12"/></svg>
207
+ <div>Review</div>
208
+ </div>
209
+ <div class="nav-item">
210
+ <svg viewBox="0 0 24 24"><circle cx="12" cy="8" r="4"/><path d="M4 22c2-5 14-5 16 0"/></svg>
211
+ <div>Account</div>
212
+ </div>
213
+ </div>
214
+ <div class="home-indicator"></div>
215
+ </div>
216
+ </body>
217
+ </html>
code/14168/14168_3.html ADDED
@@ -0,0 +1,290 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; color: #111; }
9
+ #render-target {
10
+ width: 1080px; height: 2400px; position: relative; overflow: hidden; background: #ffffff;
11
+ }
12
+ .status-bar {
13
+ height: 96px; padding: 0 32px; display: flex; align-items: center; justify-content: space-between; font-size: 40px; color: #333;
14
+ }
15
+ .status-icons { display: flex; align-items: center; gap: 22px; }
16
+ .dot { width: 12px; height: 12px; background: #7d7d7d; border-radius: 50%; }
17
+ .status-icon {
18
+ width: 42px; height: 42px; border: 2px solid #777; border-radius: 8px;
19
+ }
20
+
21
+ .app-bar {
22
+ height: 120px; border-bottom: 1px solid #E6E6E6; display: flex; align-items: center; justify-content: space-between; padding: 0 32px;
23
+ background: #fff;
24
+ }
25
+ .app-actions { display: flex; align-items: center; gap: 36px; }
26
+ .icon-btn { width: 56px; height: 56px; display: inline-flex; align-items: center; justify-content: center; }
27
+ .icon { width: 40px; height: 40px; }
28
+
29
+ .content { padding: 24px 32px 0 32px; }
30
+ .divider { height: 1px; background: #EAEAEA; margin: 12px 0; }
31
+
32
+ /* Tour list item */
33
+ .tour-item { display: flex; gap: 28px; padding: 24px 0; align-items: flex-start; }
34
+ .img-ph {
35
+ background: #E0E0E0; border: 1px solid #BDBDBD; color: #757575;
36
+ display: flex; justify-content: center; align-items: center; text-align: center;
37
+ }
38
+ .tour-thumb { width: 190px; height: 190px; }
39
+ .label { font-size: 34px; line-height: 1.2; }
40
+ .tour-title { font-weight: 700; font-size: 44px; margin-bottom: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 760px; }
41
+ .rating-row { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
42
+ .green-dot { width: 22px; height: 22px; background: #2A9D63; border-radius: 50%; }
43
+ .reviews { font-size: 34px; color: #333; }
44
+ .price { font-size: 34px; color: #555; }
45
+
46
+ /* CTA button */
47
+ .cta-wrap { display: flex; justify-content: center; margin: 28px 0 40px; }
48
+ .cta-btn {
49
+ background: #D8A33C; color: #111; font-weight: 700; font-size: 42px; border: none; border-radius: 60px;
50
+ width: 896px; height: 120px; box-shadow: 0 2px 0 rgba(0,0,0,0.06);
51
+ }
52
+
53
+ /* Ad card */
54
+ .ad-card { border: 1px solid #E4E4E4; border-radius: 16px; padding: 24px; display: block; background: #fff; }
55
+ .ad-row { display: flex; gap: 24px; }
56
+ .ad-media { width: 520px; height: 320px; }
57
+ .ad-info { flex: 1; display: flex; flex-direction: column; justify-content: flex-start; }
58
+ .ad-brand { display: flex; align-items: center; gap: 16px; margin-bottom: 12px; }
59
+ .brand-pill {
60
+ width: 120px; height: 120px; border-radius: 24px; background: #E0E0E0; border: 1px solid #BDBDBD;
61
+ display: flex; justify-content: center; align-items: center; color: #757575; font-size: 32px;
62
+ }
63
+ .ad-title { font-weight: 700; font-size: 48px; margin: 0 0 12px; }
64
+ .ad-meta { display: flex; align-items: center; gap: 14px; color: #555; font-size: 34px; margin-bottom: 16px; }
65
+ .star { width: 30px; height: 30px; }
66
+ .store-row { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; font-size: 36px; color: #333; }
67
+ .store-ph { width: 220px; height: 80px; }
68
+ .install-wrap { display: flex; justify-content: center; padding: 16px 0; }
69
+ .install-btn {
70
+ width: 760px; height: 110px; background: #2E7D32; color: #fff; border: none; border-radius: 16px;
71
+ font-size: 42px; font-weight: 700; box-shadow: 0 6px 10px rgba(0,0,0,0.12);
72
+ }
73
+
74
+ /* Section title */
75
+ .section-title { font-size: 64px; font-weight: 800; margin: 60px 0 24px; }
76
+
77
+ /* Nearby grid */
78
+ .nearby-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
79
+ .card { border-radius: 16px; overflow: hidden; background: #fff; }
80
+ .card-media { position: relative; }
81
+ .card-img { width: 100%; height: 320px; }
82
+ .fav-circle {
83
+ position: absolute; top: 18px; right: 18px; width: 84px; height: 84px; background: #fff; border-radius: 42px;
84
+ box-shadow: 0 2px 6px rgba(0,0,0,0.12); display: flex; align-items: center; justify-content: center;
85
+ }
86
+ .fav-icon { width: 44px; height: 44px; }
87
+ .card-caption { padding: 16px 18px 20px; font-size: 34px; color: #333; }
88
+ .green-underline {
89
+ position: absolute; bottom: 0; left: 0; width: 50%; height: 8px; background: #2A9D63;
90
+ }
91
+
92
+ /* Bottom navigation */
93
+ .bottom-nav {
94
+ position: absolute; bottom: 0; left: 0; right: 0; height: 210px; border-top: 1px solid #E8E8E8; background: #fff;
95
+ display: flex; justify-content: space-around; align-items: center;
96
+ }
97
+ .nav-item { display: flex; flex-direction: column; align-items: center; gap: 10px; color: #777; }
98
+ .nav-item.active { color: #111; }
99
+ .nav-icon { width: 56px; height: 56px; }
100
+ .nav-label { font-size: 32px; }
101
+
102
+ .home-indicator {
103
+ position: absolute; bottom: 220px; left: 50%; transform: translateX(-50%);
104
+ width: 360px; height: 16px; background: #C8C8C8; border-radius: 12px;
105
+ }
106
+ </style>
107
+ </head>
108
+ <body>
109
+ <div id="render-target">
110
+
111
+ <!-- Status bar -->
112
+ <div class="status-bar">
113
+ <div>8:23</div>
114
+ <div class="status-icons">
115
+ <div class="dot"></div>
116
+ <div class="status-icon"></div>
117
+ <div class="status-icon"></div>
118
+ <div class="status-icon"></div>
119
+ </div>
120
+ </div>
121
+
122
+ <!-- App bar -->
123
+ <div class="app-bar">
124
+ <button class="icon-btn" aria-label="Back">
125
+ <svg class="icon" viewBox="0 0 24 24" fill="none" stroke="#111" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
126
+ <path d="M15 18l-6-6 6-6"></path>
127
+ </svg>
128
+ </button>
129
+ <div class="app-actions">
130
+ <button class="icon-btn" aria-label="Share">
131
+ <svg class="icon" viewBox="0 0 24 24" fill="none" stroke="#111" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
132
+ <circle cx="18" cy="5" r="3"></circle>
133
+ <circle cx="6" cy="12" r="3"></circle>
134
+ <circle cx="18" cy="19" r="3"></circle>
135
+ <path d="M8.8 11l6.4-4M8.8 13l6.4 4"></path>
136
+ </svg>
137
+ </button>
138
+ <button class="icon-btn" aria-label="Favorite">
139
+ <svg class="icon" viewBox="0 0 24 24" fill="none" stroke="#111" stroke-width="2">
140
+ <path d="M12 21s-6-4.35-9-7.5C-1 9.5 2 3 7 5.5c3 1.5 5 4 5 4s2-2.5 5-4C22 3 25 9.5 21 13.5 18 16.65 12 21 12 21z"></path>
141
+ </svg>
142
+ </button>
143
+ <button class="icon-btn" aria-label="Cart">
144
+ <svg class="icon" viewBox="0 0 24 24" fill="none" stroke="#111" stroke-width="2">
145
+ <circle cx="9" cy="20" r="2"></circle>
146
+ <circle cx="17" cy="20" r="2"></circle>
147
+ <path d="M3 4h2l2 12h10l2-8H7"></path>
148
+ </svg>
149
+ </button>
150
+ </div>
151
+ </div>
152
+
153
+ <div class="content">
154
+
155
+ <!-- Tour item -->
156
+ <div class="tour-item">
157
+ <div class="img-ph tour-thumb"><span class="label">[IMG: Tour image - temple reflection]</span></div>
158
+ <div style="flex:1">
159
+ <div class="tour-title">Full Day Old & New Delhi City To...</div>
160
+ <div class="rating-row">
161
+ <div class="green-dot"></div>
162
+ <div class="green-dot"></div>
163
+ <div class="green-dot"></div>
164
+ <div class="green-dot"></div>
165
+ <div class="green-dot"></div>
166
+ <div class="reviews">27</div>
167
+ </div>
168
+ <div class="price">from $12.52 per adult (price varies by group size)</div>
169
+ </div>
170
+ </div>
171
+
172
+ <div class="divider"></div>
173
+
174
+ <!-- CTA -->
175
+ <div class="cta-wrap">
176
+ <button class="cta-btn">See all tour options (15)</button>
177
+ </div>
178
+
179
+ <!-- Ad card -->
180
+ <div class="ad-card">
181
+ <div class="ad-row">
182
+ <div class="img-ph ad-media"><span class="label">[IMG: Surfers at beach (ad)]</span></div>
183
+ <div class="ad-info">
184
+ <div class="ad-brand">
185
+ <div class="brand-pill">[IMG: Booking logo]</div>
186
+ <div style="font-size: 40px; color:#333;">Booking.c...</div>
187
+ </div>
188
+ <div class="ad-title">Booking.c...</div>
189
+ <div class="ad-meta">
190
+ <div style="font-size:36px;">4.7</div>
191
+ <svg class="star" viewBox="0 0 24 24" fill="#777">
192
+ <path d="M12 17.3l-6.2 3.3 1.2-6.9L1 8.9l7-1 3-6.1 3 6.1 7 1-6 4.8 1.2 6.9z"></path>
193
+ </svg>
194
+ </div>
195
+ <div class="store-row">
196
+ <div class="img-ph store-ph"><span class="label">[IMG: Google Play]</span></div>
197
+ </div>
198
+ </div>
199
+ </div>
200
+ <div class="install-wrap">
201
+ <button class="install-btn">Install</button>
202
+ </div>
203
+ </div>
204
+
205
+ <!-- Nearby section -->
206
+ <div class="section-title">What else is close by?</div>
207
+
208
+ <div class="nearby-row">
209
+ <div class="card">
210
+ <div class="card-media">
211
+ <div class="img-ph card-img"><span class="label">[IMG: Historic monument - Taj Mahal-like]</span></div>
212
+ <div class="fav-circle">
213
+ <svg class="fav-icon" viewBox="0 0 24 24" fill="none" stroke="#111" stroke-width="2">
214
+ <path d="M12 21s-6-4.35-9-7.5C-1 9.5 2 3 7 5.5c3 1.5 5 4 5 4s2-2.5 5-4C22 3 25 9.5 21 13.5 18 16.65 12 21 12 21z"></path>
215
+ </svg>
216
+ </div>
217
+ <div class="green-underline"></div>
218
+ </div>
219
+ <div class="card-caption">Monument</div>
220
+ </div>
221
+ <div class="card">
222
+ <div class="card-media">
223
+ <div class="img-ph card-img"><span class="label">[IMG: Historic portrait]</span></div>
224
+ <div class="fav-circle">
225
+ <svg class="fav-icon" viewBox="0 0 24 24" fill="none" stroke="#111" stroke-width="2">
226
+ <path d="M12 21s-6-4.35-9-7.5C-1 9.5 2 3 7 5.5c3 1.5 5 4 5 4s2-2.5 5-4C22 3 25 9.5 21 13.5 18 16.65 12 21 12 21z"></path>
227
+ </svg>
228
+ </div>
229
+ </div>
230
+ <div class="card-caption">Gallery</div>
231
+ </div>
232
+ <div class="card">
233
+ <div class="card-media">
234
+ <div class="img-ph card-img"><span class="label">[IMG: Colorful temple]</span></div>
235
+ <div class="fav-circle">
236
+ <svg class="fav-icon" viewBox="0 0 24 24" fill="none" stroke="#111" stroke-width="2">
237
+ <path d="M12 21s-6-4.35-9-7.5C-1 9.5 2 3 7 5.5c3 1.5 5 4 5 4s2-2.5 5-4C22 3 25 9.5 21 13.5 18 16.65 12 21 12 21z"></path>
238
+ </svg>
239
+ </div>
240
+ </div>
241
+ <div class="card-caption">Temple</div>
242
+ </div>
243
+ </div>
244
+
245
+ </div>
246
+
247
+ <!-- System home indicator -->
248
+ <div class="home-indicator"></div>
249
+
250
+ <!-- Bottom navigation -->
251
+ <div class="bottom-nav">
252
+ <div class="nav-item">
253
+ <svg class="nav-icon" viewBox="0 0 24 24" fill="none" stroke="#777" stroke-width="2">
254
+ <path d="M3 10l9-7 9 7v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V10z"></path>
255
+ <path d="M9 22V12h6v10"></path>
256
+ </svg>
257
+ <div class="nav-label">Explore</div>
258
+ </div>
259
+ <div class="nav-item active">
260
+ <svg class="nav-icon" viewBox="0 0 24 24" fill="none" stroke="#111" stroke-width="2">
261
+ <circle cx="11" cy="11" r="7"></circle>
262
+ <path d="M21 21l-4.3-4.3"></path>
263
+ </svg>
264
+ <div class="nav-label">Search</div>
265
+ </div>
266
+ <div class="nav-item">
267
+ <svg class="nav-icon" viewBox="0 0 24 24" fill="none" stroke="#777" stroke-width="2">
268
+ <path d="M12 21s-6-4.35-9-7.5C-1 9.5 2 3 7 5.5c3 1.5 5 4 5 4s2-2.5 5-4C22 3 25 9.5 21 13.5 18 16.65 12 21 12 21z"></path>
269
+ </svg>
270
+ <div class="nav-label">Plan</div>
271
+ </div>
272
+ <div class="nav-item">
273
+ <svg class="nav-icon" viewBox="0 0 24 24" fill="none" stroke="#777" stroke-width="2">
274
+ <path d="M12 3v18"></path>
275
+ <path d="M5 10l7-7 7 7"></path>
276
+ </svg>
277
+ <div class="nav-label">Review</div>
278
+ </div>
279
+ <div class="nav-item">
280
+ <svg class="nav-icon" viewBox="0 0 24 24" fill="none" stroke="#777" stroke-width="2">
281
+ <circle cx="12" cy="7" r="4"></circle>
282
+ <path d="M5.5 21a7 7 0 0 1 13 0"></path>
283
+ </svg>
284
+ <div class="nav-label">Account</div>
285
+ </div>
286
+ </div>
287
+
288
+ </div>
289
+ </body>
290
+ </html>
code/14168/14168_4.html ADDED
@@ -0,0 +1,267 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>UI Mock</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; color: #111; }
9
+ #render-target {
10
+ width: 1080px; height: 2400px; position: relative; overflow: hidden; background: #ffffff;
11
+ }
12
+
13
+ /* Top status bar */
14
+ .status-bar {
15
+ height: 100px;
16
+ display: flex; align-items: center;
17
+ padding: 0 40px;
18
+ font-size: 32px; color: #333;
19
+ }
20
+ .status-icons { margin-left: 20px; display: flex; gap: 22px; align-items: center; }
21
+ .status-icons svg { width: 30px; height: 30px; opacity: 0.8; }
22
+
23
+ /* App bar */
24
+ .app-bar {
25
+ height: 120px;
26
+ display: flex; align-items: center; justify-content: space-between;
27
+ padding: 0 28px;
28
+ border-bottom: 1px solid #eaeaea;
29
+ }
30
+ .app-left, .app-right { display: flex; align-items: center; gap: 28px; }
31
+ .icon-btn { width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; }
32
+ .icon-btn svg { width: 40px; height: 40px; }
33
+
34
+ /* Cards row */
35
+ .cards { display: flex; gap: 36px; padding: 24px 40px 0; }
36
+ .card { width: 496px; }
37
+ .img-ph {
38
+ width: 496px; height: 260px;
39
+ background: #E0E0E0; border: 1px solid #BDBDBD;
40
+ display: flex; align-items: center; justify-content: center;
41
+ color: #757575; font-size: 28px;
42
+ position: relative;
43
+ }
44
+ .badge {
45
+ position: absolute; left: 16px; bottom: 16px;
46
+ background: #00a680; color: #fff; font-weight: 700;
47
+ font-size: 24px; padding: 8px 14px; border-radius: 14px;
48
+ }
49
+ .card-title { font-size: 42px; font-weight: 700; margin: 22px 0 8px; }
50
+ .rating-row { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
51
+ .bubble { width: 22px; height: 22px; border-radius: 50%; background: #00a680; }
52
+ .bubble-outline { width: 22px; height: 22px; border-radius: 50%; border: 2px solid #00a680; }
53
+ .rating-count { color: #666; font-size: 28px; }
54
+ .subtext { color: #555; font-size: 30px; line-height: 1.35; }
55
+ .open-text { color: #111; font-size: 30px; margin-top: 6px; }
56
+
57
+ /* View map button */
58
+ .map-btn {
59
+ margin: 30px 40px 10px;
60
+ width: 420px; height: 96px; background: #000; color: #fff;
61
+ border-radius: 48px; display: flex; align-items: center; gap: 18px;
62
+ padding: 0 28px; font-size: 34px; font-weight: 600;
63
+ }
64
+ .map-btn svg { width: 36px; height: 36px; fill: #fff; }
65
+
66
+ /* Contribute section */
67
+ .contribute { padding: 24px 40px; }
68
+ .contribute h2 { font-size: 44px; margin: 20px 0 32px; }
69
+ .pill-row { display: flex; gap: 36px; }
70
+ .pill {
71
+ flex: 1; height: 110px; border: 2px solid #222; border-radius: 60px;
72
+ display: flex; align-items: center; justify-content: center;
73
+ font-size: 36px; font-weight: 600;
74
+ }
75
+
76
+ /* Tabs */
77
+ .tabs { display: flex; gap: 40px; align-items: center; padding: 24px 40px 0; margin-top: 20px; }
78
+ .tab { font-size: 34px; font-weight: 700; color: #111; }
79
+ .tab.active { position: relative; }
80
+ .tab.active::after {
81
+ content: ""; position: absolute; left: 0; bottom: -16px; width: 120px; height: 4px; background: #111;
82
+ }
83
+
84
+ /* Search reviews */
85
+ .search-area { padding: 40px; }
86
+ .search-input {
87
+ height: 110px; border: 2px solid #e6e6e6; border-radius: 60px;
88
+ display: flex; align-items: center; gap: 20px; padding: 0 30px; color: #999; font-size: 34px;
89
+ }
90
+ .search-input svg { width: 40px; height: 40px; stroke: #666; }
91
+ .filters-btn {
92
+ margin-top: 26px; width: 200px; height: 84px; border: 2px solid #e6e6e6; border-radius: 42px;
93
+ display: flex; align-items: center; gap: 14px; padding: 0 22px; font-size: 30px; color: #222;
94
+ }
95
+ .filters-btn svg { width: 34px; height: 34px; }
96
+
97
+ .divider { height: 1px; background: #e6e6e6; margin: 28px 40px 22px; }
98
+
99
+ .review-summary { display: flex; align-items: center; gap: 16px; padding: 0 40px; font-size: 32px; color: #333; }
100
+ .review-summary .bubble { width: 28px; height: 28px; }
101
+ .review-summary .bubble-outline { width: 28px; height: 28px; border-width: 3px; }
102
+
103
+ /* Bottom navigation */
104
+ .bottom-nav {
105
+ position: absolute; left: 0; bottom: 0; width: 100%; height: 210px;
106
+ border-top: 1px solid #e6e6e6; background: #fff;
107
+ display: flex; align-items: center; justify-content: space-around;
108
+ }
109
+ .nav-item { display: flex; flex-direction: column; align-items: center; gap: 12px; color: #777; font-size: 28px; }
110
+ .nav-item svg { width: 44px; height: 44px; }
111
+ .nav-item.active { color: #111; }
112
+ .nav-highlight {
113
+ position: absolute; left: 0; right: 0; margin: 0 auto; bottom: 210px;
114
+ width: 160px; height: 6px; background: #00a680; border-radius: 3px;
115
+ }
116
+ .gesture {
117
+ position: absolute; left: 50%; transform: translateX(-50%);
118
+ bottom: 20px; width: 360px; height: 12px; background: #bbb; border-radius: 6px;
119
+ }
120
+ </style>
121
+ </head>
122
+ <body>
123
+ <div id="render-target">
124
+
125
+ <!-- Status Bar -->
126
+ <div class="status-bar">
127
+ <div style="font-weight:600;">8:24</div>
128
+ <div class="status-icons">
129
+ <!-- simple glyphs to simulate icons -->
130
+ <svg viewBox="0 0 24 24"><circle cx="12" cy="12" r="10" fill="#888"/></svg>
131
+ <svg viewBox="0 0 24 24"><path d="M3 20h18M6 12h12M9 4h6" stroke="#888" stroke-width="2" fill="none"/></svg>
132
+ <svg viewBox="0 0 24 24"><path d="M12 2a10 10 0 100 20A10 10 0 0012 2zm0 0v20" stroke="#888" stroke-width="2" fill="none"/></svg>
133
+ <svg viewBox="0 0 24 24"><path d="M12 3l9 9-9 9-9-9 9-9z" stroke="#888" fill="none" stroke-width="2"/></svg>
134
+ <svg viewBox="0 0 24 24"><circle cx="20" cy="4" r="3" fill="#888"/></svg>
135
+ <svg viewBox="0 0 24 24"><path d="M17 4h4v4" stroke="#888" fill="none" stroke-width="2"/><path d="M3 20l8-8 6 6 4-4" stroke="#888" fill="none" stroke-width="2"/></svg>
136
+ <svg viewBox="0 0 24 24"><path d="M2 12h20" stroke="#888" stroke-width="2"/></svg>
137
+ <svg viewBox="0 0 24 24"><path d="M18 3l-6 18-6-18" stroke="#888" stroke-width="2" fill="none"/></svg>
138
+ </div>
139
+ <div style="margin-left:auto; display:flex; gap:16px; align-items:center;">
140
+ <svg viewBox="0 0 24 24"><path d="M12 20a2 2 0 100-4 2 2 0 000 4z" fill="#777"/><path d="M4 4h16" stroke="#777" stroke-width="2"/></svg>
141
+ <svg viewBox="0 0 24 24"><path d="M20 6l-8 8-4-4" stroke="#777" stroke-width="2" fill="none"/></svg>
142
+ </div>
143
+ </div>
144
+
145
+ <!-- App Bar -->
146
+ <div class="app-bar">
147
+ <div class="app-left">
148
+ <div class="icon-btn">
149
+ <svg viewBox="0 0 24 24"><path d="M15 18l-6-6 6-6" stroke="#111" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>
150
+ </div>
151
+ </div>
152
+ <div class="app-right">
153
+ <div class="icon-btn">
154
+ <svg viewBox="0 0 24 24"><path d="M4 12l6-3 6 3-6 3-6-3z" fill="none" stroke="#111" stroke-width="2"/><circle cx="6" cy="12" r="2" fill="#111"/><circle cx="12" cy="12" r="2" fill="#111"/><circle cx="18" cy="12" r="2" fill="#111"/></svg>
155
+ </div>
156
+ <div class="icon-btn">
157
+ <svg viewBox="0 0 24 24"><path d="M12 21s-7-4.5-7-10a7 7 0 0114 0c0 5.5-7 10-7 10z" fill="none" stroke="#111" stroke-width="2"/></svg>
158
+ </div>
159
+ <div class="icon-btn">
160
+ <svg viewBox="0 0 24 24"><path d="M7 7h14l-2 10H9L7 7z" stroke="#111" stroke-width="2" fill="none"/><path d="M7 7L6 4H3" stroke="#111" stroke-width="2"/><circle cx="10" cy="20" r="1.6" fill="#111"/><circle cx="18" cy="20" r="1.6" fill="#111"/></svg>
161
+ </div>
162
+ </div>
163
+ </div>
164
+
165
+ <!-- Cards Row -->
166
+ <div class="cards">
167
+ <div class="card">
168
+ <div class="img-ph">[IMG: Humayun's Tomb]<div class="badge">2023</div></div>
169
+ <div class="card-title">Humayun's Tomb</div>
170
+ <div class="rating-row">
171
+ <div class="bubble"></div><div class="bubble"></div><div class="bubble"></div><div class="bubble"></div><div class="bubble-outline"></div>
172
+ <div class="rating-count">10,503</div>
173
+ </div>
174
+ <div class="subtext">Architectural Buildings • …</div>
175
+ <div class="open-text">Open now • Nizamuddin</div>
176
+ </div>
177
+
178
+ <div class="card">
179
+ <div class="img-ph">[IMG: Art of Living Center]</div>
180
+ <div class="card-title">Art of Living Center</div>
181
+ <div class="rating-row">
182
+ <div class="bubble"></div><div class="bubble"></div><div class="bubble"></div><div class="bubble"></div><div class="bubble-outline"></div>
183
+ <div class="rating-count">10</div>
184
+ </div>
185
+ <div class="subtext">Art Galleries</div>
186
+ <div class="open-text">Minto Road</div>
187
+ </div>
188
+ </div>
189
+
190
+ <!-- View Map Button -->
191
+ <div class="map-btn">
192
+ <svg viewBox="0 0 24 24"><path d="M12 3a7 7 0 017 7c0 5-7 11-7 11S5 15 5 10a7 7 0 017-7zm0 4a3 3 0 100 6 3 3 0 000-6z"/></svg>
193
+ View map
194
+ </div>
195
+
196
+ <!-- Contribute -->
197
+ <div class="contribute">
198
+ <h2>Contribute</h2>
199
+ <div class="pill-row">
200
+ <div class="pill">Write a review</div>
201
+ <div class="pill">Upload a photo</div>
202
+ </div>
203
+ </div>
204
+
205
+ <!-- Tabs -->
206
+ <div class="tabs">
207
+ <div class="tab active">Reviews</div>
208
+ <div class="tab" style="color:#555;">Q&amp;A</div>
209
+ </div>
210
+
211
+ <!-- Search Reviews -->
212
+ <div class="search-area">
213
+ <div class="search-input">
214
+ <svg viewBox="0 0 24 24"><circle cx="10" cy="10" r="7" fill="none" stroke="#666" stroke-width="2"/><path d="M15 15l6 6" stroke="#666" stroke-width="2"/></svg>
215
+ <span>Search reviews...</span>
216
+ </div>
217
+ <div class="filters-btn">
218
+ <svg viewBox="0 0 24 24"><path d="M4 6h12M18 6h2M6 12h10M4 12h1M10 18h8M4 18h4" stroke="#555" stroke-width="2" fill="none" stroke-linecap="round"/></svg>
219
+ Filters
220
+ </div>
221
+ </div>
222
+
223
+ <div class="divider"></div>
224
+
225
+ <!-- Review Summary -->
226
+ <div class="review-summary">
227
+ <div class="bubble"></div>
228
+ <div class="bubble"></div>
229
+ <div class="bubble"></div>
230
+ <div class="bubble"></div>
231
+ <div class="bubble-outline"></div>
232
+ <div style="margin-left:10px;">82 reviews</div>
233
+ </div>
234
+
235
+ <!-- Bottom Nav Highlight -->
236
+ <div class="nav-highlight"></div>
237
+
238
+ <!-- Bottom Navigation -->
239
+ <div class="bottom-nav">
240
+ <div class="nav-item">
241
+ <svg viewBox="0 0 24 24"><path d="M3 10l9-7 9 7v9H3z" stroke="#777" stroke-width="2" fill="none"/></svg>
242
+ <div>Explore</div>
243
+ </div>
244
+ <div class="nav-item active">
245
+ <svg viewBox="0 0 24 24"><circle cx="11" cy="11" r="7" stroke="#111" stroke-width="2" fill="none"/><path d="M16 16l6 6" stroke="#111" stroke-width="2"/></svg>
246
+ <div>Search</div>
247
+ </div>
248
+ <div class="nav-item">
249
+ <svg viewBox="0 0 24 24"><path d="M12 21s-7-4.5-7-10a7 7 0 0114 0c0 5.5-7 10-7 10z" stroke="#777" stroke-width="2" fill="none"/></svg>
250
+ <div>Plan</div>
251
+ </div>
252
+ <div class="nav-item">
253
+ <svg viewBox="0 0 24 24"><path d="M5 20l14-6-14-6v12z" stroke="#777" stroke-width="2" fill="none"/></svg>
254
+ <div>Review</div>
255
+ </div>
256
+ <div class="nav-item">
257
+ <svg viewBox="0 0 24 24"><circle cx="12" cy="8" r="4" stroke="#777" stroke-width="2" fill="none"/><path d="M4 22c0-4 4-7 8-7s8 3 8 7" stroke="#777" stroke-width="2" fill="none"/></svg>
258
+ <div>Account</div>
259
+ </div>
260
+ </div>
261
+
262
+ <!-- Gesture bar -->
263
+ <div class="gesture"></div>
264
+
265
+ </div>
266
+ </body>
267
+ </html>
code/14168/14168_5.html ADDED
@@ -0,0 +1,321 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Review UI</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; }
9
+ #render-target {
10
+ width: 1080px; height: 2400px;
11
+ position: relative; overflow: hidden;
12
+ background: #FFFFFF; color: #222;
13
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
14
+ }
15
+
16
+ /* Status bar */
17
+ .statusbar {
18
+ position: absolute; top: 0; left: 0; right: 0;
19
+ height: 110px; padding: 0 40px;
20
+ display: flex; align-items: center; justify-content: space-between;
21
+ color: #111; font-weight: 600; font-size: 42px;
22
+ }
23
+ .sb-icons { display: flex; gap: 26px; align-items: center; }
24
+ .sb-icon svg { width: 40px; height: 40px; stroke: #111; fill: none; stroke-width: 2.5; }
25
+
26
+ /* App bar */
27
+ .appbar {
28
+ position: absolute; top: 110px; left: 0; right: 0;
29
+ height: 120px; padding: 0 36px;
30
+ display: flex; align-items: center; justify-content: space-between;
31
+ background: #fff;
32
+ }
33
+ .appbar .left, .appbar .right { display: flex; align-items: center; }
34
+ .appbar .right { gap: 40px; }
35
+ .icon-48 { width: 48px; height: 48px; }
36
+ .appbar svg { stroke: #111; fill: none; stroke-width: 2.8; }
37
+
38
+ /* Content area */
39
+ .content { position: absolute; top: 230px; left: 0; right: 0; bottom: 0; }
40
+ .section { padding: 0 40px; }
41
+
42
+ /* Filters pill */
43
+ .filters { margin-top: 40px; }
44
+ .filters .pill {
45
+ display: inline-flex; align-items: center; gap: 20px;
46
+ padding: 22px 28px; border: 1px solid #E0E0E0; border-radius: 36px;
47
+ background: #fff; color: #333; font-size: 38px;
48
+ }
49
+ .filters .pill svg { width: 38px; height: 38px; stroke: #333; stroke-width: 2.4; }
50
+
51
+ /* Ratings summary */
52
+ .ratings-summary { margin-top: 40px; display: flex; align-items: center; gap: 24px; }
53
+ .dot-group { display: flex; gap: 14px; }
54
+ .dot { width: 30px; height: 30px; border-radius: 50%; background: #2FA36B; }
55
+ .dot.outline { background: transparent; border: 3px solid #2FA36B; }
56
+ .reviews-count { font-size: 40px; color: #222; }
57
+
58
+ /* Distribution bars */
59
+ .distribution { margin-top: 28px; padding-right: 40px; }
60
+ .dist-row {
61
+ display: grid; grid-template-columns: 280px 1fr 90px; align-items: center;
62
+ gap: 24px; margin: 24px 0;
63
+ font-size: 38px; color: #444;
64
+ }
65
+ .progress {
66
+ width: 640px; height: 26px; background: #DDDDDD;
67
+ border-radius: 14px; overflow: hidden;
68
+ }
69
+ .progress .fill { height: 100%; background: #2FA36B; width: 50%; border-radius: 14px; }
70
+ .dist-count { text-align: right; color: #777; font-size: 36px; }
71
+
72
+ .divider { height: 2px; background: #eee; margin: 36px 0; }
73
+
74
+ /* Review card */
75
+ .review-card { padding-bottom: 20px; }
76
+ .user-row {
77
+ display: grid; grid-template-columns: 100px 1fr 60px; align-items: center; gap: 24px;
78
+ }
79
+ .avatar {
80
+ width: 100px; height: 100px; border-radius: 50%;
81
+ background: #E0E0E0; border: 1px solid #BDBDBD;
82
+ display: flex; align-items: center; justify-content: center;
83
+ color: #757575; font-size: 22px; text-align: center; line-height: 1.1; padding: 8px;
84
+ }
85
+ .user-info .name { font-size: 44px; font-weight: 700; color: #111; }
86
+ .user-info .sub { font-size: 34px; color: #6f6f6f; margin-top: 6px; }
87
+ .more-btn { display: flex; justify-content: flex-end; }
88
+ .more-btn svg { width: 40px; height: 40px; fill: #111; }
89
+
90
+ .review-rating { margin-top: 30px; display: flex; gap: 14px; }
91
+ .review-rating .dot { width: 30px; height: 30px; }
92
+
93
+ .review-title { margin-top: 24px; font-size: 44px; font-weight: 800; color: #111; }
94
+ .review-meta { margin-top: 10px; font-size: 36px; color: #777; }
95
+ .review-text { margin-top: 16px; font-size: 38px; color: #444; line-height: 1.45; }
96
+
97
+ .read-more {
98
+ margin-top: 18px; font-size: 40px; font-weight: 700; color: #0A0A0A; text-decoration: none;
99
+ display: inline-flex; align-items: center; gap: 12px;
100
+ }
101
+ .read-more svg { width: 28px; height: 28px; stroke: #111; stroke-width: 3; }
102
+
103
+ /* Gallery */
104
+ .gallery {
105
+ margin-top: 28px; display: flex; gap: 24px;
106
+ padding-bottom: 260px; /* space for bottom nav overlap */
107
+ }
108
+ .gallery .photo {
109
+ width: 320px; height: 400px; background: #E0E0E0; border: 1px solid #BDBDBD;
110
+ display: flex; align-items: center; justify-content: center;
111
+ color: #757575; font-size: 28px; text-align: center; line-height: 1.2;
112
+ }
113
+
114
+ /* Bottom navigation */
115
+ .bottom-nav {
116
+ position: absolute; bottom: 0; left: 0; right: 0;
117
+ height: 210px; background: #fff; border-top: 1px solid #e6e6e6;
118
+ display: grid; grid-template-columns: repeat(5, 1fr);
119
+ align-items: center;
120
+ z-index: 10;
121
+ }
122
+ .nav-item {
123
+ position: relative;
124
+ display: flex; flex-direction: column; align-items: center; justify-content: center;
125
+ gap: 14px; color: #7a7a7a;
126
+ }
127
+ .nav-item svg { width: 62px; height: 62px; stroke: currentColor; fill: none; stroke-width: 2.8; }
128
+ .nav-item .label { font-size: 32px; color: currentColor; }
129
+ .nav-item.active { color: #111; }
130
+ .nav-item.active::before {
131
+ content: ""; position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
132
+ width: 160px; height: 8px; background: #2FA36B; border-radius: 4px;
133
+ }
134
+
135
+ /* Home indicator bar */
136
+ .home-indicator {
137
+ position: absolute; bottom: 220px; left: 50%; transform: translateX(-50%);
138
+ width: 340px; height: 18px; background: #CFCFCF; border-radius: 9px;
139
+ }
140
+ </style>
141
+ </head>
142
+ <body>
143
+ <div id="render-target">
144
+
145
+ <!-- Status bar -->
146
+ <div class="statusbar">
147
+ <div>8:24</div>
148
+ <div class="sb-icons">
149
+ <span class="sb-icon">
150
+ <svg viewBox="0 0 24 24"><path d="M3 12h8"></path><circle cx="14" cy="12" r="2"></circle></svg>
151
+ </span>
152
+ <span class="sb-icon">
153
+ <svg viewBox="0 0 24 24"><path d="M4 4l6 6M10 4l6 6"></path></svg>
154
+ </span>
155
+ <span class="sb-icon">
156
+ <svg viewBox="0 0 24 24"><circle cx="12" cy="12" r="9"></circle><path d="M8 12h8"></path></svg>
157
+ </span>
158
+ <span class="sb-icon">
159
+ <svg viewBox="0 0 24 24"><circle cx="12" cy="12" r="9"></circle></svg>
160
+ </span>
161
+ <span class="sb-icon">
162
+ <svg viewBox="0 0 24 24"><circle cx="12" cy="12" r="2"></circle></svg>
163
+ </span>
164
+ <span class="sb-icon">
165
+ <svg viewBox="0 0 24 24"><path d="M3 17h18"></path><path d="M6 13h12"></path><path d="M9 9h6"></path></svg>
166
+ </span>
167
+ </div>
168
+ </div>
169
+
170
+ <!-- App bar -->
171
+ <div class="appbar">
172
+ <div class="left">
173
+ <svg class="icon-48" viewBox="0 0 24 24"><path d="M15 5l-7 7 7 7"></path></svg>
174
+ </div>
175
+ <div class="right">
176
+ <!-- Share -->
177
+ <svg class="icon-48" viewBox="0 0 24 24">
178
+ <circle cx="6" cy="12" r="2"></circle>
179
+ <circle cx="18" cy="6" r="2"></circle>
180
+ <circle cx="18" cy="18" r="2"></circle>
181
+ <path d="M8 12l8-6M8 12l8 6"></path>
182
+ </svg>
183
+ <!-- Heart -->
184
+ <svg class="icon-48" viewBox="0 0 24 24">
185
+ <path d="M12 20s-7-4.5-7-9a4 4 0 0 1 7-2 4 4 0 0 1 7 2c0 4.5-7 9-7 9z"></path>
186
+ </svg>
187
+ <!-- Cart -->
188
+ <svg class="icon-48" viewBox="0 0 24 24">
189
+ <path d="M3 5h2l2 12h10l2-8H7"></path>
190
+ <circle cx="9" cy="20" r="1.8"></circle>
191
+ <circle cx="17" cy="20" r="1.8"></circle>
192
+ </svg>
193
+ </div>
194
+ </div>
195
+
196
+ <div class="content">
197
+ <div class="section filters">
198
+ <div class="pill">
199
+ <svg viewBox="0 0 24 24">
200
+ <path d="M3 6h18"></path><circle cx="9" cy="6" r="2"></circle>
201
+ <path d="M3 12h18"></path><circle cx="15" cy="12" r="2"></circle>
202
+ <path d="M3 18h18"></path><circle cx="12" cy="18" r="2"></circle>
203
+ </svg>
204
+ <span>Filters</span>
205
+ </div>
206
+ </div>
207
+
208
+ <div class="section ratings-summary">
209
+ <div class="dot-group">
210
+ <span class="dot"></span>
211
+ <span class="dot"></span>
212
+ <span class="dot"></span>
213
+ <span class="dot"></span>
214
+ <span class="dot outline"></span>
215
+ </div>
216
+ <div class="reviews-count">82 reviews</div>
217
+ </div>
218
+
219
+ <div class="section distribution">
220
+ <div class="dist-row">
221
+ <div>Excellent</div>
222
+ <div class="progress"><div class="fill" style="width:64%;"></div></div>
223
+ <div class="dist-count">33</div>
224
+ </div>
225
+ <div class="dist-row">
226
+ <div>Very good</div>
227
+ <div class="progress"><div class="fill" style="width:52%;"></div></div>
228
+ <div class="dist-count">36</div>
229
+ </div>
230
+ <div class="dist-row">
231
+ <div>Average</div>
232
+ <div class="progress"><div class="fill" style="width:22%;"></div></div>
233
+ <div class="dist-count">10</div>
234
+ </div>
235
+ <div class="dist-row">
236
+ <div>Poor</div>
237
+ <div class="progress"><div class="fill" style="width:8%;"></div></div>
238
+ <div class="dist-count">1</div>
239
+ </div>
240
+ <div class="dist-row">
241
+ <div>Terrible</div>
242
+ <div class="progress"><div class="fill" style="width:12%;"></div></div>
243
+ <div class="dist-count">2</div>
244
+ </div>
245
+ </div>
246
+
247
+ <div class="section divider"></div>
248
+
249
+ <div class="section review-card">
250
+ <div class="user-row">
251
+ <div class="avatar">[IMG: User Avatar]</div>
252
+ <div class="user-info">
253
+ <div class="name">Praveen K</div>
254
+ <div class="sub">Ghaziabad, India</div>
255
+ <div class="sub">794 contributions</div>
256
+ </div>
257
+ <div class="more-btn">
258
+ <svg viewBox="0 0 24 24">
259
+ <circle cx="12" cy="5" r="2.5"></circle>
260
+ <circle cx="12" cy="12" r="2.5"></circle>
261
+ <circle cx="12" cy="19" r="2.5"></circle>
262
+ </svg>
263
+ </div>
264
+ </div>
265
+
266
+ <div class="review-rating">
267
+ <span class="dot"></span>
268
+ <span class="dot"></span>
269
+ <span class="dot"></span>
270
+ <span class="dot"></span>
271
+ <span class="dot outline"></span>
272
+ </div>
273
+
274
+ <div class="review-title">Good for information and some excitement</div>
275
+ <div class="review-meta">Mar 2022 • Family</div>
276
+ <div class="review-text">
277
+ Good replicas of wonders of the world, also lighted at night. This place has excellent dining options.
278
+ </div>
279
+
280
+ <a href="#" class="read-more">Read more
281
+ <svg viewBox="0 0 24 24"><path d="M6 10l6 6 6-6"></path></svg>
282
+ </a>
283
+
284
+ <div class="gallery">
285
+ <div class="photo">[IMG: Monument Photo]</div>
286
+ <div class="photo">[IMG: Monument Photo]</div>
287
+ <div class="photo">[IMG: Monument Photo]</div>
288
+ </div>
289
+ </div>
290
+ </div>
291
+
292
+ <!-- Home indicator -->
293
+ <div class="home-indicator"></div>
294
+
295
+ <!-- Bottom navigation -->
296
+ <div class="bottom-nav">
297
+ <div class="nav-item">
298
+ <svg viewBox="0 0 24 24"><path d="M3 11l9-7 9 7v8H3z"></path><path d="M9 19V9h6v10"></path></svg>
299
+ <div class="label">Explore</div>
300
+ </div>
301
+ <div class="nav-item active">
302
+ <svg viewBox="0 0 24 24"><circle cx="11" cy="11" r="7"></circle><path d="M21 21l-4.5-4.5"></path></svg>
303
+ <div class="label">Search</div>
304
+ </div>
305
+ <div class="nav-item">
306
+ <svg viewBox="0 0 24 24"><path d="M12 20s-7-4.5-7-9a4 4 0 0 1 7-2 4 4 0 0 1 7 2c0 4.5-7 9-7 9z"></path></svg>
307
+ <div class="label">Plan</div>
308
+ </div>
309
+ <div class="nav-item">
310
+ <svg viewBox="0 0 24 24"><path d="M5 5h14v14H5z"></path><path d="M8 9h8M8 13h6"></path></svg>
311
+ <div class="label">Review</div>
312
+ </div>
313
+ <div class="nav-item">
314
+ <svg viewBox="0 0 24 24"><circle cx="12" cy="8" r="4"></circle><path d="M4 20c1.5-4 6.5-6 8-6s6.5 2 8 6"></path></svg>
315
+ <div class="label">Account</div>
316
+ </div>
317
+ </div>
318
+
319
+ </div>
320
+ </body>
321
+ </html>
code/14170/14170_0.html ADDED
@@ -0,0 +1,369 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>YouTube Home - Mock</title>
6
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; }
9
+ #render-target {
10
+ width: 1080px;
11
+ height: 2400px;
12
+ position: relative;
13
+ overflow: hidden;
14
+ background: #0f0f0f;
15
+ color: #fff;
16
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
17
+ }
18
+ .statusbar {
19
+ height: 90px;
20
+ padding: 0 28px;
21
+ color: #fff;
22
+ font-size: 34px;
23
+ display: flex;
24
+ align-items: center;
25
+ justify-content: space-between;
26
+ }
27
+ .sb-right {
28
+ display: flex;
29
+ align-items: center;
30
+ gap: 26px;
31
+ }
32
+ .header {
33
+ height: 120px;
34
+ display: flex;
35
+ align-items: center;
36
+ padding: 0 28px;
37
+ justify-content: space-between;
38
+ }
39
+ .yt-brand {
40
+ display: flex;
41
+ align-items: center;
42
+ gap: 22px;
43
+ }
44
+ .chips {
45
+ display: flex;
46
+ gap: 16px;
47
+ padding: 16px 20px 18px 20px;
48
+ border-top: 1px solid #202020;
49
+ border-bottom: 1px solid #202020;
50
+ overflow: hidden;
51
+ }
52
+ .chip {
53
+ padding: 18px 26px;
54
+ border-radius: 40px;
55
+ background: #2f2f2f;
56
+ color: #ffffff;
57
+ font-size: 30px;
58
+ white-space: nowrap;
59
+ }
60
+ .chip.selected {
61
+ background: #ffffff;
62
+ color: #111;
63
+ }
64
+ .feed {
65
+ height: 1890px;
66
+ overflow: hidden;
67
+ }
68
+ .card {
69
+ padding-bottom: 24px;
70
+ border-bottom: 1px solid #1b1b1b;
71
+ }
72
+ .video-frame {
73
+ width: 1080px;
74
+ height: 620px;
75
+ background: #000;
76
+ position: relative;
77
+ display: flex;
78
+ align-items: center;
79
+ justify-content: center;
80
+ }
81
+ .vertical-video {
82
+ width: 720px;
83
+ height: 540px;
84
+ background: #E0E0E0;
85
+ border: 1px solid #BDBDBD;
86
+ color: #757575;
87
+ display: flex;
88
+ align-items: center;
89
+ justify-content: center;
90
+ font-size: 34px;
91
+ }
92
+ .img-overlay-badge {
93
+ position: absolute;
94
+ top: 24px;
95
+ right: 24px;
96
+ background: rgba(0,0,0,0.6);
97
+ border: 2px solid #fff;
98
+ width: 64px;
99
+ height: 64px;
100
+ border-radius: 14px;
101
+ display: flex;
102
+ align-items: center;
103
+ justify-content: center;
104
+ }
105
+ .ad-meta {
106
+ padding: 24px 28px 0 28px;
107
+ }
108
+ .ad-title {
109
+ font-size: 40px;
110
+ font-weight: 700;
111
+ line-height: 1.2;
112
+ margin-bottom: 10px;
113
+ }
114
+ .ad-desc {
115
+ color: #c8c8c8;
116
+ font-size: 30px;
117
+ line-height: 1.35;
118
+ margin-bottom: 12px;
119
+ }
120
+ .ad-sub {
121
+ color: #9e9e9e;
122
+ font-size: 28px;
123
+ display: flex;
124
+ align-items: center;
125
+ gap: 12px;
126
+ }
127
+ .ad-actions {
128
+ display: flex;
129
+ gap: 28px;
130
+ padding: 22px 28px 28px 28px;
131
+ }
132
+ .btn {
133
+ height: 110px;
134
+ padding: 0 80px;
135
+ border-radius: 60px;
136
+ font-size: 36px;
137
+ display: inline-flex;
138
+ align-items: center;
139
+ justify-content: center;
140
+ border: 2px solid #3a3a3a;
141
+ color: #e5e5e5;
142
+ background: transparent;
143
+ }
144
+ .btn.primary {
145
+ border: none;
146
+ background: #63a4ff;
147
+ color: #0a0a0a;
148
+ }
149
+ .video-thumb {
150
+ width: 1080px;
151
+ height: 620px;
152
+ background: #E0E0E0;
153
+ border: 1px solid #BDBDBD;
154
+ color: #757575;
155
+ display: flex;
156
+ align-items: center;
157
+ justify-content: center;
158
+ font-size: 34px;
159
+ position: relative;
160
+ }
161
+ .duration {
162
+ position: absolute;
163
+ right: 16px;
164
+ bottom: 16px;
165
+ background: rgba(0,0,0,0.85);
166
+ color: #fff;
167
+ font-size: 26px;
168
+ padding: 10px 14px;
169
+ border-radius: 8px;
170
+ }
171
+ .video-info {
172
+ display: grid;
173
+ grid-template-columns: 120px 1fr 60px;
174
+ align-items: start;
175
+ gap: 16px;
176
+ padding: 16px 20px 8px 20px;
177
+ }
178
+ .avatar {
179
+ width: 100px;
180
+ height: 100px;
181
+ border-radius: 50%;
182
+ background: #E0E0E0;
183
+ border: 1px solid #BDBDBD;
184
+ display: flex;
185
+ align-items: center;
186
+ justify-content: center;
187
+ color: #757575;
188
+ font-size: 22px;
189
+ }
190
+ .v-title {
191
+ font-size: 36px;
192
+ line-height: 1.25;
193
+ font-weight: 700;
194
+ margin-top: 6px;
195
+ }
196
+ .v-meta {
197
+ color: #a6a6a6;
198
+ font-size: 28px;
199
+ margin-top: 12px;
200
+ }
201
+ .kebab {
202
+ width: 60px;
203
+ height: 60px;
204
+ border-radius: 30px;
205
+ display: flex;
206
+ align-items: center;
207
+ justify-content: center;
208
+ }
209
+ .nav {
210
+ position: absolute;
211
+ left: 0;
212
+ right: 0;
213
+ bottom: 70px;
214
+ height: 170px;
215
+ background: #0f0f0f;
216
+ border-top: 1px solid #191919;
217
+ display: grid;
218
+ grid-template-columns: repeat(5, 1fr);
219
+ align-items: center;
220
+ text-align: center;
221
+ font-size: 26px;
222
+ color: #cfcfcf;
223
+ }
224
+ .nav .item {
225
+ display: grid;
226
+ place-items: center;
227
+ gap: 8px;
228
+ }
229
+ .nav .plus {
230
+ width: 112px;
231
+ height: 112px;
232
+ background: #232323;
233
+ border-radius: 60px;
234
+ display: grid;
235
+ place-items: center;
236
+ }
237
+ .home-indicator {
238
+ position: absolute;
239
+ bottom: 18px;
240
+ left: 50%;
241
+ transform: translateX(-50%);
242
+ width: 360px;
243
+ height: 12px;
244
+ border-radius: 6px;
245
+ background: #e5e5e5;
246
+ opacity: 0.7;
247
+ }
248
+ /* helper */
249
+ .row { display: flex; align-items: center; gap: 16px; }
250
+ </style>
251
+ </head>
252
+ <body>
253
+ <div id="render-target">
254
+ <!-- Android status bar -->
255
+ <div class="statusbar">
256
+ <div>10:59</div>
257
+ <div class="sb-right">
258
+ <!-- Simple status icons -->
259
+ <svg width="34" height="34" viewBox="0 0 24 24" fill="#fff" opacity="0.9"><path d="M7 6h10a2 2 0 0 1 2 2v10h-2V8H7z"/></svg>
260
+ <svg width="34" height="34" viewBox="0 0 24 24" fill="#fff" opacity="0.9"><path d="M12 3l8 4v10l-8 4-8-4V7l8-4zm0 2.2L6 7.7v8.6l6 2.5 6-2.5V7.7L12 5.2z"/></svg>
261
+ <svg width="34" height="34" viewBox="0 0 24 24" fill="#fff" opacity="0.9"><path d="M2 7h20v2H2zM6 11h12v2H6zM9 15h6v2H9z"/></svg>
262
+ <svg width="34" height="34" viewBox="0 0 24 24" fill="#fff" opacity="0.9"><circle cx="12" cy="12" r="2"/></svg>
263
+ <svg width="40" height="40" viewBox="0 0 24 24" fill="#fff"><path d="M17 7H7v10h10V7zm2-2v14H5V5h14z"/></svg>
264
+ <svg width="40" height="40" viewBox="0 0 24 24" fill="#fff"><path d="M16 7h2v10h-2zM6 7h8v10H6z"/></svg>
265
+ </div>
266
+ </div>
267
+
268
+ <!-- YouTube header -->
269
+ <div class="header">
270
+ <div class="yt-brand">
271
+ <svg width="64" height="44" viewBox="0 0 24 24"><rect x="1" y="4" width="22" height="16" rx="3" fill="#ff0000"/><path d="M10 8l6 4-6 4z" fill="#fff"/></svg>
272
+ <div style="font-size:46px; font-weight:800;">YouTube</div>
273
+ </div>
274
+ <div class="row">
275
+ <!-- Cast -->
276
+ <svg width="48" height="48" viewBox="0 0 24 24" fill="#fff"><path d="M2 18h2a2 2 0 0 0-2-2v2zm0-4c3.3 0 6 2.7 6 6h2c0-4.4-3.6-8-8-8v2zm0-4c6.6 0 12 5.4 12 12h2C16 11.4 10.6 6 2 6v2zm18-3H4a2 2 0 0 0-2 2v1h2V7h16v10h-6v2h6a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2z"/></svg>
277
+ <!-- Bell -->
278
+ <svg width="48" height="48" viewBox="0 0 24 24" fill="#fff"><path d="M12 22a2 2 0 0 0 2-2h-4a2 2 0 0 0 2 2zm6-6V11a6 6 0 1 0-12 0v5L4 18v2h16v-2l-2-2z"/></svg>
279
+ <!-- Search -->
280
+ <svg width="48" height="48" viewBox="0 0 24 24" fill="#fff"><path d="M15.5 14h-.8l-.3-.3a6.5 6.5 0 1 0-.9.9l.3.3v.8L20 21l1-1-5.5-6zM10 15a5 5 0 1 1 0-10 5 5 0 0 1 0 10z"/></svg>
281
+ </div>
282
+ </div>
283
+
284
+ <!-- Chips row -->
285
+ <div class="chips">
286
+ <div class="chip selected">All</div>
287
+ <div class="chip">Music</div>
288
+ <div class="chip">T-Series</div>
289
+ <div class="chip">India national cricket</div>
290
+ <div class="chip">Gaming</div>
291
+ <div class="chip">Mixes</div>
292
+ </div>
293
+
294
+ <div class="feed">
295
+ <!-- Ad card -->
296
+ <div class="card">
297
+ <div class="video-frame">
298
+ <div class="vertical-video">[IMG: Instagram Reel - Dog video]</div>
299
+ <div class="img-overlay-badge">
300
+ <svg width="36" height="36" viewBox="0 0 24 24" fill="#fff">
301
+ <rect x="4" y="4" width="16" height="16" rx="4" ry="4" fill="none" stroke="#fff" stroke-width="2"/>
302
+ <circle cx="17" cy="7" r="1.2" fill="#fff"/>
303
+ <circle cx="12" cy="12" r="4.2" fill="none" stroke="#fff" stroke-width="2"/>
304
+ </svg>
305
+ </div>
306
+ </div>
307
+ <div class="ad-meta">
308
+ <div class="ad-title">IG par Stories share karen | Instagram</div>
309
+ <div class="ad-desc">Nai resipiyan aur creative prerna pane ke liye Instagram download karen.</div>
310
+ <div class="ad-sub">
311
+ <span>Sponsored</span>
312
+ <span>·</span>
313
+ <span>4.4★</span>
314
+ <span>FREE</span>
315
+ </div>
316
+ </div>
317
+ <div class="ad-actions">
318
+ <div class="btn">Watch</div>
319
+ <div class="btn primary">Install</div>
320
+ </div>
321
+ </div>
322
+
323
+ <!-- Video card -->
324
+ <div class="card">
325
+ <div class="video-thumb">[IMG: Music Video Thumbnail - Car and title]
326
+ <div class="duration">4:30</div>
327
+ </div>
328
+ <div class="video-info">
329
+ <div class="avatar">[IMG]</div>
330
+ <div>
331
+ <div class="v-title">KLAASTAR - Full Video | Honey 3.0 | Yo Yo Honey Singh &amp; Sonakshi Sinha | Zee Music Orig...</div>
332
+ <div class="v-meta">Zee Music Company · 105M views · 3 weeks ago</div>
333
+ </div>
334
+ <div class="kebab">
335
+ <svg width="36" height="36" viewBox="0 0 24 24" fill="#c9c9c9"><circle cx="12" cy="5" r="2"/><circle cx="12" cy="12" r="2"/><circle cx="12" cy="19" r="2"/></svg>
336
+ </div>
337
+ </div>
338
+ </div>
339
+ </div>
340
+
341
+ <!-- Bottom navigation -->
342
+ <div class="nav">
343
+ <div class="item">
344
+ <svg width="46" height="46" viewBox="0 0 24 24" fill="#fff"><path d="M12 3l9 7h-3v8h-4v-5H10v5H6v-8H3l9-7z"/></svg>
345
+ <div>Home</div>
346
+ </div>
347
+ <div class="item">
348
+ <svg width="46" height="46" viewBox="0 0 24 24" fill="#fff"><path d="M10 3l8 6-8 6V3zM6 5h2v14H6z"/></svg>
349
+ <div>Shorts</div>
350
+ </div>
351
+ <div class="item">
352
+ <div class="plus">
353
+ <svg width="54" height="54" viewBox="0 0 24 24" fill="#fff"><path d="M11 11V6h2v5h5v2h-5v5h-2v-5H6v-2z"/></svg>
354
+ </div>
355
+ </div>
356
+ <div class="item">
357
+ <svg width="46" height="46" viewBox="0 0 24 24" fill="#fff"><path d="M4 6h16v10H4z"/><path d="M10 9l5 3-5 3z" fill="#0f0f0f"/></svg>
358
+ <div>Subscriptions</div>
359
+ </div>
360
+ <div class="item">
361
+ <div style="width:64px;height:64px;background:#1a73e8;border-radius:50%;display:grid;place-items:center;color:#fff;font-weight:700;">C</div>
362
+ <div>You</div>
363
+ </div>
364
+ </div>
365
+
366
+ <div class="home-indicator"></div>
367
+ </div>
368
+ </body>
369
+ </html>
code/14170/14170_1.html ADDED
@@ -0,0 +1,304 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Calendar - November</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
9
+ #render-target {
10
+ width: 1080px;
11
+ height: 2400px;
12
+ position: relative;
13
+ overflow: hidden;
14
+ background: #10171D; /* dark app surface */
15
+ color: #E8EEF2;
16
+ }
17
+
18
+ /* Top system/status bar */
19
+ .status-bar {
20
+ height: 110px;
21
+ background: #19232B;
22
+ color: #FFFFFF;
23
+ display: flex;
24
+ align-items: center;
25
+ justify-content: space-between;
26
+ padding: 0 32px;
27
+ box-sizing: border-box;
28
+ }
29
+ .status-left { font-weight: 600; font-size: 44px; letter-spacing: 1px; }
30
+ .status-right { display: flex; gap: 26px; align-items: center; }
31
+ .status-icon svg { width: 38px; height: 38px; fill: #FFFFFF; opacity: 0.9; }
32
+
33
+ /* App bar */
34
+ .app-bar {
35
+ height: 128px;
36
+ background: #19232B;
37
+ border-bottom: 2px solid #22313B;
38
+ display: flex;
39
+ align-items: center;
40
+ padding: 0 32px;
41
+ box-sizing: border-box;
42
+ gap: 28px;
43
+ }
44
+ .icon-btn {
45
+ width: 84px;
46
+ height: 84px;
47
+ border-radius: 16px;
48
+ display: flex;
49
+ align-items: center;
50
+ justify-content: center;
51
+ }
52
+ .title {
53
+ font-size: 60px;
54
+ font-weight: 600;
55
+ letter-spacing: 0.5px;
56
+ flex: 1;
57
+ display: flex;
58
+ align-items: center;
59
+ gap: 14px;
60
+ }
61
+ .title .caret {
62
+ width: 26px;
63
+ height: 26px;
64
+ border-left: 10px solid transparent;
65
+ border-right: 10px solid transparent;
66
+ border-top: 16px solid #C9D6DC;
67
+ transform: translateY(6px);
68
+ opacity: 0.9;
69
+ }
70
+ .toolbar {
71
+ display: flex;
72
+ align-items: center;
73
+ gap: 22px;
74
+ }
75
+ .avatar {
76
+ width: 86px;
77
+ height: 86px;
78
+ border-radius: 50%;
79
+ background: #1976D2;
80
+ display: flex;
81
+ align-items: center;
82
+ justify-content: center;
83
+ font-weight: 700;
84
+ font-size: 48px;
85
+ }
86
+
87
+ .thin-divider {
88
+ height: 6px;
89
+ background: linear-gradient(90deg, #64B5F6 0 140px, transparent 140px);
90
+ }
91
+
92
+ /* Content area */
93
+ .content {
94
+ height: calc(2400px - 110px - 128px - 6px);
95
+ overflow: hidden;
96
+ padding: 22px 24px 150px 24px;
97
+ box-sizing: border-box;
98
+ }
99
+
100
+ .timeline {
101
+ display: flex;
102
+ flex-direction: column;
103
+ gap: 30px;
104
+ }
105
+
106
+ .row {
107
+ display: grid;
108
+ grid-template-columns: 160px 1fr;
109
+ gap: 24px;
110
+ align-items: start;
111
+ }
112
+ .date-col {
113
+ text-align: center;
114
+ color: #A7B6BF;
115
+ }
116
+ .date-col .dow {
117
+ font-size: 32px;
118
+ line-height: 32px;
119
+ margin-bottom: 8px;
120
+ }
121
+ .date-col .num {
122
+ font-size: 44px;
123
+ font-weight: 700;
124
+ }
125
+ .date-col .bubble {
126
+ width: 84px;
127
+ height: 84px;
128
+ border-radius: 50%;
129
+ background: #5C8EFF;
130
+ color: #0B1720;
131
+ display: flex;
132
+ align-items: center;
133
+ justify-content: center;
134
+ margin: 0 auto;
135
+ font-weight: 800;
136
+ font-size: 44px;
137
+ }
138
+
139
+ .empty-note {
140
+ color: #B6C4CC;
141
+ font-size: 42px;
142
+ padding-top: 12px;
143
+ }
144
+
145
+ /* Event cards */
146
+ .img-card, .pill {
147
+ border-radius: 28px;
148
+ position: relative;
149
+ }
150
+ .img-card {
151
+ height: 280px;
152
+ background: #E0E0E0;
153
+ border: 1px solid #BDBDBD;
154
+ color: #555;
155
+ display: flex;
156
+ align-items: center;
157
+ justify-content: center;
158
+ overflow: hidden;
159
+ }
160
+ .img-card .overlay {
161
+ position: absolute;
162
+ left: 28px;
163
+ bottom: 24px;
164
+ color: #FFFFFF;
165
+ text-shadow: 0 1px 2px rgba(0,0,0,0.6);
166
+ }
167
+ .img-card .overlay .title {
168
+ font-size: 46px;
169
+ font-weight: 700;
170
+ }
171
+ .img-card .overlay .time {
172
+ font-size: 34px;
173
+ opacity: 0.9;
174
+ }
175
+ .img-label {
176
+ font-size: 34px;
177
+ color: #757575;
178
+ }
179
+
180
+ .pill {
181
+ background: #4DB6AC;
182
+ padding: 28px 34px;
183
+ color: #0B1720;
184
+ font-weight: 700;
185
+ font-size: 44px;
186
+ box-shadow: inset 0 0 0 2px rgba(255,255,255,0.08);
187
+ }
188
+ .pill .sub {
189
+ display: block;
190
+ margin-top: 8px;
191
+ font-weight: 500;
192
+ font-size: 34px;
193
+ opacity: 0.9;
194
+ }
195
+
196
+ .section-range {
197
+ color: #92A3AC;
198
+ font-size: 34px;
199
+ margin-left: 184px;
200
+ margin-top: 8px;
201
+ }
202
+
203
+ /* Floating action button */
204
+ .fab {
205
+ position: absolute;
206
+ right: 48px;
207
+ bottom: 270px;
208
+ width: 150px;
209
+ height: 150px;
210
+ border-radius: 44px;
211
+ background: #2C3741;
212
+ display: flex;
213
+ align-items: center;
214
+ justify-content: center;
215
+ box-shadow: 0 8px 24px rgba(0,0,0,0.4);
216
+ }
217
+ .fab svg { width: 72px; height: 72px; stroke: #FFFFFF; stroke-width: 14px; }
218
+
219
+ /* Gesture pill */
220
+ .gesture {
221
+ position: absolute;
222
+ bottom: 42px;
223
+ left: 50%;
224
+ transform: translateX(-50%);
225
+ width: 300px;
226
+ height: 14px;
227
+ background: #EDEFF1;
228
+ opacity: 0.9;
229
+ border-radius: 10px;
230
+ }
231
+ </style>
232
+ </head>
233
+ <body>
234
+ <div id="render-target">
235
+
236
+ <!-- Status bar -->
237
+ <div class="status-bar">
238
+ <div class="status-left">11:00</div>
239
+ <div class="status-right">
240
+ <span class="status-icon">
241
+ <!-- location pin -->
242
+ <svg viewBox="0 0 24 24"><path d="M12 2a7 7 0 0 0-7 7c0 5 7 13 7 13s7-8 7-13a7 7 0 0 0-7-7zm0 10a3 3 0 1 1 0-6 3 3 0 0 1 0 6z"/></svg>
243
+ </span>
244
+ <span class="status-icon">
245
+ <!-- airplane mode -->
246
+ <svg viewBox="0 0 24 24"><path d="M21 16v-2l-8-5V3.5a1.5 1.5 0 0 0-3 0V9L2 14v2l8-2.5V20l-2 1v1l4-1 4 1v-1l-2-1v-6.5l7 2.5z"/></svg>
247
+ </span>
248
+ <span class="status-icon">
249
+ <!-- play store like triangle -->
250
+ <svg viewBox="0 0 24 24"><path d="M3 4l10 8L3 20V4zm11.5 7L20 6.5v11L14.5 11z"/></svg>
251
+ </span>
252
+ <span class="status-icon">
253
+ <!-- phone outline -->
254
+ <svg viewBox="0 0 24 24"><path d="M7 2h10a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2zm0 2v16h10V4H7z"/></svg>
255
+ </span>
256
+ <span class="status-icon">
257
+ <!-- dot -->
258
+ <svg viewBox="0 0 24 24"><circle cx="12" cy="12" r="3"/></svg>
259
+ </span>
260
+ <span class="status-icon">
261
+ <!-- wifi -->
262
+ <svg viewBox="0 0 24 24"><path d="M12 18a2 2 0 0 0-1.4.6A2 2 0 1 0 13.4 20 2 2 0 0 0 12 18zm-6-5a12 12 0 0 1 12 0l-1.5 1.5a9 9 0 0 0-9 0L6 13zM3 9a16 16 0 0 1 18 0l-1.6 1.6a13 13 0 0 0-14.8 0L3 9z"/></svg>
263
+ </span>
264
+ <span class="status-icon">
265
+ <!-- battery -->
266
+ <svg viewBox="0 0 24 24"><path d="M16 6h1V4h-1V3H8v1H7v2h9zM6 7h12v12H6z"/></svg>
267
+ </span>
268
+ </div>
269
+ </div>
270
+
271
+ <!-- App bar -->
272
+ <div class="app-bar">
273
+ <div class="icon-btn">
274
+ <!-- hamburger -->
275
+ <svg viewBox="0 0 24 24" width="54" height="54" fill="#CFE2EA">
276
+ <rect x="3" y="5" width="18" height="2"></rect>
277
+ <rect x="3" y="11" width="18" height="2"></rect>
278
+ <rect x="3" y="17" width="18" height="2"></rect>
279
+ </svg>
280
+ </div>
281
+ <div class="title">November <span class="caret"></span></div>
282
+ <div class="toolbar">
283
+ <div class="icon-btn">
284
+ <!-- search -->
285
+ <svg viewBox="0 0 24 24" width="54" height="54" fill="none" stroke="#CFE2EA" stroke-width="2.2">
286
+ <circle cx="11" cy="11" r="6.5"></circle>
287
+ <path d="M16 16l5 5"></path>
288
+ </svg>
289
+ </div>
290
+ <div class="icon-btn" title="Calendar">
291
+ <!-- small calendar with 6 -->
292
+ <svg viewBox="0 0 24 24" width="54" height="54" fill="none" stroke="#CFE2EA" stroke-width="2">
293
+ <rect x="3" y="5" width="18" height="16" rx="2"></rect>
294
+ <path d="M3 9h18"></path>
295
+ <text x="12" y="18" text-anchor="middle" font-size="8" fill="#CFE2EA" font-family="Arial" font-weight="700">6</text>
296
+ </svg>
297
+ </div>
298
+ <div class="avatar">C</div>
299
+ </div>
300
+ </div>
301
+ <div class="thin-divider"></div>
302
+
303
+ <!-- Content -->
304
+ <d
code/14170/14170_10.html ADDED
@@ -0,0 +1,212 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Calendar notifications - Mock</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: "Roboto", Arial, sans-serif; }
9
+ #render-target {
10
+ position: relative;
11
+ width: 1080px;
12
+ height: 2400px;
13
+ overflow: hidden;
14
+ background: #121212;
15
+ color: #ECECEC;
16
+ }
17
+
18
+ /* Status bar */
19
+ .status-bar {
20
+ height: 96px;
21
+ padding: 0 32px;
22
+ display: flex;
23
+ align-items: center;
24
+ justify-content: space-between;
25
+ color: #EDEDED;
26
+ font-size: 38px;
27
+ letter-spacing: 1px;
28
+ }
29
+ .status-left, .status-right { display: flex; align-items: center; gap: 24px; }
30
+ .icon-s { width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; color: #EDEDED; opacity: 0.85; }
31
+
32
+ /* Top app bar */
33
+ .top-bar {
34
+ display: flex;
35
+ align-items: center;
36
+ gap: 28px;
37
+ padding: 12px 32px 0 32px;
38
+ height: 88px;
39
+ color: #EDEDED;
40
+ }
41
+ .back-btn {
42
+ width: 72px; height: 72px; display: flex; align-items: center; justify-content: center; opacity: 0.95;
43
+ }
44
+
45
+ /* Title section */
46
+ .title-block {
47
+ padding: 12px 56px 0 56px;
48
+ }
49
+ .title-block h1 {
50
+ margin: 24px 0 16px 0;
51
+ font-weight: 500;
52
+ font-size: 96px;
53
+ line-height: 1.05;
54
+ letter-spacing: -0.5px;
55
+ }
56
+
57
+ /* App identity */
58
+ .app-identity {
59
+ margin-top: 40px;
60
+ display: flex;
61
+ flex-direction: column;
62
+ align-items: center;
63
+ gap: 18px;
64
+ }
65
+ .app-icon {
66
+ width: 120px; height: 120px; border-radius: 60px;
67
+ background: #E0E0E0; border: 1px solid #BDBDBD;
68
+ color: #757575; display: flex; align-items: center; justify-content: center;
69
+ font-size: 28px; text-align: center; padding: 10px;
70
+ }
71
+ .app-identity .name { font-size: 56px; font-weight: 500; }
72
+ .app-identity .sub { color: #B0B6BC; font-size: 34px; }
73
+
74
+ /* Big switch card */
75
+ .switch-card {
76
+ margin: 48px 32px 28px 32px;
77
+ background: #CFE3FF;
78
+ color: #0B1D2D;
79
+ border-radius: 44px;
80
+ padding: 50px 50px;
81
+ display: flex;
82
+ align-items: center;
83
+ justify-content: space-between;
84
+ }
85
+ .switch-card .label { font-size: 54px; }
86
+
87
+ /* Toggle visuals */
88
+ .toggle {
89
+ width: 180px; height: 96px; border-radius: 48px; position: relative;
90
+ background: #7D8691;
91
+ }
92
+ .toggle::after {
93
+ content: "";
94
+ position: absolute; top: 10px; left: 10px;
95
+ width: 76px; height: 76px; border-radius: 38px; background: #D9E1EA;
96
+ transition: all .2s ease;
97
+ box-shadow: 0 2px 4px rgba(0,0,0,.35);
98
+ }
99
+ .toggle.on { background: #8AB4FF; }
100
+ .toggle.on::after { left: 94px; background: #EAF2FF; }
101
+
102
+ /* Options cards */
103
+ .options {
104
+ padding: 0 32px;
105
+ }
106
+ .option-card {
107
+ border-radius: 28px;
108
+ padding: 30px 34px;
109
+ margin-bottom: 24px;
110
+ background: #1A1A1A;
111
+ border: 3px solid #3F3F3F;
112
+ }
113
+ .option-card.selected {
114
+ border-color: #9CC7FF;
115
+ background: #1C1C1C;
116
+ }
117
+ .option-head {
118
+ display: flex; align-items: center; gap: 22px;
119
+ font-size: 44px; font-weight: 500;
120
+ }
121
+ .option-sub {
122
+ margin-top: 10px; color: #A9B0B7; font-size: 32px;
123
+ }
124
+
125
+ /* Rows with trailing switch */
126
+ .row {
127
+ display: flex; align-items: center; justify-content: space-between;
128
+ padding: 36px 32px; margin: 26px 0 0 0;
129
+ }
130
+ .row .texts { max-width: 820px; }
131
+ .row .title { font-size: 44px; margin-bottom: 10px; }
132
+ .row .desc { color: #A9B0B7; font-size: 32px; line-height: 1.35; }
133
+
134
+ /* Simple icons */
135
+ .ic {
136
+ width: 54px; height: 54px; display: inline-flex; align-items: center; justify-content: center;
137
+ color: #C9CED4;
138
+ }
139
+
140
+ /* Divider spacer */
141
+ .spacer { height: 14px; }
142
+
143
+ /* Bottom gesture bar */
144
+ .gesture {
145
+ position: absolute; left: 50%; transform: translateX(-50%);
146
+ bottom: 36px; width: 300px; height: 10px; border-radius: 6px;
147
+ background: #D1D1D1; opacity: .7;
148
+ }
149
+ </style>
150
+ </head>
151
+ <body>
152
+ <div id="render-target">
153
+
154
+ <!-- Status bar -->
155
+ <div class="status-bar">
156
+ <div class="status-left">
157
+ <div>11:10</div>
158
+ <div class="icon-s">
159
+ <svg viewBox="0 0 24 24" width="40" height="40" fill="#EDEDED" opacity=".85">
160
+ <path d="M12 2a8 8 0 0 0-8 8h2a6 6 0 0 1 12 0h2a8 8 0 0 0-8-8zm0 6a2 2 0 0 0-2 2h4a2 2 0 0 0-2-2z"/>
161
+ </svg>
162
+ </div>
163
+ </div>
164
+ <div class="status-right">
165
+ <div class="icon-s">
166
+ <svg viewBox="0 0 24 24" width="40" height="40" fill="#EDEDED">
167
+ <path d="M2 17h20v2H2zM4 13h16v2H4zM6 9h12v2H6zM8 5h8v2H8z"/>
168
+ </svg>
169
+ </div>
170
+ <div class="icon-s">
171
+ <svg viewBox="0 0 24 24" width="42" height="42" fill="#EDEDED">
172
+ <path d="M3 8h18v8H3z" opacity=".25"/>
173
+ <path d="M3 8h12v8H3z"/>
174
+ </svg>
175
+ </div>
176
+ </div>
177
+ </div>
178
+
179
+ <!-- Top app bar with back -->
180
+ <div class="top-bar">
181
+ <div class="back-btn">
182
+ <svg viewBox="0 0 24 24" width="56" height="56" fill="#EDEDED">
183
+ <path d="M15.5 19l-7-7 7-7 1.5 1.5L10.5 12l6.5 6.5z"/>
184
+ </svg>
185
+ </div>
186
+ </div>
187
+
188
+ <!-- Big title -->
189
+ <div class="title-block">
190
+ <h1>Calendar notifications</h1>
191
+ </div>
192
+
193
+ <!-- App identity -->
194
+ <div class="app-identity">
195
+ <div class="app-icon">[IMG: Calendar App Icon]</div>
196
+ <div class="name">Calendar notifications</div>
197
+ <div class="sub">Calendar • Calendar</div>
198
+ </div>
199
+
200
+ <!-- Show notifications big switch -->
201
+ <div class="switch-card">
202
+ <div class="label">Show notifications</div>
203
+ <div class="toggle"></div>
204
+ </div>
205
+
206
+ <!-- Options -->
207
+ <div class="options">
208
+ <div class="option-card selected">
209
+ <div class="option-head">
210
+ <span class="ic">
211
+ <svg viewBox="0 0 24 24" width="54" height="54" fill="#C9CED4">
212
+ <path d="M12
code/14170/14170_2.html ADDED
@@ -0,0 +1,293 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Drawer UI - Google Calendar Style</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
9
+ #render-target {
10
+ width: 1080px;
11
+ height: 2400px;
12
+ position: relative;
13
+ overflow: hidden;
14
+ background: #0b141a; /* app background */
15
+ color: #e9eff3;
16
+ }
17
+
18
+ /* Status bar */
19
+ .status-bar {
20
+ position: absolute;
21
+ top: 0;
22
+ left: 0;
23
+ width: 1080px;
24
+ height: 100px;
25
+ color: #e7edf1;
26
+ font-size: 34px;
27
+ display: flex;
28
+ align-items: center;
29
+ justify-content: space-between;
30
+ padding: 0 36px;
31
+ box-sizing: border-box;
32
+ }
33
+ .status-icons { display: flex; align-items: center; gap: 24px; opacity: 0.85; }
34
+ .dot { width: 8px; height: 8px; border-radius: 50%; background: #dbe4ea; display: inline-block; }
35
+
36
+ /* Background content hint (right side cards) */
37
+ .bg-card {
38
+ position: absolute;
39
+ right: 36px;
40
+ width: 360px;
41
+ height: 170px;
42
+ border-radius: 28px;
43
+ opacity: 0.55;
44
+ filter: brightness(0.9);
45
+ }
46
+ .bg-card.one { top: 560px; background: #0f6e67; }
47
+ .bg-card.two { top: 980px; background: #254c66; }
48
+ .bg-card.three { top: 1410px; background: #1e5a4b; }
49
+ .floating-plus {
50
+ position: absolute; right: 52px; bottom: 360px;
51
+ width: 140px; height: 140px; border-radius: 32px;
52
+ background: rgba(60,80,92,0.85);
53
+ display: flex; align-items: center; justify-content: center;
54
+ color: #dfe7ec; font-size: 80px;
55
+ }
56
+
57
+ /* Drawer */
58
+ .drawer {
59
+ position: absolute;
60
+ top: 24px;
61
+ left: 0;
62
+ width: 900px;
63
+ height: 2352px;
64
+ background: #141f27;
65
+ border-radius: 0 44px 44px 0;
66
+ box-shadow: 6px 0 24px rgba(0,0,0,0.35);
67
+ padding: 24px 0 40px 0;
68
+ box-sizing: border-box;
69
+ }
70
+ .brand {
71
+ padding: 64px 44px 36px 44px;
72
+ font-size: 50px;
73
+ font-weight: 600;
74
+ letter-spacing: 0.2px;
75
+ }
76
+
77
+ .menu { padding: 0 28px; }
78
+ .menu-section { padding: 8px 16px; }
79
+ .menu-item {
80
+ display: flex; align-items: center;
81
+ gap: 28px;
82
+ padding: 26px 24px;
83
+ border-radius: 40px;
84
+ color: #dbe5ea;
85
+ font-size: 40px;
86
+ letter-spacing: 0.2px;
87
+ }
88
+ .menu-item.active { background: #2b3945; }
89
+ .divider {
90
+ height: 1px; background: #2a353d;
91
+ margin: 20px 0 20px 16px;
92
+ }
93
+ .icon {
94
+ width: 64px; height: 64px; display: inline-flex; align-items: center; justify-content: center;
95
+ }
96
+ .subtle { color: #9fb0ba; }
97
+
98
+ /* Account row */
99
+ .account {
100
+ display: flex; align-items: center; gap: 24px;
101
+ padding: 28px 24px;
102
+ font-size: 34px;
103
+ }
104
+ .avatar {
105
+ width: 76px; height: 76px; border-radius: 50%;
106
+ background: #f2994a; color: #16212a;
107
+ display: flex; align-items: center; justify-content: center;
108
+ font-weight: 700; font-size: 40px;
109
+ }
110
+
111
+ /* Checkbox rows */
112
+ .check-row { display: flex; align-items: center; gap: 28px; padding: 24px; font-size: 40px; }
113
+ .check {
114
+ width: 54px; height: 54px; border-radius: 10px;
115
+ display: inline-flex; align-items: center; justify-content: center;
116
+ }
117
+ .check.blue { background: #4b6bb7; }
118
+ .check.green { background: #4c9b78; }
119
+ .check.purple { background: #6266c7; }
120
+ .check.teal { background: #3b8b82; }
121
+ .check svg { width: 34px; height: 34px; }
122
+
123
+ /* Footer items */
124
+ .footer-space { height: 80px; }
125
+
126
+ /* Gesture bar */
127
+ .gesture {
128
+ position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
129
+ width: 420px; height: 12px; background: #e8edf1; border-radius: 12px; opacity: 0.9;
130
+ }
131
+ </style>
132
+ </head>
133
+ <body>
134
+ <div id="render-target">
135
+
136
+ <!-- Status bar -->
137
+ <div class="status-bar">
138
+ <div>11:01</div>
139
+ <div class="status-icons">
140
+ <!-- a few simple icons -->
141
+ <svg width="36" height="36" viewBox="0 0 24 24" fill="#e7edf1"><path d="M12 2l3 6 6 .5-4.5 4 1.5 6-6-3-6 3 1.5-6L3 8.5 9 8z"/></svg>
142
+ <svg width="36" height="36" viewBox="0 0 24 24" fill="#e7edf1"><path d="M12 2a5 5 0 015 5v2h2a3 3 0 013 3v7h-4v-7h-2v7H8v-7H6v7H2v-7a3 3 0 013-3h2V7a5 5 0 015-5z"/></svg>
143
+ <svg width="36" height="36" viewBox="0 0 24 24" fill="#e7edf1"><path d="M3 5h18v4H3zM3 11h18v8H3z"/></svg>
144
+ <span class="dot"></span>
145
+ <svg width="34" height="34" viewBox="0 0 24 24" fill="#e7edf1"><path d="M7 4h10l-1 14H8L7 4zM9 20h6v2H9z"/></svg>
146
+ <svg width="34" height="34" viewBox="0 0 24 24" fill="#e7edf1"><path d="M12 2l7 4v6c0 5-3 9-7 10-4-1-7-5-7-10V6l7-4z"/></svg>
147
+ </div>
148
+ </div>
149
+
150
+ <!-- Background hints to the right -->
151
+ <div class="bg-card one"></div>
152
+ <div class="bg-card two"></div>
153
+ <div class="bg-card three"></div>
154
+ <div class="floating-plus">+</div>
155
+
156
+ <!-- Drawer -->
157
+ <div class="drawer">
158
+ <div class="brand">Google Calendar</div>
159
+
160
+ <div class="menu">
161
+ <div class="menu-section">
162
+ <div class="menu-item active">
163
+ <div class="icon">
164
+ <!-- schedule icon: stacked rectangles -->
165
+ <svg viewBox="0 0 24 24" width="64" height="64" fill="#dbe5ea">
166
+ <path d="M4 6h16a1 1 0 010 2H4a1 1 0 110-2zm0 5h16a1 1 0 010 2H4a1 1 0 110-2zm0 5h10a1 1 0 010 2H4a1 1 0 110-2z"/>
167
+ </svg>
168
+ </div>
169
+ <div>Schedule</div>
170
+ </div>
171
+
172
+ <div class="menu-item">
173
+ <div class="icon">
174
+ <!-- day icon -->
175
+ <svg viewBox="0 0 24 24" width="64" height="64" fill="#b9c8d1">
176
+ <path d="M4 5h16v4H4zM4 11h10v8H4z"/>
177
+ </svg>
178
+ </div>
179
+ <div>Day</div>
180
+ </div>
181
+
182
+ <div class="menu-item">
183
+ <div class="icon">
184
+ <!-- 3 days icon -->
185
+ <svg viewBox="0 0 24 24" width="64" height="64" fill="#b9c8d1">
186
+ <path d="M3 6h5v12H3zM10 6h4v12h-4zM16 6h5v12h-5z"/>
187
+ </svg>
188
+ </div>
189
+ <div>3 days</div>
190
+ </div>
191
+
192
+ <div class="menu-item">
193
+ <div class="icon">
194
+ <!-- week icon -->
195
+ <svg viewBox="0 0 24 24" width="64" height="64" fill="#b9c8d1">
196
+ <path d="M3 6h18v4H3zM3 12h18v6H3z"/>
197
+ </svg>
198
+ </div>
199
+ <div>Week</div>
200
+ </div>
201
+
202
+ <div class="menu-item">
203
+ <div class="icon">
204
+ <!-- month icon -->
205
+ <svg viewBox="0 0 24 24" width="64" height="64" fill="#b9c8d1">
206
+ <path d="M4 4h16v16H4zM8 8h3v3H8zM13 8h3v3h-3zM8 13h3v3H8zM13 13h3v3h-3z"/>
207
+ </svg>
208
+ </div>
209
+ <div>Month</div>
210
+ </div>
211
+ </div>
212
+
213
+ <div class="divider"></div>
214
+
215
+ <div class="menu-section">
216
+ <div class="menu-item">
217
+ <div class="icon">
218
+ <!-- refresh icon -->
219
+ <svg viewBox="0 0 24 24" width="64" height="64" fill="#b9c8d1">
220
+ <path d="M12 5V2l5 4-5 4V7a5 5 0 100 10 5 5 0 004.9-4h2.1A7.1 7.1 0 1112 5z"/>
221
+ </svg>
222
+ </div>
223
+ <div>Refresh</div>
224
+ </div>
225
+ </div>
226
+
227
+ <div class="divider"></div>
228
+
229
+ <div class="menu-section">
230
+ <div class="account">
231
+ <div class="avatar">C</div>
232
+ <div>dbwscratch.test.id16@gmail.com</div>
233
+ </div>
234
+
235
+ <div class="check-row">
236
+ <div class="check blue">
237
+ <svg viewBox="0 0 24 24" fill="#dff3ff"><path d="M9 16l-4-4 2-2 2 2 6-6 2 2z"/></svg>
238
+ </div>
239
+ <div>Events</div>
240
+ </div>
241
+
242
+ <div class="check-row">
243
+ <div class="check purple">
244
+ <svg viewBox="0 0 24 24" fill="#dff3ff"><path d="M9 16l-4-4 2-2 2 2 6-6 2 2z"/></svg>
245
+ </div>
246
+ <div>Tasks</div>
247
+ </div>
248
+
249
+ <div class="divider"></div>
250
+
251
+ <div class="check-row">
252
+ <div class="check green">
253
+ <svg viewBox="0 0 24 24" fill="#dff3ff"><path d="M9 16l-4-4 2-2 2 2 6-6 2 2z"/></svg>
254
+ </div>
255
+ <div>Birthdays</div>
256
+ </div>
257
+
258
+ <div class="check-row">
259
+ <div class="check teal">
260
+ <svg viewBox="0 0 24 24" fill="#dff3ff"><path d="M9 16l-4-4 2-2 2 2 6-6 2 2z"/></svg>
261
+ </div>
262
+ <div>Holidays</div>
263
+ </div>
264
+
265
+ <div class="divider"></div>
266
+
267
+ <div class="menu-item">
268
+ <div class="icon">
269
+ <!-- settings gear (simple) -->
270
+ <svg viewBox="0 0 24 24" width="64" height="64" fill="#b9c8d1">
271
+ <path d="M12 8a4 4 0 100 8 4 4 0 000-8zm9 4l-2.1-.7.4-2.2-2.1-1.2-1.5 1.7-2-.8-.7-2.1H11l-.7 2.1-2 .8-1.5-1.7-2.1 1.2.4 2.2L3 12l.7 2.1-.4 2.2 2.1 1.2 1.5-1.7 2 .8.7 2.1h2.2l.7-2.1 2-.8 1.5 1.7 2.1-1.2-.4-2.2L21 12z"/>
272
+ </svg>
273
+ </div>
274
+ <div>Settings</div>
275
+ </div>
276
+
277
+ <div class="menu-item">
278
+ <div class="icon">
279
+ <!-- help icon -->
280
+ <svg viewBox="0 0 24 24" width="64" height="64" fill="#b9c8d1">
281
+ <path d="M12 2a10 10 0 1010 10A10 10 0 0012 2zm1 16h-2v-2h2zm2.1-7.3a3.7 3.7 0 01-1.7 1.7 2 2 0 00-1 1.6v.2h-2v-.3a3.9 3.9 0 012-3.4 1.9 1.9 0 00.9-1.6 1.9 1.9 0 00-2-1.8 2.1 2.1 0 00-2 1.6l-1.9-.8A4.1 4.1 0 0112 6a4 4 0 014.1 4.7z"/>
282
+ </svg>
283
+ </div>
284
+ <div>Help &amp; feedback</div>
285
+ </div>
286
+ </div>
287
+ </div>
288
+ </div>
289
+
290
+ <div class="gesture"></div>
291
+ </div>
292
+ </body>
293
+ </html>
code/14170/14170_3.html ADDED
@@ -0,0 +1,201 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>Settings UI Mock</title>
6
+ <style>
7
+ body { margin: 0; padding: 0; background: transparent; font-family: Roboto, Arial, sans-serif; }
8
+ #render-target {
9
+ width: 1080px;
10
+ height: 2400px;
11
+ position: relative;
12
+ overflow: hidden;
13
+ background: #121212;
14
+ color: #E8EAED;
15
+ }
16
+
17
+ /* Top system status bar */
18
+ .status-bar {
19
+ position: absolute;
20
+ top: 0;
21
+ left: 0;
22
+ width: 1080px;
23
+ height: 120px;
24
+ background: #1b1f23;
25
+ color: #E8EAED;
26
+ display: flex;
27
+ align-items: center;
28
+ padding: 0 32px;
29
+ box-sizing: border-box;
30
+ }
31
+ .status-left {
32
+ font-size: 40px;
33
+ letter-spacing: 0.5px;
34
+ }
35
+ .status-right {
36
+ margin-left: auto;
37
+ display: flex;
38
+ gap: 28px;
39
+ align-items: center;
40
+ }
41
+ .status-dot {
42
+ width: 16px; height: 16px; background: #9AA0A6; border-radius: 50%;
43
+ }
44
+ .status-icon {
45
+ width: 34px; height: 34px; border: 2px solid #9AA0A6; border-radius: 6px;
46
+ }
47
+
48
+ /* App bar */
49
+ .app-bar {
50
+ position: absolute;
51
+ top: 120px;
52
+ left: 0;
53
+ width: 1080px;
54
+ height: 160px;
55
+ background: #1b1f23;
56
+ border-bottom: 1px solid #262626;
57
+ display: flex;
58
+ align-items: center;
59
+ box-sizing: border-box;
60
+ padding: 0 28px;
61
+ }
62
+ .back {
63
+ width: 96px; height: 96px; display: flex; align-items: center; justify-content: center;
64
+ margin-right: 12px;
65
+ }
66
+ .title {
67
+ font-size: 64px; font-weight: 500; color: #E8EAED;
68
+ }
69
+ .menu {
70
+ margin-left: auto;
71
+ width: 96px; height: 96px; display: flex; align-items: center; justify-content: center;
72
+ }
73
+
74
+ /* Content list */
75
+ .content {
76
+ position: absolute;
77
+ top: 280px;
78
+ left: 0;
79
+ width: 1080px;
80
+ box-sizing: border-box;
81
+ }
82
+ .row {
83
+ display: flex; align-items: center;
84
+ height: 150px;
85
+ padding: 0 40px;
86
+ box-sizing: border-box;
87
+ border-bottom: 1px solid #272727;
88
+ font-size: 44px;
89
+ color: #E8EAED;
90
+ }
91
+ .row.plain { padding-left: 40px; }
92
+ .row .label { margin-left: 28px; }
93
+ .hint {
94
+ height: 120px;
95
+ display: flex; align-items: center;
96
+ padding: 0 40px;
97
+ font-size: 36px;
98
+ color: #9AA0A6;
99
+ border-bottom: 1px solid #272727;
100
+ }
101
+ .section-gap {
102
+ height: 32px;
103
+ border-bottom: 1px solid #272727;
104
+ background: #121212;
105
+ }
106
+ .section-title {
107
+ height: 120px;
108
+ display: flex; align-items: center;
109
+ padding: 0 40px;
110
+ font-size: 36px;
111
+ color: #9AA0A6;
112
+ border-bottom: 1px solid #272727;
113
+ }
114
+ .dot {
115
+ width: 56px; height: 56px; border-radius: 50%;
116
+ flex: 0 0 56px;
117
+ }
118
+ .dot.blue { background: #56A8F5; }
119
+ .dot.purple { background: #7E83F7; }
120
+ .dot.green { background: #57C78E; }
121
+ .dot.teal { background: #4FB3A5; }
122
+
123
+ /* Bottom gesture bar */
124
+ .gesture {
125
+ position: absolute;
126
+ bottom: 44px;
127
+ left: 50%;
128
+ transform: translateX(-50%);
129
+ width: 440px;
130
+ height: 16px;
131
+ background: #E0E0E0;
132
+ border-radius: 12px;
133
+ opacity: 0.9;
134
+ }
135
+
136
+ /* Simple reset for touch targets (no visual changes) */
137
+ .spacer { height: 900px; }
138
+ </style>
139
+ </head>
140
+ <body>
141
+ <div id="render-target">
142
+ <div class="status-bar">
143
+ <div class="status-left">11:01</div>
144
+ <div class="status-right">
145
+ <div class="status-dot"></div>
146
+ <div class="status-icon"></div>
147
+ <div class="status-icon"></div>
148
+ <div class="status-dot"></div>
149
+ <div class="status-icon" style="border-radius:50%;"></div>
150
+ </div>
151
+ </div>
152
+
153
+ <div class="app-bar">
154
+ <div class="back">
155
+ <svg width="48" height="48" viewBox="0 0 24 24" fill="none">
156
+ <path d="M15 18l-6-6 6-6" stroke="#E8EAED" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
157
+ </svg>
158
+ </div>
159
+ <div class="title">Settings</div>
160
+ <div class="menu">
161
+ <svg width="32" height="32" viewBox="0 0 24 24" fill="#E8EAED">
162
+ <circle cx="12" cy="5" r="2"/>
163
+ <circle cx="12" cy="12" r="2"/>
164
+ <circle cx="12" cy="19" r="2"/>
165
+ </svg>
166
+ </div>
167
+ </div>
168
+
169
+ <div class="content">
170
+ <div class="row plain" style="border-top: 1px solid #272727;">General</div>
171
+ <div class="row plain">Events from Gmail</div>
172
+ <div class="hint">dbwscratch.test.id16@gmail.com</div>
173
+
174
+ <div class="row">
175
+ <div class="dot blue"></div>
176
+ <div class="label">Events</div>
177
+ </div>
178
+ <div class="row">
179
+ <div class="dot purple"></div>
180
+ <div class="label">Tasks</div>
181
+ </div>
182
+
183
+ <div class="section-gap"></div>
184
+ <div class="section-title">More</div>
185
+
186
+ <div class="row">
187
+ <div class="dot green"></div>
188
+ <div class="label">Birthdays</div>
189
+ </div>
190
+ <div class="row">
191
+ <div class="dot teal"></div>
192
+ <div class="label">Holidays</div>
193
+ </div>
194
+
195
+ <div class="spacer"></div>
196
+ </div>
197
+
198
+ <div class="gesture"></div>
199
+ </div>
200
+ </body>
201
+ </html>
code/14170/14170_4.html ADDED
@@ -0,0 +1,252 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>General Settings Mock</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
9
+ #render-target {
10
+ position: relative;
11
+ width: 1080px;
12
+ height: 2400px;
13
+ overflow: hidden;
14
+ background: #121a20; /* dark app surface */
15
+ color: #E6E6E6;
16
+ }
17
+
18
+ /* Status bar */
19
+ .status-bar {
20
+ height: 120px;
21
+ background: #1b2630;
22
+ color: #e8e8e8;
23
+ display: flex;
24
+ align-items: center;
25
+ padding: 0 30px;
26
+ box-sizing: border-box;
27
+ font-size: 42px;
28
+ letter-spacing: 1px;
29
+ }
30
+ .status-left { display: flex; align-items: center; gap: 22px; }
31
+ .status-right { margin-left: auto; display: flex; align-items: center; gap: 26px; }
32
+
33
+ /* Simple status icons */
34
+ .icon {
35
+ width: 40px;
36
+ height: 40px;
37
+ opacity: 0.9;
38
+ }
39
+ .wifi { width: 48px; height: 48px; }
40
+ .battery {
41
+ width: 68px; height: 36px; border: 3px solid #e8e8e8; border-radius: 6px; position: relative;
42
+ }
43
+ .battery::after {
44
+ content: ""; position: absolute; right: -10px; top: 10px; width: 6px; height: 16px; background: #e8e8e8; border-radius: 2px;
45
+ }
46
+ .battery .level {
47
+ position: absolute; left: 4px; top: 4px; bottom: 4px; width: 46px; background: #e8e8e8; border-radius: 3px;
48
+ }
49
+
50
+ /* Header */
51
+ .app-bar {
52
+ height: 150px;
53
+ background: #1b2630;
54
+ display: flex;
55
+ align-items: center;
56
+ padding: 0 24px 0 16px;
57
+ box-sizing: border-box;
58
+ border-bottom: 1px solid #24303a;
59
+ }
60
+ .back-btn {
61
+ width: 76px; height: 76px; display: flex; align-items: center; justify-content: center; margin-right: 8px;
62
+ }
63
+ .app-title {
64
+ font-size: 58px; font-weight: 600; color: #eaeef2;
65
+ }
66
+ .menu-btn { margin-left: auto; padding: 24px; }
67
+ .dots {
68
+ width: 10px; height: 10px; background: #cfd8dc; border-radius: 50%; box-shadow: 0 20px 0 #cfd8dc, 0 -20px 0 #cfd8dc;
69
+ }
70
+
71
+ /* List styles */
72
+ .list { padding-bottom: 40px; }
73
+ .section {
74
+ border-top: 1px solid #26323a;
75
+ border-bottom: 1px solid #26323a;
76
+ background: #161f25;
77
+ }
78
+ .item {
79
+ padding: 32px 32px;
80
+ border-bottom: 1px solid #26323a;
81
+ display: flex;
82
+ align-items: center;
83
+ min-height: 150px;
84
+ box-sizing: border-box;
85
+ }
86
+ .item:last-child { border-bottom: none; }
87
+ .label { font-size: 44px; color: #e7ebee; }
88
+ .sub { font-size: 34px; color: #88949e; margin-top: 10px; }
89
+ .stack { display: flex; flex-direction: column; gap: 6px; }
90
+ .grow { flex: 1; }
91
+ .disabled { opacity: 0.5; }
92
+
93
+ /* Toggles */
94
+ .toggle {
95
+ width: 130px; height: 72px; border-radius: 36px; position: relative; transition: all .2s ease;
96
+ margin-left: 12px;
97
+ }
98
+ .toggle .knob {
99
+ position: absolute; top: 6px; left: 6px;
100
+ width: 60px; height: 60px; border-radius: 50%;
101
+ transition: all .2s ease;
102
+ }
103
+ .toggle.off { background: #3b4650; }
104
+ .toggle.off .knob { background: #7b8791; }
105
+ .toggle.on { background: #5fa8f3; }
106
+ .toggle.on .knob { background: #0e3b63; left: 64px; }
107
+
108
+ /* Subheader */
109
+ .subheader {
110
+ padding: 36px 32px 18px 32px;
111
+ font-size: 36px;
112
+ color: #9aa7b0;
113
+ }
114
+
115
+ /* Minor spacing tweaks for long label item */
116
+ .wrap-text .label { line-height: 1.25; }
117
+ </style>
118
+ </head>
119
+ <body>
120
+ <div id="render-target">
121
+
122
+ <!-- Status bar -->
123
+ <div class="status-bar">
124
+ <div class="status-left">
125
+ <div>11:02</div>
126
+ <!-- small status icons -->
127
+ <svg class="icon" viewBox="0 0 24 24" fill="#e8e8e8">
128
+ <circle cx="4" cy="19" r="2"/>
129
+ <circle cx="12" cy="11" r="2"/>
130
+ <circle cx="20" cy="3" r="2"/>
131
+ </svg>
132
+ <svg class="icon" viewBox="0 0 24 24" fill="none" stroke="#e8e8e8" stroke-width="2">
133
+ <path d="M12 2v20M2 12h20"/>
134
+ </svg>
135
+ <svg class="icon" viewBox="0 0 24 24" fill="#e8e8e8">
136
+ <path d="M12 3L2 12h3v8h6v-6h2v6h6v-8h3z"/>
137
+ </svg>
138
+ <svg class="icon" viewBox="0 0 24 24" fill="#e8e8e8">
139
+ <circle cx="12" cy="12" r="10"/>
140
+ </svg>
141
+ </div>
142
+ <div class="status-right">
143
+ <svg class="wifi" viewBox="0 0 24 24" fill="none" stroke="#e8e8e8" stroke-width="2">
144
+ <path d="M2 8.82A15.91 15.91 0 0 1 12 5c3.51 0 6.77 1.14 9.45 3.07"/>
145
+ <path d="M5 12.33A10.94 10.94 0 0 1 12 10a10.94 10.94 0 0 1 7 2.33"/>
146
+ <path d="M8.5 15.5A6.5 6.5 0 0 1 12 14a6.5 6.5 0 0 1 3.5 1.5"/>
147
+ <circle cx="12" cy="19" r="1.6" fill="#e8e8e8" stroke="none"/>
148
+ </svg>
149
+ <div class="battery"><div class="level"></div></div>
150
+ </div>
151
+ </div>
152
+
153
+ <!-- App Bar -->
154
+ <div class="app-bar">
155
+ <div class="back-btn">
156
+ <svg viewBox="0 0 24 24" width="64" height="64" fill="#e8e8e8">
157
+ <path d="M15.5 19l-7-7 7-7v14z"/>
158
+ </svg>
159
+ </div>
160
+ <div class="app-title">General</div>
161
+ <div class="menu-btn"><div class="dots"></div></div>
162
+ </div>
163
+
164
+ <!-- Settings list -->
165
+ <div class="list">
166
+
167
+ <div class="section">
168
+ <div class="item">
169
+ <div class="stack grow">
170
+ <div class="label">Start of the week</div>
171
+ <div class="sub">Sunday</div>
172
+ </div>
173
+ </div>
174
+
175
+ <div class="item">
176
+ <div class="stack grow">
177
+ <div class="label">Use device time zone</div>
178
+ </div>
179
+ <div class="toggle on"><div class="knob"></div></div>
180
+ </div>
181
+
182
+ <div class="item">
183
+ <div class="stack grow">
184
+ <div class="label disabled">Time zone</div>
185
+ <div class="sub disabled">India Standard Time&nbsp;&nbsp;GMT+5:30</div>
186
+ </div>
187
+ </div>
188
+ </div>
189
+
190
+ <div class="section" style="margin-top: 10px;">
191
+ <div class="item">
192
+ <div class="stack grow">
193
+ <div class="label">Alternate calendar</div>
194
+ <div class="sub">No alternate calendar</div>
195
+ </div>
196
+ </div>
197
+
198
+ <div class="item">
199
+ <div class="stack grow">
200
+ <div class="label">Show week number</div>
201
+ </div>
202
+ <div class="toggle off"><div class="knob"></div></div>
203
+ </div>
204
+
205
+ <div class="item">
206
+ <div class="stack grow">
207
+ <div class="label">Show declined events</div>
208
+ </div>
209
+ <div class="toggle on"><div class="knob"></div></div>
210
+ </div>
211
+
212
+ <div class="item wrap-text">
213
+ <div class="stack grow">
214
+ <div class="label">Display shorter entries the same size as 30-minute entries</div>
215
+ </div>
216
+ <div class="toggle off"><div class="knob"></div></div>
217
+ </div>
218
+ </div>
219
+
220
+ <div class="section" style="margin-top: 10px;">
221
+ <div class="item">
222
+ <div class="label">Default event duration</div>
223
+ </div>
224
+ <div class="item">
225
+ <div class="label">Adding invitations</div>
226
+ </div>
227
+ <div class="item">
228
+ <div class="label">Add video conferencing</div>
229
+ </div>
230
+ <div class="item">
231
+ <div class="stack grow">
232
+ <div class="label">Theme</div>
233
+ <div class="sub">System default</div>
234
+ </div>
235
+ </div>
236
+ </div>
237
+
238
+ <div class="subheader">Notifications</div>
239
+ <div class="section">
240
+ <div class="item">
241
+ <div class="stack grow">
242
+ <div class="label">Notify on this device</div>
243
+ </div>
244
+ <div class="toggle on"><div class="knob"></div></div>
245
+ </div>
246
+ </div>
247
+
248
+ </div>
249
+
250
+ </div>
251
+ </body>
252
+ </html>
code/14170/14170_5.html ADDED
@@ -0,0 +1,318 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>UI Recreation - Dark Settings with Theme Dialog</title>
7
+ <style>
8
+ body {
9
+ margin: 0;
10
+ padding: 0;
11
+ background: transparent;
12
+ font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
13
+ }
14
+ #render-target {
15
+ width: 1080px;
16
+ height: 2400px;
17
+ position: relative;
18
+ overflow: hidden;
19
+ background: #121212;
20
+ color: #E8EAED;
21
+ }
22
+ /* Top status bar (mock) */
23
+ .status-bar {
24
+ position: absolute;
25
+ top: 0;
26
+ left: 0;
27
+ width: 1080px;
28
+ height: 90px;
29
+ color: #E8EAED;
30
+ padding: 0 32px;
31
+ display: flex;
32
+ align-items: center;
33
+ justify-content: space-between;
34
+ font-size: 34px;
35
+ letter-spacing: 0.2px;
36
+ background: #121212;
37
+ }
38
+ .status-right {
39
+ display: flex;
40
+ gap: 26px;
41
+ align-items: center;
42
+ }
43
+ .sb-dot {
44
+ width: 10px;
45
+ height: 10px;
46
+ background: #E8EAED;
47
+ border-radius: 50%;
48
+ opacity: 0.9;
49
+ }
50
+
51
+ /* App bar */
52
+ .app-bar {
53
+ position: absolute;
54
+ top: 90px;
55
+ left: 0;
56
+ width: 1080px;
57
+ height: 150px;
58
+ display: flex;
59
+ align-items: center;
60
+ padding: 0 24px;
61
+ gap: 20px;
62
+ background: #121212;
63
+ }
64
+ .app-title {
65
+ font-size: 56px;
66
+ font-weight: 500;
67
+ color: #E8EAED;
68
+ letter-spacing: 0.2px;
69
+ }
70
+ .spacer {
71
+ flex: 1;
72
+ }
73
+ .icon-btn {
74
+ width: 96px;
75
+ height: 96px;
76
+ display: flex;
77
+ align-items: center;
78
+ justify-content: center;
79
+ color: #E8EAED;
80
+ }
81
+ .icon {
82
+ fill: currentColor;
83
+ }
84
+
85
+ /* Settings list */
86
+ .content {
87
+ position: absolute;
88
+ top: 240px;
89
+ left: 0;
90
+ right: 0;
91
+ bottom: 0;
92
+ padding: 10px 0 0;
93
+ }
94
+ .list-section {
95
+ margin-top: 8px;
96
+ border-top: 1px solid rgba(255,255,255,0.06);
97
+ }
98
+ .item {
99
+ padding: 36px 32px;
100
+ border-bottom: 1px solid rgba(255,255,255,0.06);
101
+ }
102
+ .item-title {
103
+ font-size: 46px;
104
+ color: #E8EAED;
105
+ }
106
+ .item-sub {
107
+ font-size: 36px;
108
+ color: #9AA0A6;
109
+ margin-top: 10px;
110
+ }
111
+ .row {
112
+ display: flex;
113
+ align-items: center;
114
+ }
115
+ .row .spacer { flex: 1; }
116
+
117
+ /* Toggle switch (ON) */
118
+ .switch {
119
+ position: relative;
120
+ width: 156px;
121
+ height: 84px;
122
+ border-radius: 42px;
123
+ background: rgba(26,115,232,0.35);
124
+ }
125
+ .switch::before {
126
+ content: "";
127
+ position: absolute;
128
+ top: 10px;
129
+ right: 10px;
130
+ width: 64px;
131
+ height: 64px;
132
+ border-radius: 50%;
133
+ background: #1A73E8;
134
+ box-shadow: 0 1px 2px rgba(0,0,0,0.4);
135
+ }
136
+
137
+ /* Scrim for dialog */
138
+ .scrim {
139
+ position: absolute;
140
+ inset: 0;
141
+ background: rgba(0,0,0,0.45);
142
+ }
143
+
144
+ /* Dialog */
145
+ .dialog {
146
+ position: absolute;
147
+ left: 40px;
148
+ top: 840px;
149
+ width: 1000px;
150
+ background: #263238;
151
+ color: #E8EAED;
152
+ border-radius: 36px;
153
+ box-shadow: 0 24px 64px rgba(0,0,0,0.6);
154
+ overflow: hidden;
155
+ }
156
+ .dialog-inner {
157
+ padding: 40px 40px 32px;
158
+ }
159
+ .dialog-title {
160
+ font-size: 48px;
161
+ font-weight: 600;
162
+ margin-bottom: 20px;
163
+ }
164
+ .radio-row {
165
+ display: flex;
166
+ align-items: center;
167
+ gap: 26px;
168
+ padding: 24px 0;
169
+ }
170
+ .radio {
171
+ width: 44px;
172
+ height: 44px;
173
+ border-radius: 50%;
174
+ border: 4px solid #9AA0A6;
175
+ position: relative;
176
+ }
177
+ .radio.checked {
178
+ border-color: #8AB4F8;
179
+ }
180
+ .radio.checked::after {
181
+ content: "";
182
+ position: absolute;
183
+ top: 8px;
184
+ left: 8px;
185
+ width: 20px;
186
+ height: 20px;
187
+ background: #8AB4F8;
188
+ border-radius: 50%;
189
+ }
190
+ .radio-label {
191
+ font-size: 44px;
192
+ color: #E8EAED;
193
+ }
194
+ .dialog-note {
195
+ margin-top: 24px;
196
+ font-size: 36px;
197
+ line-height: 1.45;
198
+ color: #B0BEC5;
199
+ }
200
+ .dialog-note a {
201
+ color: #8AB4F8;
202
+ text-decoration: underline;
203
+ }
204
+ .dialog-actions {
205
+ display: flex;
206
+ justify-content: flex-end;
207
+ padding: 0 40px 36px;
208
+ }
209
+ .text-btn {
210
+ font-size: 40px;
211
+ color: #8AB4F8;
212
+ }
213
+ </style>
214
+ </head>
215
+ <body>
216
+ <div id="render-target">
217
+
218
+ <!-- Status bar (mock) -->
219
+ <div class="status-bar">
220
+ <div>11:04</div>
221
+ <div class="status-right">
222
+ <div class="sb-dot"></div>
223
+ <div class="sb-dot"></div>
224
+ <div class="sb-dot"></div>
225
+ <div class="sb-dot"></div>
226
+ </div>
227
+ </div>
228
+
229
+ <!-- App bar -->
230
+ <div class="app-bar">
231
+ <div class="icon-btn" aria-label="Back">
232
+ <svg class="icon" width="48" height="48" viewBox="0 0 24 24">
233
+ <path d="M15.5 5.5 9 12l6.5 6.5-1.4 1.4L6.2 12l7.9-7.9z"/>
234
+ </svg>
235
+ </div>
236
+ <div class="app-title">General</div>
237
+ <div class="spacer"></div>
238
+ <div class="icon-btn" aria-label="More">
239
+ <svg class="icon" width="48" height="48" viewBox="0 0 24 24">
240
+ <circle cx="12" cy="5" r="2.2"></circle>
241
+ <circle cx="12" cy="12" r="2.2"></circle>
242
+ <circle cx="12" cy="19" r="2.2"></circle>
243
+ </svg>
244
+ </div>
245
+ </div>
246
+
247
+ <!-- Content list -->
248
+ <div class="content">
249
+ <div class="list-section">
250
+ <div class="item">
251
+ <div class="item-title">Start of the week</div>
252
+ <div class="item-sub">Sunday</div>
253
+ </div>
254
+
255
+ <div class="item row">
256
+ <div>
257
+ <div class="item-title">Use device time zone</div>
258
+ </div>
259
+ <div class="spacer"></div>
260
+ <div class="switch" aria-label="toggle on"></div>
261
+ </div>
262
+
263
+ <div class="item">
264
+ <div class="item-title">Time zone</div>
265
+ <div class="item-sub">India Standard Time, GMT+5:30</div>
266
+ </div>
267
+ </div>
268
+
269
+ <div class="list-section">
270
+ <div class="item">
271
+ <div class="item-title">Adding invitations</div>
272
+ </div>
273
+ <div class="item">
274
+ <div class="item-title">Add video conferencing</div>
275
+ </div>
276
+ <div class="item">
277
+ <div class="item-title">Theme</div>
278
+ <div class="item-sub">System default</div>
279
+ </div>
280
+ <div class="item">
281
+ <div class="item-title">Notifications</div>
282
+ </div>
283
+ </div>
284
+ </div>
285
+
286
+ <!-- Scrim + Dialog -->
287
+ <div class="scrim"></div>
288
+ <div class="dialog">
289
+ <div class="dialog-inner">
290
+ <div class="dialog-title">Choose theme</div>
291
+
292
+ <div class="radio-row">
293
+ <span class="radio" aria-hidden="true"></span>
294
+ <span class="radio-label">Light</span>
295
+ </div>
296
+ <div class="radio-row">
297
+ <span class="radio" aria-hidden="true"></span>
298
+ <span class="radio-label">Dark</span>
299
+ </div>
300
+ <div class="radio-row">
301
+ <span class="radio checked" aria-hidden="true"></span>
302
+ <span class="radio-label">System default</span>
303
+ </div>
304
+
305
+ <div class="dialog-note">
306
+ To change the theme of your Calendar widget and notifications, manage your Android
307
+ <a href="#">screen and display settings.</a>
308
+ </div>
309
+ </div>
310
+
311
+ <div class="dialog-actions">
312
+ <div class="text-btn">Cancel</div>
313
+ </div>
314
+ </div>
315
+
316
+ </div>
317
+ </body>
318
+ </html>
code/14170/14170_6.html ADDED
@@ -0,0 +1,234 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>General Settings 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: #E9EFF3; color: #202124;
12
+ }
13
+
14
+ /* Status bar */
15
+ .status-bar {
16
+ height: 96px;
17
+ background: #DDE5EB;
18
+ display: flex; align-items: center; justify-content: space-between;
19
+ padding: 0 36px;
20
+ box-sizing: border-box;
21
+ }
22
+ .status-left { display: flex; align-items: center; gap: 18px; }
23
+ .status-time { font-size: 40px; font-weight: 500; color: #202124; }
24
+ .status-icons { display: flex; align-items: center; gap: 22px; }
25
+ .icon-dot { width: 14px; height: 14px; background: #5f6368; border-radius: 50%; opacity: .85; }
26
+
27
+ /* Top app bar */
28
+ .app-bar {
29
+ height: 160px;
30
+ background: #E3EAF0;
31
+ display: flex; align-items: center; padding: 0 28px;
32
+ box-sizing: border-box; border-bottom: 1px solid #cdd6dc;
33
+ }
34
+ .nav-btn { width: 96px; height: 96px; display: flex; align-items: center; justify-content: center; }
35
+ .app-title {
36
+ font-size: 64px; font-weight: 500; margin-left: 8px; color: #202124;
37
+ flex: 1;
38
+ }
39
+ .app-actions { width: 120px; display: flex; align-items: center; justify-content: flex-end; padding-right: 8px; }
40
+
41
+ /* List styling */
42
+ .content { position: absolute; top: 256px; left: 0; right: 0; bottom: 0; overflow: hidden; }
43
+ .list { height: 2144px; overflow: hidden; }
44
+ .row {
45
+ display: flex; align-items: center; justify-content: space-between;
46
+ padding: 36px 48px; box-sizing: border-box;
47
+ background: #EEF3F7; border-bottom: 1px solid #D2DAE0;
48
+ }
49
+ .row .text { display: flex; flex-direction: column; gap: 14px; max-width: 840px; }
50
+ .title { font-size: 44px; line-height: 1.2; color: #202124; }
51
+ .subtitle { font-size: 32px; color: #6B747C; }
52
+ .disabled .title, .disabled .subtitle { color: #A6B0B7; }
53
+
54
+ .section-divider { height: 24px; background: #E3EAF0; border-top: 1px solid #D2DAE0; border-bottom: 1px solid #D2DAE0; }
55
+
56
+ /* Toggle switch */
57
+ .switch {
58
+ position: relative; width: 120px; height: 66px; flex: 0 0 auto;
59
+ }
60
+ .switch input { opacity: 0; width: 0; height: 0; }
61
+ .slider {
62
+ position: absolute; cursor: pointer; inset: 0;
63
+ background: #C7CDD3; border-radius: 33px; transition: background .2s ease;
64
+ box-shadow: inset 0 0 0 1px rgba(0,0,0,.08);
65
+ }
66
+ .slider:before {
67
+ content: ""; position: absolute; height: 56px; width: 56px; left: 5px; top: 5px;
68
+ background: #FFFFFF; border-radius: 50%; transition: transform .2s ease;
69
+ box-shadow: 0 1px 3px rgba(0,0,0,.25);
70
+ }
71
+ .switch input:checked + .slider { background: #1A73E8; }
72
+ .switch input:checked + .slider:before { transform: translateX(54px); }
73
+
74
+ /* Small section header */
75
+ .subsection-title {
76
+ padding: 36px 48px 20px; font-size: 32px; color: #6B747C; text-transform: none; letter-spacing: .2px;
77
+ }
78
+
79
+ /* Simple icon styling */
80
+ .icon { width: 48px; height: 48px; fill: #5f6368; }
81
+ .icon-large { width: 64px; height: 64px; fill: #5f6368; }
82
+ </style>
83
+ </head>
84
+ <body>
85
+ <div id="render-target">
86
+
87
+ <!-- Status bar -->
88
+ <div class="status-bar">
89
+ <div class="status-left">
90
+ <div class="status-time">11:05</div>
91
+ </div>
92
+ <div class="status-icons">
93
+ <!-- a few generic status icons -->
94
+ <svg class="icon" viewBox="0 0 24 24" aria-hidden="true">
95
+ <path d="M3 6l9-4 9 4v10a4 4 0 01-4 4H7a4 4 0 01-4-4V6z" opacity=".55"></path>
96
+ </svg>
97
+ <svg class="icon" viewBox="0 0 24 24" aria-hidden="true">
98
+ <path d="M2 10l10-7 10 7v9a2 2 0 01-2 2H4a2 2 0 01-2-2v-9z" opacity=".55"></path>
99
+ </svg>
100
+ <svg class="icon" viewBox="0 0 24 24" aria-hidden="true">
101
+ <path d="M2 8h20v2H2zm3 5h14v2H5zm4 5h6v2H9z" opacity=".7"></path>
102
+ </svg>
103
+ <div class="icon-dot"></div>
104
+ </div>
105
+ </div>
106
+
107
+ <!-- App bar -->
108
+ <div class="app-bar">
109
+ <div class="nav-btn">
110
+ <svg class="icon-large" viewBox="0 0 24 24" aria-hidden="true">
111
+ <path d="M15.5 19L8.5 12l7-7" stroke="#5f6368" stroke-width="2.2" fill="none" stroke-linecap="round" stroke-linejoin="round"></path>
112
+ </svg>
113
+ </div>
114
+ <div class="app-title">General</div>
115
+ <div class="app-actions">
116
+ <!-- more/overflow icon -->
117
+ <svg class="icon-large" viewBox="0 0 24 24" aria-hidden="true">
118
+ <circle cx="12" cy="5" r="2.2"></circle>
119
+ <circle cx="12" cy="12" r="2.2"></circle>
120
+ <circle cx="12" cy="19" r="2.2"></circle>
121
+ </svg>
122
+ </div>
123
+ </div>
124
+
125
+ <div class="content">
126
+ <div class="list">
127
+
128
+ <!-- Start of the week -->
129
+ <div class="row">
130
+ <div class="text">
131
+ <div class="title">Start of the week</div>
132
+ <div class="subtitle">Sunday</div>
133
+ </div>
134
+ </div>
135
+
136
+ <!-- Use device time zone -->
137
+ <div class="row">
138
+ <div class="title">Use device time zone</div>
139
+ <label class="switch">
140
+ <input type="checkbox" checked>
141
+ <span class="slider"></span>
142
+ </label>
143
+ </div>
144
+
145
+ <!-- Time zone (disabled look) -->
146
+ <div class="row disabled">
147
+ <div class="text">
148
+ <div class="title">Time zone</div>
149
+ <div class="subtitle">India Standard Time GMT+5:30</div>
150
+ </div>
151
+ </div>
152
+
153
+ <div class="section-divider"></div>
154
+
155
+ <!-- Alternate calendar -->
156
+ <div class="row">
157
+ <div class="text">
158
+ <div class="title">Alternate calendar</div>
159
+ <div class="subtitle">No alternate calendar</div>
160
+ </div>
161
+ </div>
162
+
163
+ <!-- Show week number -->
164
+ <div class="row">
165
+ <div class="title">Show week number</div>
166
+ <label class="switch">
167
+ <input type="checkbox">
168
+ <span class="slider"></span>
169
+ </label>
170
+ </div>
171
+
172
+ <!-- Show declined events -->
173
+ <div class="row">
174
+ <div class="title">Show declined events</div>
175
+ <label class="switch">
176
+ <input type="checkbox" checked>
177
+ <span class="slider"></span>
178
+ </label>
179
+ </div>
180
+
181
+ <!-- Display shorter entries -->
182
+ <div class="row">
183
+ <div class="title">Display shorter entries the same size as 30-minute entries</div>
184
+ <label class="switch">
185
+ <input type="checkbox">
186
+ <span class="slider"></span>
187
+ </label>
188
+ </div>
189
+
190
+ <div class="section-divider"></div>
191
+
192
+ <!-- Default event duration -->
193
+ <div class="row">
194
+ <div class="title">Default event duration</div>
195
+ </div>
196
+
197
+ <!-- Adding invitations -->
198
+ <div class="row">
199
+ <div class="title">Adding invitations</div>
200
+ </div>
201
+
202
+ <!-- Add video conferencing -->
203
+ <div class="row">
204
+ <div class="title">Add video conferencing</div>
205
+ </div>
206
+
207
+ <div class="section-divider"></div>
208
+
209
+ <!-- Theme -->
210
+ <div class="row">
211
+ <div class="text">
212
+ <div class="title">Theme</div>
213
+ <div class="subtitle">Light</div>
214
+ </div>
215
+ </div>
216
+
217
+ <!-- Notifications header -->
218
+ <div class="subsection-title">Notifications</div>
219
+
220
+ <!-- Notify on this device -->
221
+ <div class="row">
222
+ <div class="title">Notify on this device</div>
223
+ <label class="switch">
224
+ <input type="checkbox" checked>
225
+ <span class="slider"></span>
226
+ </label>
227
+ </div>
228
+
229
+ </div>
230
+ </div>
231
+
232
+ </div>
233
+ </body>
234
+ </html>
code/14170/14170_7.html ADDED
@@ -0,0 +1,249 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>General Settings Mock</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
9
+ #render-target {
10
+ width: 1080px;
11
+ height: 2400px;
12
+ position: relative;
13
+ overflow: hidden;
14
+ background: #E7EEF3;
15
+ color: #222;
16
+ }
17
+
18
+ /* App bar */
19
+ .appbar {
20
+ background: #DCE6EC;
21
+ height: 220px;
22
+ border-bottom: 1px solid #C7D2DA;
23
+ position: relative;
24
+ }
25
+ .status-bar {
26
+ height: 92px;
27
+ display: flex;
28
+ align-items: center;
29
+ justify-content: space-between;
30
+ padding: 0 40px;
31
+ color: #2f3438;
32
+ font-size: 42px;
33
+ letter-spacing: 0.5px;
34
+ }
35
+ .status-right {
36
+ display: flex;
37
+ align-items: center;
38
+ gap: 24px;
39
+ }
40
+ .toolbar {
41
+ height: 128px;
42
+ display: flex;
43
+ align-items: center;
44
+ padding: 0 24px 0 16px;
45
+ }
46
+ .icon-btn {
47
+ width: 110px;
48
+ height: 110px;
49
+ display: flex;
50
+ align-items: center;
51
+ justify-content: center;
52
+ }
53
+ .title {
54
+ font-size: 54px;
55
+ font-weight: 600;
56
+ color: #1d2328;
57
+ }
58
+ .spacer { flex: 1; }
59
+
60
+ /* Content list */
61
+ .content {
62
+ position: absolute;
63
+ top: 220px;
64
+ left: 0;
65
+ right: 0;
66
+ bottom: 0;
67
+ overflow: hidden;
68
+ }
69
+ .row {
70
+ padding: 40px 56px;
71
+ border-bottom: 1px solid #CFD8DD;
72
+ background: transparent;
73
+ display: flex;
74
+ align-items: center;
75
+ gap: 24px;
76
+ }
77
+ .row.stack { flex-direction: column; align-items: flex-start; }
78
+ .row .label {
79
+ font-size: 44px;
80
+ line-height: 1.25;
81
+ color: #20262B;
82
+ flex: 1;
83
+ }
84
+ .row .subtext {
85
+ font-size: 34px;
86
+ color: #6E7A82;
87
+ margin-top: 10px;
88
+ }
89
+
90
+ /* Section header */
91
+ .section-header {
92
+ padding: 36px 56px 20px;
93
+ color: #6C7A84;
94
+ font-size: 36px;
95
+ font-weight: 600;
96
+ }
97
+
98
+ /* Toggle switch */
99
+ .toggle {
100
+ width: 160px;
101
+ height: 88px;
102
+ border-radius: 44px;
103
+ position: relative;
104
+ cursor: default;
105
+ box-sizing: border-box;
106
+ transition: background 0.2s ease;
107
+ }
108
+ .toggle .knob {
109
+ position: absolute;
110
+ top: 8px;
111
+ width: 72px;
112
+ height: 72px;
113
+ border-radius: 50%;
114
+ background: #fff;
115
+ box-shadow: 0 2px 4px rgba(0,0,0,0.2);
116
+ transition: left 0.2s ease;
117
+ }
118
+ .toggle.on { background: #1E88E5; }
119
+ .toggle.on .knob { left: 80px; }
120
+ .toggle.off { background: #CFD8DC; }
121
+ .toggle.off .knob { left: 8px; }
122
+
123
+ /* Helper text row */
124
+ .helper {
125
+ padding: 28px 56px 40px;
126
+ color: #6E7A82;
127
+ font-size: 34px;
128
+ line-height: 1.35;
129
+ border-bottom: 1px solid #CFD8DD;
130
+ }
131
+
132
+ /* Bottom gesture bar */
133
+ .gesture {
134
+ position: absolute;
135
+ bottom: 24px;
136
+ left: 50%;
137
+ transform: translateX(-50%);
138
+ width: 340px;
139
+ height: 16px;
140
+ border-radius: 8px;
141
+ background: #9AA6AD;
142
+ }
143
+ </style>
144
+ </head>
145
+ <body>
146
+ <div id="render-target">
147
+
148
+ <!-- App bar with status icons -->
149
+ <div class="appbar">
150
+ <div class="status-bar">
151
+ <div>11:07</div>
152
+ <div class="status-right">
153
+ <!-- Simple status icons -->
154
+ <svg width="34" height="34" viewBox="0 0 24 24" fill="#37474F" xmlns="http://www.w3.org/2000/svg">
155
+ <path d="M2 18h2c4-6 12-12 18-14-5 5-9 11-10 16H8l-2 2H2v-4z"/>
156
+ </svg>
157
+ <svg width="34" height="34" viewBox="0 0 24 24" fill="#37474F" xmlns="http://www.w3.org/2000/svg">
158
+ <path d="M12 3C7 3 2.73 5.11.24 8.5L12 21l11.76-12.5C21.27 5.11 17 3 12 3zM4.91 8.5C6.68 6.54 9.2 5.4 12 5.4s5.32 1.14 7.09 3.1L12 16.7 4.91 8.5z"/>
159
+ </svg>
160
+ <svg width="34" height="34" viewBox="0 0 24 24" fill="#37474F" xmlns="http://www.w3.org/2000/svg">
161
+ <path d="M16 4h-3V2H7v2H4v6h12V4zM4 12v8h12v-8H4zm2 2h8v4H6v-4z"/>
162
+ </svg>
163
+ <svg width="40" height="40" viewBox="0 0 24 24" fill="none" stroke="#37474F" stroke-width="2" xmlns="http://www.w3.org/2000/svg">
164
+ <rect x="3" y="7" width="14" height="10" rx="2" />
165
+ <path d="M21 10v4" />
166
+ </svg>
167
+ </div>
168
+ </div>
169
+ <div class="toolbar">
170
+ <div class="icon-btn">
171
+ <!-- back arrow -->
172
+ <svg width="56" height="56" viewBox="0 0 24 24" fill="#263238" xmlns="http://www.w3.org/2000/svg">
173
+ <path d="M15.5 5l-7 7 7 7 1.5-1.5L11 12l6-6-1.5-1z"/>
174
+ </svg>
175
+ </div>
176
+ <div class="title">General</div>
177
+ <div class="spacer"></div>
178
+ <div class="icon-btn">
179
+ <!-- more/kebab -->
180
+ <svg width="46" height="46" viewBox="0 0 24 24" fill="#263238" xmlns="http://www.w3.org/2000/svg">
181
+ <circle cx="12" cy="5" r="2.2"/>
182
+ <circle cx="12" cy="12" r="2.2"/>
183
+ <circle cx="12" cy="19" r="2.2"/>
184
+ </svg>
185
+ </div>
186
+ </div>
187
+ </div>
188
+
189
+ <!-- Content -->
190
+ <div class="content">
191
+ <div class="row">
192
+ <div class="label">Show declined events</div>
193
+ <div class="toggle on"><div class="knob"></div></div>
194
+ </div>
195
+
196
+ <div class="row">
197
+ <div class="label" style="max-width: 760px;">Display shorter entries the same size as 30‑minute entries</div>
198
+ <div class="toggle off"><div class="knob"></div></div>
199
+ </div>
200
+
201
+ <div class="row">
202
+ <div class="label">Default event duration</div>
203
+ </div>
204
+
205
+ <div class="row">
206
+ <div class="label">Adding invitations</div>
207
+ </div>
208
+
209
+ <div class="row">
210
+ <div class="label">Add video conferencing</div>
211
+ </div>
212
+
213
+ <div class="row stack">
214
+ <div class="label">Theme</div>
215
+ <div class="subtext">Light</div>
216
+ </div>
217
+
218
+ <div class="section-header">Notifications</div>
219
+
220
+ <div class="row">
221
+ <div class="label">Notify on this device</div>
222
+ <div class="toggle on"><div class="knob"></div></div>
223
+ </div>
224
+
225
+ <div class="row">
226
+ <div class="label">Calendar notifications</div>
227
+ </div>
228
+
229
+ <div class="row">
230
+ <div class="label">Tasks notifications</div>
231
+ </div>
232
+
233
+ <div class="row">
234
+ <div class="label">Tasks overdue notifications</div>
235
+ </div>
236
+
237
+ <div class="helper">
238
+ You can change default notifications by going to the individual calendar, for example Events.
239
+ </div>
240
+
241
+ <div class="row">
242
+ <div class="label">Quick responses</div>
243
+ </div>
244
+ </div>
245
+
246
+ <div class="gesture"></div>
247
+ </div>
248
+ </body>
249
+ </html>
code/14170/14170_8.html ADDED
@@ -0,0 +1,207 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Calendar notifications</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; }
9
+ #render-target {
10
+ width: 1080px; height: 2400px; position: relative; overflow: hidden;
11
+ background: #121212; color: #EDEDED; font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
12
+ }
13
+
14
+ /* Status bar */
15
+ .status-bar {
16
+ position: absolute; top: 0; left: 0; right: 0; height: 120px;
17
+ display: flex; align-items: center; padding: 0 36px; color: #EDEDED;
18
+ font-size: 38px; letter-spacing: 1px;
19
+ }
20
+ .status-right { margin-left: auto; display: flex; gap: 30px; align-items: center; }
21
+ .icon { width: 42px; height: 42px; fill: none; stroke: #EDEDED; stroke-width: 3; }
22
+
23
+ /* Back */
24
+ .back {
25
+ position: absolute; top: 150px; left: 36px; width: 80px; height: 80px; display: flex; align-items: center; justify-content: center;
26
+ border-radius: 40px;
27
+ color: #EDEDED;
28
+ }
29
+ .back svg { width: 44px; height: 44px; fill: none; stroke: #EDEDED; stroke-width: 6; }
30
+
31
+ /* Headline */
32
+ .title-big {
33
+ position: absolute; left: 52px; top: 250px;
34
+ font-size: 96px; line-height: 1.05; font-weight: 500; color: #F1F3F4;
35
+ }
36
+
37
+ /* Center app header */
38
+ .app-header {
39
+ position: absolute; top: 520px; left: 0; right: 0;
40
+ display: flex; flex-direction: column; align-items: center; text-align: center; gap: 24px;
41
+ }
42
+ .app-avatar {
43
+ width: 140px; height: 140px; border-radius: 70px; background: #2A2A2A; border: 2px solid #3C3C3C;
44
+ display: flex; align-items: center; justify-content: center; color: #BDBDBD; font-size: 30px;
45
+ }
46
+ .app-title { font-size: 54px; font-weight: 600; }
47
+ .app-sub { font-size: 34px; color: #9AA0A6; }
48
+
49
+ /* Big pill toggle */
50
+ .big-toggle {
51
+ position: absolute; top: 760px; left: 36px; right: 36px;
52
+ background: #cfe1f8; color: #111; border-radius: 60px; padding: 44px 44px;
53
+ display: flex; align-items: center; justify-content: space-between;
54
+ }
55
+ .big-toggle .label { font-size: 48px; font-weight: 500; }
56
+ .switch {
57
+ width: 180px; height: 96px; border-radius: 48px; position: relative;
58
+ background: #6b7580;
59
+ }
60
+ .switch .knob {
61
+ position: absolute; top: 8px; left: 8px; width: 80px; height: 80px; border-radius: 40px;
62
+ background: #B7BDC6; box-shadow: 0 2px 2px rgba(0,0,0,0.4) inset;
63
+ }
64
+ .switch.on { background: #8AB4F8; }
65
+ .switch.on .knob { left: 92px; background: #FFFFFF; }
66
+
67
+ /* Cards */
68
+ .card {
69
+ margin: 36px; margin-top: 36px; border-radius: 26px; padding: 36px;
70
+ background: #1C1C1C; border: 3px solid #5F6368;
71
+ }
72
+ .card.selected { border-color: #9BB7FF; }
73
+ .card-row { display: flex; align-items: center; gap: 28px; }
74
+ .card .card-title { font-size: 44px; font-weight: 600; }
75
+ .card .card-desc { margin-top: 14px; font-size: 32px; color: #A7ADB3; }
76
+
77
+ .list-section { margin-top: 10px; }
78
+ .list-item {
79
+ display: flex; align-items: flex-start; gap: 28px;
80
+ padding: 28px 36px; color: #EDEDED;
81
+ }
82
+ .list-item .texts { flex: 1; }
83
+ .list-item .title { font-size: 44px; font-weight: 600; }
84
+ .list-item .sub { margin-top: 8px; font-size: 32px; color: #A7ADB3; line-height: 1.3; }
85
+
86
+ /* Small switch for list item (on) */
87
+ .switch-sm {
88
+ width: 150px; height: 78px; border-radius: 39px; position: relative; background: #8AB4F8; margin-top: 6px;
89
+ }
90
+ .switch-sm .knob { position: absolute; top: 6px; left: 72px; width: 66px; height: 66px; border-radius: 33px; background: #FFFFFF; }
91
+
92
+ /* Icons inside cards/list */
93
+ .i48 { width: 56px; height: 56px; stroke-width: 4; stroke: #EDEDED; fill: none; opacity: .95; }
94
+
95
+ /* Gesture bar */
96
+ .gesture {
97
+ position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
98
+ width: 360px; height: 10px; border-radius: 6px; background: #BDBDBD; opacity: .65;
99
+ }
100
+ </style>
101
+ </head>
102
+ <body>
103
+ <div id="render-target">
104
+
105
+ <!-- Status bar -->
106
+ <div class="status-bar">
107
+ <div>11:08</div>
108
+ <div class="status-right">
109
+ <svg class="icon" viewBox="0 0 24 24" aria-hidden="true">
110
+ <path d="M3 15l6-6 4 4 4-4 4 4" />
111
+ </svg>
112
+ <svg class="icon" viewBox="0 0 24 24" aria-hidden="true">
113
+ <path d="M3 6h18v12H3z" />
114
+ </svg>
115
+ <svg class="icon" viewBox="0 0 24 24" aria-hidden="true">
116
+ <path d="M3 12h16" />
117
+ </svg>
118
+ <svg class="icon" viewBox="0 0 24 24" aria-hidden="true">
119
+ <path d="M3 18h18" />
120
+ </svg>
121
+ <svg class="icon" viewBox="0 0 24 24" aria-hidden="true">
122
+ <path d="M6 6h12v12H6z" />
123
+ </svg>
124
+ <svg class="icon" viewBox="0 0 24 24" aria-hidden="true">
125
+ <path d="M3 7h14a4 4 0 014 4v6H3V7z" />
126
+ <path d="M17 7v-2" />
127
+ </svg>
128
+ </div>
129
+ </div>
130
+
131
+ <!-- Back -->
132
+ <div class="back">
133
+ <svg viewBox="0 0 24 24" aria-hidden="true"><path d="M15 4L7 12l8 8"/></svg>
134
+ </div>
135
+
136
+ <!-- Big headline -->
137
+ <div class="title-big">Calendar notifications</div>
138
+
139
+ <!-- App header center -->
140
+ <div class="app-header">
141
+ <div class="app-avatar">31</div>
142
+ <div class="app-title">Calendar notifications</div>
143
+ <div class="app-sub">Calendar • Calendar</div>
144
+ </div>
145
+
146
+ <!-- Big pill toggle -->
147
+ <div class="big-toggle">
148
+ <div class="label">Show notifications</div>
149
+ <div class="switch">
150
+ <div class="knob"></div>
151
+ </div>
152
+ </div>
153
+
154
+ <!-- Cards -->
155
+ <div class="card selected" style="margin-top: 1060px;">
156
+ <div class="card-row">
157
+ <svg class="i48" viewBox="0 0 24 24" aria-hidden="true">
158
+ <path d="M12 3a5 5 0 00-5 5v3.5L5 14v1h14v-1l-2-2.5V8a5 5 0 00-5-5z"/>
159
+ <path d="M10 18a2 2 0 004 0" />
160
+ </svg>
161
+ <div class="card-title">Default</div>
162
+ </div>
163
+ <div class="card-desc">May ring or vibrate based on phone settings</div>
164
+ </div>
165
+
166
+ <div class="card" style="margin-top: 20px;">
167
+ <div class="card-row">
168
+ <svg class="i48" viewBox="0 0 24 24" aria-hidden="true">
169
+ <path d="M12 3a5 5 0 00-5 5v3.5L5 14v1h14v-1l-2-2.5V8a5 5 0 00-5-5z"/>
170
+ <path d="M4 4l16 16" />
171
+ </svg>
172
+ <div class="card-title">Silent</div>
173
+ </div>
174
+ </div>
175
+
176
+ <!-- Pop on screen -->
177
+ <div class="list-section">
178
+ <div class="list-item" style="margin-top: 24px;">
179
+ <svg class="i48" viewBox="0 0 24 24" aria-hidden="true">
180
+ <rect x="6" y="3" width="12" height="18" rx="2"></rect>
181
+ <path d="M9 18h6" />
182
+ </svg>
183
+ <div class="texts">
184
+ <div class="title">Pop on screen</div>
185
+ <div class="sub">When device is unlocked, show notifications as a banner across the top of the screen</div>
186
+ </div>
187
+ <div class="switch-sm"><div class="knob"></div></div>
188
+ </div>
189
+ </div>
190
+
191
+ <!-- Sound -->
192
+ <div class="list-item">
193
+ <svg class="i48" viewBox="0 0 24 24" aria-hidden="true">
194
+ <path d="M12 3a5 5 0 00-5 5v3.5L5 14v1h14v-1l-2-2.5V8a5 5 0 00-5-5z"/>
195
+ <path d="M10 18a2 2 0 004 0" />
196
+ </svg>
197
+ <div class="texts">
198
+ <div class="title">Sound</div>
199
+ <div class="sub">App provided sound</div>
200
+ </div>
201
+ </div>
202
+
203
+ <!-- Gesture bar -->
204
+ <div class="gesture"></div>
205
+ </div>
206
+ </body>
207
+ </html>
code/14170/14170_9.html ADDED
@@ -0,0 +1,223 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Calendar notifications</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: "Roboto", "Segoe UI", Arial, sans-serif; }
9
+ #render-target {
10
+ width: 1080px;
11
+ height: 2400px;
12
+ position: relative;
13
+ overflow: hidden;
14
+ background: #121212;
15
+ color: #EDEDED;
16
+ }
17
+
18
+ /* Status bar */
19
+ .status-bar {
20
+ height: 96px;
21
+ padding: 0 28px;
22
+ display: flex;
23
+ align-items: center;
24
+ justify-content: space-between;
25
+ color: #EDEDED;
26
+ font-size: 36px;
27
+ letter-spacing: 1px;
28
+ }
29
+ .status-right {
30
+ display: flex;
31
+ align-items: center;
32
+ gap: 24px;
33
+ }
34
+ .icon {
35
+ display: inline-flex;
36
+ width: 44px;
37
+ height: 44px;
38
+ }
39
+
40
+ /* Back row */
41
+ .back-row {
42
+ height: 80px;
43
+ display: flex;
44
+ align-items: center;
45
+ padding-left: 24px;
46
+ }
47
+
48
+ /* Main title */
49
+ .page-title {
50
+ font-size: 96px;
51
+ font-weight: 500;
52
+ line-height: 1.1;
53
+ margin: 12px 48px 0 48px;
54
+ color: #F5F5F5;
55
+ }
56
+
57
+ /* Center app info */
58
+ .app-info {
59
+ margin-top: 36px;
60
+ display: flex;
61
+ flex-direction: column;
62
+ align-items: center;
63
+ text-align: center;
64
+ gap: 16px;
65
+ }
66
+ .app-icon {
67
+ width: 124px;
68
+ height: 124px;
69
+ border-radius: 50%;
70
+ background: #E0E0E0;
71
+ border: 1px solid #BDBDBD;
72
+ display: flex;
73
+ align-items: center;
74
+ justify-content: center;
75
+ color: #555;
76
+ font-size: 22px;
77
+ text-align: center;
78
+ padding: 8px;
79
+ }
80
+ .app-title {
81
+ font-size: 54px;
82
+ font-weight: 500;
83
+ }
84
+ .app-subtitle {
85
+ font-size: 34px;
86
+ color: #B0B0B0;
87
+ }
88
+
89
+ /* Toggle card */
90
+ .toggle-card {
91
+ margin: 44px 36px 0 36px;
92
+ background: #D2DDF0;
93
+ border-radius: 48px;
94
+ height: 168px;
95
+ display: flex;
96
+ align-items: center;
97
+ padding: 0 36px;
98
+ box-sizing: border-box;
99
+ color: #0E0E0E;
100
+ justify-content: space-between;
101
+ }
102
+ .toggle-card .label {
103
+ font-size: 50px;
104
+ font-weight: 500;
105
+ }
106
+ .switch {
107
+ width: 174px;
108
+ height: 88px;
109
+ background: #6B6B72;
110
+ border-radius: 88px;
111
+ position: relative;
112
+ box-shadow: inset 0 0 0 2px rgba(0,0,0,0.1);
113
+ }
114
+ .switch .knob {
115
+ width: 78px;
116
+ height: 78px;
117
+ background: #4B4B4F;
118
+ border-radius: 50%;
119
+ position: absolute;
120
+ top: 5px;
121
+ right: 5px; /* off state visual as in screenshot */
122
+ }
123
+
124
+ /* Info section */
125
+ .info-section {
126
+ margin: 72px 48px 0 48px;
127
+ color: #B8B8B8;
128
+ }
129
+ .info-row {
130
+ display: flex;
131
+ align-items: center;
132
+ gap: 20px;
133
+ }
134
+ .info-text {
135
+ margin-top: 18px;
136
+ font-size: 34px;
137
+ line-height: 1.4;
138
+ }
139
+
140
+ /* Gesture bar */
141
+ .gesture {
142
+ position: absolute;
143
+ bottom: 32px;
144
+ left: 50%;
145
+ transform: translateX(-50%);
146
+ width: 300px;
147
+ height: 12px;
148
+ background: #F3F3F3;
149
+ border-radius: 12px;
150
+ opacity: 0.85;
151
+ }
152
+ </style>
153
+ </head>
154
+ <body>
155
+ <div id="render-target">
156
+
157
+ <!-- Status bar -->
158
+ <div class="status-bar">
159
+ <div class="time">11:10</div>
160
+ <div class="status-right">
161
+ <!-- Simple status icons -->
162
+ <svg class="icon" viewBox="0 0 24 24" aria-label="ringer">
163
+ <path d="M12 2c-3 0-5 2-5 5v4.5L5 14v2h14v-2l-2-2.5V7c0-3-2-5-5-5z" fill="#EDEDED"/>
164
+ <circle cx="12" cy="20" r="2" fill="#EDEDED"/>
165
+ </svg>
166
+ <svg class="icon" viewBox="0 0 24 24" aria-label="wifi">
167
+ <path d="M2 8c5-4 15-4 20 0" stroke="#EDEDED" stroke-width="2" fill="none" stroke-linecap="round"/>
168
+ <path d="M5 12c4-3 10-3 14 0" stroke="#EDEDED" stroke-width="2" fill="none" stroke-linecap="round"/>
169
+ <path d="M9 16c2-2 4-2 6 0" stroke="#EDEDED" stroke-width="2" fill="none" stroke-linecap="round"/>
170
+ <circle cx="12" cy="19.5" r="1.5" fill="#EDEDED"/>
171
+ </svg>
172
+ <svg class="icon" viewBox="0 0 24 24" aria-label="battery">
173
+ <rect x="2" y="6" width="18" height="12" rx="2" ry="2" fill="none" stroke="#EDEDED" stroke-width="2"/>
174
+ <rect x="3.8" y="7.8" width="12" height="8.4" fill="#EDEDED"/>
175
+ <rect x="20" y="9" width="2" height="6" fill="#EDEDED"/>
176
+ </svg>
177
+ </div>
178
+ </div>
179
+
180
+ <!-- Back row -->
181
+ <div class="back-row">
182
+ <svg width="56" height="56" viewBox="0 0 24 24" aria-label="back">
183
+ <path d="M15 18l-6-6 6-6" stroke="#EDEDED" stroke-width="2.5" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
184
+ </svg>
185
+ </div>
186
+
187
+ <!-- Title -->
188
+ <div class="page-title">Calendar notifications</div>
189
+
190
+ <!-- App info -->
191
+ <div class="app-info">
192
+ <div class="app-icon">[IMG: Google Calendar App Icon]</div>
193
+ <div class="app-title">Calendar notifications</div>
194
+ <div class="app-subtitle">Calendar • Calendar</div>
195
+ </div>
196
+
197
+ <!-- Toggle card -->
198
+ <div class="toggle-card">
199
+ <div class="label">Show notifications</div>
200
+ <div class="switch" aria-label="notifications toggle off">
201
+ <div class="knob"></div>
202
+ </div>
203
+ </div>
204
+
205
+ <!-- Info section -->
206
+ <div class="info-section">
207
+ <div class="info-row">
208
+ <svg class="icon" viewBox="0 0 24 24" aria-label="info">
209
+ <circle cx="12" cy="12" r="10" stroke="#B8B8B8" stroke-width="2" fill="none"/>
210
+ <circle cx="12" cy="8" r="1.4" fill="#B8B8B8"/>
211
+ <path d="M12 11v6" stroke="#B8B8B8" stroke-width="2" stroke-linecap="round"/>
212
+ </svg>
213
+ </div>
214
+ <div class="info-text">
215
+ At your request, Android is blocking this category of notifications from appearing on this device
216
+ </div>
217
+ </div>
218
+
219
+ <!-- Gesture bar -->
220
+ <div class="gesture"></div>
221
+ </div>
222
+ </body>
223
+ </html>
code/14176/14176_0.html ADDED
@@ -0,0 +1,303 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>Recipe Detail - Barbeque Vinaigrette Salad Dressing</title>
6
+ <style>
7
+ body { margin: 0; padding: 0; background: transparent; font-family: "Roboto", "Segoe UI", Arial, sans-serif; }
8
+ #render-target {
9
+ width: 1080px; height: 2400px;
10
+ position: relative; overflow: hidden;
11
+ background: #141414; color: #fff;
12
+ }
13
+ /* Status bar */
14
+ .status-bar {
15
+ position: absolute; top: 0; left: 0; right: 0;
16
+ height: 120px; background: #000; color: #fff;
17
+ display: flex; align-items: center; justify-content: space-between;
18
+ padding: 0 36px; font-size: 38px; letter-spacing: 0.5px;
19
+ }
20
+ .status-right { display: flex; gap: 28px; align-items: center; }
21
+ .status-icon svg { width: 40px; height: 40px; fill: #fff; opacity: 0.9; }
22
+
23
+ /* Header with title */
24
+ .header {
25
+ position: absolute; top: 120px; left: 0; right: 0;
26
+ height: 160px; background: #262626;
27
+ display: flex; align-items: center; gap: 24px;
28
+ padding: 0 32px;
29
+ box-sizing: border-box;
30
+ }
31
+ .back-btn svg { width: 64px; height: 64px; fill: #fff; opacity: 0.95; }
32
+ .header-title {
33
+ font-size: 46px; font-weight: 600; color: #eaeaea;
34
+ white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
35
+ }
36
+
37
+ /* Banner image placeholder */
38
+ .banner {
39
+ position: absolute; top: 280px; left: 0; right: 0;
40
+ height: 260px; background: #E0E0E0; border: 1px solid #BDBDBD;
41
+ display: flex; align-items: center; justify-content: center;
42
+ color: #757575; font-size: 34px;
43
+ }
44
+
45
+ /* Content area */
46
+ .content {
47
+ position: absolute; top: 540px; left: 0; right: 0; bottom: 0;
48
+ padding: 36px 40px 0 40px; box-sizing: border-box;
49
+ }
50
+ .title-row {
51
+ display: flex; align-items: center; justify-content: space-between;
52
+ }
53
+ .recipe-title {
54
+ font-size: 62px; line-height: 74px; font-weight: 500; color: #f5f5f5;
55
+ max-width: 860px;
56
+ }
57
+ .fav-icon svg { width: 64px; height: 64px; fill: #ff8c2a; }
58
+ .small-meta {
59
+ margin-top: 12px; font-size: 32px; color: #bfbfbf;
60
+ }
61
+
62
+ /* Stat cards */
63
+ .stats {
64
+ margin-top: 40px; display: flex; gap: 26px; flex-wrap: nowrap;
65
+ }
66
+ .stat {
67
+ width: 200px;
68
+ display: flex; flex-direction: column; align-items: center; gap: 18px;
69
+ }
70
+ .circle {
71
+ width: 138px; height: 138px; border-radius: 50%;
72
+ background: #3a3a3a; position: relative; display: flex; align-items: center; justify-content: center;
73
+ }
74
+ .circle::after {
75
+ content: ""; position: absolute; top: 0; right: 0; width: 50%; height: 100%;
76
+ background: rgba(255,255,255,0.08); border-top-right-radius: 50%; border-bottom-right-radius: 50%;
77
+ }
78
+ .circle svg { width: 64px; height: 64px; fill: #d6d6d6; }
79
+ .stat-label {
80
+ font-size: 28px; text-align: center; color: #cfcfcf; line-height: 36px;
81
+ }
82
+
83
+ /* Section header with count wedge */
84
+ .section-header {
85
+ margin-top: 44px; height: 120px; background: #2a2a2a;
86
+ display: flex; align-items: center; padding: 0 36px; box-sizing: border-box; position: relative;
87
+ }
88
+ .section-label {
89
+ display: flex; align-items: center; gap: 20px; font-size: 44px; color: #e6e6e6; font-weight: 500;
90
+ }
91
+ .section-label .list-icon svg { width: 48px; height: 48px; fill: #cfcfcf; }
92
+ .count {
93
+ margin-left: auto; height: 100%; width: 280px; background: #5a5a5a; color: #eaeaea;
94
+ display: flex; align-items: center; justify-content: center; font-size: 32px; position: relative; font-weight: 500;
95
+ }
96
+ .count::before {
97
+ content: ""; position: absolute; left: -40px; top: 0;
98
+ width: 0; height: 0; border-top: 60px solid transparent; border-bottom: 60px solid transparent; border-right: 40px solid #5a5a5a;
99
+ }
100
+
101
+ /* Ingredient list */
102
+ .ingredients {
103
+ background: #1f1f1f; padding: 10px 0 20px 0;
104
+ }
105
+ .ing-item {
106
+ display: flex; align-items: center; gap: 26px;
107
+ padding: 22px 36px; border-bottom: 1px solid #2b2b2b;
108
+ }
109
+ .plus {
110
+ width: 48px; height: 48px; border-radius: 50%; background: #2f2f2f;
111
+ display: flex; align-items: center; justify-content: center; border: 1px solid #3b3b3b;
112
+ }
113
+ .plus svg { width: 28px; height: 28px; fill: #bfbfbf; }
114
+ .ing-text { font-size: 34px; color: #bdbdbd; }
115
+
116
+ /* Second section header */
117
+ .prep-section { margin-top: 16px; }
118
+ .prep-section .section-header { margin-top: 0; }
119
+ .prep-section .count { width: 240px; }
120
+ .prep-section .section-label .list-icon svg { transform: rotate(45deg); } /* simple stylistic difference */
121
+
122
+ /* Bottom gesture pill */
123
+ .gesture-bar {
124
+ position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
125
+ width: 360px; height: 18px; background: #e6e6e6; border-radius: 12px; opacity: 0.8;
126
+ }
127
+ </style>
128
+ </head>
129
+ <body>
130
+ <div id="render-target">
131
+
132
+ <!-- Status bar -->
133
+ <div class="status-bar">
134
+ <div>7:28</div>
135
+ <div class="status-right">
136
+ <span class="status-icon">
137
+ <!-- Simple Play/Triangle icon -->
138
+ <svg viewBox="0 0 48 48"><path d="M18 12 L36 24 L18 36 Z"/></svg>
139
+ </span>
140
+ <span class="status-icon">
141
+ <!-- WiFi icon simplified -->
142
+ <svg viewBox="0 0 48 48"><path d="M8 18 Q24 6 40 18" fill="none" stroke="#fff" stroke-width="4"/><path d="M14 24 Q24 16 34 24" fill="none" stroke="#fff" stroke-width="4"/><circle cx="24" cy="30" r="4"/></svg>
143
+ </span>
144
+ <span class="status-icon">
145
+ <!-- Battery icon -->
146
+ <svg viewBox="0 0 48 48"><rect x="6" y="12" width="32" height="24" rx="4"/><rect x="38" y="18" width="6" height="12" rx="2"/></svg>
147
+ </span>
148
+ </div>
149
+ </div>
150
+
151
+ <!-- Header with back button and main title -->
152
+ <div class="header">
153
+ <div class="back-btn">
154
+ <svg viewBox="0 0 48 48"><path d="M30 8 L16 24 L30 40" stroke="#fff" stroke-width="6" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>
155
+ </div>
156
+ <div class="header-title">Barbeque Vinaigrette Salad Dressing</div>
157
+ </div>
158
+
159
+ <!-- Banner image placeholder -->
160
+ <div class="banner">[IMG: Lettuce and Tomatoes Banner]</div>
161
+
162
+ <!-- Main content -->
163
+ <div class="content">
164
+ <div class="title-row">
165
+ <div class="recipe-title">Barbeque Vinaigrette Salad Dressing</div>
166
+ <div class="fav-icon">
167
+ <!-- Heart icon -->
168
+ <svg viewBox="0 0 48 48"><path d="M24 42 C24 42 6 30 6 18 C6 12 10 8 16 8 C20 8 23 10 24 12 C25 10 28 8 32 8 C38 8 42 12 42 18 C42 30 24 42 24 42 Z"/></svg>
169
+ </div>
170
+ </div>
171
+ <div class="small-meta">10mins</div>
172
+
173
+ <div class="stats">
174
+ <!-- Calories -->
175
+ <div class="stat">
176
+ <div class="circle">
177
+ <svg viewBox="0 0 48 48">
178
+ <path d="M24 6 C28 14 20 18 22 22 C24 26 30 24 30 30 C30 35 26 38 22 38 C16 38 12 33 12 28 C12 22 18 18 18 12" fill="#d6d6d6"/>
179
+ </svg>
180
+ </div>
181
+ <div class="stat-label">207.7<br/>Calories</div>
182
+ </div>
183
+ <!-- Servings -->
184
+ <div class="stat">
185
+ <div class="circle">
186
+ <svg viewBox="0 0 48 48">
187
+ <path d="M8 30 H40" stroke="#d6d6d6" stroke-width="4"/>
188
+ <path d="M12 30 C12 20 36 20 36 30" stroke="#d6d6d6" stroke-width="4" fill="none"/>
189
+ <circle cx="24" cy="16" r="4" fill="#d6d6d6"/>
190
+ </svg>
191
+ </div>
192
+ <div class="stat-label">8<br/>Servings</div>
193
+ </div>
194
+ <!-- Share -->
195
+ <div class="stat">
196
+ <div class="circle">
197
+ <svg viewBox="0 0 48 48">
198
+ <circle cx="14" cy="18" r="5" fill="#d6d6d6"/>
199
+ <circle cx="34" cy="12" r="5" fill="#d6d6d6"/>
200
+ <circle cx="34" cy="34" r="5" fill="#d6d6d6"/>
201
+ <path d="M18 18 L29 13" stroke="#d6d6d6" stroke-width="4"/>
202
+ <path d="M18 20 L29 31" stroke="#d6d6d6" stroke-width="4"/>
203
+ </svg>
204
+ </div>
205
+ <div class="stat-label">Share<br/>recipe</div>
206
+ </div>
207
+ <!-- Unit chart -->
208
+ <div class="stat">
209
+ <div class="circle">
210
+ <svg viewBox="0 0 48 48">
211
+ <rect x="10" y="20" width="6" height="16" fill="#d6d6d6"/>
212
+ <rect x="20" y="14" width="6" height="22" fill="#d6d6d6"/>
213
+ <rect x="30" y="24" width="6" height="12" fill="#d6d6d6"/>
214
+ </svg>
215
+ </div>
216
+ <div class="stat-label">Unit<br/>chart</div>
217
+ </div>
218
+ <!-- Print -->
219
+ <div class="stat">
220
+ <div class="circle">
221
+ <svg viewBox="0 0 48 48">
222
+ <rect x="12" y="10" width="24" height="10" fill="#d6d6d6"/>
223
+ <rect x="10" y="20" width="28" height="16" rx="2" fill="none" stroke="#d6d6d6" stroke-width="4"/>
224
+ <rect x="16" y="30" width="16" height="10" fill="#d6d6d6"/>
225
+ </svg>
226
+ </div>
227
+ <div class="stat-label">Print<br/>Recipe</div>
228
+ </div>
229
+ </div>
230
+
231
+ <!-- Ingredients Section -->
232
+ <div class="section-header">
233
+ <div class="section-label">
234
+ <span class="list-icon">
235
+ <svg viewBox="0 0 48 48"><path d="M8 12 H40 M8 24 H40 M8 36 H40" stroke="#cfcfcf" stroke-width="4" stroke-linecap="round"/></svg>
236
+ </span>
237
+ <span>Ingredients Required</span>
238
+ </div>
239
+ <div class="count">10<br/>Items</div>
240
+ </div>
241
+
242
+ <div class="ingredients">
243
+ <div class="ing-item">
244
+ <div class="plus"><svg viewBox="0 0 48 48"><path d="M24 10 V38 M10 24 H38" stroke="#bfbfbf" stroke-width="6" stroke-linecap="round"/></svg></div>
245
+ <div class="ing-text">3/4 cup olive oil</div>
246
+ </div>
247
+ <div class="ing-item">
248
+ <div class="plus"><svg viewBox="0 0 48 48"><path d="M24 10 V38 M10 24 H38" stroke="#bfbfbf" stroke-width="6" stroke-linecap="round"/></svg></div>
249
+ <div class="ing-text">1/8 cup balsamic vinegar</div>
250
+ </div>
251
+ <div class="ing-item">
252
+ <div class="plus"><svg viewBox="0 0 48 48"><path d="M24 10 V38 M10 24 H38" stroke="#bfbfbf" stroke-width="6" stroke-linecap="round"/></svg></div>
253
+ <div class="ing-text">1/4 cup barbecue sauce</div>
254
+ </div>
255
+ <div class="ing-item">
256
+ <div class="plus"><svg viewBox="0 0 48 48"><path d="M24 10 V38 M10 24 H38" stroke="#bfbfbf" stroke-width="6" stroke-linecap="round"/></svg></div>
257
+ <div class="ing-text">1/2 lime, juiced</div>
258
+ </div>
259
+ <div class="ing-item">
260
+ <div class="plus"><svg viewBox="0 0 48 48"><path d="M24 10 V38 M10 24 H38" stroke="#bfbfbf" stroke-width="6" stroke-linecap="round"/></svg></div>
261
+ <div class="ing-text">1 garlic clove, crushed</div>
262
+ </div>
263
+ <div class="ing-item">
264
+ <div class="plus"><svg viewBox="0 0 48 48"><path d="M24 10 V38 M10 24 H38" stroke="#bfbfbf" stroke-width="6" stroke-linecap="round"/></svg></div>
265
+ <div class="ing-text">1 teaspoon cumin seed, ground (or cumin powder)</div>
266
+ </div>
267
+ <div class="ing-item">
268
+ <div class="plus"><svg viewBox="0 0 48 48"><path d="M24 10 V38 M10 24 H38" stroke="#bfbfbf" stroke-width="6" stroke-linecap="round"/></svg></div>
269
+ <div class="ing-text">1 teaspoon chili powder</div>
270
+ </div>
271
+ <div class="ing-item">
272
+ <div class="plus"><svg viewBox="0 0 48 48"><path d="M24 10 V38 M10 24 H38" stroke="#bfbfbf" stroke-width="6" stroke-linecap="round"/></svg></div>
273
+ <div class="ing-text">1 tablespoon fresh oregano, chopped fine</div>
274
+ </div>
275
+ <div class="ing-item">
276
+ <div class="plus"><svg viewBox="0 0 48 48"><path d="M24 10 V38 M10 24 H38" stroke="#bfbfbf" stroke-width="6" stroke-linecap="round"/></svg></div>
277
+ <div class="ing-text">1/4 teaspoon ground ginger</div>
278
+ </div>
279
+ <div class="ing-item">
280
+ <div class="plus"><svg viewBox="0 0 48 48"><path d="M24 10 V38 M10 24 H38" stroke="#bfbfbf" stroke-width="6" stroke-linecap="round"/></svg></div>
281
+ <div class="ing-text">2 -4 slices bacon, baked and crumbled</div>
282
+ </div>
283
+ </div>
284
+
285
+ <!-- Directions Section -->
286
+ <div class="prep-section">
287
+ <div class="section-header">
288
+ <div class="section-label">
289
+ <span class="list-icon">
290
+ <!-- Simple diamond arrow icon to hint steps -->
291
+ <svg viewBox="0 0 48 48"><path d="M8 24 L20 12 L32 24 L20 36 Z" fill="#cfcfcf"/></svg>
292
+ </span>
293
+ <span>Directions to Prepare</span>
294
+ </div>
295
+ <div class="count">3<br/>Steps</div>
296
+ </div>
297
+ </div>
298
+ </div>
299
+
300
+ <div class="gesture-bar"></div>
301
+ </div>
302
+ </body>
303
+ </html>
code/14176/14176_1.html ADDED
@@ -0,0 +1,163 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Article - Barbecue Salads</title>
7
+ <style>
8
+ body { margin:0; padding:0; background:transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji"; }
9
+ #render-target{
10
+ width:1080px; height:2400px; position:relative; overflow:hidden; background:#000;
11
+ color:#fff;
12
+ }
13
+
14
+ /* Top photo area */
15
+ .hero{
16
+ position:relative;
17
+ width:100%;
18
+ height:1120px;
19
+ }
20
+ .hero .img{
21
+ position:absolute; inset:0;
22
+ background:#E0E0E0;
23
+ border-bottom:1px solid #BDBDBD;
24
+ display:flex; align-items:flex-end; justify-content:center;
25
+ color:#555; font-size:32px; letter-spacing:.2px;
26
+ }
27
+ /* Status bar */
28
+ .status{
29
+ position:absolute; top:34px; left:36px; right:36px; height:56px; display:flex; align-items:center; justify-content:space-between; color:#fff; font-weight:600; font-size:40px; text-shadow:0 1px 2px rgba(0,0,0,.45);
30
+ pointer-events:none;
31
+ }
32
+ .status .right{ display:flex; gap:26px; align-items:center; }
33
+ .back-btn{
34
+ position:absolute; top:220px; left:36px; width:120px; height:120px; background:rgba(0,0,0,.6); border-radius:60px; display:flex; align-items:center; justify-content:center;
35
+ }
36
+ .back-btn svg{ width:56px; height:56px; fill:none; stroke:#fff; stroke-width:10; }
37
+
38
+ /* Article body */
39
+ .content{
40
+ position:relative; background:#000; padding:80px 72px 0; border-top:1px solid rgba(255,255,255,.06);
41
+ }
42
+ .title{
43
+ font-family: Georgia, "Times New Roman", serif;
44
+ font-size:84px; line-height:1.08; text-align:center; font-weight:700; margin:10px 30px 40px;
45
+ }
46
+ .subtitle{
47
+ font-size:40px; line-height:1.6; color:#ddd; margin:8px 0 70px;
48
+ }
49
+
50
+ .actions{
51
+ display:flex; align-items:center; justify-content:space-between; gap:40px; margin:24px 0 80px;
52
+ }
53
+ .action{
54
+ display:flex; align-items:center; gap:22px; color:#fff;
55
+ font-size:38px;
56
+ }
57
+ .action svg{ width:56px; height:56px; fill:none; stroke:#fff; stroke-width:6; }
58
+
59
+ .divider{ height:1px; background:rgba(255,255,255,.08); margin:0 -72px 32px; }
60
+
61
+ /* Footer author strip (simplified) */
62
+ .author{
63
+ display:flex; align-items:center; gap:28px; padding:32px 0 0;
64
+ color:#fff;
65
+ }
66
+ .avatar{
67
+ width:140px; height:140px; border-radius:70px; background:#FFD44D; color:#000; display:flex; align-items:center; justify-content:center; font-weight:800; font-size:48px;
68
+ }
69
+ .author .name{ font-size:42px; font-weight:600; }
70
+ .progress{
71
+ flex:1; height:10px; background:#444; border-radius:6px; margin-left:24px; position:relative;
72
+ }
73
+ .progress::after{
74
+ content:""; position:absolute; left:0; top:0; bottom:0; width:55%; background:#fff; border-radius:6px;
75
+ }
76
+
77
+ /* iOS home indicator */
78
+ .home-indicator{
79
+ position:absolute; left:50%; transform:translateX(-50%);
80
+ bottom:22px; width:420px; height:10px; background:#fff; opacity:.9; border-radius:10px;
81
+ }
82
+ </style>
83
+ </head>
84
+ <body>
85
+ <div id="render-target">
86
+
87
+ <!-- Top image section -->
88
+ <div class="hero">
89
+ <div class="img">[IMG: Barbecue table with salads and grilled meat]</div>
90
+
91
+ <div class="status">
92
+ <div class="left">7:29</div>
93
+ <div class="right">
94
+ <!-- Simple Wi‑Fi -->
95
+ <svg viewBox="0 0 24 24" width="48" height="48">
96
+ <path d="M2 8c5-4 15-4 20 0" stroke="#fff" stroke-width="2" fill="none" stroke-linecap="round"/>
97
+ <path d="M5 11c3.5-3 10.5-3 14 0" stroke="#fff" stroke-width="2" fill="none" stroke-linecap="round"/>
98
+ <path d="M8 14c2-1.6 6-1.6 8 0" stroke="#fff" stroke-width="2" fill="none" stroke-linecap="round"/>
99
+ <circle cx="12" cy="18" r="1.6" fill="#fff"/>
100
+ </svg>
101
+ <!-- Battery -->
102
+ <svg viewBox="0 0 28 16" width="48" height="48">
103
+ <rect x="1" y="2" width="22" height="12" rx="2" ry="2" stroke="#fff" fill="none" stroke-width="2"/>
104
+ <rect x="3.5" y="4.5" width="14" height="7" fill="#fff"/>
105
+ <rect x="23" y="6" width="3" height="4" fill="#fff"/>
106
+ </svg>
107
+ </div>
108
+ </div>
109
+
110
+ <div class="back-btn">
111
+ <svg viewBox="0 0 24 24">
112
+ <path d="M15 4 L7 12 L15 20" />
113
+ </svg>
114
+ </div>
115
+ </div>
116
+
117
+ <!-- Article body -->
118
+ <div class="content">
119
+ <div class="title">Barbecue Salads: 6 Great Ideas for a Perfect Barbecue</div>
120
+ <div class="subtitle">Attention, they might be more popular than the meat!</div>
121
+
122
+ <div class="actions">
123
+ <div class="action">
124
+ <!-- Heart -->
125
+ <svg viewBox="0 0 24 24">
126
+ <path d="M12 21c-5-3.8-8-6.6-8-10.2 0-2.5 2-4.3 4.3-4.3 1.8 0 3.2.9 3.7 2 .5-1.1 1.9-2 3.7-2 2.3 0 4.3 1.8 4.3 4.3 0 3.6-3 6.4-8 10.2z"/>
127
+ </svg>
128
+ <span>885</span>
129
+ </div>
130
+ <div class="action">
131
+ <!-- Bookmark -->
132
+ <svg viewBox="0 0 24 24">
133
+ <path d="M6 3h12v18l-6-4-6 4z"/>
134
+ </svg>
135
+ <span>Save</span>
136
+ </div>
137
+ <div class="action">
138
+ <!-- Share -->
139
+ <svg viewBox="0 0 24 24">
140
+ <circle cx="6" cy="12" r="2" stroke-width="2"/>
141
+ <circle cx="18" cy="6" r="2" stroke-width="2"/>
142
+ <circle cx="18" cy="18" r="2" stroke-width="2"/>
143
+ <path d="M8 12 L16 7 M8 12 L16 17" />
144
+ </svg>
145
+ <span>Share</span>
146
+ </div>
147
+ </div>
148
+
149
+ <div class="divider"></div>
150
+
151
+ <div class="author">
152
+ <div class="avatar">SSS</div>
153
+ <div class="name">Team</div>
154
+ <div class="progress"></div>
155
+ </div>
156
+
157
+ <div style="height:540px"></div>
158
+ </div>
159
+
160
+ <div class="home-indicator"></div>
161
+ </div>
162
+ </body>
163
+ </html>
code/14176/14176_2.html ADDED
@@ -0,0 +1,326 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: #000;
14
+ border-radius: 0;
15
+ box-shadow: none;
16
+ font-family: Arial, Helvetica, sans-serif;
17
+ color: #fff;
18
+ }
19
+ /* Background photo placeholder */
20
+ .bg-photo {
21
+ position: absolute;
22
+ left: 0; top: 0;
23
+ width: 1080px; height: 2400px;
24
+ background: #E0E0E0;
25
+ border: 1px solid #BDBDBD;
26
+ display: flex;
27
+ align-items: center;
28
+ justify-content: center;
29
+ color: #757575;
30
+ font-size: 32px;
31
+ }
32
+ /* Slight darkening overlay to mimic dimmed background */
33
+ .dim {
34
+ position: absolute;
35
+ left: 0; top: 0;
36
+ width: 100%; height: 100%;
37
+ background: rgba(0,0,0,0.35);
38
+ pointer-events: none;
39
+ }
40
+
41
+ /* Status bar */
42
+ .status-bar {
43
+ position: absolute;
44
+ top: 24px;
45
+ left: 32px;
46
+ right: 32px;
47
+ height: 60px;
48
+ display: flex;
49
+ align-items: center;
50
+ justify-content: space-between;
51
+ color: #fff;
52
+ font-size: 36px;
53
+ letter-spacing: 0.5px;
54
+ }
55
+ .status-right {
56
+ display: flex;
57
+ align-items: center;
58
+ gap: 22px;
59
+ }
60
+ .icon {
61
+ display: inline-flex;
62
+ align-items: center;
63
+ justify-content: center;
64
+ }
65
+ .icon svg { display: block; }
66
+
67
+ /* Back circular button */
68
+ .back-btn {
69
+ position: absolute;
70
+ left: 60px;
71
+ top: 290px;
72
+ width: 120px;
73
+ height: 120px;
74
+ background: rgba(0,0,0,0.6);
75
+ border-radius: 60px;
76
+ display: flex;
77
+ align-items: center;
78
+ justify-content: center;
79
+ }
80
+
81
+ /* Bottom share sheet */
82
+ .sheet {
83
+ position: absolute;
84
+ left: 20px;
85
+ right: 20px;
86
+ bottom: 160px;
87
+ height: 1200px;
88
+ background: #1E1E1E;
89
+ border-radius: 36px;
90
+ box-shadow: 0 10px 40px rgba(0,0,0,0.5);
91
+ padding: 30px 40px 40px;
92
+ }
93
+ .drag-handle {
94
+ width: 110px; height: 10px; border-radius: 10px;
95
+ background: #6A6A6A;
96
+ margin: 8px auto 30px;
97
+ }
98
+ .link-text {
99
+ font-size: 34px;
100
+ line-height: 46px;
101
+ color: #F0F0F0;
102
+ opacity: 0.95;
103
+ word-break: break-word;
104
+ }
105
+ .btn-row {
106
+ margin-top: 28px;
107
+ display: flex;
108
+ gap: 26px;
109
+ }
110
+ .pill-btn {
111
+ display: inline-flex;
112
+ align-items: center;
113
+ gap: 18px;
114
+ padding: 18px 26px;
115
+ border-radius: 18px;
116
+ border: 2px solid #B28BFF;
117
+ color: #EAE0FF;
118
+ font-size: 30px;
119
+ background: transparent;
120
+ }
121
+ .contacts {
122
+ margin-top: 58px;
123
+ display: flex;
124
+ gap: 120px;
125
+ justify-content: flex-start;
126
+ }
127
+ .contact {
128
+ width: 200px;
129
+ text-align: center;
130
+ color: #DADADA;
131
+ }
132
+ .avatar {
133
+ position: relative;
134
+ width: 150px; height: 150px;
135
+ margin: 0 auto 18px;
136
+ border-radius: 75px;
137
+ display: flex;
138
+ align-items: center;
139
+ justify-content: center;
140
+ font-size: 80px;
141
+ font-weight: bold;
142
+ color: #222;
143
+ }
144
+ .avatar.orange { background: #F39C3D; }
145
+ .avatar.teal { background: #2EC1C7; }
146
+ .badge {
147
+ position: absolute;
148
+ right: -2px;
149
+ bottom: -2px;
150
+ width: 44px; height: 44px;
151
+ background: #2E7AFB;
152
+ border: 4px solid #1E1E1E;
153
+ border-radius: 22px;
154
+ display: flex;
155
+ align-items: center;
156
+ justify-content: center;
157
+ }
158
+ .badge-inner {
159
+ width: 22px; height: 22px;
160
+ background: #fff;
161
+ border-radius: 11px;
162
+ }
163
+ .contact label {
164
+ display: block;
165
+ font-size: 30px;
166
+ margin-top: 6px;
167
+ }
168
+
169
+ .apps {
170
+ margin-top: 70px;
171
+ display: flex;
172
+ justify-content: space-between;
173
+ padding: 0 20px;
174
+ }
175
+ .app {
176
+ width: 180px;
177
+ text-align: center;
178
+ color: #DADADA;
179
+ font-size: 28px;
180
+ }
181
+ .app-ico {
182
+ width: 120px; height: 120px;
183
+ margin: 0 auto 16px;
184
+ background: #fff;
185
+ border-radius: 60px;
186
+ display: flex;
187
+ align-items: center;
188
+ justify-content: center;
189
+ }
190
+
191
+ /* Simple app icons */
192
+ .gmail svg { width: 76px; height: 60px; }
193
+ .bubble svg, .chat svg { width: 66px; height: 66px; }
194
+ .drive svg { width: 72px; height: 72px; }
195
+
196
+ /* Gesture pill at bottom */
197
+ .gesture-pill {
198
+ position: absolute;
199
+ bottom: 78px;
200
+ left: 50%;
201
+ transform: translateX(-50%);
202
+ width: 360px; height: 14px;
203
+ background: #D0D0D0;
204
+ border-radius: 7px;
205
+ opacity: 0.9;
206
+ }
207
+ </style>
208
+ </head>
209
+ <body>
210
+ <div id="render-target">
211
+ <div class="bg-photo">[IMG: Outdoor barbecue food and salad]</div>
212
+ <div class="dim"></div>
213
+
214
+ <div class="status-bar">
215
+ <div>7:29</div>
216
+ <div class="status-right">
217
+ <!-- simple wifi icon -->
218
+ <span class="icon">
219
+ <svg width="40" height="28" viewBox="0 0 40 28" fill="none">
220
+ <path d="M2 8c9-8 27-8 36 0" stroke="#fff" stroke-width="3" stroke-linecap="round"/>
221
+ <path d="M8 14c6-5 18-5 24 0" stroke="#fff" stroke-width="3" stroke-linecap="round"/>
222
+ <circle cx="20" cy="22" r="3" fill="#fff"/>
223
+ </svg>
224
+ </span>
225
+ <!-- battery icon -->
226
+ <span class="icon">
227
+ <svg width="48" height="28" viewBox="0 0 48 28" fill="none">
228
+ <rect x="2" y="4" width="38" height="20" rx="4" stroke="#fff" stroke-width="3"/>
229
+ <rect x="6" y="8" width="30" height="12" rx="2" fill="#fff"/>
230
+ <rect x="42" y="10" width="4" height="8" rx="1.5" fill="#fff"/>
231
+ </svg>
232
+ </span>
233
+ </div>
234
+ </div>
235
+
236
+ <div class="back-btn">
237
+ <svg width="54" height="54" viewBox="0 0 24 24" fill="none">
238
+ <path d="M15 4L7 12l8 8" stroke="#fff" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"/>
239
+ </svg>
240
+ </div>
241
+
242
+ <div class="sheet">
243
+ <div class="drag-handle"></div>
244
+
245
+ <div class="link-text">
246
+ https://www.kitchenstories.com/en/stories/barbecue-salads-6-great-ideas-for-a-perfect-barbecue
247
+ </div>
248
+
249
+ <div class="btn-row">
250
+ <div class="pill-btn">
251
+ <svg width="34" height="34" viewBox="0 0 24 24" fill="none">
252
+ <rect x="6" y="6" width="12" height="12" rx="2" stroke="#B28BFF" stroke-width="2"/>
253
+ <rect x="3" y="3" width="12" height="12" rx="2" stroke="#B28BFF" stroke-width="2" opacity="0.8"/>
254
+ </svg>
255
+ <span>Copy</span>
256
+ </div>
257
+ <div class="pill-btn">
258
+ <svg width="34" height="34" viewBox="0 0 24 24" fill="none">
259
+ <path d="M4 7h6l-2.5 2.5M20 17h-6l2.5-2.5" stroke="#B28BFF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
260
+ <path d="M8 15l-4 4M16 5l4-4" stroke="#B28BFF" stroke-width="2" stroke-linecap="round"/>
261
+ </svg>
262
+ <span>Nearby</span>
263
+ </div>
264
+ </div>
265
+
266
+ <div class="contacts">
267
+ <div class="contact">
268
+ <div class="avatar orange">
269
+ S
270
+ <div class="badge"><div class="badge-inner"></div></div>
271
+ </div>
272
+ <label>Sonu</label>
273
+ </div>
274
+ <div class="contact">
275
+ <div class="avatar teal">
276
+ X
277
+ <div class="badge"><div class="badge-inner"></div></div>
278
+ </div>
279
+ <label>XYZ</label>
280
+ </div>
281
+ </div>
282
+
283
+ <div class="apps">
284
+ <div class="app">
285
+ <div class="app-ico gmail">
286
+ <svg viewBox="0 0 64 48">
287
+ <path d="M8 10l24 16 24-16" stroke="#EA4335" stroke-width="6" fill="none" stroke-linejoin="round"/>
288
+ <rect x="8" y="12" width="48" height="26" rx="4" stroke="#4285F4" stroke-width="4" fill="none"/>
289
+ </svg>
290
+ </div>
291
+ <div>Gmail</div>
292
+ </div>
293
+ <div class="app">
294
+ <div class="app-ico bubble">
295
+ <svg viewBox="0 0 64 64">
296
+ <path d="M12 18h40v24H28l-10 8v-8H12z" fill="#1E73F3"/>
297
+ </svg>
298
+ </div>
299
+ <div>Messages</div>
300
+ </div>
301
+ <div class="app">
302
+ <div class="app-ico drive">
303
+ <svg viewBox="0 0 64 64">
304
+ <polygon points="32,10 54,50 10,50" fill="#34A853"/>
305
+ <polygon points="22,28 32,10 42,28" fill="#FBBC05"/>
306
+ <polygon points="54,50 42,28 22,28 10,50" fill="#4285F4" opacity="0.8"/>
307
+ </svg>
308
+ </div>
309
+ <div>Drive</div>
310
+ </div>
311
+ <div class="app">
312
+ <div class="app-ico chat">
313
+ <svg viewBox="0 0 64 64">
314
+ <rect x="12" y="16" width="40" height="26" rx="8" fill="#22C45E"/>
315
+ <rect x="26" y="44" width="12" height="8" rx="4" fill="#22C45E"/>
316
+ </svg>
317
+ </div>
318
+ <div>Chat</div>
319
+ </div>
320
+ </div>
321
+ </div>
322
+
323
+ <div class="gesture-pill"></div>
324
+ </div>
325
+ </body>
326
+ </html>
code/14176/14176_3.html ADDED
@@ -0,0 +1,293 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Compose Email - Dark UI</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: Roboto, Arial, sans-serif; }
9
+ #render-target {
10
+ position: relative;
11
+ width: 1080px;
12
+ height: 2400px;
13
+ overflow: hidden;
14
+ background: #121214;
15
+ color: #EDEDED;
16
+ }
17
+
18
+ /* Status bar */
19
+ .status-bar {
20
+ position: absolute;
21
+ top: 0;
22
+ left: 0;
23
+ width: 1080px;
24
+ height: 120px;
25
+ padding: 0 40px;
26
+ box-sizing: border-box;
27
+ display: flex;
28
+ align-items: center;
29
+ justify-content: space-between;
30
+ color: #FFFFFF;
31
+ font-size: 34px;
32
+ letter-spacing: 0.5px;
33
+ }
34
+ .status-right {
35
+ display: flex;
36
+ gap: 26px;
37
+ align-items: center;
38
+ }
39
+ .status-icon svg { width: 40px; height: 40px; fill: none; stroke: #FFF; stroke-width: 4; }
40
+
41
+ /* App bar */
42
+ .app-bar {
43
+ position: absolute;
44
+ top: 120px;
45
+ left: 0;
46
+ width: 1080px;
47
+ height: 120px;
48
+ padding: 0 24px;
49
+ box-sizing: border-box;
50
+ display: flex;
51
+ align-items: center;
52
+ justify-content: space-between;
53
+ color: #FFFFFF;
54
+ }
55
+ .app-left, .app-right { display: flex; align-items: center; gap: 28px; }
56
+ .icon-btn svg { width: 56px; height: 56px; stroke: #EDEDED; fill: none; stroke-width: 3.5; }
57
+ .icon-btn.small svg { width: 44px; height: 44px; }
58
+ .back svg { stroke-width: 5; }
59
+
60
+ /* Content area */
61
+ .content {
62
+ position: absolute;
63
+ top: 240px;
64
+ left: 0;
65
+ width: 1080px;
66
+ height: 1240px;
67
+ box-sizing: border-box;
68
+ padding: 0 48px;
69
+ color: #EDEDED;
70
+ }
71
+ .field {
72
+ padding: 32px 0 24px 0;
73
+ border-bottom: 1px solid #2A2A2E;
74
+ }
75
+ .field:last-of-type { border-bottom: none; }
76
+ .label {
77
+ font-size: 30px;
78
+ color: #9FA0A6;
79
+ margin-bottom: 18px;
80
+ }
81
+ .value {
82
+ font-size: 36px;
83
+ display: flex;
84
+ align-items: center;
85
+ justify-content: space-between;
86
+ }
87
+ .value .dropdown svg { width: 40px; height: 40px; fill: none; stroke: #9FA0A6; stroke-width: 4; }
88
+ .subject-placeholder {
89
+ font-size: 36px;
90
+ color: #8A8A92;
91
+ }
92
+ .message {
93
+ margin-top: 52px;
94
+ font-size: 36px;
95
+ line-height: 1.5;
96
+ color: #EDEDED;
97
+ }
98
+
99
+ /* Keyboard */
100
+ .keyboard {
101
+ position: absolute;
102
+ left: 0;
103
+ bottom: 0;
104
+ width: 1080px;
105
+ height: 900px;
106
+ background: #1A1A1E;
107
+ box-sizing: border-box;
108
+ padding: 28px 28px 80px 28px;
109
+ color: #FFF;
110
+ border-top: 1px solid #2A2A30;
111
+ }
112
+ .kb-top {
113
+ display: flex;
114
+ align-items: center;
115
+ gap: 24px;
116
+ color: #CFCFD6;
117
+ margin-bottom: 16px;
118
+ font-size: 28px;
119
+ }
120
+ .kb-chip {
121
+ background: #2B2B30;
122
+ border-radius: 18px;
123
+ padding: 10px 18px;
124
+ }
125
+ .kb-row {
126
+ display: flex;
127
+ justify-content: center;
128
+ gap: 18px;
129
+ margin-top: 22px;
130
+ }
131
+ .key {
132
+ background: #2B2B30;
133
+ width: 88px;
134
+ height: 100px;
135
+ border-radius: 22px;
136
+ display: flex;
137
+ align-items: center;
138
+ justify-content: center;
139
+ font-size: 40px;
140
+ color: #EDEDED;
141
+ box-shadow: inset 0 0 0 1px #3A3A40;
142
+ }
143
+ .key.wide { width: 160px; }
144
+ .key.space { width: 520px; }
145
+ .key.accent { background: #D5C4FF; color: #1A1A1E; }
146
+ .key.icon { font-size: 34px; }
147
+ .gesture-bar {
148
+ position: absolute;
149
+ bottom: 24px;
150
+ left: 50%;
151
+ transform: translateX(-50%);
152
+ width: 300px;
153
+ height: 8px;
154
+ background: #E6E6E6;
155
+ border-radius: 8px;
156
+ opacity: 0.85;
157
+ }
158
+ </style>
159
+ </head>
160
+ <body>
161
+ <div id="render-target">
162
+ <!-- Status Bar -->
163
+ <div class="status-bar">
164
+ <div class="status-left">
165
+ 7:31
166
+ <span class="status-icon" style="margin-left:16px;">
167
+ <svg viewBox="0 0 24 24">
168
+ <polygon points="3,20 21,12 3,4" fill="#FFF"></polygon>
169
+ </svg>
170
+ </span>
171
+ </div>
172
+ <div class="status-right">
173
+ <span class="status-icon">
174
+ <!-- Wi-Fi -->
175
+ <svg viewBox="0 0 24 24">
176
+ <path d="M2 8c5-4 15-4 20 0"></path>
177
+ <path d="M5 12c3-3 11-3 14 0"></path>
178
+ <path d="M8 16c2-2 6-2 8 0"></path>
179
+ <circle cx="12" cy="19" r="1.8" fill="#FFF" stroke="none"></circle>
180
+ </svg>
181
+ </span>
182
+ <span class="status-icon">
183
+ <!-- Battery -->
184
+ <svg viewBox="0 0 28 24">
185
+ <rect x="2" y="6" width="20" height="12" rx="2" ry="2" stroke="#FFF"></rect>
186
+ <rect x="4" y="8" width="13" height="8" fill="#FFF" stroke="none"></rect>
187
+ <rect x="22.5" y="9" width="3" height="6" rx="1" ry="1" stroke="#FFF"></rect>
188
+ </svg>
189
+ </span>
190
+ </div>
191
+ </div>
192
+
193
+ <!-- App Bar -->
194
+ <div class="app-bar">
195
+ <div class="app-left">
196
+ <span class="icon-btn back">
197
+ <svg viewBox="0 0 24 24">
198
+ <path d="M15 5L6 12l9 7"></path>
199
+ </svg>
200
+ </span>
201
+ </div>
202
+ <div class="app-right">
203
+ <span class="icon-btn">
204
+ <!-- Attachment -->
205
+ <svg viewBox="0 0 24 24">
206
+ <path d="M7 13l7-7a4 4 0 115 5l-8 8a6 6 0 11-8-8l8-8"></path>
207
+ </svg>
208
+ </span>
209
+ <span class="icon-btn">
210
+ <!-- Send -->
211
+ <svg viewBox="0 0 24 24">
212
+ <path d="M3 20l18-8L3 4l4 8-4 8z"></path>
213
+ </svg>
214
+ </span>
215
+ <span class="icon-btn small">
216
+ <!-- More (kebab) -->
217
+ <svg viewBox="0 0 24 24">
218
+ <circle cx="12" cy="5" r="2" fill="#EDEDED"></circle>
219
+ <circle cx="12" cy="12" r="2" fill="#EDEDED"></circle>
220
+ <circle cx="12" cy="19" r="2" fill="#EDEDED"></circle>
221
+ </svg>
222
+ </span>
223
+ </div>
224
+ </div>
225
+
226
+ <!-- Content -->
227
+ <div class="content">
228
+ <div class="field">
229
+ <div class="label">From</div>
230
+ <div class="value">
231
+ <span>dbwscratch.test.id4@gmail.com</span>
232
+ <span class="dropdown">
233
+ <svg viewBox="0 0 24 24"><path d="M6 9l6 6 6-6"></path></svg>
234
+ </span>
235
+ </div>
236
+ </div>
237
+ <div class="field">
238
+ <div class="label">To</div>
239
+ <div class="value">
240
+ <span style="color:#B7B7BD;"> </span>
241
+ <span class="dropdown">
242
+ <svg viewBox="0 0 24 24"><path d="M6 9l6 6 6-6"></path></svg>
243
+ </span>
244
+ </div>
245
+ </div>
246
+ <div class="field">
247
+ <div class="label">Subject</div>
248
+ <div class="subject-placeholder">Subject</div>
249
+ </div>
250
+
251
+ <div class="message">
252
+ https://www.kitchenstories.com/en/stories/barbecue-salads-6-great-ideas-for-a-perfect-barbecue
253
+ </div>
254
+ </div>
255
+
256
+ <!-- Keyboard -->
257
+ <div class="keyboard">
258
+ <div class="kb-top">
259
+ <span class="kb-chip">◻◻</span>
260
+ <span class="kb-chip">☺</span>
261
+ <span class="kb-chip">GIF</span>
262
+ <span class="kb-chip">⚙</span>
263
+ <span class="kb-chip">G✕</span>
264
+ <span class="kb-chip">🎨</span>
265
+ <span class="kb-chip">🔇</span>
266
+ </div>
267
+
268
+ <div class="kb-row">
269
+ <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>
270
+ <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>
271
+ </div>
272
+ <div class="kb-row">
273
+ <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>
274
+ <div class="key">h</div><div class="key">j</div><div class="key">k</div><div class="key">l</div>
275
+ </div>
276
+ <div class="kb-row">
277
+ <div class="key wide icon">⇧</div>
278
+ <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>
279
+ <div class="key wide icon">⌫</div>
280
+ </div>
281
+ <div class="kb-row">
282
+ <div class="key wide accent">?123</div>
283
+ <div class="key wide">@</div>
284
+ <div class="key wide">☺</div>
285
+ <div class="key space"></div>
286
+ <div class="key wide">.</div>
287
+ <div class="key wide accent">→</div>
288
+ </div>
289
+ <div class="gesture-bar"></div>
290
+ </div>
291
+ </div>
292
+ </body>
293
+ </html>
code/14176/14176_4.html ADDED
@@ -0,0 +1,222 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1">
6
+ <style>
7
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
8
+ #render-target {
9
+ width: 1080px; height: 2400px;
10
+ position: relative; overflow: hidden;
11
+ background: #1B191F; color: #EEE;
12
+ }
13
+ .status-bar {
14
+ height: 100px; padding: 0 36px;
15
+ display: flex; align-items: center; justify-content: space-between;
16
+ font-size: 42px; color: #DADADA;
17
+ }
18
+ .status-icons { display: flex; align-items: center; gap: 28px; }
19
+ .app-bar {
20
+ height: 120px; padding: 0 24px;
21
+ display: flex; align-items: center; justify-content: space-between;
22
+ border-bottom: 1px solid #2A2830;
23
+ }
24
+ .app-left { display: flex; align-items: center; gap: 24px; }
25
+ .icon-btn { width: 72px; height: 72px; display: flex; align-items: center; justify-content: center; }
26
+ .row {
27
+ display: flex; align-items: center;
28
+ padding: 24px 32px;
29
+ height: 120px;
30
+ border-bottom: 1px solid #2A2830;
31
+ font-size: 40px;
32
+ }
33
+ .label { color: #B7B7B7; width: 140px; }
34
+ .value { flex: 1; color: #F0F0F0; }
35
+ .caret { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; }
36
+ .contact {
37
+ display: flex; align-items: center; padding: 24px 32px; gap: 28px;
38
+ height: 160px; border-bottom: 1px solid #2A2830;
39
+ }
40
+ .avatar {
41
+ width: 96px; height: 96px; border-radius: 50%;
42
+ background: #0BAF95; display: flex; align-items: center; justify-content: center;
43
+ font-weight: bold; font-size: 48px; color: #042B26;
44
+ }
45
+ .contact-info { flex: 1; }
46
+ .contact-name { font-size: 46px; margin-bottom: 6px; }
47
+ .contact-mail { font-size: 36px; color: #B7B7B7; }
48
+ .tag { color: #CFCFCF; font-size: 36px; }
49
+ .body-area {
50
+ height: 900px; padding: 40px 32px; color: #CFCFCF; font-size: 38px;
51
+ }
52
+ /* Keyboard */
53
+ .keyboard {
54
+ position: absolute; left: 0; bottom: 40px;
55
+ width: 100%; background: #151419; border-top: 1px solid #2A2830;
56
+ padding: 16px 24px 24px;
57
+ }
58
+ .kb-toolbar {
59
+ height: 96px; display: flex; align-items: center; gap: 28px; padding: 0 8px; color: #DADADA;
60
+ }
61
+ .kb-chip {
62
+ height: 72px; padding: 0 28px; border-radius: 36px;
63
+ background: #2B2931; display: flex; align-items: center; justify-content: center;
64
+ font-size: 34px;
65
+ }
66
+ .kb-row { display: flex; justify-content: space-between; gap: 12px; margin-top: 18px; }
67
+ .key {
68
+ background: #2B2931; color: #EEE; height: 130px; flex: 1;
69
+ border-radius: 18px; display: flex; align-items: center; justify-content: center;
70
+ font-size: 48px;
71
+ }
72
+ .key.small { flex: .8; }
73
+ .key.wide { flex: 1.3; }
74
+ .key.extra-wide { flex: 2.6; }
75
+ .gesture-bar {
76
+ position: absolute; bottom: 8px; left: 50%;
77
+ width: 280px; height: 10px; background: #EDEDED; border-radius: 6px; transform: translateX(-50%);
78
+ opacity: .9;
79
+ }
80
+ /* SVG helpers */
81
+ svg { fill: none; stroke: #EDEDED; stroke-width: 6; }
82
+ .thin svg { stroke-width: 4; }
83
+ </style>
84
+ </head>
85
+ <body>
86
+ <div id="render-target">
87
+
88
+ <!-- Status bar -->
89
+ <div class="status-bar">
90
+ <div>7:32</div>
91
+ <div class="status-icons">
92
+ <!-- Signal -->
93
+ <svg width="40" height="40" viewBox="0 0 24 24">
94
+ <path d="M3 21h2M3 17h6M3 13h10M3 9h14M3 5h18"/>
95
+ </svg>
96
+ <!-- Wi-Fi -->
97
+ <svg width="40" height="40" viewBox="0 0 24 24">
98
+ <path d="M3 8c4.5-4 13.5-4 18 0M6 11c3-2.5 9-2.5 12 0M9 14c1.5-1 4.5-1 6 0"/>
99
+ <circle cx="12" cy="17" r="1.5" fill="#EDEDED" stroke="none"/>
100
+ </svg>
101
+ <!-- Battery -->
102
+ <svg width="52" height="40" viewBox="0 0 28 16">
103
+ <rect x="1" y="3" width="22" height="10" rx="2" />
104
+ <rect x="24" y="6" width="3" height="4" rx="1" />
105
+ <rect x="3" y="5" width="16" height="6" fill="#EDEDED" stroke="none"/>
106
+ </svg>
107
+ </div>
108
+ </div>
109
+
110
+ <!-- App bar -->
111
+ <div class="app-bar">
112
+ <div class="app-left">
113
+ <!-- Back Arrow -->
114
+ <div class="icon-btn">
115
+ <svg width="56" height="56" viewBox="0 0 24 24">
116
+ <path d="M15 6l-6 6 6 6"/>
117
+ </svg>
118
+ </div>
119
+ <div style="font-size:44px;color:#DADADA;">Compose</div>
120
+ </div>
121
+ <div style="display:flex;align-items:center;gap:18px;">
122
+ <!-- Paperclip -->
123
+ <div class="icon-btn">
124
+ <svg width="56" height="56" viewBox="0 0 24 24">
125
+ <path d="M7 12l6-6a4 4 0 1 1 6 6l-8 8a6 6 0 0 1-9-9l8-8" />
126
+ </svg>
127
+ </div>
128
+ <!-- Send -->
129
+ <div class="icon-btn">
130
+ <svg width="56" height="56" viewBox="0 0 24 24">
131
+ <path d="M3 12l18-8-6 8 6 8-18-8z" />
132
+ </svg>
133
+ </div>
134
+ <!-- More (vertical) -->
135
+ <div class="icon-btn thin">
136
+ <svg width="56" height="56" viewBox="0 0 24 24">
137
+ <circle cx="12" cy="5" r="2" fill="#EDEDED" stroke="none"/>
138
+ <circle cx="12" cy="12" r="2" fill="#EDEDED" stroke="none"/>
139
+ <circle cx="12" cy="19" r="2" fill="#EDEDED" stroke="none"/>
140
+ </svg>
141
+ </div>
142
+ </div>
143
+ </div>
144
+
145
+ <!-- From row -->
146
+ <div class="row">
147
+ <div class="label">From</div>
148
+ <div class="value">dbwscratch.test.id4@gmail.com</div>
149
+ <div class="caret">
150
+ <svg width="40" height="40" viewBox="0 0 24 24">
151
+ <path d="M6 9l6 6 6-6"/>
152
+ </svg>
153
+ </div>
154
+ </div>
155
+
156
+ <!-- To row -->
157
+ <div class="row">
158
+ <div class="label">To</div>
159
+ <div class="value">dbwscratch.test.id4@gmail.com</div>
160
+ <div class="caret">
161
+ <svg width="40" height="40" viewBox="0 0 24 24">
162
+ <path d="M6 9l6 6 6-6"/>
163
+ </svg>
164
+ </div>
165
+ </div>
166
+
167
+ <!-- Contact Chip -->
168
+ <div class="contact">
169
+ <div class="avatar">C</div>
170
+ <div class="contact-info">
171
+ <div class="contact-name">Cerebra Research</div>
172
+ <div class="contact-mail">dbwscratch.test.id4@gmail.com</div>
173
+ </div>
174
+ <div class="tag">You</div>
175
+ </div>
176
+
177
+ <!-- Body area (empty message) -->
178
+ <div class="body-area">
179
+ <!-- Placeholder for the email body -->
180
+ </div>
181
+
182
+ <!-- Keyboard -->
183
+ <div class="keyboard">
184
+ <div class="kb-toolbar">
185
+ <div class="kb-chip">⋮⋮</div>
186
+ <div class="kb-chip">🙂</div>
187
+ <div class="kb-chip">GIF</div>
188
+ <div class="kb-chip">⚙️</div>
189
+ <div class="kb-chip">G⇄</div>
190
+ <div class="kb-chip">🎨</div>
191
+ <div class="kb-chip">🔇</div>
192
+ </div>
193
+
194
+ <!-- Row 1 -->
195
+ <div class="kb-row">
196
+ <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>
197
+ </div>
198
+ <!-- Row 2 -->
199
+ <div class="kb-row">
200
+ <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>
201
+ </div>
202
+ <!-- Row 3 -->
203
+ <div class="kb-row">
204
+ <div class="key small">⇧</div>
205
+ <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>
206
+ <div class="key small">⌫</div>
207
+ </div>
208
+ <!-- Row 4 -->
209
+ <div class="kb-row">
210
+ <div class="key wide">?123</div>
211
+ <div class="key small">@</div>
212
+ <div class="key small">😊</div>
213
+ <div class="key extra-wide"></div>
214
+ <div class="key small">.</div>
215
+ <div class="key wide">→</div>
216
+ </div>
217
+ </div>
218
+
219
+ <div class="gesture-bar"></div>
220
+ </div>
221
+ </body>
222
+ </html>
code/14176/14176_5.html ADDED
@@ -0,0 +1,259 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Compose Email - Dark UI</title>
7
+ <style>
8
+ body { margin:0; padding:0; background:transparent; }
9
+ #render-target {
10
+ width:1080px; height:2400px;
11
+ position:relative; overflow:hidden;
12
+ background:#121212; color:#EDEDED;
13
+ font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
14
+ }
15
+ .status-bar {
16
+ position:absolute; top:0; left:0; right:0; height:96px;
17
+ padding:0 36px; box-sizing:border-box;
18
+ display:flex; align-items:center;
19
+ font-size:44px; color:#F5F5F5;
20
+ }
21
+ .status-bar .right { margin-left:auto; display:flex; align-items:center; gap:28px; }
22
+ .app-bar {
23
+ position:absolute; top:96px; left:0; right:0; height:120px;
24
+ display:flex; align-items:center;
25
+ padding:0 36px; box-sizing:border-box;
26
+ border-bottom:1px solid #2A2A2A;
27
+ }
28
+ .icon-btn { width:72px; height:72px; display:flex; align-items:center; justify-content:center; }
29
+ .icon-back svg { width:44px; height:44px; }
30
+ .app-actions { margin-left:auto; display:flex; align-items:center; gap:28px; }
31
+ .field {
32
+ position:absolute; left:0; right:0;
33
+ padding:28px 36px; box-sizing:border-box;
34
+ display:flex; align-items:center; gap:22px;
35
+ border-bottom:1px solid #262626;
36
+ }
37
+ .field .label { color:#B0B0B0; font-size:36px; min-width:120px; }
38
+ .field .value { font-size:40px; color:#EDEDED; }
39
+ .dropdown { margin-left:auto; width:44px; height:44px; display:flex; align-items:center; justify-content:center; }
40
+ .from-field { top:216px; }
41
+ .to-field { top:356px; }
42
+ .subject-field { top:516px; font-size:40px; color:#B0B0B0; }
43
+ .chip {
44
+ display:flex; align-items:center; gap:18px;
45
+ padding:10px 20px; border:1px solid #4A4A4A; border-radius:40px;
46
+ height:70px;
47
+ }
48
+ .chip .avatar {
49
+ width:56px; height:56px; border-radius:50%;
50
+ background:#1EB5A5; color:#083A36; display:flex;
51
+ align-items:center; justify-content:center; font-weight:700; font-size:36px;
52
+ }
53
+ .chip .name { font-size:38px; color:#EDEDED; }
54
+ .caret {
55
+ position:absolute; left:160px; top:448px; width:4px; height:60px;
56
+ background:#B69AF7; border-radius:2px;
57
+ }
58
+ .message {
59
+ position:absolute; left:36px; right:36px; top:620px;
60
+ font-size:40px; line-height:1.45; color:#EDEDED;
61
+ }
62
+
63
+ /* Keyboard */
64
+ .keyboard {
65
+ position:absolute; left:0; right:0; bottom:0; height:900px;
66
+ background:#1A191D; border-top:1px solid #2A2A2A;
67
+ padding:24px 24px 80px; box-sizing:border-box;
68
+ }
69
+ .shortcut-row {
70
+ display:flex; gap:28px; align-items:center; color:#CFCFCF;
71
+ margin-bottom:18px;
72
+ }
73
+ .shortcut {
74
+ width:72px; height:72px; border-radius:18px;
75
+ background:#2A2A2E; display:flex; align-items:center; justify-content:center;
76
+ font-size:30px;
77
+ border:1px solid #333;
78
+ }
79
+ .shortcut.text { width:auto; padding:0 20px; font-size:28px; }
80
+ .keys-row {
81
+ display:flex; justify-content:center; gap:16px;
82
+ margin-top:18px;
83
+ }
84
+ .key {
85
+ flex:0 0 92px; height:120px; border-radius:18px;
86
+ background:#2A2A2E; color:#E6E6E6; font-size:42px; display:flex;
87
+ align-items:center; justify-content:center; border:1px solid #333;
88
+ }
89
+ .key.wide { flex:0 0 140px; }
90
+ .space { flex:1 1 520px; height:120px; }
91
+ .key.purple { background:#C8B5FF; color:#1A1A1A; border-color:#BCA8FF; }
92
+ .home-indicator {
93
+ position:absolute; bottom:18px; left:50%; transform:translateX(-50%);
94
+ width:340px; height:10px; border-radius:8px; background:#EDEDED; opacity:0.9;
95
+ }
96
+
97
+ /* Small helpers */
98
+ .muted { color:#B0B0B0; }
99
+ .thin-divider { position:absolute; left:0; right:0; height:1px; background:#272727; }
100
+ svg { fill:none; stroke:#EDEDED; stroke-width:3; }
101
+ .accent svg { stroke:#C8B5FF; fill:#C8B5FF; }
102
+ </style>
103
+ </head>
104
+ <body>
105
+ <div id="render-target">
106
+
107
+ <!-- Status bar -->
108
+ <div class="status-bar">
109
+ <div>7:33</div>
110
+ <div class="right">
111
+ <!-- WiFi -->
112
+ <svg width="44" height="44" viewBox="0 0 24 24">
113
+ <path d="M2 8c4-3 16-3 20 0"></path>
114
+ <path d="M5 12c3-2 11-2 14 0"></path>
115
+ <path d="M8 16c2-1 6-1 8 0"></path>
116
+ <circle cx="12" cy="19" r="1.6" fill="#EDEDED" stroke="none"></circle>
117
+ </svg>
118
+ <!-- Battery -->
119
+ <svg width="56" height="44" viewBox="0 0 28 18">
120
+ <rect x="1" y="3" width="22" height="12" rx="2"></rect>
121
+ <rect x="23.5" y="7" width="3" height="4" rx="1" fill="#EDEDED" stroke="none"></rect>
122
+ <rect x="3" y="5" width="16" height="8" fill="#EDEDED" stroke="none"></rect>
123
+ </svg>
124
+ </div>
125
+ </div>
126
+
127
+ <!-- App bar -->
128
+ <div class="app-bar">
129
+ <div class="icon-btn icon-back">
130
+ <svg viewBox="0 0 24 24">
131
+ <path d="M15 4L7 12l8 8"></path>
132
+ </svg>
133
+ </div>
134
+ <div style="flex:1"></div>
135
+ <div class="app-actions">
136
+ <!-- Attachment -->
137
+ <div class="icon-btn">
138
+ <svg viewBox="0 0 24 24">
139
+ <path d="M8 13l6-6a3 3 0 0 1 4 4l-7 7a5 5 0 0 1-7-7l8-8"></path>
140
+ </svg>
141
+ </div>
142
+ <!-- Send -->
143
+ <div class="icon-btn">
144
+ <svg class="accent" viewBox="0 0 24 24">
145
+ <path d="M3 11l18-8-8 18-2-7-8-3z"></path>
146
+ </svg>
147
+ </div>
148
+ <!-- More menu -->
149
+ <div class="icon-btn">
150
+ <svg viewBox="0 0 24 24">
151
+ <circle cx="12" cy="5" r="2" fill="#EDEDED" stroke="none"></circle>
152
+ <circle cx="12" cy="12" r="2" fill="#EDEDED" stroke="none"></circle>
153
+ <circle cx="12" cy="19" r="2" fill="#EDEDED" stroke="none"></circle>
154
+ </svg>
155
+ </div>
156
+ </div>
157
+ </div>
158
+
159
+ <!-- From field -->
160
+ <div class="from-field field">
161
+ <div class="label">From</div>
162
+ <div class="value">dbwscratch.test.id4@gmail.com</div>
163
+ <div class="dropdown">
164
+ <svg viewBox="0 0 24 24"><path d="M6 9l6 6 6-6"></path></svg>
165
+ </div>
166
+ </div>
167
+
168
+ <!-- To field -->
169
+ <div class="to-field field">
170
+ <div class="label">To</div>
171
+ <div class="chip">
172
+ <div class="avatar">C</div>
173
+ <div class="name">Cerebra Research</div>
174
+ </div>
175
+ <div class="dropdown">
176
+ <svg viewBox="0 0 24 24"><path d="M6 9l6 6 6-6"></path></svg>
177
+ </div>
178
+ </div>
179
+
180
+ <!-- Purple caret indicating typing position -->
181
+ <div class="caret"></div>
182
+
183
+ <!-- Subject -->
184
+ <div class="subject-field field">
185
+ Subject
186
+ </div>
187
+
188
+ <!-- Message body -->
189
+ <div class="message">
190
+ https://www.kitchenstories.com/en/stories/barbecue-salads-6-great-ideas-for-a-perfect-barbecue
191
+ </div>
192
+
193
+ <!-- Keyboard -->
194
+ <div class="keyboard">
195
+ <div class="shortcut-row">
196
+ <!-- Emoji -->
197
+ <div class="shortcut">
198
+ <svg viewBox="0 0 24 24">
199
+ <circle cx="12" cy="12" r="9"></circle>
200
+ <circle cx="9" cy="10" r="1.4" fill="#EDEDED" stroke="none"></circle>
201
+ <circle cx="15" cy="10" r="1.4" fill="#EDEDED" stroke="none"></circle>
202
+ <path d="M8 15c2 2 6 2 8 0" />
203
+ </svg>
204
+ </div>
205
+ <div class="shortcut text">GIF</div>
206
+ <div class="shortcut">⚙️</div>
207
+ <div class="shortcut">
208
+ <svg viewBox="0 0 24 24">
209
+ <path d="M4 4h16v6H4zM4 14h10v6H4z"></path>
210
+ </svg>
211
+ </div>
212
+ <div class="shortcut">
213
+ <svg viewBox="0 0 24 24">
214
+ <rect x="4" y="4" width="16" height="16" rx="3"></rect>
215
+ <circle cx="9" cy="9" r="3" fill="#EDEDED" stroke="none"></circle>
216
+ </svg>
217
+ </div>
218
+ <div class="shortcut">
219
+ <svg viewBox="0 0 24 24">
220
+ <path d="M5 5l14 8-14 8v-4l10-4-10-4z"></path>
221
+ <path d="M3 3v18"></path>
222
+ </svg>
223
+ </div>
224
+ </div>
225
+
226
+ <div class="keys-row">
227
+ <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>
228
+ </div>
229
+ <div class="keys-row">
230
+ <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>
231
+ </div>
232
+ <div class="keys-row">
233
+ <div class="key wide">
234
+ <svg viewBox="0 0 24 24"><path d="M6 14l6-6 6 6"></path></svg>
235
+ </div>
236
+ <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>
237
+ <div class="key wide">
238
+ <svg viewBox="0 0 24 24"><path d="M5 12h12"></path><path d="M9 8l-4 4 4 4"></path></svg>
239
+ </div>
240
+ </div>
241
+ <div class="keys-row">
242
+ <div class="key wide purple">?123</div>
243
+ <div class="key">@</div>
244
+ <div class="key">😊</div>
245
+ <div class="key space"></div>
246
+ <div class="key">.</div>
247
+ <div class="key wide purple">
248
+ <svg viewBox="0 0 24 24" class="accent">
249
+ <path d="M3 11l18-8-8 18-2-7-8-3z"></path>
250
+ </svg>
251
+ </div>
252
+ </div>
253
+ </div>
254
+
255
+ <!-- Home indicator -->
256
+ <div class="home-indicator"></div>
257
+ </div>
258
+ </body>
259
+ </html>
code/14176/14176_6.html ADDED
@@ -0,0 +1,204 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>Barbecue Salads Article</title>
6
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: "Inter", Arial, sans-serif; }
9
+ #render-target {
10
+ width: 1080px; height: 2400px;
11
+ position: relative; overflow: hidden;
12
+ background: #ffffff;
13
+ }
14
+
15
+ /* Status bar */
16
+ .statusbar {
17
+ position: absolute; top: 24px; left: 36px; right: 36px;
18
+ display: flex; justify-content: space-between; align-items: center;
19
+ color: #ffffff;
20
+ z-index: 5;
21
+ mix-blend-mode: normal;
22
+ }
23
+ .status-left { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 36px; }
24
+ .status-right { display: flex; align-items: center; gap: 22px; }
25
+ .status-icon svg { width: 44px; height: 44px; }
26
+
27
+ /* Hero image placeholder */
28
+ .hero {
29
+ position: absolute; top: 0; left: 0; width: 100%; height: 1020px;
30
+ background: #E0E0E0; border-bottom: 1px solid #BDBDBD;
31
+ display: flex; align-items: flex-end; justify-content: center;
32
+ }
33
+ .hero .img-label {
34
+ position: absolute; bottom: 28px; left: 28px;
35
+ background: rgba(0,0,0,0.55); color: #f3f3f3;
36
+ padding: 10px 16px; border-radius: 8px; font-size: 26px;
37
+ border: 1px solid rgba(255,255,255,0.25);
38
+ }
39
+ /* Back button on hero */
40
+ .back-btn {
41
+ position: absolute; left: 40px; top: 280px;
42
+ width: 120px; height: 120px; border-radius: 60px;
43
+ background: #000000; display: flex; align-items: center; justify-content: center;
44
+ box-shadow: 0 6px 16px rgba(0,0,0,0.25);
45
+ }
46
+ .back-btn svg { width: 56px; height: 56px; }
47
+ .back-btn svg path { stroke: #ffffff; stroke-width: 12; fill: none; stroke-linecap: round; stroke-linejoin: round; }
48
+
49
+ /* Article section */
50
+ .article {
51
+ position: absolute; top: 1020px; left: 0; width: 100%; height: 1120px;
52
+ background: #000000; color: #ffffff;
53
+ padding: 80px 72px 40px 72px;
54
+ }
55
+ .title {
56
+ font-family: Georgia, "Times New Roman", serif;
57
+ font-size: 64px; line-height: 1.15; text-align: center;
58
+ margin: 0 0 48px 0; font-weight: 600;
59
+ }
60
+ .subtitle {
61
+ font-size: 34px; line-height: 1.6; color: #D9D9D9;
62
+ margin: 0 0 80px 0; text-align: left;
63
+ }
64
+
65
+ .actions {
66
+ display: flex; justify-content: space-between; align-items: center;
67
+ padding: 0 32px; margin-top: 30px;
68
+ }
69
+ .action {
70
+ display: flex; align-items: center; gap: 22px; color: #ffffff;
71
+ font-size: 36px;
72
+ }
73
+ .action svg { width: 60px; height: 60px; }
74
+ .action svg path, .action svg circle, .action svg line {
75
+ stroke: #ffffff; stroke-width: 4; fill: none; stroke-linecap: round; stroke-linejoin: round;
76
+ }
77
+
78
+ /* Footer strip / team row */
79
+ .footer {
80
+ position: absolute; left: 0; bottom: 0; width: 100%; height: 260px;
81
+ background: #0A0A0A; border-top: 1px solid #2A2A2A;
82
+ padding: 30px 48px 24px 48px; color: #ffffff;
83
+ }
84
+ .team-row {
85
+ display: flex; align-items: center; gap: 28px;
86
+ margin-bottom: 40px;
87
+ }
88
+ .team-avatar {
89
+ width: 120px; height: 120px; border-radius: 60px;
90
+ background: #FFD54F; border: 1px solid #E0B93B;
91
+ display: flex; align-items: center; justify-content: center;
92
+ color: #2d2d2d; font-weight: 700; font-size: 44px;
93
+ }
94
+ .team-name {
95
+ font-size: 40px; font-weight: 600;
96
+ flex: 1;
97
+ }
98
+ .progress {
99
+ width: 380px; height: 10px; background: #2A2A2A; border-radius: 8px;
100
+ position: relative; overflow: hidden;
101
+ }
102
+ .progress::after {
103
+ content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 65%;
104
+ background: #ffffff; border-radius: 8px;
105
+ }
106
+
107
+ /* Home indicator */
108
+ .home-indicator {
109
+ position: absolute; left: 50%; transform: translateX(-50%);
110
+ bottom: 28px; width: 360px; height: 12px; background: #ffffff; border-radius: 8px; opacity: 0.95;
111
+ }
112
+ </style>
113
+ </head>
114
+ <body>
115
+ <div id="render-target">
116
+
117
+ <!-- Hero image area -->
118
+ <div class="hero">
119
+ <div class="img-label">[IMG: Outdoor barbecue table with salads, grilled meat, and flowers]</div>
120
+ </div>
121
+
122
+ <!-- Status bar -->
123
+ <div class="statusbar">
124
+ <div class="status-left">
125
+ <span>7:34</span>
126
+ <span class="status-icon">
127
+ <!-- small triangle/play-like icon -->
128
+ <svg viewBox="0 0 24 24"><path d="M6 4l12 8-12 8z" fill="#ffffff" stroke="none"/></svg>
129
+ </span>
130
+ </div>
131
+ <div class="status-right">
132
+ <span class="status-icon">
133
+ <!-- Wi-Fi -->
134
+ <svg viewBox="0 0 24 24">
135
+ <path d="M2 8c5-4 15-4 20 0"/>
136
+ <path d="M5 12c3-3 11-3 14 0"/>
137
+ <path d="M8 16c2-2 6-2 8 0"/>
138
+ <circle cx="12" cy="19" r="1.8" fill="#ffffff" stroke="none"/>
139
+ </svg>
140
+ </span>
141
+ <span class="status-icon">
142
+ <!-- Battery -->
143
+ <svg viewBox="0 0 28 24">
144
+ <rect x="2" y="5" width="20" height="14" rx="2" ry="2" stroke="#ffffff" fill="none"/>
145
+ <rect x="4" y="7" width="12" height="10" fill="#ffffff" stroke="none"/>
146
+ <rect x="22" y="9" width="4" height="6" rx="1" fill="#ffffff" stroke="none"/>
147
+ </svg>
148
+ </span>
149
+ </div>
150
+ </div>
151
+
152
+ <!-- Back button -->
153
+ <div class="back-btn">
154
+ <svg viewBox="0 0 24 24">
155
+ <path d="M15 5l-7 7 7 7"/>
156
+ </svg>
157
+ </div>
158
+
159
+ <!-- Article content -->
160
+ <section class="article">
161
+ <h1 class="title">Barbecue Salads: 6 Great Ideas for a Perfect Barbecue</h1>
162
+ <p class="subtitle">Attention, they might be more popular than the meat!</p>
163
+
164
+ <div class="actions">
165
+ <div class="action">
166
+ <!-- Heart -->
167
+ <svg viewBox="0 0 24 24">
168
+ <path d="M12 21s-7-5.5-9-9c-1.5-2.7.5-6 3.8-6 2 0 3.2 1 5.2 3 2-2 3.2-3 5.2-3 3.3 0 5.3 3.3 3.8 6-2 3.5-9 9-9 9z"/>
169
+ </svg>
170
+ <span>885</span>
171
+ </div>
172
+ <div class="action">
173
+ <!-- Bookmark -->
174
+ <svg viewBox="0 0 24 24">
175
+ <path d="M6 3h12v18l-6-4-6 4z"/>
176
+ </svg>
177
+ <span>Save</span>
178
+ </div>
179
+ <div class="action">
180
+ <!-- Share -->
181
+ <svg viewBox="0 0 24 24">
182
+ <circle cx="6" cy="12" r="2.2"/>
183
+ <circle cx="18" cy="6" r="2.2"/>
184
+ <circle cx="18" cy="18" r="2.2"/>
185
+ <path d="M8 12l8-6M8 12l8 6"/>
186
+ </svg>
187
+ <span>Share</span>
188
+ </div>
189
+ </div>
190
+ </section>
191
+
192
+ <!-- Footer / Team row and home indicator -->
193
+ <div class="footer">
194
+ <div class="team-row">
195
+ <div class="team-avatar">SSS</div>
196
+ <div class="team-name">Team</div>
197
+ <div class="progress"></div>
198
+ </div>
199
+ <div class="home-indicator"></div>
200
+ </div>
201
+
202
+ </div>
203
+ </body>
204
+ </html>
code/14179/14179_0.html ADDED
@@ -0,0 +1,249 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
5
+ <title>Your family on Google - Mock</title>
6
+ <style>
7
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
8
+ #render-target {
9
+ width: 1080px;
10
+ height: 2400px;
11
+ position: relative;
12
+ overflow: hidden;
13
+ background: #ffffff;
14
+ color: #1f1f1f;
15
+ }
16
+
17
+ /* Status bar */
18
+ .status-bar {
19
+ height: 80px;
20
+ padding: 0 36px;
21
+ display: flex;
22
+ align-items: center;
23
+ justify-content: space-between;
24
+ color: #333;
25
+ font-size: 36px;
26
+ }
27
+ .status-icons {
28
+ display: flex; align-items: center; gap: 26px;
29
+ }
30
+ .dot { width: 10px; height: 10px; background:#666; border-radius:50%; display:inline-block; }
31
+ .sb-icon {
32
+ width: 34px; height: 34px; border: 2px solid #555; border-radius: 6px; position: relative;
33
+ }
34
+ .sb-icon::after { content:""; position:absolute; right:-10px; top:-8px; width: 8px; height: 18px; border:2px solid #555; border-left:none; border-radius:4px; }
35
+ .notch { display:inline-block; width:14px; height:14px; border-radius: 50%; background:#777; }
36
+
37
+ /* App bar */
38
+ .app-bar {
39
+ height: 110px;
40
+ padding: 0 24px 0 16px;
41
+ display: flex;
42
+ align-items: center;
43
+ border-bottom: 1px solid #eee;
44
+ }
45
+ .back-btn {
46
+ width: 72px; height: 72px; display: flex; align-items: center; justify-content: center; margin-right: 12px;
47
+ }
48
+ .app-title {
49
+ font-size: 48px; font-weight: 600; color: #303030;
50
+ }
51
+ .spacer { flex: 1; }
52
+ .small-avatar {
53
+ width: 72px; height: 72px; border-radius: 50%;
54
+ background: #0aa; color: #fff; display:flex; align-items:center; justify-content:center;
55
+ font-weight: 700; font-size: 40px;
56
+ }
57
+
58
+ /* Content */
59
+ .content { padding: 24px 48px 0 48px; overflow-y: auto; height: calc(2400px - 190px); }
60
+ h1.big {
61
+ font-size: 66px; font-weight: 600; margin: 28px 0 8px 0;
62
+ }
63
+ .subtitle { color:#5f6368; font-size: 34px; line-height: 1.4; margin-bottom: 42px; }
64
+
65
+ h2.section-title { font-size: 44px; margin: 24px 0 14px 0; font-weight: 700; }
66
+ .help-text { color:#444; font-size: 34px; line-height: 1.5; }
67
+ .help-text .link { color:#1a73e8; text-decoration: none; font-weight: 600; }
68
+
69
+ .member-row {
70
+ display: flex; align-items: center; justify-content: space-between;
71
+ padding: 22px 8px; border-bottom: 1px solid #eee;
72
+ }
73
+ .member-info { display: flex; align-items: center; gap: 28px; }
74
+ .avatar {
75
+ width: 120px; height: 120px; border-radius: 60px; display:flex; align-items:center; justify-content:center;
76
+ font-weight: 700; color:#fff; font-size: 56px;
77
+ }
78
+ .avatar.teal { background:#0097a7; }
79
+ .avatar.purple { background:#6a1b9a; }
80
+ .name { font-size: 44px; font-weight: 600; color:#202124; }
81
+ .role { font-size: 34px; color:#5f6368; margin-top: 6px; }
82
+
83
+ .chevron {
84
+ width: 48px; height: 48px; opacity: .6;
85
+ }
86
+
87
+ .divider-space { height: 26px; }
88
+
89
+ .sharing-section { margin-top: 36px; }
90
+ .sharing-section .desc { font-size: 34px; color:#333; line-height: 1.45; }
91
+ .sharing-section .desc .link { color:#1a73e8; text-decoration: none; font-weight: 600; }
92
+
93
+ .card {
94
+ display: flex; align-items: center; justify-content: space-between;
95
+ padding: 24px 8px; border-bottom: 1px solid #eee;
96
+ }
97
+ .card-left { display:flex; gap: 28px; align-items: center; }
98
+ .app-icon {
99
+ width: 92px; height: 92px; border-radius: 12px; background:#E0E0E0; border:1px solid #BDBDBD;
100
+ display:flex; align-items:center; justify-content:center; color:#757575; font-size: 28px; text-align:center; padding: 8px;
101
+ }
102
+ .card-title { font-size: 42px; font-weight: 700; color:#202124; }
103
+ .card-sub { font-size: 32px; color:#5f6368; margin-top: 6px; }
104
+ .connected { font-size: 34px; color:#202124; margin-top: 10px; }
105
+
106
+ .open-icon {
107
+ width: 52px; height: 52px; opacity: .7;
108
+ }
109
+
110
+ /* Bottom home indicator */
111
+ .home-indicator {
112
+ position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
113
+ width: 520px; height: 12px; background: #9e9e9e; border-radius: 8px;
114
+ }
115
+ </style>
116
+ </head>
117
+ <body>
118
+ <div id="render-target">
119
+
120
+ <!-- Status Bar -->
121
+ <div class="status-bar">
122
+ <div style="display:flex; align-items:center; gap:18px;">
123
+ <span>10:39</span>
124
+ <span class="dot"></span>
125
+ <span class="dot"></span>
126
+ <span class="dot"></span>
127
+ <span class="dot"></span>
128
+ </div>
129
+ <div class="status-icons">
130
+ <div class="notch"></div>
131
+ <div class="sb-icon"></div>
132
+ </div>
133
+ </div>
134
+
135
+ <!-- App Bar -->
136
+ <div class="app-bar">
137
+ <div class="back-btn" aria-label="Back">
138
+ <svg width="44" height="44" viewBox="0 0 24 24" fill="#333">
139
+ <path d="M15.5 4l-8 8 8 8 1.4-1.4L10.3 12l6.6-6.6L15.5 4z"></path>
140
+ </svg>
141
+ </div>
142
+ <div class="app-title">
143
+ <span style="color:#4285F4; font-weight:800;">Google</span> Account
144
+ </div>
145
+ <div class="spacer"></div>
146
+ <div class="small-avatar">N</div>
147
+ </div>
148
+
149
+ <!-- Content -->
150
+ <div class="content">
151
+ <h1 class="big">Your family on Google</h1>
152
+ <div class="subtitle">Families can share content & services across Google</div>
153
+
154
+ <h2 class="section-title">Your family group members</h2>
155
+ <div class="help-text">View and manage your family group options.
156
+ <a href="#" class="link">Learn more</a>
157
+ </div>
158
+
159
+ <!-- Member 1 -->
160
+ <div class="member-row">
161
+ <div class="member-info">
162
+ <div class="avatar teal">N</div>
163
+ <div>
164
+ <div class="name">Natalie Larson</div>
165
+ <div class="role">Member</div>
166
+ </div>
167
+ </div>
168
+ <svg class="chevron" viewBox="0 0 24 24" fill="#5f6368">
169
+ <path d="M9 6l6 6-6 6-1.4-1.4L12.2 12 7.6 7.4 9 6z"></path>
170
+ </svg>
171
+ </div>
172
+
173
+ <!-- Member 2 -->
174
+ <div class="member-row">
175
+ <div class="member-info">
176
+ <div class="avatar purple">A</div>
177
+ <div>
178
+ <div class="name">Amelia miller</div>
179
+ <div class="role">Family manager</div>
180
+ </div>
181
+ </div>
182
+ <svg class="chevron" viewBox="0 0 24 24" fill="#5f6368">
183
+ <path d="M9 6l6 6-6 6-1.4-1.4L12.2 12 7.6 7.4 9 6z"></path>
184
+ </svg>
185
+ </div>
186
+
187
+ <div class="divider-space"></div>
188
+
189
+ <div class="sharing-section">
190
+ <h2 class="section-title">Family sharing</h2>
191
+ <div class="desc">
192
+ Get more from Google by sharing products and subscriptions with your family.
193
+ <a href="#" class="link">Learn more</a>
194
+ </div>
195
+
196
+ <!-- Google Family Calendar -->
197
+ <div class="card">
198
+ <div class="card-left">
199
+ <div class="app-icon">[IMG: Calendar Icon]</div>
200
+ <div>
201
+ <div class="card-title">Google Family Calendar</div>
202
+ <div class="card-sub">No upcoming events on Family Calendar</div>
203
+ <div class="connected">Connected</div>
204
+ </div>
205
+ </div>
206
+ <svg class="open-icon" viewBox="0 0 24 24" fill="#5f6368">
207
+ <path d="M14 3h7v7h-2V6.4l-9.3 9.3-1.4-1.4L17.6 5H14V3z"></path>
208
+ <path d="M19 19H5V5h7V3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-7h-2v7z"></path>
209
+ </svg>
210
+ </div>
211
+
212
+ <!-- Family Keep -->
213
+ <div class="card">
214
+ <div class="card-left">
215
+ <div class="app-icon">[IMG: Keep Icon]</div>
216
+ <div>
217
+ <div class="card-title">Family Keep</div>
218
+ <div class="card-sub">You can share notes and lists with your family group</div>
219
+ <div class="connected">Connected</div>
220
+ </div>
221
+ </div>
222
+ <svg class="open-icon" viewBox="0 0 24 24" fill="#5f6368">
223
+ <path d="M14 3h7v7h-2V6.4l-9.3 9.3-1.4-1.4L17.6 5H14V3z"></path>
224
+ <path d="M19 19H5V5h7V3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-7h-2v7z"></path>
225
+ </svg>
226
+ </div>
227
+
228
+ <!-- Google Assistant (partial) -->
229
+ <div class="card" style="border-bottom:none;">
230
+ <div class="card-left">
231
+ <div class="app-icon">[IMG: Assistant]</div>
232
+ <div>
233
+ <div class="card-title">Google Assistant</div>
234
+ <div class="card-sub">Share, organize, and connect with your family</div>
235
+ </div>
236
+ </div>
237
+ <svg class="open-icon" viewBox="0 0 24 24" fill="#5f6368">
238
+ <path d="M14 3h7v7h-2V6.4l-9.3 9.3-1.4-1.4L17.6 5H14V3z"></path>
239
+ <path d="M19 19H5V5h7V3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-7h-2v7z"></path>
240
+ </svg>
241
+ </div>
242
+
243
+ </div>
244
+ </div>
245
+
246
+ <div class="home-indicator"></div>
247
+ </div>
248
+ </body>
249
+ </html>
code/14179/14179_1.html ADDED
@@ -0,0 +1,308 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Fix & manage 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: #EEF1F8;
13
+ }
14
+
15
+ /* Status bar */
16
+ .status-bar {
17
+ height: 110px;
18
+ padding: 0 32px;
19
+ display: flex;
20
+ align-items: center;
21
+ justify-content: space-between;
22
+ color: #2d2d2d;
23
+ font-size: 36px;
24
+ }
25
+ .status-left {
26
+ display: flex;
27
+ align-items: center;
28
+ gap: 20px;
29
+ }
30
+ .status-icons {
31
+ display: flex;
32
+ align-items: center;
33
+ gap: 16px;
34
+ color: #555;
35
+ }
36
+ .status-icon {
37
+ width: 34px; height: 34px; border-radius: 50%; background: #C9CCDA;
38
+ }
39
+ .battery {
40
+ width: 52px; height: 28px; border: 2px solid #555; position: relative; border-radius: 4px; margin-left: 10px;
41
+ }
42
+ .battery::after { content: ""; position: absolute; right: -8px; top: 7px; width: 6px; height: 14px; background: #555; border-radius: 2px; }
43
+ .battery .level { position: absolute; top: 3px; left: 3px; width: 36px; height: 20px; background: #6AC16A; }
44
+
45
+ /* Title */
46
+ .header {
47
+ padding: 0 48px;
48
+ }
49
+ .title-row {
50
+ display: flex;
51
+ align-items: center;
52
+ justify-content: space-between;
53
+ margin-top: 10px;
54
+ }
55
+ .page-title {
56
+ font-size: 64px;
57
+ font-weight: 700;
58
+ color: #1f2430;
59
+ letter-spacing: -0.5px;
60
+ }
61
+ .avatar {
62
+ width: 84px; height: 84px; background: #0FA4A6;
63
+ color: white; border-radius: 50%;
64
+ display: flex; align-items: center; justify-content: center;
65
+ font-size: 42px; font-weight: 700;
66
+ }
67
+
68
+ /* Tiles grid */
69
+ .tiles {
70
+ padding: 30px 48px 0 48px;
71
+ display: flex;
72
+ flex-wrap: wrap;
73
+ gap: 36px;
74
+ }
75
+ .tile {
76
+ width: 468px;
77
+ height: 160px;
78
+ background: #F6F7FB;
79
+ border-radius: 32px;
80
+ display: flex;
81
+ align-items: center;
82
+ gap: 26px;
83
+ padding: 0 36px;
84
+ box-sizing: border-box;
85
+ }
86
+ .tile .label {
87
+ font-size: 44px;
88
+ color: #1f2430;
89
+ font-weight: 600;
90
+ }
91
+ .green {
92
+ color: #256C3A;
93
+ }
94
+ .tile svg { width: 66px; height: 66px; }
95
+
96
+ /* "Other tools" section */
97
+ .section {
98
+ padding: 30px 48px 0 48px;
99
+ }
100
+ .section-title {
101
+ font-size: 36px;
102
+ color: #6b7280;
103
+ margin-top: 10px;
104
+ margin-bottom: 18px;
105
+ }
106
+ .list {
107
+ background: transparent;
108
+ border-radius: 24px;
109
+ }
110
+ .list-item {
111
+ height: 130px;
112
+ display: flex;
113
+ align-items: center;
114
+ gap: 30px;
115
+ padding: 0 20px;
116
+ border-bottom: 2px solid #E2E6EE;
117
+ }
118
+ .list-item:last-child { border-bottom: none; }
119
+ .list-item .text {
120
+ font-size: 44px;
121
+ color: #222;
122
+ }
123
+ .list-item svg { width: 62px; height: 62px; color: #3E4758; }
124
+
125
+ /* Bottom nav */
126
+ .bottom-nav {
127
+ position: absolute;
128
+ left: 0; right: 0; bottom: 0;
129
+ height: 210px;
130
+ background: #EDEFF7;
131
+ display: flex;
132
+ align-items: center;
133
+ justify-content: space-around;
134
+ padding-bottom: 12px;
135
+ box-sizing: border-box;
136
+ }
137
+ .nav-item {
138
+ width: 300px; height: 160px;
139
+ display: flex; flex-direction: column;
140
+ align-items: center; justify-content: center;
141
+ gap: 18px; color: #3b4252;
142
+ position: relative;
143
+ font-size: 36px;
144
+ }
145
+ .nav-item svg { width: 58px; height: 58px; }
146
+ .active .pill {
147
+ position: absolute;
148
+ top: 22px; width: 220px; height: 96px;
149
+ background: #F6CED3;
150
+ border-radius: 52px;
151
+ z-index: 0;
152
+ }
153
+ .nav-item .icon, .nav-item .label { z-index: 1; }
154
+ </style>
155
+ </head>
156
+ <body>
157
+ <div id="render-target">
158
+ <!-- Status Bar -->
159
+ <div class="status-bar">
160
+ <div class="status-left">
161
+ <div style="font-weight:600;">10:42</div>
162
+ <div class="status-icons">
163
+ <div class="status-icon"></div>
164
+ <div class="status-icon"></div>
165
+ <div class="status-icon"></div>
166
+ <div class="status-icon"></div>
167
+ <div class="status-icon"></div>
168
+ </div>
169
+ </div>
170
+ <div class="status-left" style="gap:16px;">
171
+ <!-- Wi-Fi -->
172
+ <svg width="44" height="44" viewBox="0 0 24 24" fill="#555">
173
+ <path d="M12 18l-2.5-2.5a3.5 3.5 0 015 0L12 18zm6-6a8.5 8.5 0 00-12 0l1.7 1.7a6 6 0 018.6 0L18 12zm3-3a13 13 0 00-20 0l1.8 1.8a10.5 10.5 0 0116.4 0L21 9z"/>
174
+ </svg>
175
+ <!-- Battery -->
176
+ <div class="battery"><div class="level"></div></div>
177
+ </div>
178
+ </div>
179
+
180
+ <!-- Header -->
181
+ <div class="header">
182
+ <div class="title-row">
183
+ <div class="page-title">Fix & manage</div>
184
+ <div class="avatar">N</div>
185
+ </div>
186
+ </div>
187
+
188
+ <!-- Tiles Grid -->
189
+ <div class="tiles">
190
+ <!-- Merge & fix -->
191
+ <div class="tile">
192
+ <svg viewBox="0 0 24 24" class="green">
193
+ <path d="M7 2l3 3-2 2L5 4l2-2zm10.3 3.7l-6.6 6.6-3.2-.8.8 3.2 6.6-6.6 2.4-2.4zM4 20h8v2H4a2 2 0 01-2-2V12h2v8z" fill="currentColor"/>
194
+ </svg>
195
+ <div class="label">Merge &amp; fix</div>
196
+ </div>
197
+
198
+ <!-- Reminders -->
199
+ <div class="tile">
200
+ <svg viewBox="0 0 24 24" class="green">
201
+ <path d="M5 5h14v2H5V5zm2 4h10v2H7V9zm-2 4h14v2H5v-2zm2 4h10v2H7v-2z" fill="currentColor"/>
202
+ </svg>
203
+ <div class="label">Reminders</div>
204
+ </div>
205
+
206
+ <!-- Restore contacts -->
207
+ <div class="tile">
208
+ <svg viewBox="0 0 24 24" class="green">
209
+ <path d="M6 10a6 6 0 1112 0h2l-3 3-3-3h2a4 4 0 10-8 0H6z" fill="currentColor"/>
210
+ </svg>
211
+ <div class="label">Restore contacts</div>
212
+ </div>
213
+
214
+ <!-- Import from file -->
215
+ <div class="tile">
216
+ <svg viewBox="0 0 24 24" class="green">
217
+ <path d="M12 3l4 4h-3v7h-2V7H8l4-4zM5 19h14v2H5v-2z" fill="currentColor"/>
218
+ </svg>
219
+ <div class="label">Import from file</div>
220
+ </div>
221
+
222
+ <!-- Export to file -->
223
+ <div class="tile">
224
+ <svg viewBox="0 0 24 24" class="green">
225
+ <path d="M12 21l-4-4h3V10h2v7h3l-4 4zM5 3h14v2H5V3z" fill="currentColor"/>
226
+ </svg>
227
+ <div class="label">Export to file</div>
228
+ </div>
229
+
230
+ <!-- Trash -->
231
+ <div class="tile">
232
+ <svg viewBox="0 0 24 24" class="green">
233
+ <path d="M8 4h8l1 2h3v2H4V6h3l1-2zm1 6h2v8H9V10zm6 0h-2v8h2V10z" fill="currentColor"/>
234
+ </svg>
235
+ <div class="label">Trash</div>
236
+ </div>
237
+
238
+ <!-- Settings (single tile) -->
239
+ <div class="tile">
240
+ <svg viewBox="0 0 24 24" class="green">
241
+ <path d="M12 8a4 4 0 110 8 4 4 0 010-8zm9 4l-2.2.6a7.9 7.9 0 00-.6 1.5l1.3 1.8-1.4 1.4-1.8-1.3a7.9 7.9 0 01-1.5.6L13 21h-2l-.6-2.2a7.9 7.9 0 01-1.5-.6l-1.8 1.3-1.4-1.4 1.3-1.8a7.9 7.9 0 01-.6-1.5L3 12v-2l2.2-.6a7.9 7.9 0 01.6-1.5L4.5 6.1 5.9 4.7 7.7 6a7.9 7.9 0 011.5-.6L10.9 3h2l.6 2.2a7.9 7.9 0 011.5.6l1.8-1.3 1.4 1.4-1.3 1.8c.2.5.4 1 .6 1.5L21 10v2z" fill="currentColor"/>
242
+ </svg>
243
+ <div class="label">Settings</div>
244
+ </div>
245
+ </div>
246
+
247
+ <!-- Other tools section -->
248
+ <div class="section">
249
+ <div class="section-title">Other tools</div>
250
+ <div class="list">
251
+ <div class="list-item">
252
+ <svg viewBox="0 0 24 24">
253
+ <path d="M12 2l1.6 4.2L18 6l-3.2 2.6L15 12l-3-2-3 2 .2-3.4L6 6l4.4-.2L12 2zm0 13a3 3 0 110 6 3 3 0 010-6z" fill="currentColor"/>
254
+ </svg>
255
+ <div class="text">Emergency contacts</div>
256
+ </div>
257
+ <div class="list-item">
258
+ <svg viewBox="0 0 24 24">
259
+ <path d="M12 3l8 6v11h-5v-6H9v6H4V9l8-6z" fill="currentColor"/>
260
+ </svg>
261
+ <div class="text">Household contacts</div>
262
+ </div>
263
+ <div class="list-item">
264
+ <svg viewBox="0 0 24 24">
265
+ <path d="M12 5l8 6v8h-4v-4H8v4H4v-8l8-6zm-3 7a2.5 2.5 0 105 0 2.5 2.5 0 10-5 0z" fill="currentColor"/>
266
+ </svg>
267
+ <div class="text">Family group</div>
268
+ </div>
269
+ <div class="list-item">
270
+ <svg viewBox="0 0 24 24">
271
+ <path d="M12 3a9 9 0 100 18 9 9 0 000-18zm-6 9a6 6 0 0110.6-3.8L8.2 16.6A6 6 0 016 12zm12 0a6 6 0 01-10.6 3.8l8.4-8.4A5.9 5.9 0 0118 12z" fill="currentColor"/>
272
+ </svg>
273
+ <div class="text">Blocked numbers</div>
274
+ </div>
275
+ </div>
276
+ </div>
277
+
278
+ <!-- Bottom Navigation -->
279
+ <div class="bottom-nav">
280
+ <div class="nav-item">
281
+ <div class="icon">
282
+ <svg viewBox="0 0 24 24">
283
+ <path d="M12 12a4 4 0 110-8 4 4 0 010 8zm-7 9v-2a7 7 0 0114 0v2H5z" fill="currentColor"/>
284
+ </svg>
285
+ </div>
286
+ <div class="label">Contacts</div>
287
+ </div>
288
+ <div class="nav-item">
289
+ <div class="icon">
290
+ <svg viewBox="0 0 24 24">
291
+ <path d="M12 3l3 8h8l-6 4 3 8-6-4-6 4 3-8-6-4h8l3-8z" fill="currentColor"/>
292
+ </svg>
293
+ </div>
294
+ <div class="label">Highlights</div>
295
+ </div>
296
+ <div class="nav-item active">
297
+ <div class="pill"></div>
298
+ <div class="icon">
299
+ <svg viewBox="0 0 24 24">
300
+ <path d="M14.7 6.3l3 3-9.4 9.4H5.3v-3L14.7 6.3zM16 2l6 6-2.3 2.3-6-6L16 2z" fill="currentColor"/>
301
+ </svg>
302
+ </div>
303
+ <div class="label">Fix &amp; manage</div>
304
+ </div>
305
+ </div>
306
+ </div>
307
+ </body>
308
+ </html>
code/14179/14179_2.html ADDED
@@ -0,0 +1,310 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Downloads UI Mock</title>
5
+ <style>
6
+ body { margin: 0; padding: 0; background: transparent; font-family: Roboto, Arial, Helvetica, sans-serif; }
7
+ #render-target {
8
+ position: relative;
9
+ width: 1080px;
10
+ height: 2400px;
11
+ overflow: hidden;
12
+ background: #efedf5;
13
+ color: #1f1f1f;
14
+ }
15
+
16
+ /* Status bar */
17
+ .status-bar {
18
+ position: absolute;
19
+ top: 0;
20
+ left: 0;
21
+ width: 1080px;
22
+ height: 96px;
23
+ padding: 0 34px;
24
+ box-sizing: border-box;
25
+ display: flex;
26
+ align-items: center;
27
+ justify-content: space-between;
28
+ color: #2b2b2b;
29
+ font-weight: 600;
30
+ font-size: 38px;
31
+ letter-spacing: 1px;
32
+ }
33
+ .status-icons {
34
+ display: flex;
35
+ align-items: center;
36
+ gap: 18px;
37
+ }
38
+ .dot { width: 10px; height: 10px; background: #666; border-radius: 50%; display: inline-block; }
39
+
40
+ /* Top app bar */
41
+ .app-bar {
42
+ position: absolute;
43
+ top: 96px;
44
+ left: 0;
45
+ width: 1080px;
46
+ height: 120px;
47
+ display: flex;
48
+ align-items: center;
49
+ padding: 0 40px;
50
+ box-sizing: border-box;
51
+ }
52
+ .app-title {
53
+ font-size: 56px;
54
+ font-weight: 700;
55
+ margin-left: 24px;
56
+ flex: 1;
57
+ }
58
+ .icon-btn { width: 64px; height: 64px; display: inline-flex; align-items: center; justify-content: center; }
59
+ .icon {
60
+ width: 40px; height: 40px; fill: #2f2f2f;
61
+ }
62
+
63
+ /* Section headings */
64
+ .section {
65
+ position: absolute;
66
+ top: 240px;
67
+ left: 40px;
68
+ right: 40px;
69
+ color: #2E7D32;
70
+ font-size: 44px;
71
+ font-weight: 700;
72
+ }
73
+ .subsection {
74
+ position: absolute;
75
+ top: 340px;
76
+ left: 40px;
77
+ right: 40px;
78
+ color: #404040;
79
+ font-size: 36px;
80
+ font-weight: 600;
81
+ opacity: 0.9;
82
+ }
83
+
84
+ /* Folder chip */
85
+ .folder-chip {
86
+ position: absolute;
87
+ top: 410px;
88
+ left: 40px;
89
+ width: 680px;
90
+ height: 140px;
91
+ background: #ffffff;
92
+ border-radius: 26px;
93
+ border: 1px solid #e4e4e4;
94
+ display: flex;
95
+ align-items: center;
96
+ padding: 0 28px;
97
+ box-sizing: border-box;
98
+ gap: 22px;
99
+ box-shadow: 0 2px 6px rgba(0,0,0,0.05);
100
+ }
101
+ .folder-chip .text { font-size: 40px; font-weight: 700; color: #444; }
102
+
103
+ /* Grid */
104
+ .grid {
105
+ position: absolute;
106
+ top: 580px;
107
+ left: 40px;
108
+ right: 40px;
109
+ display: grid;
110
+ grid-template-columns: repeat(2, 1fr);
111
+ grid-column-gap: 40px;
112
+ grid-row-gap: 36px;
113
+ }
114
+ .card {
115
+ background: #ffffff;
116
+ border-radius: 28px;
117
+ border: 1px solid #e3e3e3;
118
+ overflow: hidden;
119
+ box-shadow: 0 3px 8px rgba(0,0,0,0.05);
120
+ }
121
+ .thumb {
122
+ height: 380px;
123
+ background: #E0E0E0;
124
+ border-bottom: 1px solid #BDBDBD;
125
+ display: flex;
126
+ align-items: center;
127
+ justify-content: center;
128
+ color: #757575;
129
+ font-size: 34px;
130
+ text-align: center;
131
+ padding: 0 20px;
132
+ box-sizing: border-box;
133
+ }
134
+ .meta {
135
+ padding: 22px 24px 18px 24px;
136
+ }
137
+ .filename {
138
+ display: flex;
139
+ align-items: center;
140
+ gap: 16px;
141
+ font-size: 36px;
142
+ font-weight: 700;
143
+ color: #444;
144
+ white-space: nowrap;
145
+ overflow: hidden;
146
+ text-overflow: ellipsis;
147
+ }
148
+ .fileinfo {
149
+ margin-top: 8px;
150
+ font-size: 28px;
151
+ color: #666;
152
+ }
153
+ .img-small {
154
+ width: 38px;
155
+ height: 30px;
156
+ background: #fff2f2;
157
+ border: 2px solid #e57373;
158
+ border-radius: 8px;
159
+ display: inline-flex;
160
+ align-items: center;
161
+ justify-content: center;
162
+ color: #e53935;
163
+ font-weight: 900;
164
+ font-size: 18px;
165
+ }
166
+
167
+ /* Bottom sheet */
168
+ .bottom-sheet {
169
+ position: absolute;
170
+ left: 0;
171
+ right: 0;
172
+ bottom: 0;
173
+ height: 220px;
174
+ background: #ffffff;
175
+ border-top-left-radius: 22px;
176
+ border-top-right-radius: 22px;
177
+ box-shadow: 0 -6px 18px rgba(0,0,0,0.12);
178
+ display: flex;
179
+ align-items: center;
180
+ padding: 0 32px;
181
+ box-sizing: border-box;
182
+ gap: 26px;
183
+ }
184
+ .person-icon {
185
+ width: 54px;
186
+ height: 54px;
187
+ border-radius: 50%;
188
+ border: 2px solid #bfbfbf;
189
+ display: inline-flex;
190
+ align-items: center;
191
+ justify-content: center;
192
+ color: #6b6b6b;
193
+ font-size: 30px;
194
+ }
195
+ .filename-input {
196
+ flex: 1;
197
+ }
198
+ .filename-input .label {
199
+ font-size: 40px;
200
+ color: #1d1d1d;
201
+ padding-bottom: 12px;
202
+ border-bottom: 4px solid #cfcfcf;
203
+ }
204
+ .save-btn {
205
+ background: #2e7d32;
206
+ color: #ffffff;
207
+ font-size: 40px;
208
+ font-weight: 700;
209
+ padding: 28px 46px;
210
+ border-radius: 60px;
211
+ letter-spacing: 1px;
212
+ }
213
+ </style>
214
+ </head>
215
+ <body>
216
+ <div id="render-target">
217
+
218
+ <!-- Status bar -->
219
+ <div class="status-bar">
220
+ <div>10:42</div>
221
+ <div class="status-icons">
222
+ <span class="dot"></span>
223
+ <span class="dot"></span>
224
+ <span class="dot"></span>
225
+ <span class="dot"></span>
226
+ <!-- simple "wifi" -->
227
+ <svg class="icon" viewBox="0 0 24 24"><path d="M12 18a2 2 0 1 0 .001 4.001A2 2 0 0 0 12 18zm0-5c-2.7 0-5 1.1-6.6 2.7l1.4 1.4C8 15.9 9.9 15 12 15s4 .9 5.2 2.1l1.4-1.4C17 14.1 14.7 13 12 13zm0-5c-4.9 0-9 2-11.5 4.6l1.4 1.4C4.9 7.8 8.1 6 12 6s7.1 1.8 10.1 3.6l1.4-1.4C21 5 16.9 3 12 3z"/></svg>
228
+ <!-- battery -->
229
+ <svg class="icon" viewBox="0 0 24 24"><path d="M16 7h2a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2h-2v2H4V5h12v2zM6 7v10h8V7H6z"/></svg>
230
+ </div>
231
+ </div>
232
+
233
+ <!-- App bar -->
234
+ <div class="app-bar">
235
+ <div class="icon-btn">
236
+ <svg class="icon" viewBox="0 0 24 24"><path d="M3 6h18v2H3V6zm0 5h18v2H3v-2zm0 5h12v2H3v-2z"/></svg>
237
+ </div>
238
+ <div class="app-title">Downloads</div>
239
+ <div class="icon-btn">
240
+ <!-- folder with plus -->
241
+ <svg class="icon" viewBox="0 0 24 24"><path d="M10 4l2 2h8a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h6zM12 13h3v-3h2v3h3v2h-3v3h-2v-3h-3v-2z"/></svg>
242
+ </div>
243
+ <div class="icon-btn">
244
+ <!-- kebab -->
245
+ <svg class="icon" viewBox="0 0 24 24"><path d="M12 5a2 2 0 1 1 0-4 2 2 0 0 1 0 4zm0 9a2 2 0 1 1 0-4 2 2 0 0 1 0 4zm0 9a2 2 0 1 1 0-4 2 2 0 0 1 0 4z"/></svg>
246
+ </div>
247
+ </div>
248
+
249
+ <!-- Sections -->
250
+ <div class="section">Downloads</div>
251
+ <div class="subsection">Files in Downloads</div>
252
+
253
+ <!-- Folder chip -->
254
+ <div class="folder-chip">
255
+ <svg class="icon" viewBox="0 0 24 24"><path d="M10 4l2 2h8a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h6z"/></svg>
256
+ <div class="text">EasyShare</div>
257
+ </div>
258
+
259
+ <!-- Grid of cards -->
260
+ <div class="grid">
261
+
262
+ <!-- Card 1 -->
263
+ <div class="card">
264
+ <div class="thumb">[IMG: Botanical illustration of plant]</div>
265
+ <div class="meta">
266
+ <div class="filename"><span class="img-small">🖼</span> 440px-Violatric...</div>
267
+ <div class="fileinfo">49.69 kB Dec 5</div>
268
+ </div>
269
+ </div>
270
+
271
+ <!-- Card 2 -->
272
+ <div class="card">
273
+ <div class="thumb">[IMG: Solar panels field]</div>
274
+ <div class="meta">
275
+ <div class="filename"><span class="img-small">🖼</span> images (1).jpeg</div>
276
+ <div class="fileinfo">10.55 kB Nov 29</div>
277
+ </div>
278
+ </div>
279
+
280
+ <!-- Card 3 -->
281
+ <div class="card">
282
+ <div class="thumb">[IMG: Solar panels on house roof]</div>
283
+ <div class="meta">
284
+ <div class="filename"><span class="img-small">🖼</span> download (1).jpeg</div>
285
+ <div class="fileinfo">14.27 kB Nov 29</div>
286
+ </div>
287
+ </div>
288
+
289
+ <!-- Card 4 -->
290
+ <div class="card">
291
+ <div class="thumb">[IMG: Solar panel close-up]</div>
292
+ <div class="meta">
293
+ <div class="filename"><span class="img-small">🖼</span> download.jpeg</div>
294
+ <div class="fileinfo">15.44 kB Nov 29</div>
295
+ </div>
296
+ </div>
297
+ </div>
298
+
299
+ <!-- Bottom sheet -->
300
+ <div class="bottom-sheet">
301
+ <div class="person-icon">👤</div>
302
+ <div class="filename-input">
303
+ <div class="label">contacts.vcf</div>
304
+ </div>
305
+ <div class="save-btn">SAVE</div>
306
+ </div>
307
+
308
+ </div>
309
+ </body>
310
+ </html>