/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 05 2026 | 07:21:28 */
/* CONTAINER */
.game-container {
  max-width: 600px;
  margin: 20px auto;
  padding: 20px;
  text-align: center;
  font-family: Arial, sans-serif;
  background: #fff;
  border-radius: 12px;
}

/* SPIN AREA */
.spin-area {
  display: flex;
  justify-content: center;
  margin-top: -20px;
  margin-bottom: 6px;
}

/* WRAPPER */
.wheel-wrapper {
  position: relative;
  width: 320px;
  max-width: 90vw;
}

/* WHEEL IMAGE (ROTATES) */
#spinWheel {
  width: 100%;
  display: block;
  transition: transform 5s ease-out;
}

/* FIXED POINTER (ONLY ONE) */
.wheel-pointer {
  position: absolute;
  top: 40px;               /* 🔧 adjust this to move arrow */
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-bottom: 22px solid red;
  z-index: 10;
}

/* SPIN BUTTON */
.spin-btn {
  margin-top: -6px;        /* pulls button closer */
  padding: 10px 26px;
  font-size: 16px;
  border-radius: 8px;
  border: none;
  background: #007bff;
  color: #fff;
  cursor: pointer;
}
