/* ============================================
   FROM EGO TO I AM — MINI-GAMES
   Block 1: Identity
   ============================================ */

/* ---- SHARED GAME WRAPPER ---- */
.game-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}

.game-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(212,175,55,0.6);
  text-align: center;
}

.game-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.4rem, 4.5vw, 2.2rem);
  font-weight: 300;
  color: #fff;
  text-align: center;
  line-height: 1.35;
  letter-spacing: 0.03em;
}

.game-subtitle {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  text-align: center;
  letter-spacing: 0.08em;
  font-style: italic;
}

/* ---- NEXT BUTTON (game) ---- */
.btn-game-next {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #000;
  background: #d4af37;
  border: none;
  padding: 0.9rem 2.6rem;
  cursor: pointer;
  transition: all 0.35s ease;
  opacity: 0;
  pointer-events: none;
  margin-top: 0.5rem;
  clip-path: polygon(0 0, 100% 0, 100% 75%, 96% 100%, 0 100%);
}
.btn-game-next.visible {
  opacity: 1;
  pointer-events: all;
  animation: fadeUp 0.5s ease forwards;
}
.btn-game-next:hover {
  background: #e8c84a;
  box-shadow: 0 0 24px rgba(212,175,55,0.35);
  transform: translateY(-2px);
}

/* ============================================
   GAME 1 — FLIP CARDS (Age)
   ============================================ */
.flip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  width: 100%;
  max-width: 420px;
}

.flip-card {
  perspective: 800px;
  height: 90px;
  cursor: pointer;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.flip-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.1);
}

.flip-card-front {
  background: linear-gradient(135deg, #1a0033, #2d0060);
  overflow: hidden;
}

.flip-card-front::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 6px,
    rgba(212,175,55,0.04) 6px,
    rgba(212,175,55,0.04) 7px
  );
}

.flip-card-front-symbol {
  font-size: 1.4rem;
  opacity: 0.4;
  user-select: none;
}

.flip-card-back {
  background: linear-gradient(135deg, #2d0060, #4a0090);
  transform: rotateY(180deg);
  border-color: rgba(212,175,55,0.3);
  flex-direction: column;
  gap: 0.3rem;
}

.flip-card-back-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.05em;
}

.flip-card.selected .flip-card-back {
  background: linear-gradient(135deg, #4a0090, #6a00cc);
  border-color: #d4af37;
  box-shadow: 0 0 20px rgba(212,175,55,0.3), inset 0 0 20px rgba(212,175,55,0.05);
}

.flip-card.selected .flip-card-back-text {
  color: #d4af37;
}

/* ============================================
   GAME 2 — FLOATING ORBS (Country)
   ============================================ */
.orbs-scene {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 320px;
  overflow: hidden;
}

.orb-item {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border: 1px solid rgba(255,255,255,0.15);
  background: radial-gradient(circle at 35% 35%, #3a0070, #1a0033);
  user-select: none;
  animation: float-orb var(--duration, 4s) ease-in-out infinite alternate;
  animation-delay: var(--delay, 0s);
}

.orb-item:hover {
  transform: scale(1.12);
  box-shadow: 0 0 18px rgba(180,80,255,0.4);
  border-color: rgba(212,175,55,0.5);
  z-index: 10;
}

.orb-item.orb-selected {
  background: radial-gradient(circle at 35% 35%, #6a00cc, #3a0070);
  border-color: #d4af37;
  box-shadow: 0 0 28px rgba(212,175,55,0.45);
  transform: scale(1.18);
  z-index: 20;
}

.orb-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-align: center;
  padding: 0 6px;
  line-height: 1.3;
}

.orb-item.orb-selected .orb-label {
  color: #d4af37;
}

@keyframes float-orb {
  from { transform: translateY(0px); }
  to   { transform: translateY(-12px); }
}

.orb-item.orb-selected {
  animation: none !important;
}

/* Search box for country */
.orb-search {
  width: 100%;
  max-width: 320px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(212,175,55,0.3);
  color: #fff;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  padding: 0.5rem 0.3rem;
  outline: none;
  text-align: center;
  transition: border-color 0.3s ease;
  letter-spacing: 0.08em;
}
.orb-search::placeholder { color: rgba(255,255,255,0.25); font-style: italic; }
.orb-search:focus { border-bottom-color: rgba(212,175,55,0.7); }

/* ============================================
   GAME 3 — DIVERGING PATHS (Occupation)
   ============================================ */
.paths-scene {
  position: relative;
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}

.path-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.2rem;
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  background: transparent;
}

.path-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: linear-gradient(90deg, rgba(74,0,144,0.4), transparent);
  transition: width 0.4s ease;
}

.path-item:hover::before { width: 100%; }
.path-item:hover { border-color: rgba(180,80,255,0.4); }

.path-item.path-selected {
  border-color: #d4af37;
  background: rgba(212,175,55,0.04);
}
.path-item.path-selected::before {
  width: 100%;
  background: linear-gradient(90deg, rgba(212,175,55,0.12), transparent);
}

.path-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  filter: grayscale(0.5);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.path-item:hover .path-icon,
.path-item.path-selected .path-icon {
  filter: grayscale(0);
  transform: scale(1.15);
}

.path-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.1), transparent);
  transition: background 0.3s ease;
}
.path-item.path-selected .path-line {
  background: linear-gradient(90deg, rgba(212,175,55,0.5), transparent);
}

.path-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.03em;
  text-align: right;
  transition: color 0.3s ease;
  flex-shrink: 0;
}
.path-item.path-selected .path-text { color: #d4af37; }

/* ============================================
   GAME 4 — ENERGY METER (Income)
   ============================================ */
.energy-scene {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.energy-track {
  position: relative;
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
}

.energy-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  background: linear-gradient(90deg, #4a0090, #d4af37);
  border-radius: 3px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 12px rgba(212,175,55,0.4);
  width: 0%;
}

.energy-nodes {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  width: 100%;
}

.energy-node {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  padding: 0.6rem 0.8rem;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.energy-node:hover { border-color: rgba(180,80,255,0.3); }

.energy-node.node-active {
  border-color: rgba(212,175,55,0.5);
  background: rgba(212,175,55,0.04);
}

.node-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
}

.energy-node.node-active .node-dot {
  background: #d4af37;
  border-color: #d4af37;
  box-shadow: 0 0 10px rgba(212,175,55,0.6);
}

.node-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
  flex: 1;
}
.energy-node.node-active .node-label { color: #d4af37; }

.node-glyph {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.2);
  transition: color 0.3s ease;
  letter-spacing: 0.2em;
}
.energy-node.node-active .node-glyph { color: rgba(212,175,55,0.6); }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes cardReveal {
  0%   { transform: scale(0.9); opacity: 0; }
  100% { transform: scale(1);   opacity: 1; }
}

.flip-card {
  animation: cardReveal 0.4s ease forwards;
  opacity: 0;
}
.flip-card:nth-child(1) { animation-delay: 0.05s; }
.flip-card:nth-child(2) { animation-delay: 0.10s; }
.flip-card:nth-child(3) { animation-delay: 0.15s; }
.flip-card:nth-child(4) { animation-delay: 0.20s; }
.flip-card:nth-child(5) { animation-delay: 0.25s; }
.flip-card:nth-child(6) { animation-delay: 0.30s; }

.path-item {
  animation: fadeUp 0.4s ease forwards;
  opacity: 0;
}
.path-item:nth-child(1) { animation-delay: 0.05s; }
.path-item:nth-child(2) { animation-delay: 0.12s; }
.path-item:nth-child(3) { animation-delay: 0.19s; }
.path-item:nth-child(4) { animation-delay: 0.26s; }
.path-item:nth-child(5) { animation-delay: 0.33s; }
.path-item:nth-child(6) { animation-delay: 0.40s; }

.energy-node {
  animation: fadeUp 0.4s ease forwards;
  opacity: 0;
}
.energy-node:nth-child(1) { animation-delay: 0.05s; }
.energy-node:nth-child(2) { animation-delay: 0.12s; }
.energy-node:nth-child(3) { animation-delay: 0.19s; }
.energy-node:nth-child(4) { animation-delay: 0.26s; }
.energy-node:nth-child(5) { animation-delay: 0.33s; }

/* ============================================
   MINI-GAMES — Block 2: Current Life State
   ============================================ */

/* ---- GAME 5: MIRROR (Biggest Struggle) ---- */
.mirror-scene {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.mirror-frame {
  position: relative;
  width: 100%;
  border: 1px solid rgba(180,80,255,0.25);
  background: linear-gradient(180deg, rgba(74,0,144,0.12) 0%, rgba(26,0,51,0.4) 100%);
  padding: 1.4rem;
  overflow: hidden;
}

.mirror-frame::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(180,80,255,0.6), transparent);
}

.mirror-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(255,255,255,0.03) 0%,
    transparent 50%,
    rgba(255,255,255,0.01) 100%
  );
  pointer-events: none;
}

.mirror-reflection {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 30%;
  background: linear-gradient(0deg, rgba(74,0,144,0.08), transparent);
  pointer-events: none;
}

.mirror-textarea {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: rgba(255,255,255,0.9);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.8;
  resize: none;
  min-height: 110px;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 1;
  caret-color: #d4af37;
}

.mirror-textarea::placeholder {
  color: rgba(255,255,255,0.18);
  font-style: italic;
}

.mirror-counter {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: rgba(212,175,55,0.4);
  align-self: flex-end;
  transition: color 0.3s ease;
}
.mirror-counter.active { color: rgba(212,175,55,0.7); }

.mirror-shimmer {
  position: absolute;
  top: -100%;
  left: -60%;
  width: 40%;
  height: 300%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.06) 50%, transparent 60%);
  animation: shimmer-slide 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shimmer-slide {
  0%   { left: -60%; }
  100% { left: 160%; }
}

/* ---- GAME 6: AURA COLORS (Emotional State) ---- */
.aura-scene {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.aura-orb-container {
  position: relative;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aura-orb {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #2d0060, #05000f);
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
  transition: background 0.8s ease, box-shadow 0.8s ease;
  z-index: 2;
}

.aura-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid transparent;
  transition: all 0.8s ease;
  pointer-events: none;
}
.aura-ring-1 { inset: -16px; opacity: 0.3; }
.aura-ring-2 { inset: -30px; opacity: 0.15; }
.aura-ring-3 { inset: -46px; opacity: 0.07; }

.aura-orb-label {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
  letter-spacing: 0.08em;
  transition: color 0.4s ease;
  font-style: italic;
}

.aura-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  width: 100%;
}

.aura-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  padding: 0.7rem 0.4rem;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s ease;
  position: relative;
}

.aura-option:hover { border-color: rgba(255,255,255,0.18); }

.aura-option.aura-chosen {
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.03);
}

.aura-swatch {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.aura-option:hover .aura-swatch {
  transform: scale(1.15);
}

.aura-option.aura-chosen .aura-swatch {
  transform: scale(1.2);
  box-shadow: 0 0 16px var(--aura-glow);
}

.aura-option-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.aura-option.aura-chosen .aura-option-label {
  color: rgba(255,255,255,0.85);
}

/* ---- GAME 7: ENERGY ORB DRAG (Life Satisfaction) ---- */
.energy-orb-scene {
  width: 100%;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.orb-display {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.orb-sphere {
  position: relative;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #3a0070, #05000f);
  border: 1px solid rgba(180,80,255,0.2);
  overflow: hidden;
  transition: box-shadow 0.4s ease;
}

.orb-fill-layer {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(212,175,55,0.5), rgba(74,0,144,0.3));
  transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 0%;
}

.orb-fill-layer::before {
  content: '';
  position: absolute;
  top: -4px; left: -10%; right: -10%;
  height: 10px;
  background: rgba(212,175,55,0.3);
  border-radius: 50%;
  animation: wave 2s ease-in-out infinite;
}

@keyframes wave {
  0%, 100% { transform: translateX(0) scaleY(1); }
  50%       { transform: translateX(5%) scaleY(1.4); }
}

.orb-value-display {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1;
  transition: color 0.4s ease;
}

.orb-value-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  transition: color 0.4s ease;
}

.satisfaction-slider-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.satisfaction-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.satisfaction-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #d4af37, #a08828);
  cursor: grab;
  border: 1px solid rgba(212,175,55,0.5);
  box-shadow: 0 0 12px rgba(212,175,55,0.5);
  transition: transform 0.2s ease;
}

.satisfaction-slider::-webkit-slider-thumb:active {
  cursor: grabbing;
  transform: scale(1.2);
}

.satisfaction-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #d4af37, #a08828);
  cursor: grab;
  border: 1px solid rgba(212,175,55,0.5);
  box-shadow: 0 0 12px rgba(212,175,55,0.5);
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
}

/* ============================================
   MINI-GAMES — Block 3: Awareness Level
   ============================================ */

/* ---- GAME 8: RABBIT HOLE (Spiritual Exposure) ---- */
.rabbit-scene {
  width: 100%;
  max-width: 460px;
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
}

.rabbit-shaft {
  width: 10px;
  min-height: 240px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.05);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  align-self: stretch;
}

.rabbit-fill {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, #4a0090, rgba(74,0,144,0.3));
  transition: height 0.6s cubic-bezier(0.4,0,0.2,1);
  height: 0%;
  box-shadow: 0 0 8px rgba(74,0,144,0.6);
}

.rabbit-levels {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.rabbit-level {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.rabbit-level::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: linear-gradient(90deg, rgba(74,0,144,0.35), transparent);
  transition: width 0.4s ease;
}

.rabbit-level:hover::before,
.rabbit-level.rabbit-selected::before { width: 100%; }
.rabbit-level:hover { border-color: rgba(180,80,255,0.3); }

.rabbit-level.rabbit-selected {
  border-color: rgba(74,0,144,0.8);
  background: rgba(74,0,144,0.08);
}

.rabbit-depth-icon {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.3);
  flex-shrink: 0;
  transition: color 0.3s ease;
  line-height: 1;
}

.rabbit-level.rabbit-selected .rabbit-depth-icon { color: #d4af37; }

.rabbit-level-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.08), transparent);
  transition: background 0.3s ease;
}

.rabbit-level.rabbit-selected .rabbit-level-line {
  background: linear-gradient(90deg, rgba(212,175,55,0.4), transparent);
}

.rabbit-level-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
}

.rabbit-level-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  text-align: right;
  transition: color 0.3s ease;
  line-height: 1.3;
}

.rabbit-level.rabbit-selected .rabbit-level-label { color: rgba(255,255,255,0.9); }

.rabbit-depth-glyph {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.45rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.2);
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.rabbit-level.rabbit-selected .rabbit-depth-glyph { color: rgba(212,175,55,0.5); }

.rabbit-level {
  animation: fadeUp 0.4s ease forwards;
  opacity: 0;
}
.rabbit-level:nth-child(1) { animation-delay: 0.05s; }
.rabbit-level:nth-child(2) { animation-delay: 0.12s; }
.rabbit-level:nth-child(3) { animation-delay: 0.19s; }
.rabbit-level:nth-child(4) { animation-delay: 0.26s; }

/* ---- GAME 9: FOUR PORTALS (Beliefs About Reality) ---- */
.portals-scene {
  width: 100%;
  max-width: 480px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.portal-item {
  --p-color: #4a0090;
  --p-glow: rgba(74,0,144,0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.portal-item:hover { transform: translateY(-4px); }

.portal-arch {
  width: 100%;
  aspect-ratio: 0.7;
  border-left: 1px solid var(--p-color);
  border-right: 1px solid var(--p-color);
  border-top: 1px solid var(--p-color);
  border-radius: 50% 50% 0 0 / 40% 40% 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.6));
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.portal-arch::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 80%, var(--p-glow), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.portal-item:hover .portal-arch::before,
.portal-item.portal-chosen .portal-arch::before { opacity: 1; }

.portal-item.portal-chosen .portal-arch {
  border-color: #d4af37;
  box-shadow: 0 0 24px var(--p-glow);
}

.portal-inner {
  position: relative;
  z-index: 1;
}

.portal-glyph {
  font-size: 2rem;
  color: var(--p-color);
  transition: color 0.4s ease, text-shadow 0.4s ease;
  display: block;
}

.portal-item.portal-chosen .portal-glyph {
  color: #d4af37;
  text-shadow: 0 0 20px rgba(212,175,55,0.6);
}

.portal-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  text-align: center;
  line-height: 1.35;
  letter-spacing: 0.02em;
  padding: 0 0.4rem;
  transition: color 0.3s ease;
}

.portal-item.portal-chosen .portal-label { color: rgba(255,255,255,0.9); }

.portal-item {
  animation: fadeUp 0.5s ease forwards;
  opacity: 0;
}
.portal-item:nth-child(1) { animation-delay: 0.05s; }
.portal-item:nth-child(2) { animation-delay: 0.15s; }
.portal-item:nth-child(3) { animation-delay: 0.25s; }
.portal-item:nth-child(4) { animation-delay: 0.35s; }

/* ---- GAME 10: BALANCE SCALE (Inner vs Outer) ---- */
.balance-scene {
  width: 100%;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.balance-visual {
  position: relative;
  width: 240px;
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.scale-arm {
  position: absolute;
  top: 12px;
  left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform-origin: center center;
  transform: rotate(0deg);
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.scale-arm::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, rgba(212,175,55,0.15), rgba(212,175,55,0.6), rgba(212,175,55,0.15));
}

.scale-pillar {
  width: 1px;
  height: 60px;
  background: linear-gradient(0deg, rgba(212,175,55,0.5), rgba(212,175,55,0.15));
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
}

.scale-pan {
  width: 52px;
  height: 14px;
  border-bottom: 1px solid rgba(212,175,55,0.4);
  border-left: 1px solid rgba(212,175,55,0.2);
  border-right: 1px solid rgba(212,175,55,0.2);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 3px;
  position: relative;
}

.scale-pan::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 14px;
  background: rgba(212,175,55,0.3);
}

.scale-pan-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.42rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

.scale-base {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.4), transparent);
  margin-top: auto;
}

.balance-options {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.balance-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.balance-option::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: linear-gradient(90deg, rgba(74,0,144,0.3), transparent);
  transition: width 0.4s ease;
}

.balance-option:hover::before,
.balance-option.balance-chosen::before { width: 100%; }
.balance-option:hover { border-color: rgba(180,80,255,0.25); }

.balance-option.balance-chosen {
  border-color: rgba(212,175,55,0.5);
  background: rgba(212,175,55,0.03);
}

.balance-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.balance-option.balance-chosen .balance-indicator {
  background: #d4af37;
  border-color: #d4af37;
  box-shadow: 0 0 8px rgba(212,175,55,0.6);
}

.balance-option-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.03em;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}

.balance-option.balance-chosen .balance-option-text { color: rgba(255,255,255,0.9); }

.balance-option {
  animation: fadeUp 0.4s ease forwards;
  opacity: 0;
}
.balance-option:nth-child(1) { animation-delay: 0.05s; }
.balance-option:nth-child(2) { animation-delay: 0.12s; }
.balance-option:nth-child(3) { animation-delay: 0.19s; }
.balance-option:nth-child(4) { animation-delay: 0.26s; }

/* ============================================
   MINI-GAMES — Block 4: Self-Perception
   ============================================ */

/* ---- GAME 11: LIVING MIRROR (Who Are You) ---- */
.living-mirror-scene {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.living-mirror-frame {
  position: relative;
  width: 100%;
  border: 1px solid rgba(180,80,255,0.3);
  background: linear-gradient(180deg, rgba(74,0,144,0.08) 0%, rgba(26,0,51,0.5) 100%);
  padding: 1.6rem;
  overflow: hidden;
}

.mirror-corner {
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: rgba(212,175,55,0.35);
  border-style: solid;
}
.mirror-corner-tl { top: 6px; left: 6px;  border-width: 1px 0 0 1px; }
.mirror-corner-tr { top: 6px; right: 6px; border-width: 1px 1px 0 0; }
.mirror-corner-bl { bottom: 6px; left: 6px;  border-width: 0 0 1px 1px; }
.mirror-corner-br { bottom: 6px; right: 6px; border-width: 0 1px 1px 0; }

.living-mirror-frame::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(180,80,255,0.7), transparent);
}

.living-mirror-textarea {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: rgba(255,255,255,0.9);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.85;
  resize: none;
  min-height: 130px;
  letter-spacing: 0.03em;
  caret-color: #d4af37;
  position: relative;
  z-index: 1;
}

.living-mirror-textarea::placeholder {
  color: rgba(255,255,255,0.18);
  font-style: italic;
}

.living-mirror-reflection {
  width: 100%;
  margin-top: 0.5rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(180,80,255,0.2);
  line-height: 1.6;
  letter-spacing: 0.03em;
  transform: scaleY(-1);
  pointer-events: none;
  white-space: pre-wrap;
  word-break: break-word;
  opacity: 0.5;
  filter: blur(1px);
  min-height: 20px;
  border-top: 1px solid rgba(180,80,255,0.08);
  padding-top: 0.3rem;
}

/* ---- GAME 12: COMPASS WHEEL (Control) ---- */
.compass-scene {
  width: 100%;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.compass-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.compass-ring {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.25);
  box-shadow: 0 0 20px rgba(74,0,144,0.2), inset 0 0 20px rgba(0,0,0,0.4);
  background: radial-gradient(circle at center, rgba(26,0,51,0.8), rgba(5,0,15,0.95));
  display: flex;
  align-items: center;
  justify-content: center;
}

.compass-ring::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04);
}

.compass-mark {
  position: absolute;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.2);
  transform-origin: center 52px;
}

.compass-needle {
  position: relative;
  width: 4px;
  height: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: rotate(225deg);
  transition: transform 0.9s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: center 50%;
}

.needle-north {
  width: 2px;
  flex: 1;
  background: linear-gradient(0deg, transparent, #d4af37);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.needle-south {
  width: 2px;
  flex: 1;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.2));
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}

.compass-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
  text-align: center;
  font-style: italic;
  letter-spacing: 0.06em;
  transition: color 0.4s ease;
  max-width: 200px;
  line-height: 1.4;
}

.compass-options {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.compass-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.compass-option::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: linear-gradient(90deg, rgba(74,0,144,0.3), transparent);
  transition: width 0.4s ease;
}

.compass-option:hover::before,
.compass-option.compass-chosen::before { width: 100%; }
.compass-option:hover { border-color: rgba(180,80,255,0.25); }
.compass-option.compass-chosen { border-color: rgba(212,175,55,0.5); }

.compass-opt-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.compass-option.compass-chosen .compass-opt-dot {
  background: #d4af37;
  border-color: #d4af37;
  box-shadow: 0 0 8px rgba(212,175,55,0.6);
}

.compass-opt-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
  line-height: 1.35;
}

.compass-option.compass-chosen .compass-opt-text { color: rgba(255,255,255,0.9); }

.compass-option {
  animation: fadeUp 0.4s ease forwards;
  opacity: 0;
}
.compass-option:nth-child(1) { animation-delay: 0.05s; }
.compass-option:nth-child(2) { animation-delay: 0.12s; }
.compass-option:nth-child(3) { animation-delay: 0.19s; }
.compass-option:nth-child(4) { animation-delay: 0.26s; }

/* ============================================
   MINI-GAMES — Block 5: Desire
   ============================================ */

/* ---- GAME 13: CONSTELLATION CONNECT (Deepest Desire) ---- */
.constellation-scene {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}

.constellation-sky {
  width: 100%;
  height: 180px;
  position: relative;
  background: radial-gradient(ellipse at center, rgba(26,0,51,0.6) 0%, rgba(5,0,15,0.9) 100%);
  border: 1px solid rgba(255,255,255,0.04);
  overflow: hidden;
}

.constellation-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.star-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
  animation: star-twinkle 3s ease-in-out infinite alternate;
}

.star-dot:hover {
  background: rgba(212,175,55,0.4);
  border-color: rgba(212,175,55,0.6);
  transform: translate(-50%, -50%) scale(1.4);
}

.star-dot.star-lit {
  background: rgba(212,175,55,0.7);
  border-color: #d4af37;
  box-shadow: 0 0 10px rgba(212,175,55,0.5), 0 0 20px rgba(212,175,55,0.2);
  transform: translate(-50%, -50%) scale(1.3);
}

@keyframes star-twinkle {
  0%   { opacity: 0.5; }
  100% { opacity: 1; }
}

.constellation-canvas {
  position: relative;
}

.constellation-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(212,175,55,0.2);
  outline: none;
  color: rgba(255,255,255,0.85);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
  resize: none;
  letter-spacing: 0.03em;
  caret-color: #d4af37;
  padding: 0.5rem 0;
  transition: border-color 0.3s ease;
}

.constellation-textarea::placeholder {
  color: rgba(255,255,255,0.2);
  font-style: italic;
}

.constellation-textarea:focus { border-bottom-color: rgba(212,175,55,0.5); }

/* ---- GAME 14: BURN & RELEASE (Instant Change) ---- */
.burn-scene {
  width: 100%;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.burn-parchment {
  position: relative;
  width: 100%;
  border: 1px solid rgba(212,100,0,0.2);
  background: linear-gradient(180deg, rgba(20,8,0,0.6) 0%, rgba(5,0,0,0.8) 100%);
  padding: 1.4rem 1.4rem 3rem;
  overflow: hidden;
  transition: border-color 0.5s ease;
}

.burn-parchment::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(212,80,0,0.08) 0%, transparent 70%);
}

.burn-textarea {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: rgba(255,230,180,0.9);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
  resize: none;
  letter-spacing: 0.03em;
  caret-color: #d4af37;
  position: relative;
  z-index: 1;
}

.burn-textarea::placeholder {
  color: rgba(255,200,100,0.2);
  font-style: italic;
}

.burn-flames {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 36px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  padding: 0 10%;
  opacity: 0.35;
  transition: opacity 0.5s ease, filter 0.5s ease;
  filter: blur(3px);
}

.burn-flame {
  width: 14%;
  height: 100%;
  background: linear-gradient(0deg, rgba(212,80,0,0.8), rgba(212,175,55,0.6), rgba(255,220,100,0.3), transparent);
  border-radius: 50% 50% 20% 20% / 60% 60% 40% 40%;
  animation: flame-flicker 0.8s ease-in-out infinite alternate;
}

@keyframes flame-flicker {
  0%   { transform: scaleX(1) scaleY(1) translateY(0); }
  100% { transform: scaleX(0.85) scaleY(1.15) translateY(-3px); }
}

.burn-hint {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(212,175,55,0.3);
  text-align: center;
}

/* ============================================
   MINI-GAMES — Block 6: Resistance
   ============================================ */

/* ---- GAME 15: BRICK WALL (What's Blocking You) ---- */
.wall-scene {
  width: 100%;
  max-width: 480px;
}

.brick-wall {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.brick-item {
  position: relative;
  padding: 0.9rem 1.2rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-bottom: none;
  cursor: pointer;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(30,20,40,0.6), rgba(20,10,30,0.8));
  transition: all 0.35s ease;
}

.brick-item:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }

.brick-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: rgba(255,255,255,0.06);
  transition: background 0.3s ease;
}

.brick-item:hover { background: linear-gradient(90deg, rgba(74,0,144,0.2), rgba(20,10,30,0.8)); }
.brick-item:hover::before { background: rgba(180,80,255,0.4); }

.brick-item.brick-dimmed {
  opacity: 0.3;
}

.brick-item.brick-chosen {
  background: linear-gradient(90deg, rgba(74,0,144,0.15), rgba(20,10,30,0.6));
  border-color: rgba(212,175,55,0.4);
  opacity: 1;
}

.brick-item.brick-chosen::before { background: #d4af37; }

.brick-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
  line-height: 1.4;
}

.brick-item.brick-chosen .brick-text { color: rgba(255,255,255,0.9); }

.brick-crack {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 10px solid rgba(212,175,55,0);
  transition: border-bottom-color 0.3s ease;
}

.brick-item.brick-chosen .brick-crack { border-bottom-color: rgba(212,175,55,0.5); }

.brick-item {
  animation: fadeUp 0.35s ease forwards;
  opacity: 0;
}
.brick-item:nth-child(1) { animation-delay: 0.05s; }
.brick-item:nth-child(2) { animation-delay: 0.10s; }
.brick-item:nth-child(3) { animation-delay: 0.15s; }
.brick-item:nth-child(4) { animation-delay: 0.20s; }
.brick-item:nth-child(5) { animation-delay: 0.25s; }
.brick-item:nth-child(6) { animation-delay: 0.30s; }

/* ---- GAME 16: THE DOOR (Is Change Possible?) ---- */
.door-scene {
  width: 100%;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.door-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  perspective: 400px;
}

.door-frame {
  width: 80px;
  height: 130px;
  border: 1px solid rgba(212,175,55,0.2);
  position: relative;
  background: rgba(5,0,15,0.9);
  overflow: hidden;
}

.door-frame::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.3), transparent);
}

.door-panel {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2a1040, #1a0033);
  border: 1px solid rgba(180,80,255,0.2);
  transform-origin: left center;
  transform: perspective(400px) rotateY(0deg);
  transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.door-knob {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(212,175,55,0.5);
  box-shadow: 0 0 4px rgba(212,175,55,0.3);
}

.door-light {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(212,175,55,0.6), transparent 70%);
  opacity: 0;
  transition: opacity 0.9s ease;
}

.door-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
  font-style: italic;
  letter-spacing: 0.06em;
  transition: color 0.5s ease;
  text-align: center;
}

.door-options {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.door-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.door-option::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: linear-gradient(90deg, rgba(74,0,144,0.3), transparent);
  transition: width 0.4s ease;
}

.door-option:hover::before,
.door-option.door-chosen::before { width: 100%; }
.door-option:hover { border-color: rgba(180,80,255,0.25); }
.door-option.door-chosen { border-color: rgba(212,175,55,0.4); }

.door-opt-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.door-option.door-chosen .door-opt-indicator {
  background: #d4af37;
  border-color: #d4af37;
  box-shadow: 0 0 8px rgba(212,175,55,0.6);
}

.door-opt-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
  line-height: 1.35;
}

.door-option.door-chosen .door-opt-text { color: rgba(255,255,255,0.9); }

.door-option {
  animation: fadeUp 0.4s ease forwards;
  opacity: 0;
}
.door-option:nth-child(1) { animation-delay: 0.05s; }
.door-option:nth-child(2) { animation-delay: 0.12s; }
.door-option:nth-child(3) { animation-delay: 0.19s; }
.door-option:nth-child(4) { animation-delay: 0.26s; }

/* ============================================
   MINI-GAMES — Block 7: Readiness
   ============================================ */

/* ---- GAME 17: PORTAL PROXIMITY (Are You Ready?) ---- */
.proximity-scene {
  width: 100%;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.proximity-portal-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.proximity-portal-outer {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(74,0,144,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.5);
  transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.8s ease;
  box-shadow: 0 0 15px rgba(74,0,144,0.1);
}

.proximity-portal-mid {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  border: 1px solid rgba(74,0,144,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.8s ease;
}

.proximity-portal-inner {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(74,0,144,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(74,0,144,0.3), rgba(5,0,15,0.9));
}

.proximity-portal-core {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.6), rgba(74,0,144,0.3));
  opacity: 0.2;
  transition: opacity 0.8s ease;
  animation: portal-pulse 2.5s ease-in-out infinite;
}

@keyframes portal-pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.3); }
}

.proximity-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
  font-style: italic;
  letter-spacing: 0.06em;
  text-align: center;
  transition: color 0.5s ease;
}

.proximity-options {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.proximity-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.proximity-option::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: linear-gradient(90deg, rgba(74,0,144,0.3), transparent);
  transition: width 0.4s ease;
}

.proximity-option:hover::before,
.proximity-option.proximity-chosen::before { width: 100%; }
.proximity-option:hover { border-color: rgba(180,80,255,0.25); }
.proximity-option.proximity-chosen { border-color: rgba(212,175,55,0.4); }

.proximity-opt-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.proximity-option.proximity-chosen .proximity-opt-dot {
  background: #d4af37;
  border-color: #d4af37;
  box-shadow: 0 0 8px rgba(212,175,55,0.6);
}

.proximity-opt-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}

.proximity-option.proximity-chosen .proximity-opt-text { color: rgba(255,255,255,0.9); }

.proximity-option {
  animation: fadeUp 0.4s ease forwards;
  opacity: 0;
}
.proximity-option:nth-child(1) { animation-delay: 0.05s; }
.proximity-option:nth-child(2) { animation-delay: 0.12s; }
.proximity-option:nth-child(3) { animation-delay: 0.19s; }
.proximity-option:nth-child(4) { animation-delay: 0.26s; }

/* ============================================
   NEW v2 GAMES + EXPANSIONS
   ============================================ */

/* ---- fadeInUp animation (shared) ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- Mirror sub-prompt expansion ---- */
.mirror-sub-prompt {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(212,175,55,0.15);
}
.mirror-sub-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(212,175,55,0.7);
  margin-bottom: 10px;
}
.mirror-textarea-sub {
  font-size: 0.95rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,175,55,0.15);
}

/* ---- Aura Colors micro-text ---- */
.aura-micro-wrap {
  text-align: center;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.aura-micro-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}
.aura-micro-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(212,175,55,0.3);
  color: #d4af37;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.2rem;
  text-align: center;
  padding: 8px 12px;
  width: 200px;
  outline: none;
  transition: border-color 0.3s ease;
}
.aura-micro-input:focus {
  border-bottom-color: rgba(212,175,55,0.7);
}
.aura-micro-input::placeholder {
  color: rgba(255,255,255,0.25);
  font-style: italic;
}

/* ---- Four Portals micro-text ---- */
.portal-micro-wrap {
  text-align: center;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  grid-column: 1 / -1;
}
.portal-micro-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(212,175,55,0.7);
  margin-bottom: 10px;
}
.portal-micro-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(212,175,55,0.25);
  color: rgba(255,255,255,0.85);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  text-align: center;
  padding: 8px 12px;
  width: 80%;
  max-width: 340px;
  outline: none;
  transition: border-color 0.3s ease;
}
.portal-micro-input:focus {
  border-bottom-color: rgba(212,175,55,0.6);
}

/* ---- Living Mirror dual sub-prompt ---- */
.living-mirror-sub {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(212,175,55,0.12);
}
.living-mirror-sub-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(212,175,55,0.65);
  margin-bottom: 10px;
}
.living-mirror-textarea-sub {
  font-size: 0.95rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(212,175,55,0.12);
}

/* ---- Constellation (star words v2) ---- */
.constellation-sky {
  position: relative;
  height: 280px;
}
.star-word {
  position: absolute;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
  z-index: 2;
}
.star-word-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  margin: 0 auto 6px;
  transition: all 0.4s ease;
  box-shadow: 0 0 4px rgba(255,255,255,0.2);
}
.star-word.star-lit .star-word-dot {
  background: #d4af37;
  box-shadow: 0 0 12px rgba(212,175,55,0.7), 0 0 24px rgba(212,175,55,0.3);
  transform: scale(1.5);
}
.star-word-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.3s ease;
  white-space: nowrap;
}
.star-word.star-lit .star-word-label {
  color: rgba(212,175,55,0.9);
}
.constellation-ta-wrap {
  text-align: center;
  margin-top: 16px;
}
.constellation-ta-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(212,175,55,0.6);
  margin-bottom: 10px;
}

/* ============================================
   BROKEN TOOLS (new — Block 2)
   ============================================ */
.broken-tools-scene {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.tools-hint {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
}
.tools-altar {
  width: 100%;
  max-width: 420px;
  background: radial-gradient(ellipse at center, rgba(42,37,56,0.4) 0%, transparent 70%);
  border-radius: 50%;
  padding: 20px;
}
.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 480px) {
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
}
.tool-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 8px;
  border-radius: 12px;
  background: rgba(45,0,96,0.25);
  border: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
  transition: all 0.3s ease;
}
.tool-item:hover {
  border-color: rgba(212,175,55,0.2);
  background: rgba(45,0,96,0.4);
}
.tool-item.tool-selected {
  border-color: rgba(212,175,55,0.5);
  background: rgba(74,0,144,0.3);
  box-shadow: 0 0 16px rgba(212,175,55,0.15);
  transform: translateY(-4px);
}
.tool-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  transition: all 0.3s ease;
}
.tool-icon svg {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 6px rgba(212,175,55,0.5));
  transition: filter 0.3s ease;
}
.tool-item.tool-selected .tool-icon {
  color: #d4af37;
  transform: scale(1.15);
}
.tool-item.tool-selected .tool-icon svg {
  filter: drop-shadow(0 0 12px rgba(212,175,55,0.9));
}
.tool-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.4);
  text-align: center;
  transition: color 0.3s ease;
}
.tool-item.tool-selected .tool-label {
  color: rgba(212,175,55,0.9);
}
.tools-sub-wrap {
  width: 100%;
  max-width: 380px;
  text-align: center;
}
.tools-sub-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(212,175,55,0.65);
  margin-bottom: 10px;
}
.tools-sub-textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 8px;
  color: rgba(255,255,255,0.85);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  padding: 12px;
  resize: none;
  outline: none;
  transition: border-color 0.3s ease;
}
.tools-sub-textarea:focus {
  border-color: rgba(212,175,55,0.4);
}
.tools-sub-textarea::placeholder {
  color: rgba(255,255,255,0.2);
  font-style: italic;
}

/* ============================================
   KNOWLEDGE MAP (new — Block 3)
   ============================================ */
.knowledge-map-scene {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.kmap-hint {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
}
.kmap-parchment {
  width: 100%;
  max-width: 440px;
  background: linear-gradient(135deg, rgba(26,16,32,0.8) 0%, rgba(26,16,32,0.4) 100%);
  border: 1px solid rgba(212,175,55,0.1);
  border-radius: 12px;
  padding: 24px;
  position: relative;
}
.kmap-seals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 480px) {
  .kmap-seals { grid-template-columns: repeat(2, 1fr); }
}
.kmap-seal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 10px;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  justify-content: center;
  margin: 0 auto;
  background: rgba(45,0,96,0.3);
  border: 1px solid rgba(212,175,55,0.1);
  cursor: pointer;
  transition: all 0.35s ease;
}
.kmap-seal:hover {
  border-color: rgba(212,175,55,0.3);
}
.kmap-seal.kmap-active {
  border-color: rgba(212,175,55,0.6);
  background: rgba(74,0,144,0.35);
  box-shadow: 0 0 20px rgba(212,175,55,0.2);
}
.kmap-glyph {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  transition: all 0.3s ease;
}
.kmap-glyph svg {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 6px rgba(212,175,55,0.5));
  transition: filter 0.3s ease;
}
.kmap-seal.kmap-active .kmap-glyph {
  color: #d4af37;
  transform: scale(1.2);
}
.kmap-seal.kmap-active .kmap-glyph svg {
  filter: drop-shadow(0 0 12px rgba(212,175,55,0.9));
}
.kmap-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.55rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.35);
  text-align: center;
  transition: color 0.3s ease;
}
.kmap-seal.kmap-active .kmap-label {
  color: rgba(212,175,55,0.9);
}
.kmap-other {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}
.kmap-other-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.kmap-other-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(212,175,55,0.25);
  color: rgba(255,255,255,0.85);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  padding: 4px 8px;
  width: 160px;
  outline: none;
}
.kmap-other-input:focus {
  border-bottom-color: rgba(212,175,55,0.6);
}
.kmap-other-input::placeholder {
  color: rgba(255,255,255,0.2);
  font-style: italic;
}

/* ============================================
   THE SEED (new — Block 5)
   ============================================ */
.seed-scene {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.seed-plant-wrap {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.seed-soil {
  width: 160px;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(45,0,96,0.6), rgba(26,0,51,0.8), rgba(45,0,96,0.6), transparent);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.seed-element {
  width: 16px;
  height: 16px;
  border-radius: 50% 50% 50% 0;
  background: radial-gradient(circle at 40% 40%, #d4af37, #8a6f1a);
  transform: rotate(-45deg);
  box-shadow: 0 0 12px rgba(212,175,55,0.4);
  animation: seedPulse 3s ease-in-out infinite;
  transition: all 0.5s ease;
}
.seed-element.seed-cracked {
  border-radius: 40% 50% 50% 30%;
  box-shadow: 0 0 20px rgba(212,175,55,0.6);
}
@keyframes seedPulse {
  0%, 100% { transform: rotate(-45deg) scale(1); }
  50% { transform: rotate(-45deg) scale(1.05); }
}
.seed-stem {
  width: 2px;
  height: 0;
  background: linear-gradient(to top, #7a9a30, #d4af37);
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translateX(-50%);
  transition: height 0.8s ease;
  border-radius: 1px;
}
.seed-leaf {
  position: absolute;
  width: 20px;
  height: 10px;
  border-radius: 0 50% 50% 0;
  background: linear-gradient(135deg, #7a9a30, #d4af37);
  opacity: 0;
  transition: all 0.6s ease;
}
.seed-leaf-l {
  right: 100%;
  top: 30%;
  transform: scaleX(-1);
}
.seed-leaf-r {
  left: 100%;
  top: 50%;
}
.seed-flower {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 20%, #d4af37 60%, rgba(212,175,55,0) 100%);
  box-shadow: 0 0 20px rgba(212,175,55,0.5);
  opacity: 0;
  transition: all 0.8s ease;
}
.seed-roots {
  width: 2px;
  height: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), rgba(74,0,144,0.3));
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  transition: height 0.8s ease;
}
.seed-textarea {
  width: 100%;
  max-width: 380px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,175,55,0.12);
  border-radius: 8px;
  color: rgba(255,255,255,0.85);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.05rem;
  padding: 14px;
  resize: none;
  outline: none;
  transition: border-color 0.3s ease;
}
.seed-textarea:focus {
  border-color: rgba(212,175,55,0.35);
}
.seed-textarea::placeholder {
  color: rgba(255,255,255,0.2);
  font-style: italic;
}
.seed-hint {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.3);
}

/* ============================================
   PORTAL WHISPER (new — Block 7)
   ============================================ */
.whisper-scene {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  min-height: 320px;
}
.whisper-portal-far {
  width: 40px;
  height: 60px;
  border: 2px solid rgba(212,175,55,0.2);
  border-radius: 50% 50% 0 0;
  background: radial-gradient(ellipse at center, rgba(212,175,55,0.05) 0%, transparent 70%);
  opacity: 0.5;
}
.whisper-sphere {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #fff, rgba(255,255,255,0.7));
  box-shadow: 0 0 20px rgba(255,255,255,0.3), 0 0 40px rgba(212,175,55,0.1);
  animation: whisperPulse 3s ease-in-out infinite;
  transition: all 0.5s ease;
}
@keyframes whisperPulse {
  0%, 100% { transform: scale(0.98); }
  50% { transform: scale(1.02); }
}
.whisper-sphere-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
  margin-top: -10px;
}
.whisper-textarea {
  width: 100%;
  max-width: 380px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  color: rgba(255,255,255,0.85);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.1rem;
  padding: 14px;
  resize: none;
  outline: none;
  transition: border-color 0.3s ease;
  text-align: center;
}
.whisper-textarea:focus {
  border-color: rgba(255,255,255,0.2);
}
.whisper-textarea::placeholder {
  color: rgba(255,255,255,0.2);
  font-style: italic;
}

/* ---- Whisper particles (words → sphere) ---- */
.whisper-particles {
  position: absolute;
  left: 50%;
  bottom: 45%;
  width: 0;
  height: 0;
  pointer-events: none;
  z-index: 5;
}
.whisper-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 0 6px rgba(255,255,255,0.6), 0 0 12px rgba(212,175,55,0.3);
  animation: whisperFloat var(--dur, 1.4s) ease-out forwards;
  transform: translate(var(--x-offset, 0), 0);
}
@keyframes whisperFloat {
  0% {
    opacity: 0.9;
    transform: translate(var(--x-offset, 0), 60px) scale(1);
  }
  60% {
    opacity: 0.7;
  }
  100% {
    opacity: 0;
    transform: translate(0, -80px) scale(0.3);
  }
}

/* ---- Sphere ascent to portal ---- */
.whisper-sphere-ascend {
  animation: sphereAscend 2s ease-in forwards !important;
}
@keyframes sphereAscend {
  0% {
    transform: scale(1.2);
    opacity: 1;
  }
  40% {
    transform: scale(0.9) translateY(-80px);
    opacity: 1;
    box-shadow: 0 0 60px rgba(255,255,255,0.7), 0 0 120px rgba(212,175,55,0.4);
  }
  80% {
    transform: scale(0.4) translateY(-200px);
    opacity: 0.8;
  }
  100% {
    transform: scale(0.1) translateY(-280px);
    opacity: 0;
  }
}

/* Portal receiving glow */
.whisper-portal-far.whisper-portal-receiving {
  animation: portalReceive 2s ease-in forwards;
}
@keyframes portalReceive {
  0% {
    border-color: rgba(212,175,55,0.2);
    background: radial-gradient(ellipse at center, rgba(212,175,55,0.05) 0%, transparent 70%);
  }
  60% {
    border-color: rgba(212,175,55,0.5);
    background: radial-gradient(ellipse at center, rgba(212,175,55,0.15) 0%, transparent 70%);
    box-shadow: 0 0 30px rgba(212,175,55,0.3);
  }
  100% {
    border-color: rgba(212,175,55,0.8);
    background: radial-gradient(ellipse at center, rgba(212,175,55,0.3) 0%, transparent 70%);
    box-shadow: 0 0 50px rgba(212,175,55,0.5), 0 0 100px rgba(212,175,55,0.2);
  }
}

/* Golden flash after sphere enters portal */
.whisper-flash {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 50% 20%, rgba(212,175,55,0.4) 0%, transparent 60%);
  animation: whisperFlash 1.5s ease-out forwards;
  pointer-events: none;
  z-index: 100;
}
@keyframes whisperFlash {
  0% {
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* Whisper scene needs relative positioning for particles */
.whisper-scene {
  position: relative;
}

/* Custom Continue button for Portal Whisper */
.whisper-custom-next {
  display: block;
  margin: 20px auto 0;
  padding: 14px 48px;
  background: #d4af37;
  color: #05000f;
  border: none;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}
.whisper-custom-next:hover {
  background: #e6c34a;
  box-shadow: 0 0 20px rgba(212,175,55,0.4);
}
