File size: 9,201 Bytes
fa881a6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, height=2400, initial-scale=1.0">
<title>DMart Ready Splash</title>
<style>
  body { margin: 0; padding: 0; background: transparent; }
  #render-target {
    position: relative;
    width: 1080px;
    height: 2400px;
    overflow: hidden;
    background:
      repeating-linear-gradient(45deg, rgba(0,0,0,0.06) 0px, rgba(0,0,0,0.06) 1px, transparent 1px, transparent 240px),
      repeating-linear-gradient(-45deg, rgba(0,0,0,0.06) 0px, rgba(0,0,0,0.06) 1px, transparent 1px, transparent 240px),
      #ffffff;
  }
  .icon {
    position: absolute;
    width: 160px;
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.9;
  }
  .icon svg { width: 120px; height: 120px; fill: none; stroke-width: 8; }
  .c-green { --c:#177a57; }
  .c-orange { --c:#f5a37d; }
  .c-purple { --c:#a78be0; }
  .c-pink { --c:#f5a0a8; }
  .c-teal { --c:#68c9bb; }
  .c-blue { --c:#59aaf5; }
  .c-lime { --c:#b9c77a; }
  .c-gold { --c:#e3b25e; }
  .c-gray { --c:#a8a8a8; }

  /* Central brand */
  .brand {
    position: absolute;
    top: 920px;
    left: 80px;
    width: 920px;
    text-align: center;
  }
  .logo-row {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
  }
  .word {
    font-family: Georgia, "Times New Roman", serif;
    color: #146c50;
    line-height: 1;
  }
  .word.d { font-size: 180px; font-weight: 700; }
  .word.mart { font-size: 180px; font-weight: 700; }
  .tree {
    width: 170px; height: 170px;
  }
  .ready-row {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
  }
  .stripe {
    width: 160px;
    height: 12px;
    background: #f1563f;
    border-radius: 6px;
    box-shadow: 0 18px 0 0 #f1563f, 0 36px 0 0 #f1563f;
  }
  .ready {
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: 140px;
    color: #f1563f;
    font-style: italic;
    font-weight: 700;
    letter-spacing: 2px;
  }

  /* Bottom iOS style home indicator */
  .bottom-bar {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 1080px;
    height: 90px;
    background: #000;
  }
  .home-indicator {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 360px;
    height: 12px;
    background: #fff;
    border-radius: 8px;
    opacity: 0.9;
  }
</style>
</head>
<body>
<div id="render-target">

  <!-- Top scattered icons -->
  <div class="icon c-green" style="top:140px; left:290px;">
    <svg viewBox="0 0 120 120">
      <g stroke="var(--c)">
        <ellipse cx="40" cy="55" rx="18" ry="12"></ellipse>
        <ellipse cx="70" cy="48" rx="16" ry="10"></ellipse>
        <path d="M55 36 c10 -18 24 -18 30 -6" />
      </g>
    </svg>
  </div>

  <div class="icon c-pink" style="top:360px; left:80px;">
    <svg viewBox="0 0 120 120">
      <g stroke="var(--c)">
        <rect x="22" y="32" width="76" height="70" rx="22"></rect>
        <path d="M60 32 v-16 a16 16 0 0 0 -16 16" />
        <path d="M80 32 v-14 a14 14 0 0 1 10 14" />
      </g>
    </svg>
  </div>

  <div class="icon c-purple" style="top:220px; left:860px;">
    <svg viewBox="0 0 120 120">
      <g stroke="var(--c)">
        <rect x="18" y="52" width="74" height="40" rx="18"></rect>
        <circle cx="55" cy="42" r="8"></circle>
        <path d="M92 64 h16" />
      </g>
    </svg>
  </div>

  <div class="icon c-blue" style="top:180px; left:730px;">
    <svg viewBox="0 0 120 120">
      <g stroke="var(--c)">
        <polygon points="40,52 80,52 80,68 40,68"></polygon>
        <polygon points="28,60 40,52 40,68"></polygon>
        <polygon points="80,52 92,60 80,68"></polygon>
      </g>
    </svg>
  </div>

  <div class="icon c-green" style="top:640px; left:360px;">
    <svg viewBox="0 0 120 120">
      <g stroke="var(--c)">
        <rect x="36" y="32" width="36" height="68" rx="8"></rect>
        <rect x="44" y="18" width="20" height="16" rx="6"></rect>
      </g>
    </svg>
  </div>

  <div class="icon c-orange" style="top:560px; left:730px;">
    <svg viewBox="0 0 120 120">
      <g stroke="var(--c)">
        <rect x="28" y="34" width="64" height="14" rx="6"></rect>
        <rect x="42" y="48" width="38" height="38" rx="6"></rect>
        <path d="M28 34 l-16 16" />
      </g>
    </svg>
  </div>

  <div class="icon c-gray" style="top:720px; left:80px; opacity:0.5;">
    <svg viewBox="0 0 120 120">
      <g stroke="var(--c)">
        <rect x="34" y="44" width="52" height="46" rx="10"></rect>
        <rect x="44" y="28" width="32" height="16" rx="6"></rect>
      </g>
    </svg>
  </div>

  <div class="icon c-purple" style="top:760px; left:520px;">
    <svg viewBox="0 0 120 120">
      <g stroke="var(--c)">
        <rect x="30" y="36" width="44" height="54" rx="10"></rect>
        <path d="M74 50 c16 8 16 24 0 32" />
        <rect x="40" y="24" width="24" height="12" rx="4"></rect>
      </g>
    </svg>
  </div>

  <div class="icon c-purple" style="top:640px; left:900px;">
    <svg viewBox="0 0 120 120">
      <g stroke="var(--c)">
        <rect x="36" y="48" width="38" height="44" rx="8"></rect>
        <path d="M60 48 v-14 h20 l-10 8" />
        <path d="M80 34 h20" />
      </g>
    </svg>
  </div>

  <!-- Central brand -->
  <div class="brand">
    <div class="logo-row">
      <span class="word d">D</span>
      <svg class="tree" viewBox="0 0 170 170">
        <g stroke="#146c50" fill="none" stroke-width="10">
          <polygon points="25,140 85,20 145,140"></polygon>
          <line x1="45" y1="120" x2="125" y2="120"></line>
          <line x1="55" y1="100" x2="115" y2="100"></line>
          <line x1="65" y1="80" x2="105" y2="80"></line>
          <line x1="75" y1="60" x2="95" y2="60"></line>
          <path d="M85 10 l-8 -18 m8 18 l8 -18" stroke-linecap="round"></path>
        </g>
      </svg>
      <span class="word mart">Mart</span>
    </div>
    <div class="ready-row">
      <div class="stripe"></div>
      <div class="ready">ready</div>
    </div>
  </div>

  <!-- Lower scattered icons -->
  <div class="icon c-teal" style="top:1280px; left:100px;">
    <svg viewBox="0 0 120 120">
      <g stroke="var(--c)">
        <rect x="26" y="36" width="32" height="48" rx="8"></rect>
        <path d="M58 84 c20 8 32 0 36 -8" />
      </g>
    </svg>
  </div>

  <div class="icon c-gray" style="top:1380px; left:490px;">
    <svg viewBox="0 0 120 120">
      <g stroke="var(--c)">
        <path d="M36 70 h48 l-6 22 h-36 z"></path>
        <path d="M48 52 h24 v14 h-24 z"></path>
      </g>
    </svg>
  </div>

  <div class="icon c-gray" style="top:1460px; left:880px;">
    <svg viewBox="0 0 120 120">
      <g stroke="var(--c)" stroke-linecap="round">
        <circle cx="60" cy="60" r="10"></circle>
        <path d="M60 60 l40 -10"></path>
        <path d="M60 60 l-36 18"></path>
        <path d="M60 60 l0 -40"></path>
      </g>
    </svg>
  </div>

  <div class="icon c-purple" style="top:1550px; left:330px;">
    <svg viewBox="0 0 120 120">
      <g stroke="var(--c)">
        <rect x="36" y="40" width="44" height="56" rx="12"></rect>
        <path d="M60 40 v-16 h22" />
      </g>
    </svg>
  </div>

  <div class="icon c-green" style="top:1600px; left:740px;">
    <svg viewBox="0 0 120 120">
      <g stroke="var(--c)">
        <polygon points="40,36 88,52 76,92 28,76"></polygon>
        <circle cx="72" cy="58" r="4"></circle>
        <circle cx="62" cy="54" r="4"></circle>
        <circle cx="52" cy="50" r="4"></circle>
      </g>
    </svg>
  </div>

  <div class="icon c-orange" style="top:1680px; left:120px;">
    <svg viewBox="0 0 120 120">
      <g stroke="var(--c)">
        <rect x="22" y="48" width="32" height="44" rx="6"></rect>
        <rect x="56" y="34" width="42" height="58" rx="10"></rect>
      </g>
    </svg>
  </div>

  <div class="icon c-blue" style="top:1760px; left:460px;">
    <svg viewBox="0 0 120 120">
      <g stroke="var(--c)">
        <rect x="34" y="26" width="26" height="74" rx="10"></rect>
        <rect x="66" y="58" width="28" height="42" rx="8"></rect>
        <line x1="78" y1="58" x2="78" y2="46"></line>
      </g>
    </svg>
  </div>

  <div class="icon c-lime" style="top:1760px; left:860px;">
    <svg viewBox="0 0 120 120">
      <g stroke="var(--c)">
        <rect x="26" y="48" width="68" height="34" rx="18"></rect>
        <path d="M26 82 v12 h68 v-12" />
      </g>
    </svg>
  </div>

  <div class="icon c-teal" style="top:1950px; left:300px;">
    <svg viewBox="0 0 120 120">
      <g stroke="var(--c)">
        <rect x="30" y="40" width="60" height="54" rx="12"></rect>
        <rect x="40" y="26" width="40" height="14" rx="6"></rect>
      </g>
    </svg>
  </div>

  <div class="icon c-gold" style="top:2050px; left:830px;">
    <svg viewBox="0 0 120 120">
      <g stroke="var(--c)">
        <path d="M46 30 l28 52" />
        <path d="M46 30 c-18 24 -10 46 16 52" />
        <line x1="60" y1="76" x2="72" y2="90"></line>
      </g>
    </svg>
  </div>

  <!-- Bottom bar -->
  <div class="bottom-bar"></div>
  <div class="home-indicator"></div>
</div>
</body>
</html>