body {
  font-family: "Poppins", sans-serif;
  background: radial-gradient(circle at center, #1f2937 0%, #030712 100%);
  color: white;
  overflow-x: hidden;
  touch-action: pan-y;
}

.gold-text {
  background: linear-gradient(to right, #fef08a, #eab308, #ca8a04);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gold-border {
  border: 2px solid #eab308;
  box-shadow:
    0 0 15px rgba(234, 179, 8, 0.3),
    inset 0 0 10px rgba(234, 179, 8, 0.2);
}

.slot-machine {
  background: linear-gradient(145deg, #1f2937, #111827);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.8),
    inset 0 2px 0 rgba(255, 255, 255, 0.1);
}

.reel-container {
  height: 120px;
  overflow: hidden;
  position: relative;
  background-color: #0f172a;
  border-radius: 0.5rem;
  box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.8);
}

.reel-container::before,
.reel-container::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 20px;
  z-index: 10;
  pointer-events: none;
}
.reel-container::before {
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 1) 0%,
    rgba(15, 23, 42, 0) 100%
  );
  top: 0;
}
.reel-container::after {
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 1) 0%,
    rgba(15, 23, 42, 0) 100%
  );
  bottom: 0;
}

.strip {
  position: absolute;
  top: 0;
  width: 100%;
}

.symbol {
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.symbol-text {
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 0.25rem;
  letter-spacing: 0.05em;
}

.modal-enter {
  animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
}
