File size: 9,662 Bytes
ff1f000
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Add videos - Mock UI</title>
<style>
  body { margin: 0; padding: 0; background: transparent; }
  #render-target {
    width: 1080px;
    height: 2400px;
    position: relative;
    overflow: hidden;
    background: #121212;
    color: #FFFFFF;
    font-family: Roboto, Arial, sans-serif;
  }

  /* Status bar */
  .status-bar {
    height: 90px;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    font-size: 36px;
  }
  .status-icons {
    display: flex;
    align-items: center;
    gap: 22px;
  }
  .dot { width: 14px; height: 14px; background: #bbb; border-radius: 50%; }
  .icon-battery {
    width: 40px; height: 24px; border: 2px solid #bbb; border-radius: 4px; position: relative;
  }
  .icon-battery::after {
    content: ""; position: absolute; right: -8px; top: 6px; width: 6px; height: 12px; background: #bbb; border-radius: 2px;
  }
  .icon-battery .level { position: absolute; left: 3px; top: 3px; width: 28px; height: 16px; background: #bbb; }

  /* Header */
  .header {
    height: 120px;
    display: flex;
    align-items: center;
    padding: 0 24px;
    border-bottom: 1px solid #1f1f1f;
  }
  .header .left {
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header .title {
    flex: 1;
    font-size: 44px;
    font-weight: 500;
  }
  .header .right {
    width: 160px;
    text-align: right;
    font-size: 36px;
    color: #3EA6FF;
    font-weight: 500;
  }
  .subnote {
    padding: 18px 24px 8px 24px;
    font-size: 30px;
    color: #9E9E9E;
    text-align: right;
  }

  .section-title {
    padding: 8px 24px 16px 24px;
    font-size: 36px;
    font-weight: 500;
  }

  /* List */
  .video-list { padding: 0 24px 24px 24px; }
  .video-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 28px;
    position: relative;
  }
  .thumb {
    width: 320px;
    height: 180px;
    background: #E0E0E0;
    border: 1px solid #BDBDBD;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #757575;
    font-size: 28px;
    position: relative;
    overflow: hidden;
  }
  .thumb.vevo { border: 4px solid #F5D04E; }
  .duration {
    position: absolute;
    right: 8px; bottom: 8px;
    background: rgba(0,0,0,0.85);
    color: #fff;
    font-size: 26px;
    padding: 6px 10px;
    border-radius: 8px;
  }
  .badge-live {
    position: absolute;
    right: 8px; top: 8px;
    background: #D32F2F;
    color: #fff;
    font-size: 22px;
    padding: 6px 10px;
    border-radius: 8px;
    font-weight: 600;
  }
  .content {
    flex: 1;
    margin-left: 24px;
    padding-right: 24px;
  }
  .title {
    font-size: 36px;
    line-height: 44px;
    margin-top: 2px;
    margin-bottom: 8px;
  }
  .meta {
    font-size: 28px;
    color: #9E9E9E;
  }
  .checkbox {
    width: 56px;
    height: 56px;
    border: 3px solid #696969;
    border-radius: 8px;
    margin-top: 6px;
  }
  .checkbox.checked {
    border-color: #3EA6FF;
    background: #3EA6FF;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .checkbox.checked svg { width: 32px; height: 32px; }

  /* Mini player overlay */
  .mini-player {
    position: absolute;
    right: 80px;
    top: 1060px;
    width: 520px;
    height: 290px;
    background: #101010;
    border-radius: 28px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.6);
    overflow: hidden;
    border: 1px solid #232323;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mini-player .img {
    width: 100%;
    height: 100%;
    background: #E0E0E0;
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
    border-bottom-left-radius: 28px;
    border-bottom-right-radius: 28px;
    border: 1px solid #BDBDBD;
    color: #757575;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
  }

  /* Bottom scrubber bar hint */
  .scrubber {
    position: absolute;
    bottom: 44px;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 10px;
    background: #2a2a2a;
    border-radius: 6px;
  }

  /* Simple icons */
  .icon-close { width: 48px; height: 48px; }
</style>
</head>
<body>
<div id="render-target">

  <!-- Status bar -->
  <div class="status-bar">
    <div>8:28</div>
    <div class="status-icons">
      <div class="dot"></div>
      <div class="dot"></div>
      <div class="dot"></div>
      <svg width="28" height="24" viewBox="0 0 28 24">
        <path d="M2 20 L14 4 L26 20" stroke="#bbb" stroke-width="3" fill="none"/>
      </svg>
      <div class="icon-battery">
        <div class="level"></div>
      </div>
    </div>
  </div>

  <!-- Header -->
  <div class="header">
    <div class="left">
      <svg class="icon-close" viewBox="0 0 24 24">
        <path d="M4 4 L20 20 M20 4 L4 20" stroke="#fff" stroke-width="3" stroke-linecap="round"/>
      </svg>
    </div>
    <div class="title">Add videos</div>
    <div class="right">Next</div>
  </div>

  <div class="subnote">1 video selected</div>

  <div class="section-title">Recently Watched</div>

  <div class="video-list">

    <!-- Item 1 -->
    <div class="video-item">
      <div class="thumb">
        <div>[IMG: Fashion video thumbnail]</div>
        <div class="badge-live">LIVE</div>
        <div class="duration">8:03</div>
      </div>
      <div class="content">
        <div class="title">Autumn outfits inspo. Milan's fashion life in anticipation of M...</div>
        <div class="meta">MILAN ON TREND Live • 13K views • 1 day ago</div>
      </div>
      <div class="checkbox"></div>
    </div>

    <!-- Item 2 (selected) -->
    <div class="video-item">
      <div class="thumb vevo">
        <div>[IMG: Concert performance thumbnail]</div>
        <div class="duration">4:59</div>
      </div>
      <div class="content">
        <div class="title">Luciano Pavarotti, James Brown - It's A Man's Man's Man's World...</div>
        <div class="meta">Luciano Pavarotti • 92M views • 4 years ago</div>
      </div>
      <div class="checkbox checked">
        <svg viewBox="0 0 24 24">
          <path d="M5 12 L10 17 L19 7" fill="none" stroke="#fff" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
        </svg>
      </div>
    </div>

    <!-- Item 3 -->
    <div class="video-item">
      <div class="thumb">
        <div>[IMG: Runway show thumbnail]</div>
        <div class="duration">15:38</div>
      </div>
      <div class="content">
        <div class="title">FIRDAWS | FULL FASHION SHOW</div>
        <div class="meta">SERGEI SHUBENTSEV • 527K views • 6 years ago</div>
      </div>
      <div class="checkbox"></div>
    </div>

    <!-- Item 4 -->
    <div class="video-item">
      <div class="thumb">
        <div>[IMG: Traditional fashion thumbnail]</div>
        <div class="duration">1:11</div>
      </div>
      <div class="content">
        <div class="title">Arabic makeup/Arabic Jewellery /hairstyle /arabic dr...</div>
        <div class="meta">fashion trend minsha • 2.9K views • 1 year ago</div>
      </div>
      <div class="checkbox"></div>
    </div>

    <!-- Item 5 -->
    <div class="video-item">
      <div class="thumb vevo">
        <div>[IMG: Stage performance thumbnail]</div>
        <div class="duration">4:31</div>
      </div>
      <div class="content">
        <div class="title">Maria Callas - H...</div>
        <div class="meta">Classical music channel • 9.7M views • 5 years ago</div>
      </div>
      <div class="checkbox"></div>
    </div>

    <!-- Item 6 -->
    <div class="video-item">
      <div class="thumb">
        <div>[IMG: Home video thumbnail]</div>
        <div class="duration">1:01</div>
      </div>
      <div class="content">
        <div class="title">Crazy challenge at home</div>
        <div class="meta">DesSoFunny • 9.5M views • 3 weeks ago</div>
      </div>
      <div class="checkbox"></div>
    </div>

    <!-- Item 7 -->
    <div class="video-item">
      <div class="thumb">
        <div>[IMG: News short thumbnail]</div>
        <div class="duration">0:25</div>
      </div>
      <div class="content">
        <div class="title">Toddler goes into denial when mom tells her it’s Football Satu...</div>
        <div class="meta">Majically News • 23M views • 9 months ago</div>
      </div>
      <div class="checkbox"></div>
    </div>

    <!-- Item 8 -->
    <div class="video-item">
      <div class="thumb">
        <div>[IMG: Duet performance thumbnail]</div>
        <div class="duration">5:06</div>
      </div>
      <div class="content">
        <div class="title">Luciano Pavarotti & Celine Dion - I Hate You Then I Love You</div>
        <div class="meta">glennSuperdude • 29M views • 10 years ago</div>
      </div>
      <div class="checkbox"></div>
    </div>

    <!-- Item 9 -->
    <div class="video-item">
      <div class="thumb vevo">
        <div>[IMG: Live concert thumbnail]</div>
        <div class="duration">3:19</div>
      </div>
      <div class="content">
        <div class="title">Luciano Pavarotti, Bryan Adams - 'O Sole Mio (Live)</div>
        <div class="meta">Luciano Pavarotti • 3.9M views • 4 years ago</div>
      </div>
      <div class="checkbox"></div>
    </div>

  </div>

  <!-- Floating mini player -->
  <div class="mini-player">
    <div class="img">[IMG: Mini player preview]</div>
  </div>

  <!-- Bottom scrubber hint -->
  <div class="scrubber"></div>

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