.wild-wheel-wrapper {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  padding: 50px 20px 60px;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0,0,0,0.1);
  text-align: center;
  background: transparent !important;
}

/* Roda */
#wild-wheel-canvas {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 50%;
  box-shadow: inset 0 0 20px rgba(255,255,255,0.3),
              0 10px 20px rgba(0,0,0,0.4);
  transition: transform 4s ease-out;
  background: radial-gradient(circle, #fff 0%, #ddd 80%);
}

/* Botão spin */
#btn-spin {
  display: block;
  margin: 20px auto 10px;
  padding: 12px 25px;
  background-color: #d63638;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
}

#btn-spin:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Resultado */
#wild-wheel-result {
  margin-top: 10px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
}

/* Formulário */
#wild-wheel-form {
  margin-top: 20px;
  text-align: left;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

#wild-wheel-form input[type="text"],
#wild-wheel-form input[type="email"] {
  width: 100%;
  padding: 8px 10px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}

#wild-wheel-form button {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

/* Mensagem de feedback */
#wild-wheel-message {
  margin-top: 15px;
  font-size: 14px;
}

/* Estado de erro e sucesso nas mensagens */
.wild-wheel-error {
  color: #d32f2f !important;
  font-weight: bold;
}
.wild-wheel-success {
  color: #388e3c !important;
  font-weight: bold;
}

/* Links e CTA dentro da wrapper */
.wild-wheel-wrapper a {
  color: #0073aa;
  text-decoration: underline;
  font-weight: 500;
}

/* Formulário labels */
#wild-wheel-form label {
  color: #222;
  font-weight: 500;
}