/* 基础样式 */
@font-face {
    font-family: 'AlimamaFangYuanTiVF';
    src: url('/fonts/AlimamaFangYuanTiVF-Thin.woff2') format('woff2'),
         url('/fonts/AlimamaFangYuanTiVF-Thin.woff') format('woff'),
         url('/fonts/AlimamaFangYuanTiVF-Thin.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: 'AlimamaFangYuanTiVF', sans-serif;
    color: #fff;
    height: 100%;
    overflow: hidden; /* 防止滚动 */
}

/* 全屏背景 */
.landing-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url('/image/Default1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    animation: backgroundFadeIn 2s ease-in-out; /* 背景渐变动画 */
}

/* 背景渐变动画 */
@keyframes backgroundFadeIn {
    from {
        filter: brightness(0.5) blur(5px); /* 初始状态：变暗 + 模糊 */
    }
    to {
        filter: brightness(1) blur(0); /* 最终状态：恢复正常 */
    }
}

/* 半透明遮罩 */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* 调整透明度 */
    z-index: 1;
}

/* 内容区域 */
.content {
    text-align: center;
    z-index: 2;
    position: relative;
    animation: fadeIn 2s ease-in-out;
}

/* 标题样式 */
.title {
    font-size: 2.5rem; /* 调整标题字体大小 */
    font-weight: bold;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9); /* 柔和的白色 */
    animation: slideIn 1.5s ease-in-out;
}

/* 简介样式 */
.description {
    font-size: 1.1rem; /* 调整简介字体大小 */
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8); /* 柔和的白色 */
    animation: slideIn 2s ease-in-out;
}

/* 进入按钮样式 */
.enter-button {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem; /* 调整按钮字体大小 */
    color: rgba(255, 255, 255, 0.9); /* 柔和的白色 */
    background-color: rgba(255, 255, 255, 0.1); /* 半透明背景 */
    border: 2px solid rgba(255, 255, 255, 0.5); /* 半透明边框 */
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    animation: fadeIn 2.5s ease-in-out;
    backdrop-filter: blur(10px); /* 背景模糊效果 */
}

.enter-button:hover {
    background-color: rgba(255, 255, 255, 0.2); /* 悬停时背景更亮 */
    border-color: rgba(255, 255, 255, 0.8); /* 悬停时边框更亮 */
    color: rgba(255, 255, 255, 1); /* 悬停时文字更亮 */
}

/* 内容渐显动画 */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* 内容滑入动画 */
@keyframes slideIn {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
