body {
  font-family: sans-serif;
  text-align: center;
  margin-top: 20px;
  background: url('assets/bg.gif') no-repeat center center fixed;
  background-size: cover;
  color: white;
  padding: 10px;
}

h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.puzzle-container {
  display: grid;
  grid-template-columns: repeat(3, 120px);
  grid-template-rows: repeat(3, 120px);
  gap: 3px;
  margin: 20px auto;
  background: rgba(0,0,0,0.3);
  padding: 5px;
  border-radius: 10px;
  max-width: 100%;
}

.puzzle-container img {
  width: 120px;
  height: 120px;
  cursor: move;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.description {
  margin-top: 15px;
  font-size: 0.95rem;
  color: #ddd;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Container untuk tombol-tombol */
.buttons-container {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

/* Gaya tombol GIF (shuffle & reset) */
.shuffle-btn, .reset-btn {
  background: none;
  border: none;
  cursor: pointer;
  margin-top: 10px;
}

.shuffle-btn img, .reset-btn img {
  background: none;
  border: none;
}

.shuffle-btn, .reset-btn {
  background: none;
  border: none;
  cursor: pointer;
  margin-top: 10px;
}

