/* 下载页面专用样式 */

/* 下载页面文字样式 */
.text-download {
    color: white;
    text-align: center;
    font-size: 16px;
    margin: 10px 0;
    line-height: 1.5;
}

/* 下载按钮样式 */
.button.button-download {
    width: 200px;
    height: 80px;
    border-radius: 2px !important;
}

.button.button-home-download {
    width: 120px;
    height: 50px;
    margin-bottom: 15px;
    border-radius: 2px !important;
}

.button.button-download-other {
    width: 120px;
    height: 50px;
    margin-bottom: 15px;
    border-radius: 2px !important;
}

/* 服务器选择按钮样式 */
.server-selection-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.server-button-group {
    display: flex;
    gap: 0;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.button.button-server {
    background-color: #495057 !important;
    color: white !important;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0 !important;
    position: relative;
    min-width: 120px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.button.button-server:last-child {
    border-right: none;
}

.button.button-server:hover {
    background-color: #6c757d !important;
    transform: translateY(-2px);
}

.button.button-server-active {
    background-color: #007bff !important;
    color: white !important;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
}

.button.button-server-active:hover {
    background-color: #0056b3 !important;
}

/* 下载按钮容器 */
.download-buttons-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
}

.download-button-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.download-desc {
    color: #ccc;
    font-size: 14px;
    margin: 0;
    text-align: center;
}

/* 备用下载按钮样式 */
.button.button-backup {
    background-color: #6c757d !important;
    opacity: 0.7;
    font-size: 14px;
    width: 160px;
    height: 60px;
    border: 2px dashed #adb5bd !important;
    position: relative;
    transition: all 0.3s ease;
}

.button.button-backup:hover {
    background-color: #5a6268 !important;
    opacity: 0.9;
    transform: scale(1.02);
}

.button.button-backup:active {
    background-color: #495057 !important;
    transform: scale(0.98);
}

/* 禁用按钮样式 */
.button.button-disabled {
    background-color: #6c757d !important;
    opacity: 0.5 !important;
    cursor: not-allowed !important;
    position: relative;
}

.button.button-disabled:hover {
    background-color: #6c757d !important;
    transform: none !important;
}

.button.button-disabled:active {
    background-color: #6c757d !important;
    transform: none !important;
}

/* 特殊下载描述样式 */
.download-button-group:nth-child(2) .download-desc {
    color: #999;
    font-size: 16px;
    font-style: italic;
    max-width: 400px;
    text-align: center;
    line-height: 1.4;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .download-buttons-container {
        flex-direction: column;
        gap: 20px;
    }
}