* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: radial-gradient(circle at top, #111, #000);
  color: white;
  font-family: "Segoe UI", Arial, sans-serif;
  text-align: center;
}

.logo {
  transform: scale(2.0); 
}


/* ===== HEADER ===== */
.top-bar {
  padding: 30px 20px 10px;
}

.logos {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 15px;
}

.logos img {
  height: 50px;
  object-fit: contain;
}

.top-bar h1 {
  font-size: 34px;
  margin: 10px 0;
}

.top-bar h1 span {
  color: #ff0055;
}

.tagline {
  opacity: 0.8;
  margin-bottom: 10px;
}

/* ===== WHEEL ===== */
.wheel-container {
  position: relative;
  width: 500px;
  margin: 30px auto;
}

#wheel {
  border-radius: 50%;
  background: #111;
  box-shadow: 0 0 30px #ff0055;
}

#pointer {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 28px;
  color: #ff0055;
  z-index: 10;
}

/* ===== BUTTON ===== */
button {
  margin-top: 20px;
  padding: 14px 40px;
  font-size: 18px;
  border: none;
  border-radius: 8px;
  background: #ff0055;
  color: white;
  cursor: pointer;
}

button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ===== INFO ===== */
.legend {
  margin-top: 20px;
  font-size: 14px;
  opacity: 0.85;
}

.result {
  margin-top: 30px;
  font-size: 26px;
  font-weight: bold;
  color: #00ffcc;
}

.odds-legend {
  margin-top: 20px;
  padding: 16px;
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  max-width: 420px;
  color: #ddd;
  font-size: 14px;
}

.odds-legend h3 {
  margin-bottom: 8px;
  color: #fff;
}

.odds-legend ul {
  padding-left: 18px;
}

.odds-legend li {
  margin: 6px 0;
}

.odds-legend .note,
.odds-legend .example {
  margin-top: 10px;
  font-size: 13px;
  color: #aaa;
}

body.spinning #spinBtn {
  opacity: 0.6;
  pointer-events: none;
}

body.spinning #wheel {
  filter: drop-shadow(0 0 25px #ff0055);
}
#spinBtn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

