@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    min-height: 100vh;
    position: relative;
}

header {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline-block;
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

main {
    padding: 50px 20px;
    padding-bottom: 80px; /* 防止页脚遮挡内容 */
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}

/* 跳动文字样式 */
.splash {
    position: fixed;
    bottom: 20px;
    right: 20px;
    transform: skewX(-25deg);
    color: yellow;
    font-family: 'Press Start 2P', 'Microsoft YaHei', sans-serif;
    font-size: 14px;
    animation: pulse 0.8s infinite;
    pointer-events: none;
    text-shadow: 2px 2px #000;
    z-index: 999;
}

@keyframes pulse {
    0%, 100% { transform: skewX(-25deg) scale(1); }
    50% { transform: skewX(-25deg) scale(1.15); }
}