File size: 6,651 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Artwork Detail UI</title>
<style>
  body { margin: 0; padding: 0; background: transparent; }
  #render-target {
    width: 1080px;
    height: 2400px;
    position: relative;
    overflow: hidden;
    background: #111;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
    color: #fff;
  }
  .topbar {
    height: 120px;
    padding: 0 32px;
    display: flex;
    align-items: center;
  }
  .icon-btn {
    width: 64px;
    height: 64px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
  }
  .hero {
    width: 100%;
    height: 780px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
  }
  .img-placeholder {
    width: 960px;
    height: 620px;
    background: #E0E0E0;
    border: 1px solid #BDBDBD;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #757575;
    font-size: 34px;
  }
  .content {
    padding: 32px 48px 0 48px;
  }
  .title {
    font-size: 46px;
    line-height: 1.28;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 24px;
  }
  .actions {
    display: flex;
    align-items: center;
    gap: 64px;
    margin: 10px 0 8px 0;
  }
  .count {
    font-size: 30px;
    color: #BDBDBD;
    margin-left: 160px; /* positions the count under the second icon */
  }
  .divider {
    height: 1px;
    background: #2A2A2A;
    margin: 24px 0;
  }
  .author-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .author-left {
    display: flex;
    align-items: center;
    gap: 24px;
  }
  .avatar {
    width: 84px;
    height: 84px;
    border-radius: 16px;
    background: #E0E0E0;
    border: 1px solid #BDBDBD;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #757575;
    font-size: 24px;
  }
  .author-name {
    font-size: 38px;
    font-weight: 600;
  }
  .follow-btn {
    background: #E9D8FF;
    color: #2D2D2D;
    font-weight: 600;
    padding: 18px 30px;
    border-radius: 24px;
    font-size: 32px;
  }
  .meta {
    font-size: 30px;
    color: #9E9E9E;
    margin-top: 16px;
  }
  .section-title {
    font-size: 44px;
    font-weight: 700;
    margin: 40px 0 24px 0;
  }
  .recommendation {
    display: flex;
    align-items: flex-start;
    gap: 28px;
  }
  .thumb {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 32px;
    overflow: hidden;
    background: #E0E0E0;
    border: 1px solid #BDBDBD;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #757575;
    font-size: 30px;
  }
  .duration {
    position: absolute;
    left: 18px;
    bottom: 18px;
    background: rgba(0,0,0,0.75);
    color: #fff;
    font-size: 26px;
    padding: 8px 12px;
    border-radius: 12px;
  }
  .rec-texts {
    margin-top: 6px;
    flex: 1;
  }
  .rec-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 8px;
  }
  .rec-sub {
    font-size: 32px;
    color: #9E9E9E;
  }
  .home-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    width: 360px;
    height: 12px;
    background: #fff;
    border-radius: 8px;
    opacity: 0.9;
  }
  /* Simple icon styling */
  svg { display: block; }
  .flag-icon path.flag-fill { fill: #FF5252; stroke: #FF5252; }
</style>
</head>
<body>
<div id="render-target">
  <div class="topbar">
    <div class="icon-btn" aria-label="Back">
      <svg width="48" height="48" viewBox="0 0 48 48">
        <path d="M28 10 L16 24 L28 38" stroke="#fff" stroke-width="4" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
      </svg>
    </div>
  </div>

  <div class="hero">
    <div class="img-placeholder">[IMG: Abstract Painting Artwork]</div>
  </div>

  <div class="content">
    <div class="title">Maria CALLAS - Casta Diva 1958 - by Guseppe INFANTINO</div>

    <div class="actions">
      <div class="icon-btn" aria-label="Like">
        <svg width="56" height="56" viewBox="0 0 56 56">
          <path d="M28 48s-16-10-22-18c-6-8 0-20 10-20 6 0 10 4 12 8 2-4 6-8 12-8 10 0 16 12 10 20-6 8-22 18-22 18z" fill="none" stroke="#fff" stroke-width="3" stroke-linejoin="round"/>
        </svg>
      </div>
      <div class="icon-btn" aria-label="Save">
        <svg width="56" height="56" viewBox="0 0 56 56">
          <path d="M18 8h20v34l-10-7-10 7z" fill="none" stroke="#fff" stroke-width="3" stroke-linejoin="round"/>
        </svg>
      </div>
      <div class="icon-btn" aria-label="Download">
        <svg width="56" height="56" viewBox="0 0 56 56">
          <path d="M28 8v22" stroke="#fff" stroke-width="3" stroke-linecap="round"/>
          <path d="M18 22l10 10 10-10" fill="none" stroke="#fff" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
          <rect x="14" y="40" width="28" height="6" rx="3" fill="#fff"/>
        </svg>
      </div>
      <div class="icon-btn" aria-label="Share">
        <svg width="56" height="56" viewBox="0 0 56 56">
          <path d="M24 22h-12v22h28V34" fill="none" stroke="#fff" stroke-width="3" stroke-linejoin="round"/>
          <path d="M28 12l14 14-14 14" fill="none" stroke="#fff" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
        </svg>
      </div>
      <div class="icon-btn flag-icon" aria-label="Report">
        <svg width="56" height="56" viewBox="0 0 56 56">
          <path d="M14 8v40" stroke="#FF5252" stroke-width="3" stroke-linecap="round"/>
          <path class="flag-fill" d="M14 10h24l-6 8 6 8H14z"/>
        </svg>
      </div>
    </div>
    <div class="count">1</div>

    <div class="divider"></div>

    <div class="author-row">
      <div class="author-left">
        <div class="avatar">[IMG: User Avatar]</div>
        <div class="author-name">Giuseppe Infantino</div>
      </div>
      <div class="follow-btn">Following</div>
    </div>
    <div class="meta">12 years ago · opere di Giuseppe INFANTINO</div>

    <div class="section-title">Recommendations</div>

    <div class="recommendation">
      <div class="thumb">
        [IMG: Parrot Photo]
        <div class="duration">05:49</div>
      </div>
      <div class="rec-texts">
        <div class="rec-title">PERU' - INTI ILLIMANI - BY GIUSEPPE INFANTINO</div>
        <div class="rec-sub">Giuseppe Infantino</div>
      </div>
    </div>
  </div>

  <div class="home-indicator"></div>
</div>
</body>
</html>