html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.87);
  background-color: #000000; 
  font-family: Arial, Helvetica, sans-serif;
}

#app {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

#game-container {
  height: auto !important;
}

.click-bg-container {
  width: 100%;
  height: 100%;
}

.setting-container {
  width: 115px;
  height: 320px;
}
.setting-container .setting-content {
  display: flex; 
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%; 
  height: 100%;
  padding: 10px 0 20px;
  background: url('./assets/img/btnbar/setting/bg.png') no-repeat;
  background-size: 100%;
  box-sizing: border-box;
}
.setting-content .setting-btn {
  width: 80px;
  height: 80px;
}
.setting-content .setting-btn.auto {
  background: url('./assets/img/btnbar/setting/auto.png') no-repeat;
  background-size: 100%;
}
.setting-content .setting-btn.info {
  background: url('./assets/img/btnbar/setting/info.png') no-repeat;
  background-size: 100%;
}
.setting-content .setting-btn.sound {
  background: url('./assets/img/btnbar/setting/sound.png') no-repeat;
  background-size: 100%;
}
.setting-content .setting-btn.sound.mute {
  background: url('./assets/img/btnbar/setting/sound-mute.png') no-repeat;
  background-size: 100%;
}

.auto-popup {
  
}

/* .auto-spin-container {
  width: 520px; 
  background: rgba(34, 35, 34, 0.8);
  border: 4px solid #8A7049; 
  border-radius: 8px;
  box-sizing: border-box;
}
.auto-spin-content {
  display: flex; 
  width: 100%; 
} */

.rule-popup {
  width: 100%;
  height: 100%;
}

.chip-select-container {
  width: 520px; 
  padding: 6px; 
  background: #2C2517; 
  border: 6px solid #C9BD6A; 
  border-radius: 20px;
  box-sizing: border-box;
}
.chip-select-content {
  display: flex; 
  flex-wrap: wrap; 
  justify-content: space-between;
  width: 100%; 
  padding: 2px; 
  background: #2A2318; 
  border: 2px solid #C9BD6A; 
  border-radius: 10px; 
  box-sizing: border-box; 
  overflow: hidden;
}

.chip-select-content .chip-item {
  width: 162px;
  height: 116px;
  line-height: 100px;
  margin-bottom: 2px;
  padding: 8px;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  border-top: 2px solid #2C2517;
  border-left: 2px solid #2C2517;
  border-right: 2px solid #4A443A;
  border-bottom: 2px solid #4A443A;
  box-sizing: border-box;
  cursor: pointer;
}
.chip-select-content .chip-item  .chip-item-content {
  height: 100%;
  border: 2px solid transparent;
  border-radius: 8px;
  box-sizing: border-box;
}
.chip-select-content .chip-item.active .chip-item-content {
  border: 2px solid #99946A;
  background: #4D462F;
  box-shadow: 
    0 4px 4px 0 rgba(153, 148, 106, 0.25),
    0 -2px 3px 0 #99946A inset,
    -2px 0 4px 0 #99946A inset,
    1px 0 3px 2px #99946A inset,
    0 3px 3px 0 #99946A inset;
}