
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


body {
  height: 100vh;
  background:
    linear-gradient(rgba(0,0,0,.75), rgba(0,0,0,.75)),
    url("assets/bg.jpg") center / cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
  color: #ffffff;
  overflow: hidden;
}


.game {
  text-align: center;
}


h1 {
  margin-bottom: 22px;
  font-size: 32px;
  letter-spacing: 2px;
  color: #ffffff;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.6);
}


.reels {
  display: flex;
  gap: 18px;
  padding: 30px;
  background: rgba(0,0,0,.55);
  border-radius: 22px;
  box-shadow: 0 0 45px rgba(255, 255, 255, 0.35);
}


.reel {
  width: 177px;      
  height: 495px;    
  overflow: hidden;
  border-radius: 18px;
  border: 2px solid #ffffff;
  background: rgba(0,0,0,.7);
  box-shadow:
    inset 0 0 25px rgba(255, 255, 255, 0.25),
    0 0 18px rgba(255, 255, 255, 0.25);
}

.symbols {
  transition: transform 2.2s cubic-bezier(.08,.92,.14,1);
}

.symbol {
  width: 177px;
  height: 165px;    
  display: flex;
  align-items: center;
  justify-content: center;
}

.symbol img {
  width: 144px;      
  height: 144px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(143, 143, 143, 0.45));
  user-select: none;
  pointer-events: none;
}

.bottom-bar {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
}

.stat {
  text-align: center;
  padding: 14px 18px;
  background: rgba(0,0,0,.45);
  border-radius: 16px;
  border: 1px solid rgba(136, 136, 136, 0.35);
}

.stat .label {
  font-size: 12px;
  letter-spacing: 1.2px;
  opacity: .85;
}

.stat .value {
  font-size: 28px;
  font-weight: 700;
  margin-top: 4px;
  color: #ffffff;
  text-shadow: 0 0 12px rgba(158, 158, 158, 0.4);
}

.stat .sub {
  font-size: 12px;
  opacity: .8;
  margin-top: 2px;
}

.btn {
  padding: 18px 78px;
  font-size: 16px;
  letter-spacing: 1px;
  border-radius: 16px;
  border: none;
  background: #f3f3f3;
  color: #333;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0,0,0,.45);
  transition: transform .15s ease, box-shadow .15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(0,0,0,.55);
}

.btn:disabled {
  opacity: .5;
  cursor: default;
  transform: none;
}

.bet-control {
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.bet-btn {
  width: 42px;
  height: 38px;
  border-radius: 12px;
  border: none;
  background: #f3f3f3;
  color: #333;
  cursor: pointer;
  font-size: 18px;
}

.bet-btn:disabled {
  opacity: .5;
  cursor: default;
}

#betValue {
  min-width: 70px;
  padding: 8px 14px;
  border-radius: 14px;
  border: 1px solid hwb(175 3% 16%);
  background: rgba(0,0,0,.35);
  color: #06ffc9;
  font-size: 16px;
  text-align: center;
}

