-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
244 lines (219 loc) · 8.41 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Play Incredibox Abgerny online! Create unique beats, mix music, and join the community in this interactive music creation game inspired by Incredibox Sprunki.">
<meta name="robots" content="index, follow">
<title>Incredibox Abgerny - Create Your Own Musical Masterpiece</title>
<link rel="preconnect" href="https://c.abgerny.com">
<!-- Microsoft Clarity Tracking Code -->
<script type="text/javascript">
(function(c,l,a,r,i,t,y){
c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)};
t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i;
y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y);
})(window, document, "clarity", "script", "p21z517n3k");
</script>
<!-- Inline critical CSS for faster render -->
<style>
/* Modern CSS Reset */
*,::before,::after{box-sizing:border-box;margin:0;padding:0}
html{-webkit-text-size-adjust:100%}
body{line-height:1.5;-webkit-font-smoothing:antialiased}
img,picture,video,canvas,svg{display:block;max-width:100%}
/* Core Styles */
:root {
--primary: #6366f1;
--secondary: #4f46e5;
--text: #1f2937;
--bg: #ffffff;
--bg-alt: #f3f4f6;
}
body {
font-family: system-ui, -apple-system, sans-serif;
color: var(--text);
background: var(--bg);
}
.container {
width: min(100% - 2rem, 1200px);
margin-inline: auto;
}
/* Header */
.header {
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: #fff;
padding: clamp(2rem, 5vw, 4rem) 0;
text-align: center;
}
/* Typography */
h1 {
font-size: clamp(2rem, 5vw, 3rem);
line-height: 1.2;
margin-bottom: 1rem;
}
h2 {
font-size: clamp(1.5rem, 3vw, 2.25rem);
color: var(--primary);
margin-bottom: 1.5rem;
}
h3 {
font-size: clamp(1.25rem, 2vw, 1.5rem);
color: var(--secondary);
margin-bottom: 1rem;
}
/* Game Container */
.game-wrapper {
background: var(--bg-alt);
border-radius: 0.5rem;
padding: 1rem;
margin: 2rem 0;
}
.game-container {
position: relative;
width: 100%;
padding-bottom: 56.25%;
height: 0;
overflow: hidden;
background: var(--bg);
border-radius: 0.5rem;
box-shadow: 0 2px 4px rgb(0 0 0 / 10%);
}
.game-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: 0;
}
/* Features Grid */
.features {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
gap: 1.5rem;
margin: 2rem 0;
}
.feature-card {
background: var(--bg);
padding: 1.5rem;
border-radius: 0.5rem;
box-shadow: 0 2px 4px rgb(0 0 0 / 10%);
}
/* Sections */
.section {
padding: clamp(2rem, 5vw, 4rem) 0;
text-align: center;
}
/* Footer */
.footer {
background: var(--bg-alt);
padding: 2rem 0;
text-align: center;
margin-top: 2rem;
}
/* Utilities */
.visually-hidden {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0,0,0,0);
border: 0;
}
@media (prefers-reduced-motion: reduce) {
* {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
scroll-behavior: auto !important;
}
}
</style>
</head>
<body>
<header class="header">
<div class="container">
<h1>Welcome to Incredibox Abgerny</h1>
<p>Unleash your musical creativity in this interactive beat-making adventure</p>
</div>
</header>
<main>
<section class="section container">
<h2>Experience Incredibox Abgerny Online</h2>
<div class="game-wrapper">
<div class="game-container">
<iframe
src="https://c.abgerny.com/game/abgerny/index.html"
title="Play Incredibox Abgerny"
loading="lazy"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen>
</iframe>
</div>
</div>
</section>
<section class="section container">
<h2>About Incredibox Abgerny</h2>
<p>Incredibox Abgerny is an innovative music creation game that builds upon the beloved Incredibox Sprunki genre. This interactive platform allows players to explore the world of music creation through an engaging and intuitive interface.</p>
<div class="features">
<div class="feature-card">
<h3>Unique Gameplay</h3>
<p>Discover hidden sounds and effects by scratching the surface, creating your own unique musical compositions with quirky and charming characters.</p>
</div>
<div class="feature-card">
<h3>Creative Freedom</h3>
<p>Mix beats, add effects, and craft your own musical masterpieces with complete creative control over your musical journey.</p>
</div>
<div class="feature-card">
<h3>Vibrant Community</h3>
<p>Join a diverse community of music enthusiasts who share their creations and inspire each other in the Incredibox Abgerny universe.</p>
</div>
</div>
</section>
<section class="section container">
<h2>How to Play</h2>
<div class="features">
<div class="feature-card">
<h3>Getting Started</h3>
<p>Select your character and begin exploring the unique sounds each one brings to your creation.</p>
</div>
<div class="feature-card">
<h3>Creating Music</h3>
<p>Use intuitive scratch mechanics to reveal hidden sounds. Drag and drop elements to build layers of beats and melodies.</p>
</div>
<div class="feature-card">
<h3>Advanced Techniques</h3>
<p>Master timing and layering to create complex arrangements. Use effects strategically to enhance your compositions.</p>
</div>
</div>
</section>
</main>
<footer class="footer">
<div class="container">
<p>© <script>document.write(new Date().getFullYear())</script> Incredibox Abgerny. All rights reserved.</p>
</div>
</footer>
<!-- Minimal JavaScript, loaded at end of document -->
<script>
document.addEventListener('DOMContentLoaded', () => {
// Add intersection observer for lazy loading
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('visible');
observer.unobserve(entry.target);
}
});
}, {
threshold: 0.1
});
document.querySelectorAll('.feature-card').forEach(card => {
observer.observe(card);
});
});
</script>
</body>
</html>