
body {
  background-color: #0c0c0c;
  color: #e0e0e0;
  font-family: monospace;
  text-align: center;
  padding: 2em;
}

h1 {
  font-size: 2em;
  margin-bottom: 0.25em;
}

p {
  font-size: 1em;
  color: #888;
  margin-bottom: 2em;
}

.grid-5x2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1em;
  max-width: 1000px;
  margin: 0 auto;
  justify-items: center;
}

@media (max-width: 480px) {
  .grid-5x2 {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}

canvas {
  display: block;
  width: 100%;
  height: 60px;
  background: #000;
  margin: 0 auto;
  border-radius: 4px;
}

.cell {
  background-color: #1a1a1a;
  padding: 1em;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  box-shadow: 0 0 10px #333;
  transition: background-color 0.3s;
  box-sizing: border-box;
  width: 100%; 
  max-width: 180px; 
  text-align: center;
}

.cell:hover {
  background-color: #222;
}

.cell span {
  display: block;
  margin-top: 0.5em;
}

.gaelic {
  font-weight: bold;
  color: #69f;
}

.english {
  color: #aaa;
  font-size: 0.9em;
}

.lore {
  font-size: 0.75em;
  color: #bbb;
  margin-top: 0.5em;
  display: none;
}

.cell:hover .lore {
  display: block;
}
