/* 全局重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', sans-serif;
    background: #1a1a2e;
    color: #fff;
    overflow-x: hidden;
}

/* 背景图 */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/bg.jpg') center/cover no-repeat;
    z-index: -1;
    filter: brightness(0.6);
}

/* 毛玻璃容器 */
.glass-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 15px;
    margin: 15px auto;
    max-width: 400px;
}

/* 顶部容器 */
.top-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 用户信息容器 */
.user-container {
    text-align: center;
}
.avatar-section {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}
.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}
.avatar-frame {
    position: absolute;
    top: -5px;
    left: -5px;
    width: 90px;
    height: 90px;
}
.username {
    font-size: 20px;
    margin: 10px 0;
}
.badges {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}
.badge {
    width: 24px;
    height: 24px;
}

/* 按钮容器 */
.buttons-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.glass-button {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 10px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
}
.glass-button:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* 音乐播放器 */
.music-container {
    display: flex;
    align-items: center;
    gap: 15px;
}
.vinyl {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #333;
    animation: spin 10s linear infinite;
}
.vinyl-edge {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #666;
    transform: translate(-50%, -50%);
}
.album-cover {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}
.vinyl-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    transform: translate(-50%, -50%);
}
@keyframes spin {
    100% { transform: rotate(360deg); }
}

/* 底部备案 */
.footer-container {
    font-size: 12px;
    text-align: center;
}
