.ttb-picker-wrapper {
  max-width: 400px;
  margin: 0 auto;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
}
.ttb-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
}
#ttb-wheel-input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  resize: vertical;
}
#ttb-spin-btn {
  background: #4caf50;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 20px;
  transition: background 0.3s;
}
#ttb-spin-btn:hover {
  background: #388e3c;
}
.ttb-canvas-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
#ttb-wheel-canvas {
  background: #f7f7f7;
  border-radius: 50%;
}
.ttb-result {
  font-size: 1.2rem;
  font-weight: bold;
  color: #222;
  margin-top: 10px;
}
#ttb-confetti {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  background: url('confetti.gif') center/cover no-repeat;
  display: none;
  z-index: 9999;
}
#ttb-confetti.show {
  display: block;
}