body {
    margin: 0;
    overflow: hidden; /* 防止滚动条 */
    font-family: Arial, sans-serif;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* 使页面至少占据视口高度 */
    background-color: black; /* 视频加载前的背景色 */
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1; /* 将视频置于底层 */
}

.video-background video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover; /* 确保视频覆盖整个容器 */
}

.content {
    text-align: center;
    z-index: 1; /* 确保内容在视频上方 */
    padding: 20px;
}

.logo {
    width:600px; /* 根据需要调整大小 */
    height: auto;
    filter: brightness(0) invert(1); /* 将SVG改为白色 */
    margin-bottom: 20px;
}

.coming-soon-text {
    font-size: 6em; /* 根据需要调整大小 */
    font-weight: bold;
    letter-spacing: 5px;
    margin: 0;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .logo {
        width: 300px;
    }
    .coming-soon-text {
        font-size:clamp(24px, 6vw, 48px);
    }
}

