* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: linear-gradient(135deg, #1f1c2c, #928dab);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* MAIN */
main {
  text-align: center;
  color: white;
}

h1 {
  margin-bottom: 20px;
  font-size: 2.5rem;
}

/* GAME GRID */
.game {
  display: grid;
  grid-template-columns: repeat(3, 100px);
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
}

/* BOX */
.box {
  height: 100px;
  width: 100px;
  font-size: 2.5rem;
  font-weight: bold;
  border: none;
  border-radius: 12px;
  background: white;
  color: #333;
  cursor: pointer;
  transition: 0.2s;
}

.box:hover {
  background: #f1f1f1;
  transform: scale(1.05);
}

/* BUTTONS */
button {
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  background: #ff7a18;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #ff5200;
}

/* MESSAGE BOX */
.msg-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.msg-container p {
  color: white;
  font-size: 2rem;
  margin-bottom: 20px;
}

.hide {
  display: none;
}