/* 语文模块专用样式 */

body {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.chinese-header {
  text-align: center;
  padding: 30px 20px;
  color: white;
}

.chinese-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

/* 功能列表 */
.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  padding: 30px 20px;
}

.feature-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  border-left: 5px solid #4CAF50;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.18);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.feature-title {
  font-size: 22px;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 14px;
  color: #888;
}

.feature-badge {
  display: inline-block;
  background: #4CAF50;
  color: white;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-top: 10px;
}

.feature-badge.coming {
  background: #9e9e9e;
}
