body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to right, #ffdce0, #ffe9ec);
  color: #333;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 900px;
  margin: auto;
  padding: 2rem;
  text-align: center;
}

header h1 {
  color: #c2185b;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.intro p {
  font-size: 1.2rem;
  color: #444;
}

.gallery {
  margin-top: 2rem;
}

.photos {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.photos img {
  width: 200px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.game {
  margin-top: 2rem;
}

#game-board {
  display: grid;
  grid-template-columns: repeat(4, 60px);
  gap: 10px;
  justify-content: center;
  margin-top: 1rem;
}

#game-board button {
  width: 60px;
  height: 60px;
  font-size: 1.5rem;
  border-radius: 10px;
  background-color: #fff;
  border: 2px solid #f06292;
  cursor: pointer;
  transition: background 0.3s ease;
}

#game-board button:hover {
  background-color: #f8bbd0;
}

.message textarea {
  width: 100%;
  height: 100px;
  margin-top: 1rem;
  border-radius: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  resize: none;
}

.message button {
  margin-top: 1rem;
  padding: 10px 20px;
  border: none;
  background-color: #ec407a;
  color: white;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.message button:hover {
  background-color: #d81b60;
}

footer {
  margin-top: 3rem;
  font-size: 0.9rem;
  color: #777;
}
