Wiiware Collection By Ghostware Apr 2026
function buildCards() gameGrid.innerHTML = ''; wiiwareGames.forEach(game => const card = document.createElement('div'); card.className = 'game-card'; card.setAttribute('data-id', game.id); card.innerHTML = ` <div class="game-icon">$game.icon</div> <div class="game-title">$game.title</div> <div class="game-dev">GHOSTWARE · $game.genre</div> <div class="size-badge">📦 $game.size</div> `; card.addEventListener('click', () => openModal(game.id)); gameGrid.appendChild(card); );
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no"> <title>Ghostware - WiiWare Collection</title> <style> * margin: 0; padding: 0; box-sizing: border-box; user-select: none; body background: radial-gradient(circle at 20% 30%, #0a0f1a, #03060c); font-family: 'Segoe UI', 'Courier New', monospace; color: #bfd9ff; min-height: 100vh; padding: 2rem 1rem;
<div class="game-grid" id="gameGrid"></div> <footer> ⚡ GHOSTWARE PRESERVATION PROJECT • EMULATED WIIWARE EXPERIENCE ⚡ </footer> </div> wiiware collection by ghostware
.modal-content background: #0f1822e6; max-width: 400px; width: 85%; padding: 2rem; border-radius: 48px; text-align: center; border: 1px solid #5699ff; box-shadow: 0 25px 35px black;
.sub margin-bottom: 2rem; font-style: italic; color: #8db4e0; display: flex; gap: 1rem; flex-wrap: wrap; justify-content: space-between; function buildCards() gameGrid
.size-badge background: #07121b; display: inline-block; padding: 0.2rem 0.7rem; border-radius: 40px; font-size: 0.7rem; margin-top: 0.6rem; color: #8cb3db;
<!-- Modal for game detail --> <div id="gameModal" class="modal"> <div class="modal-content"> <h2 id="modalTitle"></h2> <div id="modalIcon" style="font-size: 3rem; margin: 0.5rem;"></div> <p class="modal-desc" id="modalDesc"></p> <p><strong id="modalSize"></strong></p> <button class="close-modal" id="closeModalBtn">⟳ CLOSE</button> </div> </div> function buildCards() gameGrid.innerHTML = ''
h1 font-size: 2.8rem; letter-spacing: -1px; background: linear-gradient(135deg, #eef4ff, #7bb3ff); -webkit-background-clip: text; background-clip: text; color: transparent; text-shadow: 0 0 6px rgba(70,130,200,0.5);
/* header with ghostware identity */ .brand display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; border-bottom: 2px solid #2c5f8a; padding-bottom: 0.75rem; margin-bottom: 2rem;
.modal-content h2 font-size: 2rem; margin-bottom: 0.5rem;
.game-title font-weight: bold; font-size: 1.2rem; letter-spacing: -0.3px; margin: 0.5rem 0 0.2rem; color: #e1f0ff;