body {
  font-family: "Georgia", serif;
  background-color: #fff8cc; /* soft honey yellow */
  color: #333;
  text-align: center;
  margin: 20px;
}

h1 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #e8b600; /* golden yellow */
}

h2 {
  font-size: 1.5em;
  margin-top: 30px;
  color: #d49f00;
}

ul {
  list-style-type: none;
  padding: 0;
}

li {
  margin: 10px 0;
}

a {
  text-decoration: underline;
  color: #8b5f00; /* dark yellow/brownish for contrast */
  font-weight: bold;
  font-size: 1.1em;
}

footer {
  margin-top: 50px;
  font-size: 0.8em;
  color: #555;
}

/* ---- TILE GALLERY ---- */
.tile-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 600px;
  margin: 20px auto;
}

.tile img {
  width: 100px;
  height: auto;
  display: block;
}

/* ---- USEFUL LINKS ---- */
.useful-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.useful-links li {
  margin: 12px 0;
}

.useful-links a {
  font-weight: bold;
  color: #000;
  text-decoration: underline;
}

.useful-links .desc {
  display: block;
  font-size: 0.9em;
  color: #555;
  margin-left: 10px;
}

.collectible-box {
  width: 300px;
  padding: 15px;
  background-color: #ffe699; /* fallback honey color */
  border: 2px solid #e8b600;
  border-radius: 8px;
  text-align: center;
  color: #8b5f00;
  font-weight: bold;

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
}

.collectible-box img {
  flex: 0 0 auto;     /* prevents images from growing/shrinking */
  width: auto;        /* natural width */
  height: auto;       /* natural height */
  max-width: 70px;    /* limit width */
  max-height: 70px;   /* limit height */
  display: block;
}
