body {
    font-family: Arial, sans-serif;
    background-image: url("../img/bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #2c2f33;
    color: #f3a20b;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column; /* 垂直排列子元素 */
    height: 100vh; /* 使页面高度占满视口 */
}
#game-title {
    color: #ffe600 !important;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
	margin-bottom: 5px;

    text-shadow: -1px -1px 0 #ee2995, 1px -1px 0 #e946e1, -1px 1px 0 #ff0000, 1px 1px 0 #ff0000;
}
.container {
    background: rgb(75, 75, 73); 
    border: 3px solid #f3a20b;
    border-radius: 5px;
    padding: 20px;
    width: 500px; 
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    margin: auto; /* 水平居中 */
    display: flex;
    flex-direction: column; /* 内容垂直排列 */
    justify-content: flex-start; /* 从顶部开始排列内容 */
    align-items: center; /* 内容水平居中 */
    margin-top: 150px; /* 上移100px */
}

h3 {
    color: #ffe600 !important;
    text-align: center;
    margin-bottom: 20px;
	margin-top: 5px;
    text-shadow: -1px -1px 0 #ee2995, 1px -1px 0 #e946e1, -1px 1px 0 #ff0000, 1px 1px 0 #ff0000;
}

.links-table {
    display: block; /* 使用块级元素 */
    width: 500px; /* 固定宽度 */
    margin-top: 20px;
    border-collapse: collapse; /* 合并边框 */
}

.links-row {
    display: flex; /* 使用 flex 布局 */
}

.links-cell {
    padding: 10px;
    text-align: center;
    border: 1px solid #eeebe6;
    font-weight: bold; /* 文字加粗 */
    animation: neon 1s ease-in-out infinite; /* 应用闪烁动画 */
}

.name-cell {
    width: 500px; /* 设置第一列的宽度 */
}

.link-cell {
    width: 100px; /* 设置第二列的宽度 */
}

.button {
    display: inline-block;
    padding: 0;
    background-image: url('../img/button.png'); /* 按钮图片路径 */
    background-size: cover;
    width: 100px; /* 设置按钮宽度 */
    height: 30px; /* 设置按钮高度 */
    text-align: center;
    line-height: 0;
    border: none; /* 移除边框 */
    transition: transform 0.2s ease; /* 添加平滑过渡效果 */
}

.button:hover {
    transform: scale(1.1); /* 鼠标悬停时放大10% */
}

@keyframes neon {
    0%, 100% {
        color: #ff0000; /* 红色 */
        text-shadow: 0 0 5px #ff0000, 0 0 10px #ff0000, 0 0 15px #ff00ff, 0 0 20px #ff00ff;
    }
    50% {
        color: #ffffff; /* 白色 */
        text-shadow: 0 0 10px #ffffff, 0 0 20px #ffffff, 0 0 30px #ff00ff, 0 0 40px #ff00ff;
    }
    10%, 90% {
        color: #eeea08; /* 白色 */
        text-shadow: 0 0 10px #eeea08, 0 0 20px #eeea08, 0 0 30px #ff00ff, 0 0 40px #ff00ff;
    }
    40%, 60% {
        color: #00ff1e; /* 绿色 */
        text-shadow: 0 0 10px #00ff1e, 0 0 20px #00ff1e, 0 0 30px #ff00ff, 0 0 40px #ff00ff;
    }
}
