body {
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #FFFFFF;
    font-family: 'Kaiti SC', 'PingFang SC', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    overflow: hidden;
}

.header {
    text-align: center;
    margin-bottom: 2rem;
}

.title {
    font-size: 50px;
    font-family: 'Kaiti SC', serif;
    color: #FFB067; /* 添加明确的颜色 */
    margin: 0;
    line-height: 1;
    text-shadow: 0 0 10px rgba(255, 176, 103, 0.5); /* 添加发光效果 */
}

.score-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
}

.score {
    font-size: 8vh;
    font-family: 'PingFang SC', sans-serif;
    font-weight: 900;
    margin: 0;
    color: #FFFFFF;
}

.description {
    font-size: 4vh;
    font-family: 'PingFang SC', sans-serif;
    margin: 0;
    color: #AAAAAA;
}

.cyber-muyu-container {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
}

.muyu {
    width: 284px;
    height: 236px;
    transition: transform 0.1s ease;
}

.hammer {
    position: absolute;
    width: 119px;
    height: 69px;
    top: 20%;
    right: 10%;
    transform-origin: bottom left;
    transition: transform 0.1s ease;
    z-index: 10;
}

.floating-text {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'PingFang SC', sans-serif;
    font-size: 1.5em;
    color: #FFB067;
    pointer-events: none;
    opacity: 0;
    animation: floatUp 0.4s forwards;
}

@keyframes floatUp {
    0% {
        opacity: 1;
        transform: translate(-50%, 0);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50px);
    }
}

.footer {
    font-family: 'Kaiti SC', serif;
    font-size: 30px;
    text-align: center;
    margin-top: 3rem; /* 增加与木鱼区域的距离 */
    color: #CCCCCC;
    padding: 1rem; /* 添加内边距 */
}

/* 响应式设计 - 平板和大屏手机 */
@media (max-width: 768px) {
    .cyber-muyu-container {
        width: 250px;
        height: 250px;
        margin: 1.5rem 0;
    }
    
    .muyu {
        width: 237px;
        height: 197px;
    }
    
    .hammer {
        width: 99px;
        height: 58px;
    }
    
    .title {
        font-size: 18vw;
    }
    
    .score {
        font-size: 7vh;
    }
    
    .description {
        font-size: 3.5vh;
    }
    
    .footer {
        font-size: 1em;
        margin-top: 2rem;
    }
}

/* 响应式设计 - 小屏手机 */
@media (max-width: 480px) {
    .cyber-muyu-container {
        width: 200px;
        height: 200px;
        margin: 1rem 0;
    }
    
    .muyu {
        width: 189px;
        height: 158px;
    }
    
    .hammer {
        width: 79px;
        height: 46px;
    }
    
    .title {
        font-size: 22vw;
    }
    
    .score {
        font-size: 6vh;
    }
    
    .description {
        font-size: 3vh;
    }
    
    .footer {
        font-size: 0.9em;
        margin-top: 1.5rem;
        padding: 0.5rem;
    }
}