/* 首页自适应 */
.index-container {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(to bottom, #fde8f1, #fff);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15vh 5% 10vh;
}

.header {
  text-align: center;
  margin-bottom: clamp(40px, 8vh, 80px);
  width: 100%;
}

.main-title {
  font-size: clamp(24px, 6vw, 36px);
  color: #ff6fa2;
  font-weight: bold;
  margin-bottom: 8px;
}

.desc {
  font-size: clamp(13px, 3vw, 16px);
  color: #999;
  letter-spacing: 1px;
}

.btn-container {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 3vh, 22px);
}

.btn-item {
  background: #fff;
  border-radius: clamp(14px, 4vw, 20px);
  padding: clamp(16px, 4vw, 22px) clamp(18px, 4vw, 28px);
  display: flex;
  align-items: center;
  box-shadow: 0 6px 20px rgba(255, 111, 162, 0.12);
  cursor: pointer;
  transition: 0.2s;
  width: 100%;
}

.btn-item:active {
  transform: scale(0.97);
}

.icon {
  width: clamp(36px, 10vw, 44px);
  height: clamp(36px, 10vw, 44px);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(18px, 5vw, 24px);
  margin-right: 16px;
  flex-shrink: 0;
}

.icon.star {
  background: #fff0f6;
  color: #ff6fa2;
}
.icon.fire {
  background: #fff7eb;
  color: #ff9f4a;
}
.icon.msg {
  background: #edf7ff;
  color: #4dabf7;
}

.text {
  font-size: clamp(15px, 4vw, 18px);
  color: #333;
  font-weight: 500;
}