/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans SC', 'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans GB', sans-serif;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
}

/* 头像区域 */
.avatar-section {
    text-align: center;
    padding: 20px 20px 0px;
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* 标题区域 */
.title-section {
    text-align: center;
    padding: 20px;
}

.title-section h1 {
    font-size: 3em;
    color: #fff;
    font-weight: 900;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
    letter-spacing: 2px;
}

/* 简介区域 */
.description-section {
    text-align: center;
    padding: 15px 20px 50px;
}

.description-section p {
    font-size: 1.2em;
    color: #fff;
    line-height: 1.8;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    font-weight: 400;
    letter-spacing: 1px;
}

/* 按钮区域 */
.buttons-section {
    text-align: center;
    padding: 20px;
}

.buttons-section a {
    display: inline-block;
    margin: 10px;
    text-decoration: none;
}

/* 按钮样式 - 玻璃化效果 */
button {
    display: inline-block;
    width: 260px;
    height: 50px;
    border-radius: 10px;
    border: 1px solid rgba(3, 4, 94, 0.5);
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease-in;
    z-index: 1;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

button::before,
button::after {
    content: '';
    position: absolute;
    top: 0;
    width: 0;
    height: 100%;
    transform: skew(15deg);
    transition: all 0.5s;
    overflow: hidden;
    z-index: -1;
}

button::before {
    left: -10px;
    background: #240046;
}

button::after {
    right: -10px;
    background: #5a189a;
}

button:hover::before,
button:hover::after {
    width: 54%;
}

button:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(224, 170, 255, 0.8);
    box-shadow: 0 6px 24px rgba(90, 24, 154, 0.4);
}

button:hover span {
    color: #fff;
    transition: 0.3s;
}

button span {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease-in;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .title-section {
        padding: 10px 20px 0;
    }
    
    .title-section h1 {
        font-size: 1.8em;
    }
    
    .description-section {
        padding: 15px 20px 0px;
    }
    
    .buttons-section a {
        display: block;
        margin: 10px auto;
        max-width: 300px;
    }
}
