.wheel-section {
  background-image: url('/images/wheel.png');
  background-position: center;
  background-size: cover;
}

#wheel-section {
  font-family: 'Press Start 2P', monospace;
}

.pixel-heading {
  font-size: 22px;
  color: #fff;
  text-shadow: 2px 2px #000;
  letter-spacing: 1px;
}

@media (max-width:768px) {
  .pixel-heading {
    padding-top: 20px;
  }
}

/* === Retro Comic Spin Wheel === */
/* Wheel container */
.wheel-wrap {
  position: relative;
  display: inline-block;
  padding: 20px;
  background:url('/images/Untitled\ design\ \(40\).png');
  background-position: center;
  background-size: cover;
  border: 6px solid #9B4D33;
  border-radius: 16px;
  box-shadow: 0 0 20px #9B4D33, 0 0 40px #00ffff; /* neon arcade glow */
}

/* Wheel canvas */
#wheelCanvas {
  display: block;
  width: 100%;
  max-width: 420px;
  border-radius: 50%;
  background: #222;
  image-rendering: pixelated; /* crunchy retro look */
}

/* Pixelated pointer */
.wheel-pointer {
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-bottom: 35px solid #ff004d; /* neon red arrow */
  filter: drop-shadow(3px 3px 0px #000);
}


#playerName {
  display: inline-block;      /* or block */
  max-width: 250px;           /* set limit */
  overflow: hidden;           
  white-space: nowrap;        
  text-overflow: ellipsis !important;    
  vertical-align: middle;     /* keeps icon aligned */
  word-break: break-all !important;
}

.wheel-wrap {
  position: relative;
  display: inline-block;
  padding: 25px;
  background: url('/images/wheel-bg.png');
  background-position: center;
  background-size: cover;
  border: 8px solid #000; /* thick black arcade cabinet edge */
  border-radius: 20px;
  box-shadow:
    /* 0 0 15px #ff00ff,
    0 0 30px #00ffff, */
    inset 0 0 10px #000; /* inside glow like retro bezel */
}

.wheel-wrap::before,
.wheel-wrap::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background:#9B4D33;
  border: 2px solid #000;
  box-shadow: 2px 2px 0 #000;
}

.wheel-wrap::before { top: 5px; left: 5px; }
.wheel-wrap::after  { bottom: 5px; right: 5px; }



/* === Pixel Card === */
.pixel-card {
  background: #fff7e6;
  border: 6px solid #000;
  box-shadow: 6px 6px 0 #000;
  text-align: center;
}

.pixel-label {
  font-size: 12px;
  color: #000;
}

.pixel-input {
  width: 100%;
  padding: 12px;
  font-size: 12px;
  font-family: 'Press Start 2P', monospace;
  border: 4px solid #000;
  box-shadow: 4px 4px 0 #000;
  text-align: center;
}

.pixel-btn {
  padding: 12px;
  font-size: 12px;
  background: #ffd93d;
  border: 4px solid #000;
  box-shadow: 4px 4px 0 #000;
  cursor: pointer;
}
.pixel-btn:hover { background: #ffb800; }
.pixel-btn:active { transform: translateY(2px); box-shadow: 2px 2px 0 #000; }
