body {
    margin: 0;
    padding: 0;
    font-family: "Microsoft YaHei", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow-y: auto;
}

#sakura {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#content {
    position: relative;
    z-index: 2;
    width: 85%;
    max-width: 450px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 15px;
    box-sizing: border-box;
    transform: translateY(-5vh);
    margin-top: 5vh;
    margin-bottom: 5vh;
}

h1 {
    text-align: center;
    color: #FFF; /* 标题颜色 */
    margin: 0 0 20px 0;
    font-size: 24px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.content-top ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.content-top li {
    margin-bottom: 10px;
}

.link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.link div[style*="color:#02a982"] {
    color: #FFF !important; /* 项目文字颜色 */
    font-size: 15px;
}

.go a {
    text-decoration: none;
    padding: 6px 16px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.3); /* 按钮背景颜色 */
    color: #000 !important; /* 按钮文字颜色 */
    transition: all 0.2s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.go a:hover {
    background: rgba(255, 255, 255, 0.3);
}

#dataDisplay {
    margin: 0;
    color: #fff !important; /* 累计访客文字颜色 */
    font-size: 15px;
}

.footer {
    text-align: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff; /* 网站信息文字颜色 */
    font-size: 13px;
    line-height: 1.5;
}

@media (max-width: 480px) {
    #content {
        width: 90%;
        margin: 15px;
        padding: 20px 15px;
    }
    
    .link {
        padding: 10px 12px;
    }
    
    .go a {
        padding: 5px 14px;
    }
}