File size: 10,376 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Audio Player UI Mock</title>
<style>
  body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
  #render-target {
    width: 1080px;
    height: 2400px;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border-radius: 0;
    box-shadow: none;
  }

  /* Top App Bar / Header */
  .app-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 1080px;
    height: 360px;
    background: #0B79D0;
    color: #fff;
  }
  .status-bar {
    height: 90px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 34px;
    opacity: 0.95;
  }
  .status-right {
    display: flex;
    align-items: center;
    gap: 28px;
  }
  .header-content {
    padding: 20px 36px;
  }
  .header-title {
    font-size: 78px;
    font-weight: 600;
    margin-top: 20px;
  }
  .header-actions {
    position: absolute;
    right: 24px;
    top: 160px;
    display: flex;
    gap: 36px;
  }
  .icon-btn {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .tabs {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 1080px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    color: #e3f2fd;
    letter-spacing: 2px;
    font-size: 36px;
  }
  .tab-active {
    color: #ffffff;
    font-weight: 600;
  }

  /* Ad carousel */
  .ad-strip {
    position: absolute;
    top: 360px;
    left: 0;
    width: 1080px;
    height: 160px;
    background: #f7f7f7;
    border-top: 6px solid rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 14px;
  }
  .ad-item {
    width: 160px;
    height: 130px;
    background: #E0E0E0;
    border: 1px solid #BDBDBD;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #757575;
    border-radius: 10px;
    position: relative;
    font-size: 26px;
  }
  .price-tag {
    position: absolute;
    bottom: -6px;
    right: 8px;
    background: rgba(0,0,0,0.65);
    color: #fff;
    font-size: 26px;
    padding: 6px 10px;
    border-radius: 18px;
  }

  /* Audio file card */
  .file-card {
    position: absolute;
    top: 520px;
    left: 0;
    width: 1080px;
    height: 260px;
    background: #1565D8;
    color: #fff;
    display: flex;
    flex-direction: column;
    padding: 26px 34px;
    box-sizing: border-box;
  }
  .file-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .file-title {
    font-size: 46px;
    font-weight: 600;
    line-height: 1.3;
    max-width: 760px;
  }
  .file-meta-right {
    text-align: right;
    font-size: 34px;
    line-height: 1.2;
  }
  .file-sub {
    margin-top: 12px;
    font-size: 30px;
    opacity: 0.95;
  }
  .file-actions {
    margin-top: 28px;
    display: flex;
    gap: 34px;
    align-items: center;
  }
  .file-actions .icon-btn {
    width: 64px;
    height: 64px;
  }

  /* Main white area */
  .content {
    position: absolute;
    top: 780px;
    left: 0;
    width: 1080px;
    height: 1300px;
    background: #ffffff;
  }

  /* Bottom player */
  .player {
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 1080px;
    height: 320px;
    background: #0B79D0;
    color: #fff;
    box-sizing: border-box;
    padding: 24px 36px;
  }
  .progress-row {
    display: flex;
    align-items: center;
    gap: 24px;
  }
  .time-pill {
    border: 3px solid #ffffff;
    border-radius: 14px;
    padding: 6px 18px;
    font-size: 36px;
    font-weight: 600;
  }
  .progress-track {
    position: relative;
    height: 10px;
    background: rgba(255,255,255,0.5);
    flex: 1;
    border-radius: 8px;
    margin: 0 6px;
  }
  .progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 10px;
    width: 12%;
    background: #ffffff;
    border-radius: 8px;
  }
  .progress-thumb {
    position: absolute;
    left: 12%;
    top: -6px;
    width: 28px;
    height: 28px;
    background: #ffffff;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.9);
  }
  .time-total {
    font-size: 36px;
    font-weight: 600;
  }
  .controls {
    margin-top: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
  }
  .big-play {
    width: 160px;
    height: 160px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .dimmed {
    opacity: 0.6;
  }
  .speed {
    font-size: 44px;
    font-weight: 600;
  }

  /* Bottom navigation handle */
  .nav-handle {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 12px;
    background: #9e9e9e;
    border-radius: 12px;
  }
</style>
</head>
<body>
<div id="render-target">

  <div class="app-header">
    <div class="status-bar">
      <div>2:31</div>
      <div class="status-right">
        <!-- simple status icons -->
        <svg width="40" height="32"><rect x="2" y="10" width="36" height="12" fill="#fff"/></svg>
        <svg width="42" height="32"><rect x="6" y="6" width="30" height="20" fill="none" stroke="#fff" stroke-width="3"/><rect x="29" y="10" width="8" height="12" fill="#fff"/></svg>
      </div>
    </div>

    <div class="header-content">
      <div class="header-title">Playback paused</div>
      <div class="header-actions">
        <div class="icon-btn">
          <!-- search icon -->
          <svg width="48" height="48" viewBox="0 0 24 24" fill="none">
            <circle cx="10" cy="10" r="6" stroke="#fff" stroke-width="2"></circle>
            <line x1="14.5" y1="14.5" x2="20" y2="20" stroke="#fff" stroke-width="2"></line>
          </svg>
        </div>
        <div class="icon-btn">
          <!-- list/sort icon -->
          <svg width="48" height="48" viewBox="0 0 24 24">
            <rect x="4" y="6" width="14" height="2" fill="#fff"></rect>
            <rect x="4" y="11" width="18" height="2" fill="#fff"></rect>
            <rect x="4" y="16" width="10" height="2" fill="#fff"></rect>
          </svg>
        </div>
      </div>
    </div>

    <div class="tabs">
      <div>RECORD</div>
      <div class="tab-active">LISTEN</div>
    </div>
  </div>

  <!-- Ad carousel placeholders -->
  <div class="ad-strip">
    <div class="ad-item">[IMG: App Icon]</div>
    <div class="ad-item">[IMG: Microwave]<div class="price-tag">₹436</div></div>
    <div class="ad-item">[IMG: Chair]<div class="price-tag">₹108</div></div>
    <div class="ad-item">[IMG: Landscape]<div class="price-tag">₹543</div></div>
    <div class="ad-item">[IMG: Smart TV]<div class="price-tag">₹1,126</div></div>
    <div class="ad-item">[IMG: Cabinet]<div class="price-tag">₹108</div></div>
    <div class="ad-item">[IMG: Sofa]<div class="price-tag">₹326</div></div>
  </div>

  <!-- File card -->
  <div class="file-card">
    <div class="file-top">
      <div class="file-title">renewable energy lecture practice.m4a</div>
      <div class="file-meta-right">
        <div>01:35</div>
        <div style="opacity:0.9; font-size:28px; margin-top:6px;">1.1 MB</div>
      </div>
    </div>
    <div class="file-sub">November 22, 11:28 AM</div>
    <div class="file-actions">
      <div class="icon-btn">
        <!-- share icon -->
        <svg width="48" height="48" viewBox="0 0 24 24">
          <circle cx="6" cy="12" r="3" fill="#fff"></circle>
          <circle cx="18" cy="6" r="3" fill="#fff"></circle>
          <circle cx="18" cy="18" r="3" fill="#fff"></circle>
          <path d="M9 12 L15 7" stroke="#fff" stroke-width="2" fill="none"></path>
          <path d="M9 12 L15 17" stroke="#fff" stroke-width="2" fill="none"></path>
        </svg>
      </div>
      <div class="icon-btn">
        <!-- delete icon -->
        <svg width="48" height="48" viewBox="0 0 24 24">
          <rect x="7" y="9" width="10" height="10" fill="#fff"></rect>
          <rect x="9" y="5" width="6" height="3" fill="#fff"></rect>
          <rect x="5" y="7" width="14" height="2" fill="#fff"></rect>
        </svg>
      </div>
      <div class="icon-btn">
        <!-- edit icon -->
        <svg width="48" height="48" viewBox="0 0 24 24">
          <path d="M4 16 L4 20 L8 20 L18 10 L14 6 Z" fill="#fff"></path>
        </svg>
      </div>
      <div class="icon-btn">
        <!-- more/overflow icon -->
        <svg width="48" height="48" viewBox="0 0 24 24">
          <circle cx="12" cy="6" r="2" fill="#fff"></circle>
          <circle cx="12" cy="12" r="2" fill="#fff"></circle>
          <circle cx="12" cy="18" r="2" fill="#fff"></circle>
        </svg>
      </div>
    </div>
  </div>

  <!-- Main empty content -->
  <div class="content"></div>

  <!-- Bottom player -->
  <div class="player">
    <div class="progress-row">
      <div class="time-pill">00:05</div>
      <div class="progress-track">
        <div class="progress-fill"></div>
        <div class="progress-thumb"></div>
      </div>
      <div class="time-total">01:35</div>
    </div>

    <div class="controls">
      <div class="icon-btn dimmed">
        <!-- repeat icon -->
        <svg width="64" height="64" viewBox="0 0 24 24">
          <path d="M7 7 H16 L14 5 M7 17 H16 L18 19" stroke="#fff" stroke-width="2" fill="none"></path>
        </svg>
      </div>

      <div class="icon-btn">
        <!-- rewind icon -->
        <svg width="64" height="64" viewBox="0 0 24 24">
          <polygon points="12,6 4,12 12,18" fill="#fff"></polygon>
          <polygon points="22,6 14,12 22,18" fill="#fff"></polygon>
        </svg>
      </div>

      <div class="big-play">
        <!-- play triangle -->
        <svg width="90" height="90" viewBox="0 0 24 24">
          <polygon points="8,6 20,12 8,18" fill="#0B79D0"></polygon>
        </svg>
      </div>

      <div class="icon-btn">
        <!-- forward icon -->
        <svg width="64" height="64" viewBox="0 0 24 24">
          <polygon points="12,6 20,12 12,18" fill="#fff"></polygon>
          <polygon points="2,6 10,12 2,18" fill="#fff"></polygon>
        </svg>
      </div>

      <div class="speed">1x</div>
    </div>
  </div>

  <div class="nav-handle"></div>

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