/* ============================================
   北欧极光追逐探险与极地摄影定制网 - 主样式表
   极夜深邃黑+极光荧光绿 梦幻极地视觉
   ============================================ */

/* CSS变量定义 */
:root {
  --aurora-green: #00FF88;
  --aurora-purple: #7B68EE;
  --aurora-red: #FF4466;
  --bg-deep-black: #0A0A14;
  --card-dark: #141428;
  --text-ice: #E0F0E8;
  --text-muted: #8A9A92;
  --aurora-gradient: linear-gradient(135deg, #00FF88, #7B68EE, #FF4466);
  --font-heading: 'Noto Serif SC', serif;
  --font-body: 'Noto Sans SC', sans-serif;
  --radius: 12px;
  --shadow-glow: 0 0 20px rgba(0, 255, 136, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 全局重置 */
*, *::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-deep-black);
  color: var(--text-ice);
  line-height: 1.8;
  overflow-x: hidden;
  min-height: 100vh;
}

/* 星空粒子背景 */
.c68b21fad {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse at center, transparent 0%, var(--bg-deep-black) 100%);
}

.c68b21fad::before,
.c68b21fad::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  animation: twinkle 3s infinite alternate;
}

@keyframes twinkle {
  0% { opacity: 0.3; }
  100% { opacity: 1; }
}

/* 极光光带动画 */
.c6ccfec87 {
  position: relative;
  width: 100%;
  height: 4px;
  background: var(--aurora-gradient);
  overflow: hidden;
}

.c6ccfec87::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,255,136,0.8), rgba(123,104,238,0.8), transparent);
  animation: aurora-flow 4s linear infinite;
}

@keyframes aurora-flow {
  0% { transform: translateX(0); }
  100% { transform: translateX(50%); }
}

/* 顶部极光流动条 */
.c9537ec26 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 10000;
  background: linear-gradient(90deg, #00FF88, #7B68EE, #FF4466, #00FF88);
  background-size: 300% 100%;
  animation: aurora-shift 6s linear infinite;
}

@keyframes aurora-shift {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

/* 导航栏 */
.c76c8a87b {
  position: fixed;
  top: 3px;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(10, 10, 20, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 255, 136, 0.1);
  transition: var(--transition);
}

.c76c8a87b.scrolled {
  background: rgba(10, 10, 20, 0.98);
  box-shadow: 0 4px 30px rgba(0, 255, 136, 0.05);
}

.c2cec51e8 {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.c512dd3aa {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--aurora-green);
  text-decoration: none;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.cd8d4a196 {
  display: flex;
  list-style: none;
  gap: 0.5rem;
}

.cd8d4a196 a {
  color: var(--text-ice);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  transition: var(--transition);
  position: relative;
}

.cd8d4a196 a:hover,
.cd8d4a196 a.cf56b4cd7 {
  color: var(--aurora-green);
  background: rgba(0, 255, 136, 0.08);
}

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

.cd8d4a196 a:hover::after {
  width: 60%;
}

/* 移动端菜单按钮 */
.c41815672 {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.c41815672 span {
  width: 25px;
  height: 2px;
  background: var(--aurora-green);
  transition: var(--transition);
}

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

.ca34b45fa {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,255,136,0.05) 0%, var(--bg-deep-black) 100%);
}

.ca34b45fa::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 20%;
  width: 60%;
  height: 40%;
  background: radial-gradient(ellipse, rgba(0,255,136,0.15), transparent 70%);
  animation: aurora-pulse 8s ease-in-out infinite;
  filter: blur(60px);
}

.ca34b45fa::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 10%;
  width: 40%;
  height: 30%;
  background: radial-gradient(ellipse, rgba(123,104,238,0.1), transparent 70%);
  animation: aurora-pulse 6s ease-in-out infinite reverse;
  filter: blur(40px);
}

@keyframes aurora-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.cd63c905e {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 2rem;
  max-width: 900px;
}

.ce43a5e7b {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 30px;
  padding: 0.5rem 1.2rem;
  margin-bottom: 2rem;
  font-size: 0.85rem;
  color: var(--aurora-green);
  animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 5px rgba(0,255,136,0.2); }
  50% { box-shadow: 0 0 20px rgba(0,255,136,0.4); }
}

.ce43a5e7b .ce47e4e0a {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--aurora-green);
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.c6030ad7f {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--aurora-green), var(--aurora-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cf541fe1f {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.cf43ed36c {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--aurora-green);
  color: var(--bg-deep-black);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.cf43ed36c:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(0, 255, 136, 0.5);
}

/* 通用区块 */
.ca3731745 {
  position: relative;
  padding: 6rem 2rem;
  z-index: 1;
}

.c6ab1bc8b {
  max-width: 1200px;
  margin: 0 auto;
}

.c5ea2205f {
  text-align: center;
  margin-bottom: 4rem;
}

.c24d5b51b {
  display: inline-block;
  color: var(--aurora-green);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 255, 136, 0.3);
  padding: 0.3rem 1rem;
  border-radius: 20px;
}

.c9cc91d35 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-ice);
}

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

/* 卡片系统 */
.cfac491a3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.c2995050b {
  background: var(--card-dark);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0, 255, 136, 0.08);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
}

.c2995050b:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 255, 136, 0.3);
  box-shadow: var(--shadow-glow);
}

.c2995050b .c4c92d962 {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.c2995050b .c4c92d962 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.c2995050b:hover .c4c92d962 img {
  transform: scale(1.05);
}

.c2995050b .cb51ffa3e {
  padding: 1.5rem;
}

.c2995050b .c11b3e17f {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--text-ice);
}

.c2995050b .c085f3f3d {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.c2995050b .cc8c1bb7e {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 255, 136, 0.08);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.c2995050b .c3e416f3e {
  display: inline-block;
  background: rgba(0, 255, 136, 0.1);
  color: var(--aurora-green);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.75rem;
}

/* KP预测图表区 */
.ce615eef6 {
  background: var(--card-dark);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(0, 255, 136, 0.1);
}

.c068806bb {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.c402d66b8 {
  text-align: center;
  padding: 1rem 0.5rem;
  border-radius: 8px;
  background: rgba(0, 255, 136, 0.03);
  border: 1px solid rgba(0, 255, 136, 0.05);
  transition: var(--transition);
}

.c402d66b8:hover {
  background: rgba(0, 255, 136, 0.08);
  border-color: rgba(0, 255, 136, 0.2);
}

.c402d66b8 .c550df08e {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.c402d66b8 .cbeab5728 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--aurora-green);
}

.c402d66b8 .c38730ebc {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

.c402d66b8.c7639f19e .cbeab5728 {
  color: var(--aurora-green);
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.c402d66b8.c25e3637e .cbeab5728 {
  color: var(--aurora-purple);
}

.c402d66b8.cbfc329d9 .cbeab5728 {
  color: var(--text-muted);
}

/* 画廊 */
.cd84406a7 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
}

.c581b3160 {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/10;
  cursor: pointer;
}

.c581b3160 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.c581b3160:hover img {
  transform: scale(1.08);
}

.c581b3160 .ceed57e94 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(10, 10, 20, 0.9));
  opacity: 0;
  transition: var(--transition);
}

.c581b3160:hover .ceed57e94 {
  opacity: 1;
}

.ceed57e94 .c05730056 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.ceed57e94 .cd221ddfa {
  font-size: 0.8rem;
  color: var(--aurora-green);
}

/* 装备推荐 */
.c58590a04 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.c0047caa6 {
  background: var(--card-dark);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid rgba(0, 255, 136, 0.08);
  transition: var(--transition);
}

.c0047caa6:hover {
  border-color: rgba(0, 255, 136, 0.3);
}

.c0047caa6 .c9bb89a62 {
  display: inline-block;
  background: rgba(0, 255, 136, 0.1);
  color: var(--aurora-green);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.c0047caa6 .c0f82f88f {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.c0047caa6 .c719a8a52 {
  list-style: none;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.c0047caa6 .c719a8a52 li {
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(0, 255, 136, 0.05);
  display: flex;
  justify-content: space-between;
}

.c0047caa6 .c719a8a52 li:last-child {
  border-bottom: none;
}

/* 科普区 */
.cfd76697a {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.cba648bfb, .cecd1cec1 {
  background: var(--card-dark);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(0, 255, 136, 0.08);
}

.cba648bfb h3, .cecd1cec1 h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--aurora-green);
}

/* 面包屑 */
.cdda7eeb3 {
  padding: 1rem 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cdda7eeb3 a {
  color: var(--aurora-green);
  text-decoration: none;
}

.cdda7eeb3 a:hover {
  text-decoration: underline;
}

.cdda7eeb3 span {
  margin: 0 0.5rem;
}

/* 页脚 */
.c427a0011 {
  background: rgba(10, 10, 20, 0.95);
  border-top: 1px solid rgba(0, 255, 136, 0.1);
  padding: 4rem 2rem 2rem;
  position: relative;
  z-index: 1;
}

.c66ce71e5 {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.cf1f1d719 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--aurora-green);
  margin-bottom: 1rem;
}

.c1372bc90 {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.c35426686 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-ice);
}

.c51dce52e {
  list-style: none;
}

.c51dce52e li {
  margin-bottom: 0.5rem;
}

.c51dce52e a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.c51dce52e a:hover {
  color: var(--aurora-green);
}

.c7f03d8d1 {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 255, 136, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* 页面内容区 */
.c8236dc56 {
  max-width: 900px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
  min-height: 80vh;
}

.c8236dc56 h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
  color: var(--text-ice);
}

.c8236dc56 h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
  color: var(--aurora-green);
}

.c8236dc56 h3 {
  font-size: 1.2rem;
  margin: 2rem 0 0.8rem;
  color: var(--text-ice);
}

.c8236dc56 p {
  margin-bottom: 1.2rem;
  color: var(--text-ice);
  line-height: 1.9;
}

.c8236dc56 ul, .c8236dc56 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--text-muted);
}

.c8236dc56 li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.c8236dc56 img {
  width: 100%;
  border-radius: var(--radius);
  margin: 1.5rem 0;
}

/* 搜索页 */
.c94157212 {
  max-width: 700px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
}

.c78e87ca2 {
  position: relative;
  margin-bottom: 2rem;
}

.c78e87ca2 input {
  width: 100%;
  padding: 1.2rem 1.5rem;
  padding-right: 3.5rem;
  background: var(--card-dark);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 50px;
  color: var(--text-ice);
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
}

.c78e87ca2 input:focus {
  border-color: var(--aurora-green);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.1);
}

.c3ba33c89 {
  list-style: none;
}

.c3ba33c89 li {
  padding: 1.5rem;
  background: var(--card-dark);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 255, 136, 0.05);
  transition: var(--transition);
}

.c3ba33c89 li:hover {
  border-color: rgba(0, 255, 136, 0.2);
}

.c3ba33c89 li a {
  color: var(--aurora-green);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
}

.c3ba33c89 li p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* 404页面 */
.cc0568135 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: 2rem;
}

.cbcb69a55 {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 900;
  background: var(--aurora-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.c06495f7c {
  font-size: 1.3rem;
  color: var(--text-muted);
  margin: 1.5rem 0 2.5rem;
}

/* 按钮 */
.cbb2c97d7 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--aurora-green);
  color: var(--bg-deep-black);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.cbb2c97d7:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.4);
}

.cc5bd78f6 {
  background: transparent;
  color: var(--aurora-green);
  border: 1px solid var(--aurora-green);
}

.cc5bd78f6:hover {
  background: rgba(0, 255, 136, 0.1);
}

/* FAQ */
.cb4960fff {
  max-width: 800px;
  margin: 0 auto;
}

.c10df1c14 {
  background: var(--card-dark);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 255, 136, 0.08);
  overflow: hidden;
}

.ced4d00b4 {
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  transition: var(--transition);
}

.ced4d00b4:hover {
  color: var(--aurora-green);
}

.c354350da {
  padding: 0 1.5rem 1.2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
  display: none;
}

.c10df1c14.cf56b4cd7 .c354350da {
  display: block;
}

/* 表格 */
.cac383c46 {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.cac383c46 th,
.cac383c46 td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(0, 255, 136, 0.08);
}

.cac383c46 th {
  background: rgba(0, 255, 136, 0.05);
  color: var(--aurora-green);
  font-weight: 600;
  font-size: 0.9rem;
}

.cac383c46 td {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.cac383c46 tr:hover td {
  background: rgba(0, 255, 136, 0.02);
}

/* APP下载页 */
.cfb5085ac {
  text-align: center;
  padding: 8rem 2rem;
}

.cd80818ef {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.ca081e1e3 {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--card-dark);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: var(--radius);
  padding: 1rem 2rem;
  text-decoration: none;
  color: var(--text-ice);
  transition: var(--transition);
}

.ca081e1e3:hover {
  border-color: var(--aurora-green);
  box-shadow: var(--shadow-glow);
}

/* 响应式 */
@media (max-width: 1024px) {
  .c66ce71e5 {
    grid-template-columns: 1fr 1fr;
  }
  
  .cfd76697a {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .cd8d4a196 {
    position: fixed;
    top: 75px;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 20, 0.98);
    flex-direction: column;
    padding: 1rem;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }

  .cd8d4a196.cf56b4cd7 {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .c41815672 {
    display: flex;
  }

  .c6030ad7f {
    font-size: 2rem;
  }

  .cfac491a3 {
    grid-template-columns: 1fr;
  }

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

  .cd84406a7 {
    grid-template-columns: 1fr;
  }

  .c66ce71e5 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .c7f03d8d1 {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .c58590a04 {
    grid-template-columns: 1fr;
  }

  .cd80818ef {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .c068806bb {
    grid-template-columns: repeat(3, 1fr);
  }

  .ca3731745 {
    padding: 4rem 1rem;
  }
}

/* 极光闪烁加载动画 */
.aurora-shimmer {
  background: linear-gradient(90deg, var(--card-dark) 25%, rgba(0,255,136,0.05) 50%, var(--card-dark) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* 滚动渐变色效果 */
.scroll-aurora-transition {
  transition: background 0.5s ease;
}

/* Schema标记隐藏内容 */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* 打印样式 */
@media print {
  .c76c8a87b, .c9537ec26, .c68b21fad {
    display: none;
  }
  body {
    background: white;
    color: black;
  }
}
