/* style.css */
body {
  font-family: Arial, sans-serif;
  text-align: center;
  background: #f0f0f0;
  padding: 20px;
}

h1 {
  margin-bottom: 10px;
}

.game-board {
  display: grid;
  grid-template-columns: repeat(4, 100px);
  gap: 15px;
  justify-content: center;
  margin-bottom: 20px;
}

.card {
  width: 100px;
  height: 100px;
  background: #3498db;
  color: white;
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  border-radius: 10px;
  transition: background 0.3s;
}

.card.matched {
  background: #2ecc71;
  cursor: default;
}

.card.flipped {
  background: #e74c3c;
}
