/* 全局样式 */
body {
  font-family: 'Arial', sans-serif;
  color: #333;
}

/* 英雄区域 */
.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://trae-api-cn.mchost.guru/api/ide/v1/text_to_image?prompt=World%20of%20Warcraft%20fantasy%20landscape%20with%20castle%20and%20mountains&image_size=landscape_16_9');
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
}

/* 卡片样式 */
.card {
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* 响应式调整 */
@media (max-width: 768px) {
  .hero-section {
    height: auto;
    padding: 100px 0;
  }
  
  .hero-section .display-4 {
    font-size: 2.5rem;
  }
}

/* 成员列表样式 */
.member-card {
  border: 1px solid #dee2e6;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.member-card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* 日历样式 */
.calendar-event {
  background-color: #e3f2fd;
  border-left: 4px solid #2196f3;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 4px;
}

/* 留言板样式 */
.comment {
  border-bottom: 1px solid #eee;
  padding: 15px 0;
}

.comment:last-child {
  border-bottom: none;
}

/* 游戏数据样式 */
.stat-card {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  background-color: #e9ecef;
  transform: translateY(-5px);
}