/* 导航链接样式 */
.nav-link {
    display: inline-block;
    background-color: #00897b; /* 换一个颜色以示区分 */
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.nav-link:hover {
    background-color: #00695c;
}


/* 导航链接样式 */
.nav-link {
    display: inline-block;
    background-color: #00897b; /* 换一个颜色以示区分 */
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.nav-link:hover {
    background-color: #00695c;
}


body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: url('163114frzyxhhyiii8xxih.jpg') no-repeat center center fixed; /* 替换为你的背景图 */
    background-size: cover;
    color: #eee; /* 调整文字颜色以适应背景 */
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    background-color: rgba(0, 0, 0, 0.7); /* 添加半透明背景 */
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
    padding: 30px;
    width: 80%;
    max-width: 800px; /* 增加最大宽度 */
    text-align: center;
}

h1 {
    color: #00bcd4; /* 调整标题颜色 */
    margin-bottom: 20px;
}

p {
    line-height: 1.6;
    margin-bottom: 20px;
}

.server-list {
    margin-bottom: 20px;
}

.server-item {
    background-color: rgba(255, 255, 255, 0.1); /* 服务器信息块的半透明背景 */
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.server-item h2 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #bbdefb; /* 调整服务器名称颜色 */
}

.server-item p {
    margin-bottom: 8px;
}

.server-address {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #455a64;
    color: #fff;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    user-select: none; /* 禁止选中文字 */
}

.server-address:hover {
    background-color: #546e7a;
}

.download-links {
margin-top: 20px;
display: flex;        /* 用 flex 布局更好控制 */
flex-wrap: wrap;      /* 允许自动换行（屏幕窄时会换行） */
gap: 12px;            /* 横纵间距都一致 */
}

.download-links a {
display: inline-block;  /* 按钮样式保持 inline-block */
background-color: #4caf50;
color: #fff;
padding: 12px 24px;
border-radius: 5px;
text-decoration: none;
transition: background-color 0.3s;
}

.download-links a:hover {
background-color: #388e3c;
}



/* 复制成功的提示 */
.copy-success {
    color: #a5d6a7;
    font-size: 0.9rem;
    margin-top: 5px;
    display: none; /* 默认隐藏 */
}