* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: system-ui, sans-serif;
}

/* SCREENS */
.screen {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f8c8dc;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.screen.active {
  opacity: 1;
  pointer-events: auto;
}

/* MAIN */
.title {
  font-size: clamp(2rem, 6vw, 3rem);
  margin-bottom: 1rem;
}

#mainImg {
  width: 280px;
  height: 280px;
  max-width: 80vw;
  object-fit: contain;
  margin-bottom: 1.2rem;
}

/* BUTTON */
button {
  padding: 1rem 1.4rem;
  border-radius: 20px;
  border: none;
  font-size: 1.1rem;
  background: #ff4f99;
  cursor: pointer;
}

button:active {
  transform: scale(0.95);
}

/* ❌ NO BUTTON */
#noBtn {
  position: fixed;
  z-index: 1000;
  pointer-events: auto;
}

/* STATUS */
#status {
  margin-top: 1rem;
  min-height: 1.4em;
  font-size: 1.1rem;
  text-align: center;
}

/* FINAL */
#final {
  background: linear-gradient(135deg, #ffd1e8, #fff);
  text-align: center;
}

#finalGif {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 1rem;
}

/* ❤️ HEARTS */
#hearts span {
  position: absolute;
  font-size: 1.8rem;
  animation: fall linear forwards;
}

@keyframes fall {
  from { transform: translateY(-10vh); opacity: 1; }
  to { transform: translateY(110vh); opacity: 0; }
}

/* 🎡 WHEEL */
.wheel-container {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  position: relative;
}

.wheel-title {
  font-size: 1.3rem;
  font-weight: bold;
}

/* MARKER */
.wheel-marker {
  font-size: 1.5rem;
  margin-bottom: -6px;
  z-index: 5;
}

#wheel {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 6px solid #ff4f99;
  background: conic-gradient(#ffd1e8 0 180deg, #ff9acb 180deg 360deg);
  position: relative;
  transition: transform 2.5s cubic-bezier(0.17, 0.67, 0.12, 0.99);
}

.wheel-label {
  position: absolute;
  width: 50%;
  text-align: center;
  font-weight: bold;
  top: 50%;
  transform: translateY(-50%);
}

.wheel-label.left {
  left: 0;
}

.wheel-label.right {
  right: 0;
}
