body {
  font-family: sans-serif;
  background-color: #fdf6ec;
  text-align: center;
  padding: 20px;
  color: #333;
  
}

.screen {
  display: none;
}

.screen.active {
  display: block;
}

.hidden {
  display: none;
}

button {
  padding: 12px 20px;
  margin: 10px;
  font-size: 16px;
  background-color: #f9a825;
  border: none;
  border-radius: 10px;
  color: white;
  cursor: pointer;
}

.city-button {
  display: block;
  margin: 20px auto;
}

.map-img {
  max-width: 80%;
  margin: 20px 0;
}

.stamp {
  width: 150px;
  margin: 20px auto;
}

.city-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 30px 0;
  padding: 0 20px;
}

.city-link {
  background-color: #ffb300;
  padding: 12px 20px;
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: bold;
  font-size: 16px;
  transition: 0.2s ease;
  text-align: center;
  flex: 1 1 160px; /* allow flexible sizing */
  max-width: 200px;
}

.city-link:hover {
  background-color: #ff9800;
}

@media (max-width: 500px) {
  .city-link {
    font-size: 14px;
    padding: 10px 16px;
  }
}
.city-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin: 30px 0;
  padding: 0 20px;
}

.city-wrapper {
  position: relative;
  display: inline-block;
}

.city-link {
  background-color: #ffb300;
  padding: 12px 20px;
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: bold;
  font-size: 16px;
  transition: 0.2s ease;
  text-align: center;
  flex: 1 1 160px;
  max-width: 200px;
  display: block;
}

.city-link:hover {
  background-color: #ff9800;
}

.city-icon {
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 10;
}

.city-wrapper:hover .city-icon {
  opacity: 1;
}

button:disabled {
  background-color: #ccc !important;
  color: #888 !important;
  cursor: not-allowed;
  opacity: 0.6;
}

.developer-credit {
  margin-top: 50px;
  padding: 20px;
  background-color: #fff8e1;
  text-align: center;
  font-family: 'Comic Neue', cursive;
  border-top: 2px dashed #ffd54f;
}

.developer-credit p {
  margin: 5px 0;
}

.brand-name {
  color: #e65100;
  font-weight: bold;
  font-size: 18px;
}

.developer-tagline {
  font-size: 14px;
  color: #6d4c41;
}
