MatteoScript commited on
Commit
8bca7fc
·
verified ·
1 Parent(s): 8bc753a

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +69 -0
index.html CHANGED
@@ -328,6 +328,75 @@
328
  </div>
329
  </section>
330
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
331
  <!-- MISSING LINK SECTION & CODE BLOCK -->
332
  <section class="px-6 py-24 relative z-10 bg-black/60 backdrop-blur-md border-y border-[#333]">
333
  <div class="max-w-3xl mx-auto reveal-on-scroll">
 
328
  </div>
329
  </section>
330
 
331
+ <section class="px-6 py-24 relative z-10 bg-black/40 backdrop-blur-sm border-t border-[#333]">
332
+ <div class="max-w-5xl mx-auto reveal-on-scroll">
333
+
334
+ <div class="text-center mb-8 md:mb-12">
335
+ <h2 class="font-serif text-3xl md:text-4xl font-bold mb-4">
336
+ Innovation <span class="text-[#00ff41]">Run</span>
337
+ </h2>
338
+ <p class="font-mono text-xs md:text-sm opacity-70 max-w-lg mx-auto">
339
+ // <span class="text-[#00ff41]">Mission:</span> Crea un PoC visionario omnichannel
340
+ </p>
341
+ </div>
342
+
343
+ <div id="game-monitor" class="relative w-full aspect-square md:aspect-[21/9] rounded-xl overflow-hidden border-2 border-[#00ff41] shadow-[0_0_40px_rgba(0,255,65,0.15)] bg-black group transition-all hover:shadow-[0_0_60px_rgba(0,255,65,0.25)]">
344
+
345
+ <div class="absolute top-0 left-0 w-full h-8 bg-[#0a0a0a] border-b border-[#00ff41]/50 flex items-center justify-between px-4 z-20 select-none pointer-events-none">
346
+ <div class="flex items-center gap-2">
347
+ <div class="w-2 h-2 rounded-full bg-[#00ff41] animate-pulse"></div>
348
+ <span class="text-[10px] font-mono text-[#00ff41] tracking-wider">LIVE_EXECUTION</span>
349
+ </div>
350
+ <span class="text-[10px] font-mono text-[#00ff41]/50">./play.html</span>
351
+ </div>
352
+
353
+ <div id="game-overlay" class="absolute inset-0 z-30 bg-black/80 flex flex-col items-center justify-center cursor-pointer backdrop-blur-sm transition-opacity duration-500" onclick="activateGame()">
354
+ <div class="w-16 h-16 rounded-full border-2 border-[#00ff41] flex items-center justify-center mb-4 animate-pulse shadow-[0_0_20px_#00ff41]">
355
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24" fill="#00ff41" stroke="none"><polygon points="5 3 19 12 5 21 5 3"></polygon></svg>
356
+ </div>
357
+ <p class="text-[#00ff41] font-mono text-xs md:text-sm tracking-widest uppercase font-bold">
358
+ TAP TO INITIALIZE
359
+ </p>
360
+ </div>
361
+
362
+ <iframe
363
+ id="game-iframe"
364
+ src="./play.html"
365
+ class="w-full h-full pt-8 bg-black"
366
+ frameborder="0"
367
+ scrolling="no"
368
+ loading="lazy"
369
+ style="touch-action: none;"
370
+ title="Innovation Run Game">
371
+ </iframe>
372
+
373
+ <div class="absolute inset-0 pointer-events-none z-10 bg-[linear-gradient(rgba(18,16,16,0)_50%,rgba(0,0,0,0.1)_50%),linear-gradient(90deg,rgba(255,0,0,0.03),rgba(0,255,0,0.01),rgba(0,0,255,0.03))] bg-[length:100%_2px,3px_100%] opacity-50"></div>
374
+ </div>
375
+
376
+ <div class="mt-4 flex justify-between items-center px-2">
377
+ <p class="text-[10px] text-[#00ff41]/50 font-mono">
378
+ [VERTICAL MODE OPTIMIZED]
379
+ </p>
380
+ <div class="flex gap-4 text-[10px] text-[#00ff41]/50 font-mono">
381
+ <span>INPUT: TAP SCREEN</span>
382
+ <span>STATUS: READY</span>
383
+ </div>
384
+ </div>
385
+
386
+ </div>
387
+ </section>
388
+
389
+ <script>
390
+ function activateGame() {
391
+ const overlay = document.getElementById('game-overlay');
392
+ const iframe = document.getElementById('game-iframe');
393
+ overlay.style.opacity = '0';
394
+ setTimeout(() => overlay.style.display = 'none', 500);
395
+ iframe.contentWindow.focus();
396
+ console.log("Game Activated: Focus transferred");
397
+ }
398
+ </script>
399
+
400
  <!-- MISSING LINK SECTION & CODE BLOCK -->
401
  <section class="px-6 py-24 relative z-10 bg-black/60 backdrop-blur-md border-y border-[#333]">
402
  <div class="max-w-3xl mx-auto reveal-on-scroll">