* { 
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

:root {
  --green: #00c853;
  --gold: #f5c542;
}

.board {
  margin: 0;
  background: radial-gradient(circle at top, #0b4f3a, #021b13);
  color: #fff;
  height: 100svh;
  display: flex;
  justify-content: center;
}

.game {
  width: 100%;
  max-width: 420px;
  background: radial-gradient(circle at top,#0e1820, #0b1822, #040709);
  height: 100%;
  text-align: center;
  position: relative;
}

.header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  padding: 15px 19px;
}

.balance-container{
  text-align: left;
  padding: 0 15px;

  .balance{
    display: flex;
    gap: 5px;
    align-items: center;
    font-size: 13px;
    margin-bottom: 5px;
  }
  img{
      width: 20px;
      height: 20px;
  }
  a {
    color: #4cff4c;
    text-decoration: none;
    font-size: 12px;
  }

}

.chips {
  display: flex;
  width: 80%;
  justify-self: center;
  gap: 10px;
  margin-top: 20px;
  padding: 10px;
  border-radius: 40px;
  background: #253b55;
  overflow: auto;
  scroll-behavior: smooth;
  
    &.round{
      width: auto !important;
      height: 60px;
      flex-direction: column-reverse;
      align-items: center;
      justify-content: end;
      padding: 5px;
      background: rgba(0, 0, 0, 0.532);
      margin-top: 5px !important;
  }

  .chip {
    flex-shrink: 0;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    cursor: pointer;
  }
  
  .chip.active {
    outline: 3px solid red;
    box-shadow: 0 0 7px red;
    outline-offset: -2px;
  }
}

.limits {
  text-align: center;
  font-size: 12px;
  opacity: .7;
}

::-webkit-scrollbar {
  display: none;
}

.bet-box {
  border: 1px solid;
  padding: 10px;
  width: 170px;
  justify-self: center;
  color: #ff8d8d;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 15px 0;

  img{
    width: 17px;
    height: 17px;
  }
}

.range-wrap {
  display: flex;
  align-items: center;
  justify-self: center;
  margin: 25px 0;
  gap: 12px;
  width: 80%;
}

.range-left,
.range-right {
  color: #fff;
  font-size: 13px;
}

.range-right {
  text-align: right;
}

.range-bar {
  position: relative;
  flex: 1;
  height: 3px;
  background: #949494;
  border-radius: 10px;
  overflow: visible;
}


.range-fill {
  position: absolute;
  height: 100%;
  width: 0%; 
  background: #269e3a;
  border-radius: 10px;
}


.range-knob {
  position: absolute;
  top: 50%;
  left: 2%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: url(../images/icons/chips/C-0.png) no-repeat center/contain;
  box-shadow: 0 0 6px rgba(0,0,0,.4);
}