/* General layout */
body {
  font-family: Arial, sans-serif;
  background-color: #111;
  color: #fff;
  text-align: center;
  margin: 0;
  padding: 20px;
}

/* Title */
h1 {
  font-size: 2.2rem;
  margin-bottom: 30px;
}

/* Character images section */
.characters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.characters img {
  width: 220px;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  transition: transform 0.2s ease;
}

.characters img:hover {
  transform: scale(1.05);
}

/* Soundboard layout */
.soundboard {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.column {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Sound buttons */
button {
  background-color: #444;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
  min-width: 180px;
}

button:hover {
  background-color: #666;
  transform: scale(1.03);
}

/* -------------------------- */
/* 📱 Mobile and tablet tweaks */
/* -------------------------- */
@media (max-width: 1024px) {
  .soundboard {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .column {
    width: 100%;
    align-items: center;
  }

  button {
    width: 80%;
    max-width: 300px;
    font-size: 18px;
  }

  .characters img {
    width: 160px;
  }
}

@media (max-width: 600px) {
  body {
    padding: 10px;
  }

  h1 {
    font-size: 1.8rem;
  }

  .characters img {
    width: 130px;
  }

  button {
    font-size: 16px;
  }
}
