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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cee6d77c8 a:hover::after,
.cee6d77c8 a.ca2acee61::after {
  width: 60%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c5e5de7b3:hover .c45f7c724 {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.c0336d400 {
  padding: 24px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cc6590222 {
  padding: 24px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.c31d0bb3a {
  flex: 1;
}

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

.c87452952 {
  text-align: center;
}

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

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

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

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

.c8ba4807d {
  padding: 24px;
}

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

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

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

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

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

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

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

.ced58d9d5 {
  list-style: none;
}

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

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

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

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

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

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

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

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

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

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

.c25814244 .c23dbdf19 {
  color: var(--text-light);
  opacity: 0.5;
}

.c25814244 .c177db805 {
  color: var(--primary-light);
}

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

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

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

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

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

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

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

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

.c3e5cf693,
.c7624a4ab,
.c2ac2dcb5 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c686a6c56.ca2acee61 .c705c39ac {
  display: block;
}

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

@media (max-width: 768px) {
  .cee6d77c8 {
    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);
  }
  
  .cee6d77c8.ca2acee61 {
    display: flex;
  }
  
  .cd45b0360 {
    display: flex;
  }
  
  .c9efca5dc,
  .c5a90fe2a,
  .card-grid-4 {
    grid-template-columns: 1fr;
  }
  
  .ce0269d5c {
    grid-template-columns: 1fr;
  }
  
  .c3b4cf34a {
    margin-left: 0;
    margin-top: 12px;
  }
  
  .c1f23deb6 {
    flex-direction: column;
    text-align: center;
  }
  
  .ccb422ccd {
    justify-content: center;
  }
  
  .cb7f08d46 {
    padding: 60px 0;
  }
}

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

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

/* 打印样式 */
@media print {
  .c34256bbb, .c9ab8f676, .c5798827c, .cb84a5dc4 {
    display: none;
  }
  body {
    background: white;
    color: black;
  }
}
