body { margin: 0; background: black; color: #39ff14; font-family: monospace; text-align: center; } .title { margin-top: 20px; font-size: 40px; letter-spacing: 4px; } .subtitle { opacity: 0.7; margin-bottom: 30px; } .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; max-width: 900px; margin: auto; } .game { border: 2px solid #39ff14; padding: 15px; text-decoration: none; color: #39ff14; transition: 0.2s; } .game:hover { background: #062006; transform: scale(1.05); } .locked { opacity: 0.4; } .coin { margin-top: 10px; font-size: 12px; opacity: 0.7; } .panel { margin: 20px auto; display: flex; justify-content: center; gap: 20px; } .buttons button { background: black; color: #39ff14; border: 1px solid #39ff14; padding: 10px; margin: 5px; cursor: pointer; } .buttons button:hover { background: #0a2f0a; } .log { margin-top: 20px; width: 60%; margin-left: auto; margin-right: auto; border: 1px solid #39ff14; height: 120px; overflow: hidden; padding: 10px; text-align: left; }