/* 全局样式 */
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  color: #fff;
  background: #0d0d0d;
  overflow-x: hidden;
}

h1, h2 {
  text-align: center;
}

a {
  text-decoration: none;
  color: inherit;
}

/* 头部 */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  text-align: center;
}

#background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 4em;
  font-weight: bold;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
  animation: pulse 3s infinite;
}

.hero-subtitle {
  margin-top: 20px;
  font-size: 1.5em;
  color: #ccc;
}

.cta-button {
  margin-top: 40px;
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(90deg, #ff7a18, #ffb347);
  color: #000;
  border-radius: 30px;
  font-weight: bold;
  transition: transform 0.3s, background 0.3s;
}

.cta-button:hover {
  transform: scale(1.1);
  background: linear-gradient(90deg, #ffb347, #ff7a18);
}

/* 团队页面 */
.team-hero {
  text-align: center;
  padding: 50px 20px;
  background: linear-gradient(90deg, #0d0d0d, #333);
  color: #fff;
}

.team-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 40px 20px;
}

.team-member {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: scale(0.9);
  animation: fadeIn 0.8s ease forwards;
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.team-member h3 {
  margin: 10px 0;
  font-size: 1.2em;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%, 100% {
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
  }
  50% {
    text-shadow: 0 0 30px rgba(255, 255, 255, 1);
  }
}
