* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", "Microsoft YaHei", "PingFang SC", sans-serif;
}

body {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
              url("https://loxestar.cn/image/background.jpg") center/cover fixed no-repeat;
  color: #f8f9fa;
  line-height: 1.7;
  min-height: 100vh;
  padding-bottom: 60px;
}

.页面容器 {
  width: 85%;
  max-width: 1200px;
  margin: 3rem auto;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
}

.页面 {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.页面.激活 {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.导航栏 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1rem 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.导航菜单 {
  width: 85%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.导航链接 {
  color: #fff;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 0.7rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px 8px 0 0;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.导航链接.激活::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #9d50bb;
  border-radius: 3px 3px 0 0;
  box-shadow: 0 0 8px rgba(157, 80, 187, 0.5);
  transition: all 0.3s ease;
}

.导航链接:hover:not(.激活) {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

.按钮 {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.按钮:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

h1 {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: all 0.3s ease;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

h3 {
  font-size: 1.4rem;
  font-weight: 500;
  margin: 1.5rem 0 1rem 0;
  transition: all 0.3s ease;
}

p {
  font-size: 1.05rem;
  margin-bottom: 1rem;
  color: #e9ecef;
  transition: all 0.3s ease;
}

ul, ol {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

li {
  margin-bottom: 0.8rem;
  transition: all 0.3s ease;
}

.版权信息 {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-align: center;
  font-size: 0.95rem;
  color: #ccc;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .导航菜单 {
    gap: 1rem;
  }
  
  .导航链接 {
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
  }
  
  .页面容器 {
    width: 90%;
    padding: 1.8rem;
    margin-top: 6rem;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
}