/* 主容器 - 全宽横幅效果 */
.mindventure-hero {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  position: relative;
  overflow: hidden;
}

/* 添加装饰性背景光效 */
.mindventure-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(79, 134, 255, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(107, 159, 255, 0.1) 0%, transparent 40%);
  animation: float 15s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-2%, -2%); }
}

/* 头部包装器 */
.mindventure-header {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 40px;
  background: transparent;
  border: none;
  box-shadow: none;
  z-index: 1;
}

/* 标题包装器 */
.title-wrapper {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* 主标题容器 */
.mindventure-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 0 0 24px 0;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.2;
}

/* 标题图标 */
.title-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #4f86ff, #6b9fff);
  border-radius: 20px;
  font-size: 36px;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 8px 32px rgba(79, 134, 255, 0.4);
}

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

/* 标题文字部分 */
.title-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

/* Welcome 文字 */
.welcome {
  font-size: 0.35em;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 4px;
}

/* 品牌名称 */
.brand {
  background: linear-gradient(90deg, #fff, #a5c4ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  letter-spacing: -1px;
}

/* 标签徽章 */
.title-badge {
  padding: 10px 24px;
  background: linear-gradient(135deg, #4f86ff, #6b9fff);
  color: white;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(79, 134, 255, 0.4);
}

/* 副标题 */
.mindventure-subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
}

/* 装饰性背景元素 */
.hero-decoration {
  display: none;
}

/* 响应式 - 手机端 */
@media (max-width: 768px) {
  .mindventure-header {
    padding: 50px 20px;
  }
  
  .title-icon {
    width: 56px;
    height: 56px;
    font-size: 28px;
  }
  
  .welcome {
    font-size: 12px;
    letter-spacing: 2px;
  }
  
  .title-badge {
    padding: 8px 16px;
    font-size: 13px;
  }
  
  .mindventure-subtitle {
    font-size: 14px;
  }
}

/* 悬停效果 */
.mindventure-header:hover {
  transform: none;
  box-shadow: none;
}
