@import url('https://fonts.googleapis.com/css2?family=Bungee&family=Syne+Mono&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }
body { min-height: 100vh; background: #101408; font-family: 'Syne Mono', monospace; color: #b8c88a; user-select: none; }
#cg-app { min-height: 100vh; padding: 16px; position: relative; }
#cg-hud { max-width: 480px; margin: 0 auto 12px; display: flex; justify-content: space-between; font-size: 0.75rem; }
#cg-grid {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 2px;
  max-width: 480px; margin: 0 auto;
}
.cg-tile {
  aspect-ratio: 1; border: none; border-radius: 2px; cursor: default; font-size: 0.65rem;
  background: #0a0c06; color: transparent;
}
.cg-tile.revealed { background: #2a3420; color: #8a9a6a; }
.cg-tile.player { background: #4a6030; box-shadow: inset 0 0 0 2px #b8c88a; color: #e8f0c0; }
.cg-tile.treasure { background: #604010; color: #f0d880; }
.cg-tile.pit {
  background: #24301c;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.cg-tile.pit-fallen { background: #201010; }
.cg-pit-dot {
  width: 38%;
  height: 38%;
  min-width: 6px;
  min-height: 6px;
  border-radius: 50%;
  background: #050505;
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.08), 0 0 0 1px rgba(0,0,0,0.5);
  pointer-events: none;
}
.cg-tile.fog { color: #3a4030; }
.cg-tile.walkable {
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(184, 200, 138, 0.55);
}
.cg-tile.walkable.fog { background: #1a2210; color: #b8c88a; }
.cg-tile.walkable:hover { filter: brightness(1.15); }
.cg-screen { position: fixed; inset: 0; z-index: 20; display: none; flex-direction: column; align-items: center; justify-content: center; padding: 24px; text-align: center; background: rgba(6,8,4,0.96); }
.cg-screen.active { display: flex; }
.cg-credit { font-size: 0.65rem; letter-spacing: 0.35em; text-transform: uppercase; opacity: 0.7; margin-bottom: 12px; color: #c8a84b; }
h1 { font-family: 'Bungee', cursive; font-size: clamp(1.4rem, 5vw, 2.2rem); color: #d8e8a0; margin-bottom: 12px; }
.cg-tagline { font-size: 0.85rem; margin-bottom: 8px; }
.cg-sub { font-size: 0.72rem; opacity: 0.65; margin-bottom: 20px; }
button { font-family: 'Syne Mono', monospace; font-size: 0.75rem; padding: 12px 28px; color: #fff; background: #1a2010; border: 1px solid rgba(184,200,138,0.4); border-radius: 6px; cursor: pointer; }
.cg-exit { position: fixed; bottom: 12px; right: 14px; font-size: 0.7rem; color: rgba(184,200,138,0.6); text-decoration: none; }
