body {
  margin: 0;
  font-family: sans-serif;
  background: #f0f0f0;
  text-align: center;
}

h1 {
  margin: 20px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
  padding: 20px;
  max-width: 1000px;
  margin: auto;
}

.tile {
  background: #0078d7;
  color: white;
  text-decoration: none;
  padding: 20px 10px;
  border-radius: 10px;
  font-size: 1rem;
  transition: transform 0.2s, background 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mine {
  background-color: #d70000; /* élénk piros */
}

.mine:hover {
  background-color: #a00000; /* sötétebb piros hover */
}

.tile:hover {
  background: #005fa3;
  transform: scale(1.05);
}

.tile img {
  width: 32px;
  height: 32px;
  margin-bottom: 8px;
  border-radius: 6px;
}
