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

/* 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;
}

/* 粒子背景效果 */
.c30cbdc56 {
  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%);
}

/* 手电筒光圈效果 */
.c55c79603 {
  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 .c55c79603 {
  opacity: 1;
}

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

/* 导航栏 */
.c35146a48 {
  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);
}

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

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

.c61ad2a7e {
  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);
}

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

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

.cef3fbc34 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;
}

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

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

.cef3fbc34 a:hover::after,
.cef3fbc34 a.c0b05df44::after {
  width: 60%;
}

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

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

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

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

.c3cc0302d {
  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%);
}

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

.cea55c901 {
  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;
}

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

.c72f9b37d {
  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);
}

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

.c18284bd6 {
  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;
}

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

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

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

.cb244a98e {
  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;
}

.cb244a98e::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;
}

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

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

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

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

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

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

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

.cb8d24ed8:hover .c9cd1726f {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.cedae924c {
  padding: 24px;
}

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

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

.c0756e33a {
  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;
}

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

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

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

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

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

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

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

/* 按钮 */
.ce3a7461c {
  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;
}

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

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

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

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

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

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

/* NPC卡片 */
.c8237de50 {
  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;
}

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

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

.c5cced232 {
  padding: 24px;
}

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

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

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

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

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

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

.c7a61b099 {
  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;
}

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

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

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

/* 组局卡片 */
.c1c8f8e84 {
  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;
}

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

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

.cfea2cd7a {
  flex: 1;
}

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

.c8a0c0f60 {
  text-align: center;
}

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

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

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

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

.c91694545 {
  padding: 24px;
}

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

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

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

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

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

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

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

.ce8ab7fb0 {
  list-style: none;
}

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

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

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

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

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

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

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

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

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

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

.c9bcafbf6 .c47d1f8fe {
  color: var(--text-light);
  opacity: 0.5;
}

.c9bcafbf6 .cb8f5a01f {
  color: var(--primary-light);
}

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

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

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

/* 筛选栏 */
.c4f3250a9 {
  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);
}

.ca513e4d0 {
  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);
}

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

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

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

.cff01203e,
.c1ebdd05d,
.c9a781d85 {
  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;
}

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

.c9a781d85 {
  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); }
}

.c4e2f5098 {
  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%); }
}

.cdb0b3a97 {
  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;
}

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

.c6a549727 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);
}

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

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

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

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

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

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

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

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

.c94534e05.c0b05df44 .cd2104f3f {
  display: block;
}

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

@media (max-width: 768px) {
  .cef3fbc34 {
    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);
  }
  
  .cef3fbc34.c0b05df44 {
    display: flex;
  }
  
  .c8d185066 {
    display: flex;
  }
  
  .c1e60e5bf,
  .c3dc4ff7d,
  .card-grid-4 {
    grid-template-columns: 1fr;
  }
  
  .cc265af2a {
    grid-template-columns: 1fr;
  }
  
  .c18284bd6 {
    margin-left: 0;
    margin-top: 12px;
  }
  
  .c1c8f8e84 {
    flex-direction: column;
    text-align: center;
  }
  
  .c4f3250a9 {
    justify-content: center;
  }
  
  .c8f3a4187 {
    padding: 60px 0;
  }
}

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

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

/* 打印样式 */
@media print {
  .c35146a48, .c5f7ba306, .c30cbdc56, .c55c79603 {
    display: none;
  }
  body {
    background: white;
    color: black;
  }
}
