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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c4e798d37 .cd50e5fc2 {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

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

.c4e798d37:hover .cd50e5fc2 img {
  transform: scale(1.05);
}

.c4e798d37 .c24aefc72 {
  padding: 1.5rem;
}

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

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

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

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

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

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

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

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

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

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

.cd9eca25b.c96c0b3aa .cd0fa4ffc {
  color: var(--aurora-green);
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.cd9eca25b.cd89adfa0 .cd0fa4ffc {
  color: var(--aurora-purple);
}

.cd9eca25b.c8f6e4a51 .cd0fa4ffc {
  color: var(--text-muted);
}

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

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

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

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

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

.cf38890d1:hover .c451cd66e {
  opacity: 1;
}

.c451cd66e .cfe719b50 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

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

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

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

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

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

.cf98c8dcc .cc323e964 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

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

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

.cf98c8dcc .c7eadcfe4 li:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

.c50e8de06 span {
  margin: 0 0.5rem;
}

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

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

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

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

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

.ca8b9d8ae {
  list-style: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c7e0f5d8e {
  list-style: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c8fd3c1b2.c0223dea8 .c422ba579 {
  display: block;
}

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

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

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

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

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

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

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

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

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

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

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

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

  .c552d9be7 {
    display: flex;
  }

  .c04e44d89 {
    font-size: 2rem;
  }

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

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

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

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

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

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

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

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

  .c699b0385 {
    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 {
  .c206cbf80, .cef396198, .c9e1fe1bb {
    display: none;
  }
  body {
    background: white;
    color: black;
  }
}
