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

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

/* 星空粒子背景 */
.cb365b4b8 {
  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%);
}

.cb365b4b8::before,
.cb365b4b8::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; }
}

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

.c395dba05::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%); }
}

/* 顶部极光流动条 */
.c993bca60 {
  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%; }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c640de26c .c9fd14a03 {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

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

.c640de26c:hover .c9fd14a03 img {
  transform: scale(1.05);
}

.c640de26c .cc685fca6 {
  padding: 1.5rem;
}

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

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

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

.c640de26c .c483bcea6 {
  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预测图表区 */
.c5e9ee701 {
  background: var(--card-dark);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(0, 255, 136, 0.1);
}

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

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

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

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

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

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

.cba4bfc0b.c491ca8b4 .cbf22ad2d {
  color: var(--aurora-green);
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.cba4bfc0b.c54d5d11f .cbf22ad2d {
  color: var(--aurora-purple);
}

.cba4bfc0b.c697e768a .cbf22ad2d {
  color: var(--text-muted);
}

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

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

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

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

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

.c31ff0779:hover .c0029d392 {
  opacity: 1;
}

.c0029d392 .ce3675ba7 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

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

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

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

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

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

.c9599597c .ccf9ab324 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

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

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

.c9599597c .c5cb22a51 li:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

.cf385393a span {
  margin: 0 0.5rem;
}

/* 页脚 */
.c2d5cbf2b {
  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;
}

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

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

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

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

.c0d8a7d96 {
  list-style: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cb34ce94b {
  list-style: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c0a1b3503.c873a461d .c0999e9fa {
  display: block;
}

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .c855e1943 {
    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);
  }

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

  .caf74c95b {
    display: flex;
  }

  .c7e748e82 {
    font-size: 2rem;
  }

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

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

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

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

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

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

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

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

  .c640d8d6f {
    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 {
  .c2e2d48f2, .c993bca60, .cb365b4b8 {
    display: none;
  }
  body {
    background: white;
    color: black;
  }
}
