Wiiware Collection By Ghostware -
.sub margin-bottom: 2rem; font-style: italic; color: #8db4e0; display: flex; gap: 1rem; flex-wrap: wrap; justify-content: space-between;
/* Wii-style widescreen container */ .collection-container max-width: 1200px; margin: 0 auto; background: rgba(0, 0, 0, 0.55); backdrop-filter: blur(3px); border-radius: 48px; padding: 1.5rem; box-shadow: 0 20px 40px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.1); border: 1px solid rgba(90, 180, 255, 0.3);
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); ); wiiware collection by ghostware
/* wiiware grid */ .game-grid display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.8rem; margin: 2rem 0;
.modal-desc margin: 1rem 0; line-height: 1.4; .sub margin-bottom: 2rem
.ghost-tag font-family: monospace; background: #0f212e; padding: 0.3rem 1rem; border-radius: 60px; font-size: 0.9rem; border-left: 3px solid #6aa9ff;
<!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; margin: 0 auto
<div class="collection-container"> <div class="brand"> <h1>👻 WIIWARE COLLECTION</h1> <div class="ghost-tag">by GHOSTWARE ⚡</div> </div> <div class="sub"> <span>📀 12 forgotten classics • 2008–2012 revival</span> <span>🎮 Wii Remote compatible • Ghostware archives</span> </div>
const gameGrid = document.getElementById('gameGrid'); const modal = document.getElementById('gameModal'); const modalTitle = document.getElementById('modalTitle'); const modalDesc = document.getElementById('modalDesc'); const modalSize = document.getElementById('modalSize'); const modalIconSpan = document.getElementById('modalIcon');
/* wiiware style icon mockup */ .game-icon width: 110px; height: 110px; margin: 0 auto 1rem; background: linear-gradient(145deg, #1e2a36, #0c141f); border-radius: 28px; display: flex; align-items: center; justify-content: center; font-size: 3.2rem; box-shadow: inset 0 2px 5px rgba(0,0,0,0.6), 0 5px 12px black; border: 1px solid #2f6080; transition: 0.1s linear;
function openModal(id) $game.genre