body {
  background: #3c5564;
}

.limbo-container {
  width: 900px;
  margin: auto;
  background: #213743;
  padding: 20px;
  border-radius: 2px;
  color: #fdfdfd;
  box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.1);
}

.instant-bet {
  cursor: pointer;
}

.bet-btn {
  background-color: #42fc6a;
  color: #121212; /* Dark text for contrast */
  border: none;
  padding: 10px 15px;
  font-size: 18px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  font-weight: bold;
  width: 100%;
}

.bet-btn:hover {
  background-color: #34d856;
}

@keyframes spinEffect {
  0% {
    transform: scale(1);
    color: #08f800;
  }
  50% {
    transform: scale(1.1);
    color: #ff0000;
  }
  100% {
    transform: scale(1);
    color: #42fc6a;
  }
}
#resultMultiplier {
  display: inline-block;
  font-size: 60px;
  font-weight: bold;
  animation: spinEffect 0.5s infinite;
}

.form-control::-moz-placeholder {
  color: #888;
}

.form-control::placeholder {
  color: #888;
}

h2, h3, h4 {
  color: #ffffff; /* White headings */
  text-align: center;
  font-weight: bold;
}

@media (max-width: 767px) {
  .limbo-container {
    width: 300px;
    background: #213743;
    border-radius: 10px;
    color: #fdfdfd;
  }
  .row {
    flex-direction: column-reverse; /* Moves input section below */
    align-items: center;
  }
  .col-4, .col-8 {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
  .form-label {
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
  }
  .form-control {
    font-size: 16px;
    padding: 10px;
    width: 100%;
  }
  .input-group {
    display: flex;
    gap: 5px;
  }
  .input-group button {
    flex: 1;
    font-size: 12px;
    padding: 5px 8px;
    max-width: 50px;
  }
  .form-check {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
  }
  #previousResults {
    font-size: 14px;
    padding: 5px;
  }
  #resultMultiplier {
    font-size: 24px;
    font-weight: bold;
  }
  #targetDisplay {
    font-size: 16px;
    font-weight: normal;
  }
}/*# sourceMappingURL=limbo.css.map */