/* 优化英雄区域样式 */
.hero-section {
  position: relative;
  background: linear-gradient(rgba(18, 14, 8, 0.7), rgba(18, 14, 8, 0.85)), url('../images/bg.webp');
  background-size: cover;
  background-position: center;
  color: var(--light-text);
  padding: 7rem 0 4rem;
  margin-bottom: 2rem;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(246, 195, 4, 0.1) 0%, rgba(18, 14, 8, 0) 70%);
  z-index: 1;
  opacity: 0.5;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(246, 194, 4, 0) 0%, rgba(18, 14, 8, 0) 100%);
  z-index: 1;
}

.hero-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 650px;
  text-align: center;
  animation: simpleFadeIn 0.8s ease-out;
}

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

/* 删除徽章相关样式 */
/* 徽章样式优化 */
.hero-badge {
  display: none;
}

.badge-icon,
.badge-text,
.mobile-block {
  display: none;
}

/* 标题样式优化 */
.hero-title {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
  line-height: 1.2;
  text-shadow: 0 2px 15px rgba(18, 14, 8, 0.7);
  color: var(--light-text);
}

.version-highlight {
  position: relative;
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 0 2px;
  color: var(--primary-color);
}

/* 添加静态下划线替代动画 */
.version-highlight::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  opacity: 0.95;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--primary-light);
}

.hero-desc {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  line-height: 1.6;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 3px rgba(18, 14, 8, 0.5);
}

/* 功能特性优化 */
.hero-features-wrap {
  margin-bottom: 1.5rem;
  width: 100%;
}

.hero-features {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.8rem;
  justify-content: space-between;
  max-width: 450px;
  margin: 0 auto;
  width: 100%;
}

.feature-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-weight: 500;
  letter-spacing: 0.5px;
  background-color: rgba(54, 42, 29, 0.6);
  border: 1px solid var(--border-color);
  min-width: 0;
}

.feature-item:hover {
  transform: translateY(-2px);
  background-color: rgba(246, 195, 4, 0.15);
  border-color: var(--primary-dark);
}

.feature-item i {
  color: var(--primary-color);
  font-size: 1rem;
}

.feature-item span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 下载区域优化 */
.download-container {
  max-width: 400px;
  margin: 0 auto;
  position: relative;
}

.download-container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 110%;
  background: radial-gradient(circle, rgba(246, 195, 4, 0.2) 0%, rgba(18, 14, 8, 0) 70%);
  z-index: -1;
  filter: blur(15px);
  opacity: 0.6;
}

.download-btn {
  display: block;
  width: 100%;
  padding: 1rem 1.25rem;
  border-radius: var(--border-radius);
  display: flex;
  transition: all 0.25s ease;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  background: var(--gradient-primary);
  color: var(--button-text);
  box-shadow: 0 4px 12px rgba(246, 195, 4, 0.25);
}

.btn-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  justify-content: center;
}

.btn-text {
  display: flex;
  flex-direction: column;
}

.download-btn .main-text {
  font-size: 1.15rem;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.download-btn .version-text {
  font-size: 0.85rem;
  opacity: 0.9;
  margin-top: 3px;
}

.download-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(45deg, #f6c304, #ffd700);
  box-shadow: 0 5px 15px rgba(246, 195, 4, 0.45);
}

.download-btn i {
  font-size: 1.6rem;
  color: var(--dark-bg);
}

.version-details {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.85rem;
  font-size: 0.85rem;
  color: var(--muted-text);
}

.version-details .dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  background-color: var(--muted-text);
  border-radius: 50%;
  margin: auto 0;
}

/* 组件结构样式 */
.hero-header {
  margin-bottom: 1.5rem;
}

.hero-info {
  margin-bottom: 1.75rem;
}

.hero-action {
  margin-top: 1rem;
}

/* 响应式调整 */
@media (max-width: 991px) {
  .hero-content {
    max-width: 95%;
    padding: 0 1rem;
  }
  
  .hero-section {
    padding: 6rem 0 3.5rem;
  }
  
  .hero-title {
    font-size: 2.6rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.3rem;
  }
  
  .hero-section {
    padding: 5.5rem 0 3rem;
  }
  
  .hero-features {
    gap: 0.4rem;
    flex-wrap: nowrap;
    max-width: 100%;
    justify-content: space-between;
  }
  
  .feature-item {
    flex: 1;
    font-size: 0.85rem;
    padding: 0.35rem 0.5rem;
    min-width: 0;
  }
  
  .feature-item span {
    font-size: 0.85rem;
  }
  
  .feature-item i {
    font-size: 0.9rem;
  }
  
  .hero-desc {
    font-size: 1rem;
  }
  
  .download-container {
    max-width: 350px;
  }
}

@media (max-width: 576px) {
  .hero-features {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.3rem;
    max-width: 100%;
  }
  
  .feature-item {
    flex: 1;
    width: auto;
    max-width: none;
    justify-content: center;
    padding: 0.25rem 0.4rem;
    font-size: 0.7rem;
    gap: 0.25rem;
    margin: 0;
    min-width: 0;
  }
  
  .feature-item span {
    font-size: 0.7rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .feature-item i {
    font-size: 0.75rem;
    min-width: 12px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }
  
  .hero-section {
    padding: 5rem 0 2.5rem;
  }
  
  .download-btn {
    padding: 0.8rem 1rem;
  }
  
  .download-btn i {
    font-size: 1.4rem;
  }
  
  .download-btn .main-text {
    font-size: 1.05rem;
  }
  
  .download-btn .version-text {
    font-size: 0.8rem;
  }
  
  .version-details {
    font-size: 0.8rem;
    margin-top: 0.75rem;
  }
  
  .hero-header {
    margin-bottom: 1.25rem;
  }
  
  .hero-info {
    margin-bottom: 1.5rem;
  }
  
  .hero-desc {
    max-width: 100%;
  }
  
  .hero-features-wrap {
    margin-bottom: 1.25rem;
  }
}

@media (max-width: 375px) {
  .hero-features {
    gap: 0.2rem;
  }
  
  .feature-item {
    padding: 0.2rem 0.3rem;
    font-size: 0.65rem;
    gap: 0.2rem;
  }
  
  .feature-item span {
    font-size: 0.65rem;
  }
  
  .feature-item i {
    font-size: 0.7rem;
  }
} 