File size: 17,588 Bytes
67530d2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Chill - Weekly Jukebox</title>
<meta name="viewport" content="width=1080, initial-scale=1.0">
<style>
  body { margin: 0; padding: 0; background: transparent; font-family: "Roboto", "Segoe UI", Arial, sans-serif; }
  #render-target {
    position: relative;
    width: 1080px;
    height: 2400px;
    overflow: hidden;
    background: linear-gradient(180deg, #5b2b4f 0px, #3b2e43 380px, #2f3339 381px, #2f3339 100%);
    color: #e7e9ec;
  }

  /* Status bar */
  .status-bar {
    position: absolute;
    top: 20px;
    left: 32px;
    right: 32px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
    opacity: 0.9;
    font-weight: 600;
    letter-spacing: 0.5px;
  }
  .status-icons { display: flex; align-items: center; gap: 18px; }
  .status-icons svg { opacity: 0.9; }

  /* Floating buttons */
  .fab {
    position: absolute;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(2px);
    display: flex; align-items: center; justify-content: center;
  }
  .back-fab { left: 30px; top: 180px; }
  .menu-fab { right: 30px; top: 520px; }

  /* Hero banner */
  .hero {
    position: absolute;
    left: 90px;
    top: 120px;
    width: 820px;
    height: 460px;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.35);
    background: #E0E0E0;
    border: 1px solid #BDBDBD;
    display: flex; align-items: center; justify-content: center;
    color: #757575;
    font-weight: 700;
    font-size: 38px;
  }
  .hero span { padding: 0 20px; text-align: center; }

  /* Title and description */
  .title-area {
    position: absolute;
    left: 70px;
    right: 70px;
    top: 620px;
  }
  .playlist-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    color: #e8eaee;
  }
  .playlist-desc {
    font-size: 28px;
    color: #c7cbd1;
    line-height: 1.5;
    max-width: 880px;
  }

  /* Controls row */
  .controls {
    margin-top: 38px;
    display: flex;
    align-items: center;
    gap: 24px;
  }
  .control-circle {
    width: 120px; height: 120px; border-radius: 60px;
    border: 2px solid rgba(255,255,255,0.25);
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.06);
  }
  .play-circle {
    background: #66d1c2;
    border: none;
  }

  /* Info row */
  .info-row {
    margin-top: 30px;
    display: flex; align-items: center; gap: 26px;
    color: #c7cbd1;
    font-size: 28px;
  }
  .info-action {
    width: 84px; height: 84px; border-radius: 42px;
    border: 2px solid rgba(255,255,255,0.18);
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.06);
  }
  .dot-sep { margin: 0 10px; opacity: 0.5; }

  /* Tracks list */
  .list {
    position: absolute;
    left: 40px;
    right: 40px;
    top: 980px;
    bottom: 280px;
    overflow: hidden;
  }
  .tracks {
    width: 100%;
    height: 100%;
    overflow-y: hidden;
    padding-right: 20px;
  }
  .track {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 34px 10px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .t-left {
    display: flex; align-items: center; gap: 24px;
  }
  .t-meta { max-width: 720px; }
  .t-title {
    font-size: 36px; font-weight: 700; color: #e7eaee; margin-bottom: 8px;
  }
  .t-sub { font-size: 26px; color: #b9bdc4; }
  .t-right {
    display: flex; align-items: center; gap: 28px;
    color: #c7cbd1;
  }
  .icon-btn {
    width: 100px; height: 100px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    background: transparent;
  }
  .more-vert { width: 16px; height: 64px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; }
  .more-vert span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.6); }

  /* Ad banner */
  .ad-block {
    margin: 22px 0 6px 0;
    width: 100%;
    height: 160px;
    border: 1px solid #BDBDBD;
    background: #E0E0E0;
    display: flex; align-items: center; justify-content: center;
    color: #757575; font-weight: 600; border-radius: 8px;
  }

  /* Now playing style item */
  .now-playing {
    display: flex; align-items: center; justify-content: space-between;
    padding: 26px 10px;
  }
  .np-left { display: flex; align-items: center; gap: 24px; }
  .album-art {
    width: 120px; height: 120px;
    background: #E0E0E0; border: 1px solid #BDBDBD; color: #757575;
    display: flex; align-items: center; justify-content: center;
    border-radius: 6px; font-size: 20px; font-weight: 600;
    text-align: center; padding: 6px;
  }
  .np-title { font-size: 34px; font-weight: 700; color: #e7eaee; }
  .np-sub { font-size: 24px; color: #b9bdc4; margin-top: 6px; }
  .np-play {
    width: 90px; height: 90px; border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    display: flex; align-items: center; justify-content: center;
  }

  /* Bottom nav */
  .bottom-nav {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 220px;
    background: rgba(20,22,25,0.45);
    border-top: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(4px);
    display: flex; align-items: center; justify-content: space-around;
    padding: 24px 40px 34px;
  }
  .nav-item {
    width: 160px; height: 140px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    color: #c7cbd1; font-size: 26px; gap: 12px; position: relative;
  }
  .nav-item svg { fill: none; stroke: #c7cbd1; stroke-width: 3.5; }
  .nav-item.active { color: #ffffff; }
  .nav-item.active .underline {
    position: absolute; bottom: 16px; width: 80px; height: 6px; border-radius: 3px; background: #ffffff;
  }
  .pro-dot {
    position: absolute; top: 14px; right: 44px; width: 18px; height: 18px; background: #f24e4e; border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.7);
  }

  /* Home pill */
  .home-pill {
    position: absolute;
    bottom: 240px;
    left: 50%;
    transform: translateX(-50%);
    width: 220px; height: 14px; border-radius: 7px;
    background: rgba(255,255,255,0.6);
  }

  /* subtle accent lines */
  .section-sep {
    height: 2px; background: rgba(255,255,255,0.08); margin: 12px 0;
  }
</style>
</head>
<body>
<div id="render-target">

  <!-- Status bar -->
  <div class="status-bar">
    <div>12:18</div>
    <div class="status-icons">
      <!-- cellular -->
      <svg width="28" height="28" viewBox="0 0 48 48">
        <rect x="4" y="30" width="6" height="10" fill="#fff"/>
        <rect x="14" y="24" width="6" height="16" fill="#fff" opacity="0.8"/>
        <rect x="24" y="18" width="6" height="22" fill="#fff" opacity="0.6"/>
        <rect x="34" y="12" width="6" height="28" fill="#fff" opacity="0.4"/>
      </svg>
      <!-- wifi -->
      <svg width="28" height="28" viewBox="0 0 48 48">
        <path d="M6 18 Q24 6 42 18" stroke="#fff" stroke-width="3" fill="none" />
        <path d="M12 24 Q24 16 36 24" stroke="#fff" stroke-width="3" fill="none" />
        <path d="M18 30 Q24 26 30 30" stroke="#fff" stroke-width="3" fill="none" />
        <circle cx="24" cy="36" r="3.5" fill="#fff"/>
      </svg>
      <!-- battery -->
      <svg width="38" height="28" viewBox="0 0 60 40">
        <rect x="3" y="8" width="46" height="24" rx="4" ry="4" stroke="#fff" fill="none" stroke-width="3"/>
        <rect x="50" y="14" width="7" height="12" rx="2" fill="#fff"/>
        <rect x="6" y="11" width="30" height="18" rx="2" fill="#fff"/>
      </svg>
    </div>
  </div>

  <!-- Floating back button -->
  <div class="fab back-fab">
    <svg width="52" height="52" viewBox="0 0 48 48">
      <path d="M30 10 L18 24 L30 38" stroke="#fff" stroke-width="4" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
    </svg>
  </div>

  <!-- Hero banner -->
  <div class="hero">
    <span>[IMG: Playlist Banner — Weekly Jukebox]</span>
  </div>

  <!-- Menu fab -->
  <div class="fab menu-fab">
    <div class="more-vert">
      <span></span><span></span><span></span>
    </div>
  </div>

  <!-- Title and description -->
  <div class="title-area">
    <div class="playlist-title">Chill - Weekly Jukebox</div>
    <div class="playlist-desc">
      25 songs with music from artists like Willie "the Lion" Smith, Joe Pass, Kurt Rosenwinkel, and more.
    </div>

    <div class="controls">
      <div class="control-circle" title="Favorite">
        <svg width="60" height="60" viewBox="0 0 48 48">
          <path d="M24 40 L10 26 Q8 16 16 12 Q21 10 24 14 Q27 10 32 12 Q40 16 38 26 Z"
                stroke="#ffffff" stroke-width="3.5" fill="none" stroke-linejoin="round"/>
        </svg>
      </div>
      <div class="control-circle play-circle" title="Play">
        <svg width="68" height="68" viewBox="0 0 48 48">
          <path d="M18 12 L36 24 L18 36 Z" fill="#ffffff"/>
        </svg>
      </div>
    </div>

    <div class="info-row">
      <div class="info-action" title="Download">
        <svg width="44" height="44" viewBox="0 0 48 48">
          <path d="M24 10 V28" stroke="#ffffff" stroke-width="3.5" />
          <path d="M16 22 L24 30 L32 22" stroke="#ffffff" stroke-width="3.5" fill="none" />
          <path d="M12 34 H36" stroke="#ffffff" stroke-width="3.5" />
        </svg>
      </div>
      <div class="info-action" title="Share">
        <svg width="44" height="44" viewBox="0 0 48 48">
          <circle cx="14" cy="30" r="6" stroke="#fff" fill="none" stroke-width="3"/>
          <circle cx="34" cy="18" r="6" stroke="#fff" fill="none" stroke-width="3"/>
          <path d="M19 27 L29 21" stroke="#fff" stroke-width="3"/>
        </svg>
      </div>
      <span>1h 32m</span>
      <span class="dot-sep"></span>
      <span>25 Songs</span>
      <span class="dot-sep"></span>
      <span>2,315 Fans</span>
    </div>
  </div>

  <!-- Tracks list -->
  <div class="list">
    <div class="tracks">

      <div class="track">
        <div class="t-left">
          <div class="t-meta">
            <div class="t-title">Through for the Day</div>
            <div class="t-sub">Willie "the Lion" Smith - Accent on Piano</div>
          </div>
        </div>
        <div class="t-right">
          <div class="icon-btn" title="Download">
            <svg width="52" height="52" viewBox="0 0 48 48">
              <path d="M24 10 V28" stroke="#cfd3d9" stroke-width="3.5" />
              <path d="M16 22 L24 30 L32 22" stroke="#cfd3d9" stroke-width="3.5" fill="none" />
            </svg>
          </div>
          <div class="more-vert"><span></span><span></span><span></span></div>
        </div>
      </div>

      <div class="track">
        <div class="t-left">
          <div class="t-meta">
            <div class="t-title">Groove Yard (Album Version)</div>
            <div class="t-sub">Joe Pass - Virtuoso #2</div>
          </div>
        </div>
        <div class="t-right">
          <div class="icon-btn">
            <svg width="52" height="52" viewBox="0 0 48 48">
              <path d="M24 10 V28" stroke="#cfd3d9" stroke-width="3.5" />
              <path d="M16 22 L24 30 L32 22" stroke="#cfd3d9" stroke-width="3.5" fill="none" />
            </svg>
          </div>
          <div class="more-vert"><span></span><span></span><span></span></div>
        </div>
      </div>

      <div class="track">
        <div class="t-left">
          <div class="t-meta">
            <div class="t-title">Night And Day (Album Version)</div>
            <div class="t-sub">Joe Pass - Virtuoso</div>
          </div>
        </div>
        <div class="t-right">
          <div class="icon-btn">
            <svg width="52" height="52" viewBox="0 0 48 48">
              <path d="M24 10 V28" stroke="#cfd3d9" stroke-width="3.5" />
              <path d="M16 22 L24 30 L32 22" stroke="#cfd3d9" stroke-width="3.5" fill="none" />
            </svg>
          </div>
          <div class="more-vert"><span></span><span></span><span></span></div>
        </div>
      </div>

      <div class="track">
        <div class="t-left">
          <div class="t-meta">
            <div class="t-title">Deep Song</div>
            <div class="t-sub">Kurt Rosenwinkel - Deep Song</div>
          </div>
        </div>
        <div class="t-right">
          <div class="icon-btn">
            <svg width="52" height="52" viewBox="0 0 48 48">
              <path d="M24 10 V28" stroke="#cfd3d9" stroke-width="3.5" />
              <path d="M16 22 L24 30 L32 22" stroke="#cfd3d9" stroke-width="3.5" fill="none" />
            </svg>
          </div>
          <div class="more-vert"><span></span><span></span><span></span></div>
        </div>
      </div>

      <div class="track">
        <div class="t-left">
          <div class="t-meta">
            <div class="t-title">All The Things You Are (Album Version)</div>
            <div class="t-sub">Joe Pass - Virtuoso</div>
          </div>
        </div>
        <div class="t-right">
          <div class="icon-btn">
            <svg width="52" height="52" viewBox="0 0 48 48">
              <path d="M24 10 V28" stroke="#cfd3d9" stroke-width="3.5" />
              <path d="M16 22 L24 30 L32 22" stroke="#cfd3d9" stroke-width="3.5" fill="none" />
            </svg>
          </div>
          <div class="more-vert"><span></span><span></span><span></span></div>
        </div>
      </div>

      <div class="track">
        <div class="t-left">
          <div class="t-meta">
            <div class="t-title">Concerning the UFO sighting near Highland,...</div>
            <div class="t-sub">Sufjan Stevens - Illinois</div>
          </div>
        </div>
        <div class="t-right">
          <div class="icon-btn">
            <svg width="52" height="52" viewBox="0 0 48 48">
              <path d="M24 10 V28" stroke="#cfd3d9" stroke-width="3.5" />
              <path d="M16 22 L24 30 L32 22" stroke="#cfd3d9" stroke-width="3.5" fill="none" />
            </svg>
          </div>
          <div class="more-vert"><span></span><span></span><span></span></div>
        </div>
      </div>

      <div class="track">
        <div class="t-left">
          <div class="t-meta">
            <div class="t-title">Constellations (Demo Version)</div>
            <div class="t-sub">Jack Johnson - In Between Dreams</div>
          </div>
        </div>
        <div class="t-right">
          <div class="icon-btn">
            <svg width="52" height="52" viewBox="0 0 48 48">
              <path d="M24 10 V28" stroke="#cfd3d9" stroke-width="3.5" />
              <path d="M16 22 L24 30 L32 22" stroke="#cfd3d9" stroke-width="3.5" fill="none" />
            </svg>
          </div>
          <div class="more-vert"><span></span><span></span><span></span></div>
        </div>
      </div>

      <div class="track">
        <div class="t-left">
          <div class="t-meta">
            <div class="t-title">Traffic In The Sky</div>
            <div class="t-sub">Jack Johnson - On and On</div>
          </div>
        </div>
        <div class="t-right">
          <div class="icon-btn">
            <svg width="52" height="52" viewBox="0 0 48 48">
              <path d="M24 10 V28" stroke="#cfd3d9" stroke-width="3.5" />
              <path d="M16 22 L24 30 L32 22" stroke="#cfd3d9" stroke-width="3.5" fill="none" />
            </svg>
          </div>
          <div class="more-vert"><span></span><span></span><span></span></div>
        </div>
      </div>

      <div class="ad-block">[IMG: Ad Banner — Food Delivery Promotion]</div>

      <div class="now-playing">
        <div class="np-left">
          <div class="album-art">[IMG: Album Art]</div>
          <div class="t-meta">
            <div class="np-title">L-O-V-E (2003 Digital Remaster)</div>
            <div class="np-sub">Nat King Cole — L-O-V-E</div>
          </div>
        </div>
        <div class="np-play">
          <svg width="52" height="52" viewBox="0 0 48 48">
            <path d="M18 12 L36 24 L18 36 Z" fill="#ffffff"/>
          </svg>
        </div>
      </div>

    </div>
  </div>

  <!-- Bottom navigation -->
  <div class="bottom-nav">
    <div class="nav-item">
      <svg width="52" height="52" viewBox="0 0 48 48">
        <path d="M8 24 L24 10 L40 24" />
        <path d="M14 24 V38 H34 V24" />
      </svg>
      <div>Home</div>
    </div>
    <div class="nav-item active">
      <svg width="52" height="52" viewBox="0 0 48 48">
        <circle cx="22" cy="22" r="14" />
        <path d="M32 32 L40 40" />
      </svg>
      <div>Search</div>
      <div class="underline"></div>
    </div>
    <div class="nav-item">
      <svg width="52" height="52" viewBox="0 0 48 48">
        <path d="M20 6 L12 26 H22 L18 42 L36 18 H26 L32 6 Z" />
      </svg>
      <div>For You</div>
    </div>
    <div class="nav-item">
      <svg width="52" height="52" viewBox="0 0 48 48">
        <circle cx="24" cy="24" r="18" />
        <text x="24" y="30" text-anchor="middle" font-size="22" fill="#c7cbd1" font-weight="700">C</text>
      </svg>
      <div>My Library</div>
    </div>
    <div class="nav-item">
      <div class="pro-dot"></div>
      <svg width="52" height="52" viewBox="0 0 48 48">
        <path d="M24 38 C20 30 12 26 12 18 C12 12 18 10 24 16 C30 10 36 12 36 18 C36 26 28 30 24 38 Z" />
      </svg>
      <div>Pro</div>
    </div>
  </div>

  <!-- Home pill -->
  <div class="home-pill"></div>

</div>
</body>
</html>