/* 自定义按钮样式 */
.custom-button-container {
    margin: 20px 0 70px;
    text-align: center;
}

.custom-button {
    display: inline-block;
    padding: 12px 24px;
    color: white !important;
    text-decoration: none;
    border-radius: 22px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.4;
    background: rgba(255, 255, 255, .1);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    opacity: 0.85;

    svg {
        position: relative;
        top: 1px;
    }
}

.custom-button:hover {
    color: white !important;
    text-decoration: none;
    opacity: 1;
}


/* 响应式设计 */
@media (max-width: 768px) {
    .custom-button {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* 暗色主题适配 */
@media (prefers-color-scheme: dark) {
    .custom-button {
    }
    
    .custom-button:hover {
    }
}
