/* 荣誉墙专用样式 - 平等展示版本 */

/* ====== 全页面金色光晕效果 ====== */
.honor-hero::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 30%, rgba(255, 215, 0, 0.08), rgba(255, 215, 0, 0.03) 40%, transparent 70%);
  animation: glowPulse 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes glowPulse {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

/* ====== 全页面鼠标跟随光效 ====== */
.mouse-glow {
  position: fixed;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.12), rgba(255, 215, 0, 0.06) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  will-change: transform;
}

/* ====== 全页面金色星空效果 ====== */
.stars-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  will-change: transform;
  transition: transform 0.2s ease-out;
}

/* ====== 烟花效果容器 ====== */
.fireworks-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  will-change: transform;
  transition: transform 0.2s ease-out;
}

.firework {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  animation: firework-explode 1.5s ease-out forwards;
}

@keyframes firework-explode {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(var(--tx), var(--ty)) scale(0);
    opacity: 0;
  }
}

/* ====== 星星闪烁动画 ====== */
@keyframes starTwinkle {
  0%, 100% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

@keyframes starFloat {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  25% {
    transform: translateY(-20px) translateX(10px);
  }
  75% {
    transform: translateY(-10px) translateX(-10px);
  }
}

/* 星星视差漂移动画 */
@keyframes starDrift {
  0%, 100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(var(--move-x), calc(var(--move-y) * 0.5));
  }
  50% {
    transform: translate(calc(var(--move-x) * 0.5), var(--move-y));
  }
  75% {
    transform: translate(calc(var(--move-x) * -0.3), calc(var(--move-y) * -0.5));
  }
}

/* 星球漂浮动画 */
@keyframes planetFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(15px, -20px) scale(1.05);
  }
  66% {
    transform: translate(-10px, 15px) scale(0.95);
  }
}

/* 星球旋转动画 */
@keyframes planetRotate {
  0% {
    filter: hue-rotate(0deg) brightness(1);
  }
  50% {
    filter: hue-rotate(10deg) brightness(1.1);
  }
  100% {
    filter: hue-rotate(0deg) brightness(1);
  }
}

/* Hero Section */
.honor-hero {
  padding: 6rem 0 4rem;
  background: transparent;
  position: relative;
  overflow: hidden;
  text-align: center;
  z-index: 2;
}

.honor-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05), transparent 60%);
  animation: pulse 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* 粒子背景 */
.particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.particles::before,
.particles::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 215, 0, 0.6);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  animation: float 6s ease-in-out infinite;
}

.particles::before {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.particles::after {
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
}

.honor-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  animation: fadeInDown 0.8s ease-out;
}

.title-icon {
  display: block;
  margin: 0 auto 1rem;
  color: #FFD700;
  filter: drop-shadow(0 4px 12px rgba(255, 215, 0, 0.6));
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.honor-subtitle {
  font-size: 1.5rem;
  color: rgba(255, 215, 0, 0.9);
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 数据统计 */
.honor-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* 返回按钮 */
.back-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.back-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateX(-5px);
}

/* ====== 统一展示区域 ====== */
.contributors-section {
  padding: 4rem 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.contributors-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.04), transparent 60%);
  animation: pulse 4s ease-in-out infinite;
  animation-delay: 0.5s;
  pointer-events: none;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
  /* Override gradient text effect from base.css */
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: #FFFFFF;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 0.9375rem;
  position: relative;
  z-index: 1;
}

/* 标签筛选器 */
.filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.filter-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.15);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.filter-btn:hover {
  border-color: rgba(255, 215, 0, 0.4);
  background: rgba(255, 215, 0, 0.08);
  color: #FFD700;
  transform: translateY(-2px);
}

.filter-btn:hover::before {
  width: 200%;
  height: 200%;
}

.filter-btn.active {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 165, 0, 0.15));
  border-color: rgba(255, 215, 0, 0.5);
  color: #FFD700;
  box-shadow: 0 4px 16px rgba(255, 215, 0, 0.3);
}

.filter-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.filter-btn:hover .filter-icon,
.filter-btn.active .filter-icon {
  transform: scale(1.15) rotate(5deg);
}

/* 成员网格 - 统一样式 */
.members-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* 成员卡片 - 统一样式 */
.member-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  cursor: pointer;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.member-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.member-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.3);
}

.member-card:hover::before {
  opacity: 1;
}

/* 头像 - 统一样式 */
.member-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 700;
  font-size: 2rem;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.member-card:hover .member-avatar {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.5);
}

/* 成员名字 */
.member-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.member-role {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 1.25rem;
}

/* ====== 贡献标签系统 ====== */
.contribution-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.tag {
  padding: 0.375rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
}

.tag-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.tag:hover .tag-icon {
  transform: scale(1.2) rotate(5deg);
}

/* 统一标签样式 - 荣誉金色 */
.tag-feedback,
.tag-demo,
.tag-scenario,
.tag-survey,
.tag-feature,
.tag-pioneer {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
  color: rgba(255, 193, 7, 0.95);
}

.tag:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 8px currentColor;
}

/* ====== 其他参与者区域 ====== */
.all-participants-section {
  padding: 3rem 0;
  background: transparent;
  text-align: center;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.all-participants-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.03), transparent 60%);
  animation: pulse 4s ease-in-out infinite;
  animation-delay: 1s;
  pointer-events: none;
}

.participants-note {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 0.9375rem;
  position: relative;
  z-index: 1;
}

.participants-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.participant-name {
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  color: var(--text-secondary);
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.participant-name:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
  color: rgba(255, 215, 0, 0.9);
}

/* ====== 权益展示区域 ====== */
.benefits-section {
  padding: 4rem 0;
  text-align: center;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.benefits-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.04), transparent 60%);
  animation: pulse 4s ease-in-out infinite;
  animation-delay: 1.5s;
  pointer-events: none;
}

.benefits-note {
  color: var(--text-secondary);
  margin-bottom: 3rem;
  font-size: 1rem;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 1;
}

.benefit-item {
  padding: 2rem;
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: all 0.4s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.2);
}

.benefit-icon {
  margin: 0 auto 1rem;
  display: block;
  color: #FFD700;
  filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.4));
  transition: all 0.4s ease;
}

.benefit-item:hover .benefit-icon {
  transform: scale(1.1) rotateY(180deg);
  color: #FFA500;
}

.benefit-item h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.benefit-item p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.benefits-private-note {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-style: italic;
  opacity: 0.7;
}

/* ====== 感谢区域 ====== */
.thank-you-section {
  padding: 6rem 0;
  background: transparent;
  text-align: center;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.thank-you-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05), transparent 60%);
  animation: pulse 4s ease-in-out infinite;
  animation-delay: 2s;
  pointer-events: none;
}

.thank-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.thank-message {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 2;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.thank-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.btn-primary {
  padding: 1rem 3rem;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
}

.btn-secondary {
  padding: 1rem 3rem;
  background: transparent;
  color: var(--text-primary);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: rgba(255, 215, 0, 0.5);
  background: rgba(255, 215, 0, 0.05);
}

/* Footer */
.footer {
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  font-size: 0.875rem;
  position: relative;
  z-index: 2;
}

/* ====== 响应式设计 ====== */
@media (max-width: 1024px) {
  .members-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .honor-stats {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .honor-title {
    font-size: 2rem;
  }

  .honor-subtitle {
    font-size: 1.125rem;
  }

  .honor-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .filter-bar {
    padding: 1rem;
    gap: 0.5rem;
  }

  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
  }

  .filter-icon {
    width: 14px;
    height: 14px;
  }

  .members-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .thank-title {
    font-size: 2rem;
  }

  .thank-message {
    font-size: 1rem;
  }

  .thank-cta {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .members-grid {
    grid-template-columns: 1fr;
  }

  .honor-hero {
    padding: 4rem 0 3rem;
  }

  .member-avatar {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

/* ====== 加载动画延迟 ====== */
.member-card:nth-child(1) { animation-delay: 0.05s; }
.member-card:nth-child(2) { animation-delay: 0.1s; }
.member-card:nth-child(3) { animation-delay: 0.15s; }
.member-card:nth-child(4) { animation-delay: 0.2s; }
.member-card:nth-child(5) { animation-delay: 0.25s; }
.member-card:nth-child(6) { animation-delay: 0.3s; }
.member-card:nth-child(7) { animation-delay: 0.35s; }
.member-card:nth-child(8) { animation-delay: 0.4s; }
.member-card:nth-child(9) { animation-delay: 0.45s; }
.member-card:nth-child(10) { animation-delay: 0.5s; }
.member-card:nth-child(11) { animation-delay: 0.55s; }
.member-card:nth-child(12) { animation-delay: 0.6s; }
.member-card:nth-child(13) { animation-delay: 0.65s; }
.member-card:nth-child(14) { animation-delay: 0.7s; }
.member-card:nth-child(15) { animation-delay: 0.75s; }
.member-card:nth-child(16) { animation-delay: 0.8s; }
.member-card:nth-child(17) { animation-delay: 0.85s; }
.member-card:nth-child(18) { animation-delay: 0.9s; }
.member-card:nth-child(19) { animation-delay: 0.95s; }
.member-card:nth-child(20) { animation-delay: 1s; }
