#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* 保持视频的宽高比，同时覆盖整个容器 */
    z-index: -1; /* 确保视频在其他元素下方 */
}

/* 唱片容器样式 */
.record-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    /* 确保子元素可以相对该容器定位 */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.gif-container {
    /* 确保动图在唱片下方 */
    margin-top: 10px; 
    /* 可以根据需要调整动图大小 */
    max-width: 200px; 
    max-height: 200px;
}

.gif-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 唱片样式 */
.record {
    /* 假设原来的大小较大，现在调小 */
    width: 200px; 
    height: 200px; 
    /* 其他样式保持不变 */
    background-color: #000;
    border-radius: 50%;
    position: relative;
    background-image: url('../images/背景图.jpg'); 
    background-size: cover; 
    background-position: center; 
    border-radius: 50%;
    /* 修改阴影不透明度为 60% */
    box-shadow: 0 0 40px 20px rgba(63, 63, 63, 0.6); 
    animation: spin 10s linear infinite paused; 
    position: relative;
}

/* 播放动画的类 */
.record.spinning {
    animation-play-state: running;
}

/* 唱片中心标签样式 */
.record-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: transparent; /* 将背景设置为透明 */
    border: none; /* 去掉边框 */
}

/* 右侧按钮容器样式 */
.right-buttons-container {
    position: fixed;
    top: 50%;
    left: calc(50% + 150px); /* 在唱片右侧，可按需调整距离 */
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px; /* 按钮之间的垂直间距 */
}

/* 右侧按钮样式 */
.right-button {
    padding: 10px 20px;
    background-color: rgba(68, 68, 68, 0.7);
    color: rgb(255, 255, 255);
    border: 2px solid #acacac;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.right-button:hover {
    background-color: rgba(57, 56, 56, 0.9);
    transform: scale(1.05);
}

