/* ============================================
   {SITE_TITLE} - 欧美肌肉车复古改装与V8文化生活方式
   全站样式表 - Mobile First响应式设计
   ============================================ */

/* CSS变量定义 - 5色规范 */
:root {
  --color-primary: #FF6B35;        /* 美式肌肉橙 */
  --color-secondary: #1C1C1C;     /* 公路沥青黑 */
  --color-bg-start: #2D1B69;      /* 66号公路黄昏渐变起始 */
  --color-bg-end: #FF6B35;        /* 66号公路黄昏渐变结束 */
  --color-card: rgba(200,200,200,0.1); /* 磨砂铬合金银 */
  --color-text: #FAFAFA;          /* 沙漠公路白 */
  --color-text-muted: rgba(250,250,250,0.7);
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Noto Sans SC', 'Roboto', sans-serif;
  --font-neon: 'Bungee Shade', cursive;
  --max-width: 1400px;
  --transition: all 0.3s ease;
}

/* 重置样式 */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-secondary);
  line-height: 1.8;
  overflow-x: hidden;
}

/* 渐变背景 - 模拟黄昏到星空 */
.cff0c1de7 {
  background: linear-gradient(180deg, var(--color-bg-start) 0%, #1a0a3e 30%, var(--color-secondary) 60%, #0d0d0d 100%);
  min-height: 100vh;
}

/* 通用容器 */
.ccde17a42 {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* 霓虹灯管字体效果 */
.c0df5dbce {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-primary);
  text-shadow: 
    0 0 7px var(--color-primary),
    0 0 10px var(--color-primary),
    0 0 21px var(--color-primary),
    0 0 42px #ff4500,
    0 0 82px #ff4500;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  animation: neonFlicker 2s infinite alternate;
}

@keyframes neonFlicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    text-shadow: 
      0 0 7px var(--color-primary),
      0 0 10px var(--color-primary),
      0 0 21px var(--color-primary),
      0 0 42px #ff4500,
      0 0 82px #ff4500;
  }
  20%, 24%, 55% {
    text-shadow: none;
  }
}

/* ============ 导航栏 - 复古加油站价格牌风格 ============ */
.cf3187c7d {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(28, 28, 28, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--color-primary);
  transition: var(--transition);
}

.cf3187c7d .ccde17a42 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.cad88a23e {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-primary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

.c21bdfce7 {
  display: none;
  list-style: none;
  gap: 0;
}

.c21bdfce7.cd0ef4bdc {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(28, 28, 28, 0.98);
  padding: 20px;
}

.c21bdfce7 li a {
  color: var(--color-text);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 15px;
  display: block;
  transition: var(--transition);
  position: relative;
}

.c21bdfce7 li a:hover,
.c21bdfce7 li a.cd0ef4bdc {
  color: var(--color-primary);
}

.c21bdfce7 li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s;
}

.c21bdfce7 li a:hover::after {
  width: 80%;
}

.c079488a8 {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.c079488a8 span {
  width: 25px;
  height: 3px;
  background: var(--color-primary);
  transition: var(--transition);
}

/* ============ Hero Section - 66号公路沉浸式 ============ */
.c730f7189 {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.c832fce5d video,
.c832fce5d iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.c9bca7002 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c569c8633 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(45,27,105,0.6) 0%, rgba(28,28,28,0.8) 100%);
  z-index: 2;
}

.c494959b4 {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 20px;
  max-width: 900px;
}

.c0555a4f8 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-text);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
  line-height: 1.3;
}

.c0555a4f8 span {
  color: var(--color-primary);
  display: block;
  font-size: 1.2em;
}

.cea6fda18 {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

/* CTA按钮 */
.c06d4eb05 {
  display: inline-block;
  padding: 16px 40px;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.c06d4eb05::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.c06d4eb05:hover::before {
  left: 100%;
}

.c06d4eb05:hover {
  background: #e55a2b;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255,107,53,0.4);
}

.cb7e96c3f {
  display: inline-block;
  padding: 14px 35px;
  background: transparent;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 1rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 2px solid var(--color-primary);
  cursor: pointer;
  transition: var(--transition);
}

.cb7e96c3f:hover {
  background: var(--color-primary);
  color: #fff;
}

/* ============ Section通用样式 ============ */
.c38020e64 {
  padding: 80px 0;
  position: relative;
}

.c1fea602c {
  text-align: center;
  margin-bottom: 60px;
}

.cdf4a24d8 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--color-text);
  margin-bottom: 15px;
}

.c89a60045 {
  color: var(--color-text-muted);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1rem;
}

/* ============ 车库传奇 - 信任背书模块 ============ */
.cdafb1d87 {
  background: linear-gradient(135deg, rgba(45,27,105,0.3), rgba(28,28,28,0.9));
  border-top: 1px solid rgba(255,107,53,0.2);
  border-bottom: 1px solid rgba(255,107,53,0.2);
}

.c8d3f8151 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 50px;
}

.c4fe946f4 {
  background: var(--color-card);
  border: 1px solid rgba(255,107,53,0.3);
  padding: 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.c4fe946f4::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-primary);
}

.ce68920d9 {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--color-primary);
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}

.c8bab4068 {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* 翻牌器动画 */
.flip-counter {
  display: inline-flex;
  gap: 3px;
}

.flip-digit {
  background: #2a2a2a;
  border: 1px solid #444;
  padding: 5px 10px;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-primary);
  position: relative;
  overflow: hidden;
}

.flip-digit::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(0,0,0,0.5);
}

/* 品牌墙 */
.c68382d55 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 30px 0;
  opacity: 0.6;
}

.c68382d55 span {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ============ 改装圣经 - 核心服务模块 ============ */
.c1193d104 {
  background: var(--color-secondary);
}

.c68b16e7c {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.c4e304796 {
  background: var(--color-card);
  border: 1px solid rgba(255,107,53,0.15);
  padding: 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.c4e304796:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary);
  box-shadow: 0 20px 40px rgba(255,107,53,0.15);
}

.c4e304796::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--color-primary);
  transform: scaleY(0);
  transition: transform 0.3s;
}

.c4e304796:hover::before {
  transform: scaleY(1);
}

.service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.c4e304796 h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-text);
  margin-bottom: 10px;
}

.c4e304796 p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.c4e304796 img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
  border: 1px solid rgba(255,107,53,0.2);
}

/* ============ 传奇车库 - 精选案例模块 ============ */
.c26c10859 {
  background: linear-gradient(180deg, var(--color-secondary) 0%, #0d0d0d 100%);
  overflow: hidden;
}

.c8c54d6dd {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 20px 0 40px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.c8c54d6dd::-webkit-scrollbar {
  height: 4px;
}

.c8c54d6dd::-webkit-scrollbar-track {
  background: #333;
}

.c8c54d6dd::-webkit-scrollbar-thumb {
  background: var(--color-primary);
}

.c1fe6c962 {
  min-width: 320px;
  max-width: 400px;
  background: var(--color-card);
  border: 1px solid rgba(255,107,53,0.2);
  flex-shrink: 0;
  scroll-snap-align: start;
  transition: var(--transition);
}

.c1fe6c962:hover {
  border-color: var(--color-primary);
}

.c1fe6c962 img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.c3989a2ca {
  padding: 25px;
}

.c1fe6c962 h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-text);
  margin-bottom: 10px;
}

.c4449c974 {
  display: flex;
  justify-content: space-between;
  margin: 15px 0;
  padding: 10px 0;
  border-top: 1px solid rgba(255,107,53,0.2);
  border-bottom: 1px solid rgba(255,107,53,0.2);
}

.c4449c974 span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-align: center;
}

.c4449c974 span strong {
  display: block;
  color: var(--color-primary);
  font-size: 0.9rem;
}

.c02254a0d {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255,107,53,0.1);
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}

.c02254a0d:hover {
  background: var(--color-primary);
  color: #fff;
}

/* ============ 痛点模块 - 原厂腐朽VS重生荣耀 ============ */
.c931610f0 {
  padding: 0;
}

.c2b6f8e8d {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 400px;
}

.cbb7c089a,
.c7c6d742d {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cbb7c089a img,
.c7c6d742d img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cbb7c089a {
  filter: grayscale(100%);
}

.cbb7c089a .cac341c3f {
  background: rgba(0,0,0,0.6);
}

.c7c6d742d .cac341c3f {
  background: rgba(255,107,53,0.2);
}

.cac341c3f {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.c61f7a57f {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 40px 20px;
}

.c61f7a57f h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.c61f7a57f p {
  color: var(--color-text-muted);
}

.c875a350e {
  background: var(--color-primary);
  padding: 20px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.c875a350e .c6ec0c861 {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.c875a350e .c6ec0c861 span {
  font-size: 0.85rem;
}

/* ============ 启程 - 转化引导模块（加油站表单） ============ */
.c49b0ea74 {
  background: linear-gradient(135deg, var(--color-bg-start), #1a0a3e);
  position: relative;
}

.c49b0ea74::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,107,53,0.05)"/></svg>') repeat;
  background-size: 50px 50px;
}

.c2cd23fdf {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
  background: var(--color-card);
  border: 2px solid var(--color-primary);
  padding: 40px 30px;
}

.c2cd23fdf h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 10px;
}

.c2cd23fdf .c64579839 {
  text-align: center;
  color: var(--color-text-muted);
  margin-bottom: 30px;
  font-size: 0.9rem;
}

.cee3d45c9 {
  margin-bottom: 20px;
}

.cee3d45c9 label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.cee3d45c9 input,
.cee3d45c9 select,
.cee3d45c9 textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(28,28,28,0.8);
  border: 1px solid rgba(255,107,53,0.3);
  color: var(--color-text);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: var(--transition);
}

.cee3d45c9 input:focus,
.cee3d45c9 select:focus,
.cee3d45c9 textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 10px rgba(255,107,53,0.2);
}

.cee3d45c9 textarea {
  min-height: 100px;
  resize: vertical;
}

.c16749c7b {
  width: 100%;
  padding: 18px;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.c16749c7b:hover {
  background: #e55a2b;
  box-shadow: 0 10px 30px rgba(255,107,53,0.4);
}

/* 表单成功提示 */
.c399cc2b9 {
  display: none;
  text-align: center;
  padding: 40px;
}

.c399cc2b9.show {
  display: block;
}

.c399cc2b9 .c1ece5fe1 {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

/* ============ V8声浪试听台组件 ============ */
.cffee18b5 {
  background: var(--color-card);
  border: 1px solid rgba(255,107,53,0.3);
  padding: 20px;
  margin: 20px 0;
}

.cffee18b5 h4 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  margin-bottom: 15px;
}

.c9fc1a4f6 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ce587cdb9 {
  padding: 8px 16px;
  background: rgba(255,107,53,0.1);
  border: 1px solid rgba(255,107,53,0.3);
  color: var(--color-text);
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}

.ce587cdb9:hover,
.ce587cdb9.cd0ef4bdc {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

/* ============ 公路旅行路线图组件 ============ */
.c1cc99ba6 {
  background: var(--color-card);
  border: 1px solid rgba(255,107,53,0.2);
  padding: 30px;
  margin: 30px 0;
}

.c1cc99ba6 h4 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  margin-bottom: 20px;
}

.c55a717e0 {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.c91187d11 {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px;
  border-left: 3px solid var(--color-primary);
}

.c91187d11 .c4c05d2f3 {
  width: 30px;
  height: 30px;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* ============ 零件溯源查询组件 ============ */
.ccb49ebc8 {
  background: var(--color-card);
  border: 1px solid rgba(255,107,53,0.2);
  padding: 30px;
  margin: 30px 0;
}

.ccb49ebc8 h4 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  margin-bottom: 20px;
}

.c2a31763e {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.c2a31763e input {
  flex: 1;
  padding: 12px 18px;
  background: rgba(28,28,28,0.8);
  border: 1px solid rgba(255,107,53,0.3);
  color: var(--color-text);
  font-size: 1rem;
}

.c2a31763e button {
  padding: 12px 24px;
  background: var(--color-primary);
  color: #fff;
  border: none;
  font-family: var(--font-heading);
  cursor: pointer;
  transition: var(--transition);
}

.c2a31763e button:hover {
  background: #e55a2b;
}

/* ============ 页脚 ============ */
.cce65df37 {
  background: #0d0d0d;
  border-top: 1px solid rgba(255,107,53,0.2);
  padding: 60px 0 30px;
}

.cbc294378 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.c21e25837 h4 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-size: 1.1rem;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.c21e25837 p,
.c21e25837 a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 2;
  display: block;
  transition: var(--transition);
}

.c21e25837 a:hover {
  color: var(--color-primary);
}

.c16e8b7fd {
  border-top: 1px solid rgba(255,107,53,0.1);
  padding-top: 30px;
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

/* ============ 404页面 ============ */
.page-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-404 .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.page-404 .content-404 {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px;
}

.page-404 h1 {
  font-family: var(--font-heading);
  font-size: 8rem;
  color: var(--color-primary);
  text-shadow: 0 0 20px rgba(255,107,53,0.5);
  line-height: 1;
}

.page-404 h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-text);
  margin: 20px 0;
}

.page-404 p {
  color: var(--color-text-muted);
  margin-bottom: 30px;
}

/* ============ 感谢页 ============ */
.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-bg-start), var(--color-secondary));
}

.thank-you-content {
  text-align: center;
  padding: 60px 30px;
}

.thank-you-content h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--color-primary);
  margin-bottom: 20px;
}

/* ============ 内页通用样式 ============ */
.c6376bc48 {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, var(--color-bg-start), var(--color-secondary));
  text-align: center;
  position: relative;
}

.c6376bc48 h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-text);
  margin-bottom: 15px;
}

.c6376bc48 p {
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.c8ecfa29e {
  padding: 15px 0;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.c8ecfa29e a {
  color: var(--color-primary);
  text-decoration: none;
}

/* 内容区域 */
.c345d53a6 {
  padding: 60px 0;
}

.c4be8a70d {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.cd4e7413f {
  background: var(--color-card);
  border: 1px solid rgba(255,107,53,0.15);
  overflow: hidden;
  transition: var(--transition);
}

.cd4e7413f:hover {
  border-color: var(--color-primary);
  transform: translateY(-3px);
}

.cd4e7413f img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.c41203dcc {
  padding: 25px;
}

.c41203dcc h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-text);
  margin-bottom: 10px;
}

.c41203dcc p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.c41203dcc .c115bb921 {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255,107,53,0.1);
  border: 1px solid rgba(255,107,53,0.3);
  color: var(--color-primary);
  font-size: 0.75rem;
  margin-right: 5px;
}

/* ============ 懒加载 ============ */
.lazy-load {
  opacity: 0;
  transition: opacity 0.5s;
}

.lazy-load.loaded {
  opacity: 1;
}

/* ============ 响应式设计 - 平板 ============ */
@media (min-width: 768px) {
  .c21bdfce7 {
    display: flex;
    position: static;
    width: auto;
    background: none;
    padding: 0;
    gap: 5px;
  }

  .c079488a8 {
    display: none;
  }

  .c0555a4f8 {
    font-size: 3.5rem;
  }

  .c0df5dbce {
    font-size: 2.5rem;
  }

  .c8d3f8151 {
    grid-template-columns: repeat(2, 1fr);
  }

  .c68b16e7c {
    grid-template-columns: repeat(2, 1fr);
  }

  .c2b6f8e8d {
    grid-template-columns: 1fr auto 1fr;
  }

  .c875a350e {
    writing-mode: vertical-rl;
    padding: 20px 10px;
  }

  .cbc294378 {
    grid-template-columns: repeat(2, 1fr);
  }

  .c4be8a70d {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============ 响应式设计 - 桌面端 ============ */
@media (min-width: 1024px) {
  .c0555a4f8 {
    font-size: 4.5rem;
  }

  .c0df5dbce {
    font-size: 3rem;
  }

  .c38020e64 {
    padding: 100px 0;
  }

  .c8d3f8151 {
    grid-template-columns: repeat(4, 1fr);
  }

  .c68b16e7c {
    grid-template-columns: repeat(3, 1fr);
  }

  .cbc294378 {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .c4be8a70d {
    grid-template-columns: repeat(3, 1fr);
  }

  .section-title {
    font-size: 2.8rem;
  }
}

/* ============ 大屏幕 ============ */
@media (min-width: 1400px) {
  .c68b16e7c {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* ============ 动画效果 ============ */
.c0da53bcb {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.c0da53bcb.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* 引擎低吼微震动 */
@keyframes engineRumble {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-1px, 0); }
  20% { transform: translate(1px, -1px); }
  30% { transform: translate(-1px, 1px); }
  40% { transform: translate(1px, 0); }
  50% { transform: translate(-1px, -1px); }
  60% { transform: translate(1px, 1px); }
  70% { transform: translate(0, -1px); }
  80% { transform: translate(-1px, 0); }
  90% { transform: translate(1px, 1px); }
}

.c6ac9931a:hover {
  animation: engineRumble 0.3s linear;
}

/* 视频播放控制 */
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 42.85%; /* 21:9 ratio */
  overflow: hidden;
}

.video-container video,
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c7ca16d70 {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 10;
  display: flex;
  gap: 10px;
}

.c7ca16d70 button {
  width: 40px;
  height: 40px;
  background: rgba(28,28,28,0.8);
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.c7ca16d70 button:hover {
  background: var(--color-primary);
  color: #fff;
}
