/* 全局样式 */
body {
  background-color: black;
  color: white;
  font-family: 'Abadi MT Condensed Light', sans-serif;
  margin: 0;
  padding: 0;
}

/* 标题样式 */
header {
  text-align: center;
  padding: 40px 20px;
}

header h1 {
  margin: 0;
  font-size: 4.5rem;
  font-family: 'Bauhaus 93', sans-serif;
}

/* 导航菜单样式 */
nav ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  justify-content: center;
}

nav ul li {
  margin: 0 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  font-family: 'Bauhaus 93', sans-serif;
}

nav ul li a.active {
  font-weight: bold;
}

/* 介绍部分样式 */
.intro {
  display: flex;
  align-items: center;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.intro p {
  flex: 1;
  margin-right: 20px;
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: left;
  font-family: 'Abadi MT Condensed Light', sans-serif;
}

.intro img {
  width: 200px;
  height: auto;
  margin-left: 20px;
  border-radius: 10px;
}

/* 图片展示部分样式 */
.image-gallery {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  background-color: #F8AE6E !important;
  position: relative;
}

/* 图片之间的空隙 */
.image-gallery picture {
  width: 30%; /* 每张图片占 30% 宽度 */
  margin: 0 1.5%; /* 左右各留 1.5% 的空隙 */
}

.image-gallery img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* 浮动文字样式（仅应用于第一排图片） */
.image-gallery.first-row::before {
  content: "HI";
  font-family: 'Bauhaus 93', sans-serif;
  font-size: 8rem;
  font-weight: bold;
  color: white;
  position: absolute;
  top: -60px;
  left: 10px;
  z-index: 10;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* 新增文字内容样式 */
.description {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.6;
  font-family: 'Abadi MT Condensed Light', sans-serif;
}

/* 内容部分样式（用于 Journey 和 Eco-system 页面） */
.content {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.6;
  font-family: 'Abadi MT Condensed Light', sans-serif;
}

/* Twitter 图标样式 */
.twitter-icon {
  display: inline-block;
  margin-left: 10px; /* 调整图标与文本的间距 */
  transition: opacity 0.3s ease; /* 添加鼠标悬停效果 */
}

.twitter-icon:hover {
  opacity: 0.8; /* 鼠标悬停时图标变淡 */
}

.twitter-logo {
  width: 60px; /* 调整为原来的 2.5 倍（24px * 2.5 = 60px） */
  height: 60px;
  vertical-align: middle; /* 使图标与文本垂直对齐 */
  filter: brightness(0) saturate(100%) invert(63%) sepia(99%) saturate(427%) hue-rotate(169deg) brightness(99%) contrast(93%); /* 将图标颜色改为淡蓝色 */
}

/* 页脚样式 */
footer {
  text-align: center;
  padding: 40px 20px;
  background-color: #111;
  margin-top: 40px;
  font-family: 'Bauhaus 93', sans-serif;
}