/* 生活发泄 - 自适应 */
.life-container {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(to bottom, #fef0f0, #f5f5f5);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 40px;
}

.target-select {
  width: 90%;
  margin-top: clamp(20px, 5vh, 40px);
}

.target-selector {
  width: 100%;
  padding: clamp(10px, 3vw, 14px);
  border-radius: 10px;
  border: 1px solid #eee;
  font-size: clamp(14px, 3.5vw, 16px);
  background: #fff;
}

.doll-area {
  margin-top: clamp(30px, 8vh, 60px);
  text-align: center;
}

.doll-img {
  width: clamp(120px, 40vw, 180px);
  height: auto;
  margin-bottom: 15px;
}

.doll-tip {
  font-size: clamp(14px, 4vw, 18px);
  color: #ff4444;
  background: #fff;
  padding: 8px 16px;
  border-radius: 15px;
  display: inline-block;
}

.btn-group {
  width: 90%;
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.btn.attack {
  background: #ff4444;
  color: #fff;
}
.btn.change {
  background: #ff69b4;
  color: #fff;
}
.btn.reset {
  background: #fff;
  color: #ff69b4;
  border: 1px solid #ff69b4;
}