* { margin:0; padding:0; box-sizing:border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }

body {
  background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}

.container {
  background: rgba(255,255,255,0.9);
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
  padding: 30px;
  max-width: 500px;
  width: 100%;
  text-align: center;
}

h1 {
  font-size: 2.5rem;
  color: #ff6b6b;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
  margin-bottom: 10px;
}

.subtitle {
  font-size: 1.1rem;
  color: #4a4a4a;
  margin-bottom: 20px;
}

.wheel-wrapper {
  position: relative;
  margin: 0 auto 20px;
  width: 400px; height: 400px;
}

.pointer {
  position: absolute;
  top: -5px; left: 45%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 40px solid #ff6b6b;
  filter: drop-shadow(0 3px 5px rgba(0,0,0,0.3));
  z-index: 10;
  transform: rotate(180deg);
}

.controls {
  margin-bottom: 20px;
}

.spin-btn {
  background: linear-gradient(to right, #ff6b6b, #ff9a9e);
  color: #fff;
  border: none;
  padding: 12px 40px;
  font-size: 1.2rem;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(255,107,107,0.4);
  transition: transform 0.3s ease;
}

.spin-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255,107,107,0.6);
}

.spin-btn:active {
  transform: translateY(1px);
}

.result-container {
  display: none;
  margin-top: 20px;
  background: #fff;
  border-radius: 15px;
  padding: 15px 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.result-title {
  font-size: 1.4rem;
  color: #ff6b6b;
}

.result-name {
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
  margin-top: 5px;
}
