/* ===== 首页场景 ===== */
.home-scene {
  background: linear-gradient(180deg, #4a0e0e 0%, #8b1a1a 50%, #4a0e0e 100%);
}

.home-title {
  font-size: 64px;
  font-weight: bold;
  color: #ffd700;
  text-align: center;
  margin-bottom: 60px;
  text-shadow: 
    4px 4px 0 #000,
    -2px -2px 0 rgba(255, 215, 0, 0.3);
  letter-spacing: 8px;
}

.home-subtitle {
  font-size: 20px;
  color: #ffed4e;
  text-align: center;
  margin-bottom: 80px;
  letter-spacing: 4px;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.5);
}

.home-enter-button {
  font-size: 24px;
  padding: 20px 48px;
  animation: pulse 2s infinite;
}

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