body {
  margin: 0;
  font-family: "Big caslon", "Big caslon";
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #6c92b9;
}

.container {
  width: 100%;
  max-width: 700px;
  text-align: center;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
}

.controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

button {
  padding: 10px 25px;
  font-size: 1.1rem;
  border: none;
  border-radius: 10px;
  background-color: #a265b5;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background-color: #a265b5;
  transform: scale(1.05);
}

button:disabled {
  background-color: #999;
  cursor: not-allowed;
  transform: none;
}

.sound-item {
  border: 1px solid #ccc;
  padding: 15px;
  border-radius: 8px;
}

.options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.option-btn {
  padding: 10px;
  border: none;
  border-radius: 8px;
  background-color: #555;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.option-btn:hover {
  background-color: #333;
  transform: scale(1.05);
}

#message {
  font-size: 1.2rem;
  margin-top: 10px;
}

.gift {
  font-size: 2rem;
  margin-top: 10px;
  animation: bounce 0.6s;
}

@keyframes bounce {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  margin-top: 15px;
}

.page-btn {
  padding: 5px 10px;
  border: 1px solid #a265b5;
  border-radius: 5px;
  background-color: #fff;
  color: #c300ff;
  cursor: pointer;
  transition: 0.3s;
}

.page-btn:hover {
  background-color: #a265b5;
  color: white;
}

.page-btn.active {
  background-color: #a265b5
  ;
  color: white;
  cursor: default;
}
