body {
  margin: 0;
  font-family: "Microsoft Yahei", Arial, sans-serif;
  background-color: #ffffff;
  color: #333;
}

.container {
  max-width: 600px;
  margin: 40px auto;
  padding: 20px;
  background-color: #fdfdfd;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); /* 加深阴影 */
}

h1 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 24px;
  color: #444;
}

.button-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.button {
  display: block;
  padding: 14px;
  text-align: center;
  background-color: rgba(230, 230, 230, 0.9); /* 微透明灰 */
  color: #222;
  font-size: 16px;
  border: none;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.2s ease;
  backdrop-filter: blur(4px);
}

.button:hover {
  background-color: rgba(210, 210, 210, 0.95);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

/* 深一点但仍清新的颜色标签 */
.button.red {
  background-color: rgba(255, 220, 220, 0.9);
  color: #b22222;/* 深红色 */
}

.button.purple {
  background-color: rgba(235, 225, 255, 0.9);
  color: #5e35b1;/* 紫色 */
}

.button.orange {
  background-color: rgba(255, 204, 153, 0.9); /* 淡橙色 */
  color: #f57c00; /* 深橙色文字 */
}

.button.blue {
  background-color: rgba(173, 216, 230, 0.9); /* 淡蓝色 */
  color: #1e88e5; /* 深蓝色文字 */
}
.button.teal {
  background-color: rgba(169, 228, 227, 0.9); /* 浅绿蓝色 */
  color: #00796b; /* 深绿蓝色文字 */
}
.button.gray {
  background-color: rgba(211, 211, 211, 0.9); /* 灰色 */
  color: #616161; /* 深灰色文字 */
}


.note {
  margin-top: 20px;
  color: #b22222;
  font-size: 14px;
  text-align: center;
}

@media (min-width: 480px) {
  .button-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .button {
    flex: 1 1 48%;
  }
}
