body {
    text-align: center;
    font-family: "Outfit", sans-serif;
    background-color: #32944c;
    color: #D7FBE8;
    padding: 0;
    margin: 0;
}

h1 {
    font-size: 60px;
    margin: 20px 0;
    text-decoration: underline;
}

#game {
    display: flex;
    justify-content: center;
}

h2 {
    font-size: 40px;
    text-decoration: underline;
}

h3 {
    font-size: 35px;
}

button {
    background: none;
    border: 0;
}

.d-inline-block {
    display: inline-block;
}

.flex-row {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.gamebox-inner {
    position: relative;
}

#muteButton {
    position: absolute;
    right: 0;
    top: 0;
    margin: 16px;
}

.mobile-controls {
    margin-top: -20px;
}






.swal-modal {
    background-color: #fff9e2; /* fondo amarillo claro */
    border: 8px solid #df8c24;
    box-shadow: 0 10px 0 #b05a0e, 0 0 4px rgba(0, 0, 0, 0.3);
    border-radius: 20px;
}
.swal-title {
    color: black;
}
.swal-button-container {
    width: 100%;
}
.swal-button {
    background-color: #008cff;
}
.centered-button {
    margin: 0 auto;
    display: block;
}
.swal-button--confirm {
  background: linear-gradient(to bottom, #a1ebff, #006abc);
  border: 4px solid #073892;         /* Borde dorado oscuro */
  border-radius: 8px;
  color: white;
  font-family: 'Fredoka One', sans-serif; /* o usa 'Luckiest Guy' o similar */
  font-size: 18px;
  padding: 10px 30px;
  text-shadow: 1px 1px 2px #007bb7, 0 2px 10px #000;
  box-shadow: inset 0 2px 0 #cbf7ff, 0 5px #073892;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}




#mobileControls {
  display: none;
}

.mobile-controls {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%) scale(0.6);
  transform-origin: center;
  z-index: 10;
  gap: 20px;
}

.swal-footer {
    text-align: center;
}