/* ==================== 比赛公示模块样式 ==================== */
.awards-wrapper {
  padding: 60px 0;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.awards-coming-soon {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border-radius: 20px;
  padding: 60px 40px;
  box-shadow: 0 8px 24px rgba(0, 137, 255, 0.08);
}

/* 奖杯图标动画 */
.awards-coming-soon .coming-soon-icon {
  margin: 0 auto 30px;
  animation: trophy-shine 3s ease-in-out infinite;
}

@keyframes trophy-shine {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: scale(1.05) rotate(-5deg);
    opacity: 0.95;
  }
  50% {
    transform: scale(1.1) rotate(0deg);
    opacity: 1;
  }
  75% {
    transform: scale(1.05) rotate(5deg);
    opacity: 0.95;
  }
}

.coming-soon-title {
  font-size: 32px;
  font-weight: bold;
  color: #1a1a1a;
  margin-bottom: 30px;
  line-height: 1.4;
}

/* 日期标签 - 橙色主题 */
.coming-soon-date {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.date-badge.announce {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 40px;
  background: linear-gradient(135deg, #e3f3ff 0%, #f0f9ff 100%);
  border: 2px solid #0089FF;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 137, 255, 0.15);
}

.date-badge.announce .date-label {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
  font-weight: 500;
}

.date-badge.announce .date-value {
  font-size: 28px;
  font-weight: bold;
  color: #0089FF;
  letter-spacing: 1px;
}

/* 描述文字 */
.coming-soon-desc {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* 奖项功能特性 - 3列布局 */
.awards-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  padding: 0 20px;
}

.awards-features .feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 20px;
  background: linear-gradient(135deg, #e3f3ff 0%, #fff 100%);
  border: 2px solid #d4e9ff;
  border-radius: 12px;
  transition: all 0.3s;
}

.awards-features .feature-item:hover {
  background: linear-gradient(135deg, #d4e9ff 0%, #a8d8ff 100%);
  border-color: #0089FF;
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 137, 255, 0.2);
}

.awards-features .feature-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.awards-features .feature-icon svg {
  width: 48px;
  height: 48px;
}

.awards-features .feature-text {
  font-size: 16px;
  color: #333;
  font-weight: 600;
  margin-bottom: 6px;
}

.feature-sub {
  font-size: 13px;
  color: #0089FF;
  font-weight: 500;
}

/* 提示信息 - 蓝色主题 */
.announce-tip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  background: #e3f3ff;
  border-left: 4px solid #0089FF;
  border-radius: 8px;
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}

.announce-tip svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.announce-tip span {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* 响应式设计 */
@media screen and (max-width: 768px) {
  .awards-wrapper {
    padding: 20px 0;
  }

  .awards-coming-soon {
    padding: 40px 24px;
  }

  .coming-soon-title {
    font-size: 24px;
  }

  .date-badge.announce {
    padding: 16px 30px;
  }

  .date-badge.announce .date-value {
    font-size: 22px;
  }

  .awards-features {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0;
  }

  .awards-features .feature-item {
    padding: 20px 16px;
  }

  .awards-features .feature-icon svg {
    width: 42px;
    height: 42px;
  }

  .announce-tip {
    flex-direction: column;
    text-align: center;
    padding: 16px;
  }
}

@media screen and (max-width: 480px) {
  .awards-coming-soon .coming-soon-icon svg {
    width: 60px;
    height: 60px;
  }

  .coming-soon-title {
    font-size: 20px;
  }

  .date-badge.announce .date-value {
    font-size: 20px;
  }

  .awards-features .feature-icon svg {
    width: 40px;
    height: 40px;
  }
}

