/* ============================================
   全感官沉浸式密室逃脱与实景剧场预订网 - 核心样式
   配色方案：赛博霓虹紫 + 悬疑暗夜黑
   ============================================ */

/* CSS变量定义 */
:root {
  --primary: #7B2FBE;
  --primary-light: #9B4FDE;
  --accent: #00F5D4;
  --accent-dim: #00C4A8;
  --bg-dark: #0A0A0F;
  --bg-card: #1C1C28;
  --bg-card-hover: #252535;
  --text-main: #D4D4E0;
  --text-light: #A0A0B0;
  --text-bright: #FFFFFF;
  --danger: #FF3366;
  --warning: #FFB800;
  --success: #00F5D4;
  --font-display: 'Noto Serif SC', serif;
  --font-body: 'Noto Sans SC', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow-neon: 0 0 20px rgba(123, 47, 190, 0.3), 0 0 40px rgba(123, 47, 190, 0.1);
  --shadow-accent: 0 0 20px rgba(0, 245, 212, 0.3), 0 0 40px rgba(0, 245, 212, 0.1);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1400px;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* 粒子背景效果 */
.cd5e16f93 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(123, 47, 190, 0.05) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 20%, rgba(0, 245, 212, 0.03) 0%, transparent 50%);
}

/* 手电筒光圈效果 */
.c335befc1 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.5s;
  background: radial-gradient(circle 200px at var(--mouse-x, 50%) var(--mouse-y, 50%), transparent 0%, rgba(10, 10, 15, 0.85) 100%);
}

body.flashlight-active .c335befc1 {
  opacity: 1;
}

/* 容器 */
.c4885fa66 {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* 导航栏 */
.c4ec64878 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(123, 47, 190, 0.2);
  transition: var(--transition);
}

.c4ec64878.scrolled {
  background: rgba(10, 10, 15, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.c223aa8a7 {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.cae4bee80 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-bright);
  text-decoration: none;
  text-shadow: 0 0 10px rgba(123, 47, 190, 0.5);
}

.cae4bee80 span {
  color: var(--accent);
}

.ca6b01fa6 {
  display: flex;
  list-style: none;
  gap: 8px;
}

.ca6b01fa6 a {
  color: var(--text-main);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  transition: var(--transition);
  position: relative;
}

.ca6b01fa6 a:hover,
.ca6b01fa6 a.c6ba73fdc {
  color: var(--accent);
  background: rgba(0, 245, 212, 0.05);
}

.ca6b01fa6 a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
  transform: translateX(-50%);
}

.ca6b01fa6 a:hover::after,
.ca6b01fa6 a.c6ba73fdc::after {
  width: 60%;
}

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

.cbd3ba366 span {
  width: 24px;
  height: 2px;
  background: var(--text-main);
  transition: var(--transition);
}

/* Hero区域 */
.c5818295a {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.c361ed2eb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  filter: brightness(0.5);
}

.c8dbbee80 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10, 10, 15, 0.3) 0%, rgba(10, 10, 15, 0.7) 60%, var(--bg-dark) 100%);
}

.c9273e715 {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
}

.ccc23c725 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--text-bright);
  margin-bottom: 20px;
  text-shadow: 0 0 30px rgba(123, 47, 190, 0.5);
  line-height: 1.2;
}

.cc2f5dd1f {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.6;
}

.c4c8513da {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--text-bright);
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: var(--shadow-neon);
  border: 1px solid rgba(123, 47, 190, 0.5);
}

.c4c8513da:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(123, 47, 190, 0.5), 0 0 80px rgba(123, 47, 190, 0.2);
}

.ce55953c3 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 36px;
  background: transparent;
  color: var(--accent);
  text-decoration: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  transition: var(--transition);
  border: 1px solid var(--accent);
  margin-left: 16px;
}

.ce55953c3:hover {
  background: rgba(0, 245, 212, 0.1);
  box-shadow: var(--shadow-accent);
}

/* 通用Section */
.c5e449f03 {
  padding: 100px 0;
  position: relative;
}

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

.cc88db21c {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.cc88db21c::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
}

.c18c967f1 {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 20px auto 0;
}

/* 卡片网格 */
.cd99c0d28 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

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

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

/* 主题卡片 */
.cf4aa41db {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(123, 47, 190, 0.15);
  transition: var(--transition);
  position: relative;
}

.cf4aa41db:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: var(--shadow-neon);
}

.cfb4d1d7b {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: var(--transition);
}

.cf4aa41db:hover .cfb4d1d7b {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.c345fe0d5 {
  padding: 24px;
}

.c27680654 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: 12px;
}

.cf3c93e33 {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.c79335466 {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  color: var(--text-light);
  background: rgba(123, 47, 190, 0.1);
  padding: 4px 10px;
  border-radius: 20px;
}

.c79335466.c64718c9d {
  color: var(--danger);
  background: rgba(255, 51, 102, 0.1);
}

.c79335466.c7f2d78d9 {
  color: var(--warning);
  background: rgba(255, 184, 0, 0.1);
}

.c79335466.c59770783 {
  color: var(--success);
  background: rgba(0, 245, 212, 0.1);
}

.c75710d56 {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.c3f7d67ec {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.c579f17f7 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
}

.c579f17f7 small {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-light);
}

/* 按钮 */
.c23832162 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
}

.cda245739 {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--text-bright);
  box-shadow: 0 4px 15px rgba(123, 47, 190, 0.3);
}

.cda245739:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(123, 47, 190, 0.5);
}

.c6ef92242 {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.c6ef92242:hover {
  background: rgba(0, 245, 212, 0.1);
  box-shadow: var(--shadow-accent);
}

.c37a58410 {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.c37a58410:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

/* NPC卡片 */
.c87cd0174 {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(123, 47, 190, 0.15);
  transition: var(--transition);
  text-align: center;
}

.c87cd0174:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-accent);
}

.c60cf0737 {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: top;
}

.c141039ba {
  padding: 24px;
}

.c29d0fc78 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: 8px;
}

.ceb6cf4dd {
  font-size: 0.85rem;
  color: var(--primary-light);
  margin-bottom: 12px;
}

.c7d45da20 {
  color: var(--warning);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

/* 评价卡片 */
.c97255310 {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(123, 47, 190, 0.1);
  transition: var(--transition);
}

.c97255310:hover {
  border-color: rgba(123, 47, 190, 0.3);
}

.c90158d3e {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.c0b98f9f0 {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-bright);
  font-weight: 600;
}

.c8a386b6a h4 {
  color: var(--text-bright);
  font-size: 0.95rem;
}

.c8a386b6a span {
  color: var(--text-light);
  font-size: 0.8rem;
}

.cc643bd8b {
  font-size: 0.9rem;
  color: var(--text-main);
  line-height: 1.7;
}

/* 组局卡片 */
.c5d78d665 {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid rgba(0, 245, 212, 0.15);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 20px;
}

.c5d78d665:hover {
  border-color: var(--accent);
  background: var(--bg-card-hover);
}

.c5cf8afac {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: 6px;
}

.cbce0b0be {
  flex: 1;
}

.c030d7cfd {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-light);
}

.cfbfc70b0 {
  text-align: center;
}

.cfbfc70b0 .c23ffd60d {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.cfbfc70b0 .cdc91c381 {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* 团建案例 */
.c5feb59cd {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(123, 47, 190, 0.1);
}

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

.c48ba2d01 {
  padding: 24px;
}

.c1284c0fe {
  font-size: 0.85rem;
  color: var(--primary-light);
  margin-bottom: 8px;
}

.c7cb31d39 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: 12px;
}

.c786b0d9d {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-light);
}

/* 页脚 */
.cce189dfb {
  background: #08080C;
  border-top: 1px solid rgba(123, 47, 190, 0.15);
  padding: 80px 0 30px;
}

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

.c71656090 p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 16px;
  line-height: 1.7;
}

.c9c1b0b44 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: 20px;
}

.cce2da358 {
  list-style: none;
}

.cce2da358 li {
  margin-bottom: 10px;
}

.cce2da358 a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
}

.cce2da358 a:hover {
  color: var(--accent);
}

.ced2d2b0b {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
}

.ced2d2b0b a {
  color: var(--text-light);
  text-decoration: none;
}

.ced2d2b0b a:hover {
  color: var(--accent);
}

/* 面包屑 */
.cfb3ee0db {
  padding: 100px 0 20px;
}

.c48c84301 {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  font-size: 0.85rem;
}

.c48c84301 a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
}

.c48c84301 a:hover {
  color: var(--accent);
}

.c48c84301 .cac6232c0 {
  color: var(--text-light);
  opacity: 0.5;
}

.c48c84301 .c0ed40381 {
  color: var(--primary-light);
}

/* 页面标题区 */
.cde9a3673 {
  padding: 40px 0 60px;
  text-align: center;
}

.c8642a011 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 16px;
}

.cc725de64 {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

/* 筛选栏 */
.c7fe7904c {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
  padding: 20px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid rgba(123, 47, 190, 0.1);
}

.c1fbbecac {
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  background: rgba(123, 47, 190, 0.1);
  color: var(--text-main);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.c1fbbecac:hover,
.c1fbbecac.c6ba73fdc {
  background: var(--primary);
  color: var(--text-bright);
  border-color: var(--primary);
}

/* 表单 */
.c8f15dfa7 {
  margin-bottom: 24px;
}

.cefbb04c8 {
  display: block;
  font-size: 0.9rem;
  color: var(--text-main);
  margin-bottom: 8px;
  font-weight: 500;
}

.c81c4bf57,
.c0e085eb3,
.c523130b3 {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid rgba(123, 47, 190, 0.2);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-size: 0.9rem;
  font-family: var(--font-body);
  transition: var(--transition);
  outline: none;
}

.c81c4bf57:focus,
.c0e085eb3:focus,
.c523130b3:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(123, 47, 190, 0.1);
}

.c523130b3 {
  min-height: 120px;
  resize: vertical;
}

/* 搜索 */
.search-box {
  position: relative;
  max-width: 600px;
  margin: 0 auto 40px;
}

.search-input {
  width: 100%;
  padding: 18px 60px 18px 24px;
  background: var(--bg-card);
  border: 2px solid rgba(123, 47, 190, 0.3);
  border-radius: 50px;
  color: var(--text-main);
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
}

.search-input:focus {
  border-color: var(--primary);
  box-shadow: var(--shadow-neon);
}

.search-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  border: none;
  color: var(--text-bright);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.search-btn:hover {
  background: var(--primary-light);
}

/* 404页面 */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.error-code {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 900;
  font-family: var(--font-display);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 20px;
}

.error-title {
  font-size: 1.5rem;
  color: var(--text-bright);
  margin-bottom: 16px;
}

.error-desc {
  color: var(--text-light);
  margin-bottom: 32px;
}

/* 打字机效果 */
.typewriter {
  overflow: hidden;
  border-right: 2px solid var(--accent);
  white-space: nowrap;
  animation: typing 3s steps(30) 1s forwards, blink 0.75s step-end infinite;
  width: 0;
}

@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink {
  50% { border-color: transparent; }
}

/* 霓虹闪烁 */
@keyframes neonPulse {
  0%, 100% { opacity: 1; text-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary); }
  50% { opacity: 0.8; text-shadow: 0 0 5px var(--primary), 0 0 10px var(--primary); }
}

.c0f897102 {
  animation: neonPulse 2s ease-in-out infinite;
}

/* 灯光闪烁 */
@keyframes flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% { opacity: 1; }
  20%, 24%, 55% { opacity: 0.4; }
}

.flicker {
  animation: flicker 3s linear infinite;
}

/* 浮动动画 */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.float-anim {
  animation: float 3s ease-in-out infinite;
}

/* 雾气效果 */
@keyframes fogMove {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.c28e635d2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 150px;
  background: linear-gradient(90deg, transparent, rgba(123, 47, 190, 0.05), transparent);
  animation: fogMove 20s linear infinite;
  pointer-events: none;
}

/* 内容区 */
.c135b75fd {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0 80px;
}

.c135b75fd h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--text-bright);
  margin: 40px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(123, 47, 190, 0.2);
}

.c135b75fd h3 {
  font-size: 1.2rem;
  color: var(--text-bright);
  margin: 28px 0 12px;
}

.c135b75fd p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.c135b75fd ul, .c135b75fd ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.c135b75fd li {
  margin-bottom: 8px;
  line-height: 1.7;
}

/* FAQ */
.c889bab82 {
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  border: 1px solid rgba(123, 47, 190, 0.1);
  overflow: hidden;
}

.c3679d532 {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  color: var(--text-bright);
  transition: var(--transition);
}

.c3679d532:hover {
  background: rgba(123, 47, 190, 0.05);
}

.cb6a72617 {
  padding: 0 24px 20px;
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.7;
  display: none;
}

.c889bab82.c6ba73fdc .cb6a72617 {
  display: block;
}

/* 响应式 */
@media (max-width: 1024px) {
  .c61ebb268 {
    grid-template-columns: repeat(2, 1fr);
  }
  .card-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .c36706a29 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .ca6b01fa6 {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.98);
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid rgba(123, 47, 190, 0.2);
  }
  
  .ca6b01fa6.c6ba73fdc {
    display: flex;
  }
  
  .cbd3ba366 {
    display: flex;
  }
  
  .cd99c0d28,
  .c61ebb268,
  .card-grid-4 {
    grid-template-columns: 1fr;
  }
  
  .c36706a29 {
    grid-template-columns: 1fr;
  }
  
  .ce55953c3 {
    margin-left: 0;
    margin-top: 12px;
  }
  
  .c5d78d665 {
    flex-direction: column;
    text-align: center;
  }
  
  .c7fe7904c {
    justify-content: center;
  }
  
  .c5e449f03 {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  .c4885fa66 {
    padding: 0 16px;
  }
  
  .cfb4d1d7b {
    height: 180px;
  }
}

/* 无障碍 */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* 打印样式 */
@media print {
  .c4ec64878, .cce189dfb, .cd5e16f93, .c335befc1 {
    display: none;
  }
  body {
    background: white;
    color: black;
  }
}
