
.manifesto {
  padding: 40px 10%;
  text-align: center;
  /* 深色背景+微妙红色氛围，呼应你页面的黑红主题 */
  background: #121212;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* 背景加微妙红色渐变纹理，不突兀但质感拉满 */
.manifesto::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 16, 48, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* 内容容器，限制宽度更聚焦 */
.manifesto .content-wrap {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

/* 标题升级：和画廊标题同款字体+红色点缀，风格统一 */
.manifesto h3 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0 auto 25px;
  letter-spacing: 1.5px;
  /* 左侧红色竖线，和画廊标题设计呼应 */
  display: inline-block;
  border-left: 4px solid #e60012;
  padding-left: 15px;
}

/* 标题下方加红色短横线，强化视觉焦点 */
.manifesto h3::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #e60012;
  margin: 15px auto 0;
}

/* 正文优化：柔和浅灰，不刺眼更高级 */
.manifesto p {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
  color: #cccccc;
  line-height: 1.7;
}
