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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c093d320e .c4eb78518 {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

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

.c093d320e:hover .c4eb78518 img {
  transform: scale(1.05);
}

.c093d320e .caf85ca1b {
  padding: 1.5rem;
}

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

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

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

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

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

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

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

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

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

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

.c7863b4cc.c7d2e6a05 .c55cb485d {
  color: var(--aurora-green);
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.c7863b4cc.c2156188e .c55cb485d {
  color: var(--aurora-purple);
}

.c7863b4cc.ccda04b06 .c55cb485d {
  color: var(--text-muted);
}

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

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

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

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

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

.ca66b2f15:hover .c93757279 {
  opacity: 1;
}

.c93757279 .c927b25f7 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

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

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

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

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

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

.c8c41072c .c0a81d050 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

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

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

.c8c41072c .cd4af3bca li:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

.c3d42fd17 span {
  margin: 0 0.5rem;
}

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

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

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

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

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

.ce7e2ccfd {
  list-style: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cb0aac3cc {
  list-style: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c9e5c7062.cb7b616e4 .c97d196a3 {
  display: block;
}

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

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

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

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

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

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

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

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

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

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

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

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

  .c0cdf8102 {
    display: flex;
  }

  .c0d0bd33c {
    font-size: 2rem;
  }

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

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

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

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

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

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

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

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

  .cf699491e {
    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 {
  .c038716f3, .c5fd4f63f, .c73e2ed3c {
    display: none;
  }
  body {
    background: white;
    color: black;
  }
}
