/* style.css */
/* 基础样式 */
body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f7f8ef;
}

/* 容器布局 */
.container {
    min-height: 100vh;
    position: relative;
    padding: 240px 0;
    box-sizing: border-box;
}

/* 粒子画布定位 */
#tsparticles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* 内容区域样式 */
.content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 消息样式 */
.message {
    margin-bottom: 40px;
}

.message-heading {
    font-family: "Share Tech Mono", monospace;
    font-size: 2rem;
    letter-spacing: 0.7em;
    margin-bottom: 20px;
}

.message-description {
    font-size: 1.2rem;
    line-height: 1.5;
}

/* 链接样式 */
.links a {
    display: inline-block;
    padding: 12px 24px;
    background-color: #3998D0;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.links a:hover {
    background-color: #2EB6AF;
}

.common-link a {
    display: inline-block;
    padding: 12px 24px;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.common-link a:hover {
    color: #2EB6AF;
}
/* 响应式处理 */
@media (max-width: 480px) {
    .message-heading { font-size: 1rem; }
    .links a { width: 280px; }
}