:root { --bg: #1a1a1a; --text: #4caf50; }
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Outfit', sans-serif; background: var(--bg); color: var(--text); min-height: 100vh; display: flex;
    flex-direction: column; justify-content: flex-start; align-items: center; }
.game-container { width: 100%; max-width: 400px; padding: 1rem; display: flex; flex-direction: column; align-items: center; position: relative;}
header { width: 100%; display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.back-btn { text-decoration: none; background: #ffb300; color: white; padding: 10px 20px; border-radius: 20px; font-weight: bold; box-shadow: 0 4px 0 #ff8f00; }
.back-btn:active { transform: translateY(4px); box-shadow: 0 0 0; }
h1 { font-size: 2rem; color: #f57f17; text-shadow: 2px 2px 0 #000; }

.canvas-area { background: #2a2a2a; padding: 10px; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); margin-bottom: 2rem;}
.grid { display: grid; grid-template-columns: repeat(5, 50px); grid-template-rows: repeat(5, 50px); gap: 2px; background: #e0e0e0; border: 2px solid #e0e0e0;}
.pixel { background: white; display: flex; justify-content: center; align-items: center; font-size: 1.2rem; font-weight: bold; color: #9e9e9e; cursor: pointer; user-select: none; transition: transform 0.1s;}
.pixel:active { transform: scale(0.9); }

.palette { display: flex; gap: 1rem; }
.color-btn { width: 60px; height: 60px; border-radius: 50%; border: 4px solid white; box-shadow: 0 4px 10px rgba(0,0,0,0.2); font-size: 1.5rem; font-weight: bold; color: white; cursor: pointer; transition: transform 0.2s; text-shadow: 1px 1px 0 #000; }
.color-btn.active { transform: scale(1.2); border-color: #fff; }

.overlay { position: absolute; inset: 0; background: rgba(30,30,30,0.95); display: flex; flex-direction: column; justify-content: center; align-items: center; z-index: 10; border-radius: 20px; }
.overlay h2 { font-size: 2.5rem; color: #ffeb3b; text-shadow: 2px 2px 0 #f57f17; margin-bottom: 1rem; text-align: center;}
.btn { background: #ff9800; border: none; padding: 15px 40px; font-size: 1.5rem; font-weight: 900; border-radius: 50px; cursor: pointer; color: white; font-family: 'Outfit'; box-shadow: 0 5px 0 #f57c00; }
