/* AgentGongju.com - 主样式表 */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
  background: #0b0d17;
  color: #e2e8f0;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

/* 导航栏 */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11,13,23,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 1.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #6366f1, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav-links { display: flex; gap: 24px; }
.nav-links a {
  color: #94a3b8;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: #e2e8f0; }

/* 页脚 */
.footer {
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 60px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* 按钮通用 */
.btn-gradient {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, #6366f1, #a855f7);
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99,102,241,0.3);
}
.btn-outline {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  color: #e2e8f0;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-outline:hover {
  border-color: #6366f1;
  background: rgba(99,102,241,0.1);
}

@media (max-width: 768px) {
  .nav-links { gap: 12px; }
  .nav-links a { font-size: 0.8rem; }
}
