button {
  width: 320px;
  background-color: var(--primary-orange);
  color: black;
  border: none;
  border-radius: 15px;
  padding: 15px 30px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  transition: transform ease-in-out 0.2s, background-color ease-in-out 0.2s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  letter-spacing: 2px;
}

button:not(.mute-btn, .back-btn):hover {
  transform: scale(1.05);
  background-color: var(--primary-orange-hover);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  cursor: url(../assets/img/6_salsa_bottle/bottle_hover_cursor.png) 10 5, auto;
}

.icon {
  width: 40px;
  height: 40px;
  vertical-align: middle;
  background-color: transparent;
  border: none;
  padding: 0;
  transition: animation 1s ease-in-out;
}

.endboss-walk {
  width: 56px;
  height: 56px;
}

.back-btn {
  border: none;
  box-shadow: none;
  background-color: transparent;
  transition: transform 0.2s ease;
  cursor: url(../assets/img/6_salsa_bottle/bottle_hover_cursor.png) 10 5, auto;
  transition: animation 1s ease-in-out;
}

.back-icon {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0px 0px 3px gold);
  transition: drop-shadow 0.2s ease, transform 0.2s ease;
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.back-icon:hover {
  animation-play-state: paused;
  filter: drop-shadow(0px 0px 6px gold);
}

.startscreen-buttons button {
  width: 320px;
}

.mute-btn,
.btn-mute {
  left: 40%;
  box-shadow: none;
  width: fit-content;
  background: transparent;
  border: none;
  padding: 0;
  cursor: url(../assets/img/6_salsa_bottle/bottle_hover_cursor.png) 10 5, auto;
}

.mute-icon {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  background-color: var(--primary-orange);
  border-radius: 8px;
  padding: 8px;
  width: 32px;
  height: 32px;
  transition: all 0.2s;
}

.mute-icon:hover {
  transform: scale(1.05);
  background-color: var(--primary-orange-hover);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.mobile-mute-icon {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.desktop-mute-button {
  position: absolute;
  display: none;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}

.desktop-mute-button.hidden {
  display: none;
}

.win-img {
  object-fit: contain;
  width: 80%;
  height: 33vh;
}

.lose-img {
  object-fit: contain;
  width: 100%;
  height: 100vh;
  z-index: 1;
}

.mobile-controls {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
  gap: 12px;
  z-index: 15;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-controls.active {
  visibility: visible;
  opacity: 1;
}

.btn-left-side,
.btn-right-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 0 32px;
}

.mobile-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 !important;
  width: 48px;
  height: 48px;
  font-size: 20px;
  border-radius: 50%;
  border: none;
  background-color: rgba(255, 165, 0, 0.9);
  color: #fff;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
}

.mobile-btn img {
  width: 32px;
}

.mobile-btn:active {
  background-color: rgba(255, 140, 0, 1);
}

#mobileCenter {
  display: flex;
  gap: 16px;
}

.mute-btn-desktop {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background-color: rgba(255, 165, 0, 0.9);
  color: #fff;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: background-color 0.2s ease, scale 0.2s ease;
}

.mute-btn-desktop:active {
  background-color: rgba(255, 140, 0, 1);
}

.mute-btn-desktop img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}
