/* --- 全局样式重置 --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* --- 主体背景设置 --- */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #050505;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

/* --- 粒子画布样式 --- */
#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* --- 导航栏样式 --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10;
    border-bottom: 1px solid #333;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #d8b4fe;
    margin: 0;
}
/* 搜索框容器 */
.search-box {
    display: flex; 
    align-items: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid #333;
    border-radius: 20px;
    padding: 8px 20px;
    width: 400px;
}

/* 搜索输入框 */
.search-input {
    background: transparent; 

    border: none; 
    outline: none;
    color: #fff; 
    flex: 1; 
    margin-left: 10px; 
    font-size: 14px;
}

/* 搜索按钮 */
.search-btn {
    background: transparent; 
    border: none; 
    color: #a78bfa;
    cursor: pointer; 
    font-size: 14px; 
    transition: color 0.3s;
}

/* 搜索按钮悬停效果 */
.search-btn:hover { 
    color: #c084fc; 
}

.nav-links a {
    color: #e5e5e5;
    text-decoration: none;
    margin-left: 30px;
    font-size: 16px;
    transition: color 0.3s;
    cursor: pointer;
}

.nav-links a:hover {
    color: #c084fc;
}
@font-face {
  font-family: "zhuoteqingyati";
  src: url("zhuoteqingyati.otf") format("opentype");
  font-display: swap;
}
.main {
    font-family: "zhuoteqingyati", sans-serif;
    color:#d8b4fe;
    margin-left:auto;
    margin-right:auto;
    margin-top:auto;
    font-size:50px;
}
.main_second {
    font-family: "zhuoteqingyati", sans-serif;
    color:#d8b4fe;
    margin-left:auto;
    margin-right:auto;
    margin-bottom:auto;
    font-size:50px;
}

/* --- 底部信息 --- */
.footer-info {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: #555;
    z-index: 1;
}