/* 基础样式 */
*{
    list-style: none;
    padding: 0;
    margin: 0;
    text-decoration: none;
    color: white;
}
body {
    margin: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    font-family: 'Arial', sans-serif;
	text-decoration: none;
}

/* 容器样式 */
.container {
    text-align: center;
}

/* 艺术字效果 */
.art-text {
    font-size: 8rem;
    font-weight: bold;
    background: linear-gradient(45deg, #ff9a9e, #fad0c4, #fbc2eb);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 4px 4px 0px rgba(255, 255, 255, 0.2),
                8px 8px 0px rgba(255, 255, 255, 0.1);
    transform: perspective(500px) rotateX(20deg);
    animation: float 3s ease-in-out infinite;
}

/* 浮动动画 */
@keyframes float {
    0%, 100% {
        transform: perspective(500px) rotateX(20deg) translateY(0);
    }
    50% {
        transform: perspective(500px) rotateX(20deg) translateY(-20px);
    }
}

/* 页脚样式 */
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 1rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    font-size: 0.8rem;
}
