/* 基础按钮样式 */
/*.custom-button {*/
/*    display: inline-block;*/
/*    background-color: #566184; !* 深蓝背景色 *!*/
/*    color: white;*/
/*    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;*/
/*    font-weight: 600;*/
/*    text-decoration: none;*/
/*    border-radius: 8px;*/
/*    cursor: pointer;*/
/*    overflow: hidden;*/
/*    position: relative;*/
/*    transition: all 0.3s ease;*/
/*    box-shadow: 0 4px 12px rgba(10, 36, 99, 0.3);*/
/*}*/


/*.button-demo {*/
/*    background: rgba(255, 255, 255, 0.95);*/
/*    border-radius: 16px;*/
/*    padding: 60px 40px;*/
/*    box-shadow: 0 20px 40px rgba(0,0,0,0.25);*/
/*    margin-bottom: 50px;*/
/*}*/

/* 核心椭圆阴影按钮样式 */
.custom-button {
    display: inline-flex;
    position: relative;
    background-color:  #566184;
    color: white;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px; /* 胶囊效果 */
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
    /* 主阴影效果 */
    box-shadow:
            0 10px 20px rgba(10, 36, 99, 0.35), /* 基础阴影 */
            0 15px 30px rgba(10, 36, 99, 0.25); /* 扩散阴影 */
}

/* 椭圆阴影效果 */
.custom-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 40%;
    background: rgba(10, 36, 99, 0.2);
    border-radius: 50%;
    transform: translate(-50%, 0) scale(1.5);
    filter: blur(10px);
    z-index: -1;
    transition: all 0.4s ease;
}

/* 按钮内容容器 */
.button-container {
    display: flex;
    align-items: center;
    padding: 12px 30px;
    position: relative;
    z-index: 2;
}

/* 按钮文本 */
.button-label {
    font-size: 18px;
    letter-spacing: 0.5px;
    transition: transform 0.3s ease;
}
/* 按钮图标 */
.button-icon {
    margin-left: 12px;
    transition: transform 0.3s ease;
}

.button-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* 悬停效果 */
.custom-button:hover {
    background-color: #08204d;
    transform: translateY(-3px);
    box-shadow:
            0 15px 25px rgba(10, 36, 99, 0.45),
            0 20px 40px rgba(10, 36, 99, 0.35);
}

.custom-button:hover .button-icon {
    transform: translateX(4px);
}

.custom-button:hover::before {
    transform: translate(-50%, 10%) scale(2);
    filter: blur(15px);
    opacity: 0.3;
}

/* 点击效果 */
.custom-button:active {
    transform: translateY(1px);
    box-shadow:
            0 5px 15px rgba(10, 36, 99, 0.3),
            0 8px 20px rgba(10, 36, 99, 0.25);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .button-container {
        padding: 12px 24px;
    }

    .button-label {
        font-size: 16px;
    }

    h1 {
        font-size: 2.2rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }
}