html, body {
  margin: 0;
  padding: 0;
  overflow: hidden;
}
body {
  display: block;
  width: 100dvw;
  height: 100dvh;
  background: url("BackgroundIMG.png") no-repeat center center/cover;
  overflow-y: hidden;
  overflow-x: hidden;
  font-family: 'Open Sans', sans-serif;
}
.botaoDiv {
  width: 20vw;
  height: 7vh;
  top: 80%;
  left: 50%;
  position: fixed;
}
.botao {
  font-size: 1.8rem;
  padding: 10px 20px;
  background-color: #f6b624;
  border: none;
  border-radius: 20px;
  color: white;
  left: 50%;
  transform: translateX(-50%);
  font-weight: bold;
  transition: 0.2s;
}
.botao.botaoI {
  border-radius: 100%;
  background-color: #f6b624;
  font-weight: bold;
  padding: 10px 16px;
}
.areaRoleta {
  z-index: 6;
  display: flex;
  width: 340px;
  height: 280px;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  top: 35%;
  gap: 10px;
  padding: 10px;
  background-color: #f6b624;
  border-radius: 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2),
            0 4px 8px rgba(0, 0, 0, 0.15);
}
.areaRoleta::after {
  content: "";
  z-index: 5;
  background: url(Jegue1.png) no-repeat center/contain;
  position: absolute;
  width: 400px; /* ou o tamanho que quiser */
  height: 400px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 68%;
  pointer-events: none;
}
.divRoleta {
  z-index: 5;
  left: 50%;
  background-color: #eee;
  transform: translateX(-50%);
  width: 300px;
  border-radius: 20px;
  height: 280px;
  transition: all 0.8s ease;
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  min-height: 100%;
  min-width: 100%;
  z-index: 4;
  transition: all 0.8s ease;
  backdrop-filter: blur(20px);
  background-color: rgba(0,0,0,0.591);
}
.jegue {
  background: url(JeguePulando.png) no-repeat center/contain;
  z-index: 6;
  width: 500px;
  height: 500px;
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 100%);
  transition: transform 2s ease;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.jegue::after {
  content: "";
  width: 100%;
  height: 100%;
  z-index: 6;
}

.divResultado {
  background: rgba(255,255,255,0.353);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  outline: 1px solid rgba(255, 255, 255, 0.3);
  width: 159px;
  z-index: 9999;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  position: fixed;
  top: 5px;
  left: 27%;
  transform: translateX(-50%);
  padding: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 2s ease-in-out;
}

.h1Resultado {
  font-size: 1.1rem;
  font-weight: 600;
  color: #000;
  margin: 0;
  transition: all 2s ease-in-out;
}

.areaAposta {
  background: rgba(255,255,255,0.353);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  outline: 1px solid rgba(255, 255, 255, 0.3);
  bottom: 5%;
  left: 8%;
  transform: translateX(-50%);
  height: 130px;
  justify-content: center;
  width: 319px;
  line-height: 50px;
  font-size: 1.2rem;
  position: fixed;
  font-weight: bold;
  display: flex;
  transition: all 0.8s ease-in-out;
}
.areaAposta.minimizado {
  width: 20px;
  height: 20px;
}
.pAreaAposta {
  position: absolute; 
  align-self: center;
  margin-top: 15px;
  font-weight: bold;
}
.botaoAposta{
  all: unset;
  background-color: #f6b624;
  height: 30px;
  text-align: center;
  line-height: 1.2rem;
  font-size: 1.2rem;
  margin: 5px;
  width: 80px;
  padding: 5px 10px;
  border-radius: 20px;
  position: relative;
  z-index: 93994;
}
.botaoAposta + .botaoAposta{
  margin-left: 10px;
}
.pResultado {
  font-size: 0.9rem;
  color: #222;
  margin: 0;
  transition: all 2s ease-in-out;
}
@keyframes shake {
  0%   { transform: translate(0, 0); }
  20%  { transform: translate(-5px, 5px); }
  40%  { transform: translate(5px, -5px); }
  60%  { transform: translate(-5px, 5px); }
  80%  { transform: translate(5px, -5px); }
  100% { transform: translate(0, 0); }
}
.shakeTela {
  animation: shake 1s infinite;
}
@keyframes surgir {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.surgir {
  animation: surgir 1s ease forwards;
}
