/* ============================================
   Secret Games — Slots, Quiz, Roulette
   ============================================ */

/* ---- Banned Scene ---- */
.banned-bg {
  position: absolute;
  inset: 0;
  background: #0a0000;
  z-index: 0;
}

.banned-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 24px;
  gap: 0;
}

.banned-character img {
  max-height: 55vh;
  max-width: 90%;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(255, 50, 0, 0.5));
}

.banned-text {
  text-align: center;
  font-size: 14px;
  line-height: 1.8;
  color: #ff4444;
  padding: 16px;
  white-space: pre-line;
}

/* ---- King Service (unused scene CSS removed — now uses JS overlay) ---- */

/* legacy placeholder */
.king-service-char img {
  height: 55vh;
  max-height: 500px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.4));
  animation: fade-in 0.6s ease-out;
}

/* ---- Slot Machine ---- */
.slots-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px;
}

.slots-venus-msg {
  font-size: 14px;
  color: var(--neon-pink);
  text-align: center;
  min-height: 40px;
  line-height: 1.6;
}

.slots-reels {
  display: flex;
  gap: 12px;
}

.slots-reel {
  width: 80px;
  height: 80px;
  background: var(--bg-card);
  border: 2px solid var(--neon-purple);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  transition: all 0.15s ease;
}

.slots-reel.spinning {
  animation: slot-spin 0.1s ease infinite;
  border-color: var(--neon-cyan);
}

.slots-reel.jackpot {
  border-color: var(--neon-gold);
  box-shadow: var(--glow-gold);
  animation: pulse-glow 1s ease-in-out infinite;
}

@keyframes slot-spin {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.slots-count {
  font-size: 12px;
  color: var(--text-muted);
}

/* ---- Quiz ---- */
.quiz-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px 16px;
  width: 100%;
  max-width: 420px;
}

.quiz-progress {
  font-size: 13px;
  color: var(--text-secondary);
}

.quiz-question {
  font-size: 15px;
  color: var(--text-primary);
  text-align: center;
  line-height: 1.7;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid rgba(180, 74, 255, 0.3);
  border-radius: 12px;
  width: 100%;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.quiz-option-btn {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  padding: 12px 16px;
  border: 1px solid rgba(180, 74, 255, 0.3);
  background: var(--bg-card);
  color: var(--text-primary);
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  transition: all var(--transition-fast);
}

.quiz-option-btn:active {
  transform: scale(0.98);
}

.quiz-option-btn.correct {
  border-color: #00e676;
  background: rgba(0, 230, 118, 0.15);
  color: #00e676;
}

.quiz-option-btn.wrong {
  border-color: #ff4444;
  background: rgba(255, 68, 68, 0.15);
  color: #ff4444;
}

.quiz-result {
  font-size: 14px;
  text-align: center;
  min-height: 24px;
}

/* ---- Roulette ---- */
.roulette-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px;
}

.roulette-venus img {
  height: 30vh;
  max-height: 200px;
  object-fit: contain;
  filter: drop-shadow(0 0 15px rgba(255, 45, 155, 0.3));
}

.roulette-msg {
  font-size: 14px;
  color: var(--neon-pink);
  text-align: center;
  min-height: 40px;
  line-height: 1.6;
}

.roulette-streak {
  font-family: 'Cinzel', serif;
  font-size: 28px;
  color: var(--neon-gold);
  letter-spacing: 2px;
}

.roulette-choices {
  display: flex;
  gap: 16px;
}

.roulette-btn {
  min-width: 120px;
  text-align: center;
}

.roulette-btn:disabled {
  opacity: 0.3;
  pointer-events: none;
}
