/* 整体样式 */
body {
    background: linear-gradient(to bottom, #f2f2f2 0%, #e6e6e6 100%); /* 浅灰色背景，渐变效果 */
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center; /* 标题居中对齐 */
}

/* 标题样式 */
.title {
    font-size: 2em;
    color: #333; /* 深色文字颜色，确保在浅灰色背景上清晰可见 */
    margin-bottom: 40px; /* 增加标题和按钮之间的间距 */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); /* 添加平滑的阴影效果 */
}

/* 按钮样式 */
.button {
    padding: 0px 40px;
    font-size: 1em;
    text-decoration: none;
    color: #fff; /* 白色文字颜色，确保在黑色背景上清晰可见 */
    background-color: #000; /* 黑色背景颜色 */
    border-radius: 5px;
    box-shadow: 
        0 0 10px rgba(255, 255, 255, 0.8), /* 主要光晕 */
        0 0 20px rgba(255, 255, 255, 0.6), /* 次级光晕 */
        0 0 30px rgba(255, 255, 255, 0.4); /* 较弱的光晕 */
    transition: all 0.3s ease-in-out; /* 添加过渡效果 */
}

.button:hover {
    transform: scale(1.1); /* 放大按钮 */
}

/* 按钮容器样式 */
.button-container {
    display: flex;
    justify-content: space-between; /* 使用空间间隔布局，确保两个按钮之间有间距 */
    margin: 0 auto; /* 左右居中对齐 */
    gap: 50px; /* 增大按钮之间的空隙 */
}

/* 响应式设计 */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .title {
        font-size: 1.5em;
        margin-bottom: 20px; /* 调整间距以适应较小的屏幕 */
    }

    .button-container {
        width: 90%; /* 容器宽度减少，确保在小屏幕上也能适配 */
    }

    .button {
        font-size: 0.8em; /* 调整按钮文字大小以适应较小的屏幕 */
        padding: 5px 15px; /* 调整内边距以适应较小的空间 */
    }
}