body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
}

.game-container {
  position: relative;
  text-align: center;
}

.title {
  color: white;
  font-size: 48px;
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.char {
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
  cursor: pointer;
  transition: transform 0.3s;
}

.char:hover {
  transform: scale(1.1);
}

.char img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.dialogue-box {
  background: rgba(255,255,255,0.95);
  border-radius: 20px;
  padding: 20px 30px;
  max-width: 500px;
  min-height: 100px;
  margin: 0 auto 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  font-size: 18px;
  line-height: 1.6;
}

.controls {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  background: white;
  color: #764ba2;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn.mood {
  background: #ff6b6b;
  color: white;
}

.btn.mood:hover {
  background: #ff5252;
}

.mood-display {
  margin-bottom: 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}
