@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Orbitron:wght@500&display=swap');

body {
    background: linear-gradient(to bottom, #0a0f29, #162447);
    color: white;
    text-align: center;
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
    opacity: 0;
    animation: fadeIn 1.5s forwards;
}

/* 页面加载时的淡入动画 */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.glow {
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 0 0 10px white, 0 0 20px #87CEFA, 0 0 30px #1E90FF;
}

.intro {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.links {
    margin-top: 20px;
}

.fancy-link {
    font-family: 'Great Vibes', cursive;
    font-size: 1.8rem;
    color: #FFD700;
    margin: 0 20px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.fancy-link:hover {
    text-shadow: 0 0 10px #FFD700, 0 0 20px white;
    transform: scale(1.1);
}
.gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
}

.gallery img {
    width: 250px; /* 限制图片大小 */
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.gallery img:hover {
    transform: scale(1.1);
}

.description {
    font-size: 1.2rem;
    width: 60%;
    margin: 20px auto;
    text-align: center;
}

.back-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: #FFD700;
    color: black;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

.back-btn:hover {
    background: white;
    color: black;
    transform: scale(1.1);
}
