:root {
  --gold: #ffd34a;
  --gold2: #ffb300;
  --panel: #0b0b0b;
  --yellow: #ffef00;
  --btn1: #ffdf5a;
  --btn2: #ffb300;
}

.slot-wrap .bg * {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.slot-wrap .full-bg {
  position: fixed !important;
  background: radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.35), transparent 25%), radial-gradient(circle at 90% 20%, rgba(255, 255, 255, 0.25), transparent 30%), repeating-conic-gradient(from 10deg, rgb(255, 80, 80) 0 10deg, rgb(255, 0, 1) 10deg 20deg) !important;
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
}
.slot-wrap .bg {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 150px 24px;
  background: radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.35), transparent 25%), radial-gradient(circle at 90% 20%, rgba(255, 255, 255, 0.25), transparent 30%), repeating-conic-gradient(from 10deg, rgba(255, 80, 80, 0.95) 0 10deg, rgba(255, 0, 0, 0.95) 10deg 20deg);
  position: relative;
  overflow: hidden;
}
.slot-wrap .bg:before {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.25) 0 6px, transparent 7px), radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.25) 0 6px, transparent 7px), radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.25) 0 6px, transparent 7px);
  filter: blur(0.2px);
  opacity: 0.7;
  pointer-events: none;
}
.slot-wrap .game-wrap {
  width: min(880px, 96vw);
  position: relative;
  z-index: 1;
}
.slot-wrap .title {
  text-align: center;
  font-weight: 900;
  letter-spacing: 0.5px;
  font-size: 56px;
  color: var(--yellow);
  -webkit-text-stroke: 3px #ff5a00;
  text-shadow: 0 6px 0 rgba(0, 0, 0, 0.35);
  margin: 0 0 10px;
}
.slot-wrap .panel {
  background: linear-gradient(#111, #070707);
  border-radius: 6px;
  padding: 18px 18px 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}
.slot-wrap .reels {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 6px 6px 14px;
}
.slot-wrap .reel-frame {
  background: #fff;
  border: 4px solid var(--yellow);
  padding: 10px;
  width: 180px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slot-wrap .reel {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.slot-wrap .sym {
  font-weight: 900;
  font-size: 84px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.slot-wrap .sym-7 {
  color: #e60000;
  -webkit-text-stroke: 3px #000;
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.15);
}
.slot-wrap .sym-bar {
  font-size: 46px;
  color: #111;
  font-weight: 900;
}
.slot-wrap .sym-fr {
  font-size: 72px;
}
.slot-wrap .sym-q {
  font-size: 70px;
  color: #777;
}
.slot-wrap .meters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 0 10px 14px;
  align-items: end;
}
.slot-wrap .meter {
  text-align: center;
}
.slot-wrap .meter-box {
  background: #eee;
  color: #333;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-variant-numeric: tabular-nums;
  border-radius: 2px;
}
.slot-wrap .meter-label {
  margin-top: 6px;
  font-size: 12px;
  color: #fff;
  opacity: 0.9;
}
.slot-wrap .buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
  padding: 0 10px 16px;
}
.slot-wrap .btn {
  height: 52px;
  border: 0;
  border-radius: 4px;
  font-weight: 800;
  cursor: pointer;
  background: linear-gradient(#ffe680, #ffb300);
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.35);
  transition: transform 0.05s ease;
}
.slot-wrap .btn:active {
  transform: translateY(2px);
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.35);
}
.slot-wrap .btn.on {
  outline: 3px solid rgba(255, 255, 255, 0.65);
}
.slot-wrap .paytable {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0 10px 6px;
  color: #fff;
}
.slot-wrap .paycol {
  padding-top: 6px;
}
.slot-wrap .payrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 4px 0;
  font-size: 14px;
}
.slot-wrap .picon {
  font-weight: 800;
  opacity: 0.95;
}
.slot-wrap .p777 {
  color: #fff;
}
.slot-wrap .pbar,
.slot-wrap .pbar2 {
  color: #fff;
}
.slot-wrap .px {
  opacity: 0.95;
}
@media (max-width: 820px) {
  .slot-wrap .title {
    font-size: 44px;
  }
  .slot-wrap .reel-frame {
    width: 150px;
    height: 130px;
  }
  .slot-wrap .sym {
    font-size: 72px;
  }
}
@media (max-width: 640px) {
  .slot-wrap .reels {
    gap: 10px;
  }
  .slot-wrap .reel-frame {
    width: 120px;
    height: 110px;
  }
  .slot-wrap .sym {
    font-size: 60px;
  }
  .slot-wrap .meters {
    gap: 12px;
  }
  .slot-wrap .buttons {
    gap: 12px;
  }
  .slot-wrap .paytable {
    grid-template-columns: 1fr;
  }
}/*# sourceMappingURL=slot-3.css.map */