File size: 10,457 Bytes
5501681
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Chill List UI</title>
<style>
  body { margin: 0; padding: 0; background: transparent; }
  #render-target {
    width: 1080px;
    height: 2400px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #0d0f13 0%, #1b1f25 40%, #252a31 100%);
    color: #EFF2F6;
    font-family: Inter, Segoe UI, Arial, sans-serif;
  }

  .tap-circle {
    width: 96px;
    height: 96px;
    border-radius: 48px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .placeholder-img {
    background: #E0E0E0;
    border: 1px solid #BDBDBD;
    color: #757575;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .muted { color: #A9B2BC; }
  .pill {
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .shadow {
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  }
  .divider {
    position: absolute;
    left: 0; width: 100%;
    height: 2px;
    background: rgba(255,255,255,0.08);
  }
  .nav-bar {
    position: absolute;
    left: 0; bottom: 0;
    width: 1080px; height: 180px;
    background: #1f242b;
    display: flex;
    align-items: center;
    justify-content: space-around;
    color: #C9D0D7;
  }
  .nav-item {
    width: 180px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 28px;
  }
  .nav-active { color: #EAF0F7; }
  .indicator {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 200px;
    width: 360px; height: 10px;
    background: #EAEFF5;
    border-radius: 5px;
    opacity: 0.8;
  }
</style>
</head>
<body>
<div id="render-target">

  <!-- Back button -->
  <div class="tap-circle shadow" style="position:absolute; top:96px; left:48px;">
    <svg width="40" height="40" viewBox="0 0 40 40">
      <path d="M24 8 L12 20 L24 32" stroke="#EAF0F7" stroke-width="3" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
    </svg>
  </div>

  <!-- Top right vertical menu -->
  <div class="tap-circle shadow" style="position:absolute; top:220px; right:36px; background:#15181d;">
    <svg width="24" height="48" viewBox="0 0 24 48">
      <circle cx="12" cy="10" r="3" fill="#DDE3EA"/>
      <circle cx="12" cy="24" r="3" fill="#DDE3EA"/>
      <circle cx="12" cy="38" r="3" fill="#DDE3EA"/>
    </svg>
  </div>

  <!-- Large playlist cover -->
  <div class="placeholder-img shadow" style="position:absolute; left:72px; top:240px; width:760px; height:540px; border-radius:36px;">
    [IMG: Playlist Cover]
  </div>

  <!-- Edit and Play buttons -->
  <div class="shadow" style="position:absolute; left:870px; top:520px; width:120px; height:120px; border-radius:60px; background:#FFFFFF; display:flex; align-items:center; justify-content:center;">
    <svg width="44" height="44" viewBox="0 0 44 44">
      <path d="M30 12 L36 18 L18 36 L12 36 L12 30 Z" fill="none" stroke="#1f242b" stroke-width="3" stroke-linejoin="round"/>
    </svg>
  </div>
  <div class="shadow" style="position:absolute; left:1008px; top:520px; width:120px; height:120px; border-radius:60px; background:#61D1C8; display:flex; align-items:center; justify-content:center;">
    <svg width="44" height="44" viewBox="0 0 44 44">
      <path d="M16 12 L34 22 L16 32 Z" fill="#0d0f13"/>
    </svg>
  </div>

  <!-- Title and description -->
  <div style="position:absolute; left:72px; top:840px; font-size:72px; font-weight:700; letter-spacing:0.5px;">Chill List</div>
  <div class="muted" style="position:absolute; left:72px; top:930px; font-size:32px;">
    1 song with music from artists like Joe Pass.
  </div>

  <!-- Actions row -->
  <div style="position:absolute; left:72px; top:1005px; display:flex; align-items:center; gap:28px;">
    <div class="tap-circle" style="width:96px; height:96px;">
      <svg width="40" height="40" viewBox="0 0 40 40">
        <path d="M20 8 V24" stroke="#EAF0F7" stroke-width="3" stroke-linecap="round"/>
        <path d="M12 18 L20 26 L28 18" stroke="#EAF0F7" stroke-width="3" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
        <rect x="10" y="30" width="20" height="3" fill="#EAF0F7"/>
      </svg>
    </div>
    <div class="tap-circle" style="width:96px; height:96px;">
      <svg width="40" height="40" viewBox="0 0 40 40">
        <path d="M20 10 V28" stroke="#EAF0F7" stroke-width="3" stroke-linecap="round"/>
        <path d="M26 16 L20 10 L14 16" stroke="#EAF0F7" stroke-width="3" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
        <rect x="10" y="28" width="20" height="8" rx="2" fill="none" stroke="#EAF0F7" stroke-width="3"/>
      </svg>
    </div>
    <div class="muted" style="font-size:30px;">3m 32s • 1 Songs</div>
  </div>

  <!-- Song item -->
  <div class="shadow" style="position:absolute; left:72px; top:1140px; width:936px; min-height:160px; background: transparent; display:flex; align-items:center; justify-content:space-between;">
    <div style="display:flex; flex-direction:column; gap:12px;">
      <div style="font-size:40px; font-weight:600;">Night And Day (Album Version)</div>
      <div class="muted" style="font-size:30px;">Joe Pass - Virtuoso</div>
    </div>
    <div style="display:flex; align-items:center; gap:36px;">
      <svg width="48" height="48" viewBox="0 0 48 48">
        <path d="M24 10 V28" stroke="#DDE3EA" stroke-width="3" stroke-linecap="round"/>
        <path d="M16 22 L24 30 L32 22" stroke="#DDE3EA" stroke-width="3" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
      </svg>
      <svg width="16" height="48" viewBox="0 0 16 48">
        <circle cx="8" cy="12" r="3" fill="#DDE3EA"/>
        <circle cx="8" cy="24" r="3" fill="#DDE3EA"/>
        <circle cx="8" cy="36" r="3" fill="#DDE3EA"/>
      </svg>
    </div>
  </div>

  <!-- Add More button -->
  <div class="pill shadow" style="position:absolute; left:60px; top:1360px; width:960px; height:140px; background:#30353C;">
    <div style="display:flex; align-items:center; gap:24px; color:#61D1C8; font-size:44px; font-weight:600;">
      <svg width="40" height="40" viewBox="0 0 40 40">
        <path d="M20 8 V32 M8 20 H32" stroke="#61D1C8" stroke-width="4" stroke-linecap="round"/>
      </svg>
      Add More
    </div>
  </div>

  <!-- Add Videos button -->
  <div class="pill shadow" style="position:absolute; left:60px; top:1580px; width:960px; height:160px; background:#61D1C8; color:#0d0f13; font-weight:700;">
    <div style="display:flex; align-items:center; gap:28px; font-size:48px;">
      <svg width="42" height="42" viewBox="0 0 42 42">
        <path d="M21 8 V34 M8 21 H34" stroke="#0d0f13" stroke-width="5" stroke-linecap="round"/>
      </svg>
      Add Videos
      <span style="margin-left:12px; font-size:28px; background:#D2D6DA; color:#3a4047; padding:8px 14px; border-radius:16px;">PRO</span>
    </div>
  </div>

  <!-- Divider -->
  <div class="divider" style="top:1860px;"></div>

  <!-- No Work, All Play -->
  <div style="position:absolute; top:1900px; left:0; width:1080px; text-align:center; display:flex; align-items:center; justify-content:center; gap:12px; color:#CDD4DB; font-size:32px;">
    <span style="display:inline-flex; width:44px; height:44px; border-radius:22px; border:1px solid rgba(255,255,255,0.2); align-items:center; justify-content:center;">
      <svg width="22" height="22" viewBox="0 0 22 22">
        <circle cx="11" cy="11" r="10" fill="none" stroke="#DDE3EA" stroke-width="2"/>
        <path d="M11 6 V12" stroke="#DDE3EA" stroke-width="2" stroke-linecap="round"/>
        <circle cx="11" cy="15" r="1.6" fill="#DDE3EA"/>
      </svg>
    </span>
    No Work, All Play.
  </div>

  <!-- Mini player -->
  <div class="shadow" style="position:absolute; left:0; top:1980px; width:1080px; height:160px; background:#262b32; display:flex; align-items:center; padding:0 36px; gap:28px;">
    <div class="placeholder-img" style="width:120px; height:120px;">[IMG: Album Art]</div>
    <div style="display:flex; flex-direction:column; gap:8px; width:760px;">
      <div style="font-size:34px; font-weight:600;">L-O-V-E (2003 Digital Remaster)</div>
      <div class="muted" style="font-size:28px;">Nat King Cole — L-O-V-E</div>
    </div>
    <svg width="56" height="56" viewBox="0 0 56 56">
      <path d="M20 14 L42 28 L20 42 Z" fill="#EAF0F7"/>
    </svg>
  </div>

  <!-- Home indicator -->
  <div class="indicator"></div>

  <!-- Bottom navigation -->
  <div class="nav-bar">
    <div class="nav-item">
      <svg width="44" height="44" viewBox="0 0 44 44">
        <path d="M8 22 L22 10 L36 22 V36 H26 V26 H18 V36 H8 Z" fill="none" stroke="#C9D0D7" stroke-width="3" stroke-linejoin="round"/>
      </svg>
      <div>Home</div>
    </div>
    <div class="nav-item">
      <svg width="44" height="44" viewBox="0 0 44 44">
        <circle cx="20" cy="20" r="12" fill="none" stroke="#C9D0D7" stroke-width="3"/>
        <path d="M30 30 L38 38" stroke="#C9D0D7" stroke-width="3" stroke-linecap="round"/>
      </svg>
      <div>Search</div>
    </div>
    <div class="nav-item">
      <svg width="44" height="44" viewBox="0 0 44 44">
        <path d="M24 6 L14 26 H22 L20 38 L30 20 H22 Z" fill="none" stroke="#C9D0D7" stroke-width="3" stroke-linejoin="round"/>
      </svg>
      <div>For You</div>
    </div>
    <div class="nav-item nav-active">
      <svg width="44" height="44" viewBox="0 0 44 44">
        <circle cx="22" cy="22" r="18" fill="none" stroke="#EAF0F7" stroke-width="3"/>
        <text x="22" y="28" font-size="20" text-anchor="middle" fill="#EAF0F7" font-family="Segoe UI, Arial">C</text>
      </svg>
      <div style="border-bottom:3px solid #EAF0F7; padding-bottom:6px;">My Library</div>
    </div>
    <div class="nav-item">
      <div style="position:relative; width:44px; height:44px;">
        <svg width="44" height="44" viewBox="0 0 44 44">
          <path d="M22 8 C30 12 34 20 22 36 C10 20 14 12 22 8 Z" fill="none" stroke="#C9D0D7" stroke-width="3"/>
        </svg>
        <span style="position:absolute; right:-6px; top:-6px; width:16px; height:16px; background:#FF5555; border-radius:8px;"></span>
      </div>
      <div>Pro</div>
    </div>
  </div>

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