/* home.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
}

body {
    background-color: #e7858d00;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    position: relative; /* 确保背景在其下方 */
}

.us-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* 确保背景在内容下方 */
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 400px;
}

.image-container {
    margin-bottom: 40px;
}

.image-container img {
    width: 400px;
    height: auto;
}

.title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
}

.description {
    font-size: 16px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.5;
}

.indicator {
    width: 40px;
    height: 5px;
    background: linear-gradient(to right, #ff00ff, #9966ff);
    border-radius: 3px;
    margin-bottom: 40px;
}

.next-button {
    width: 70%;
    padding: 15px;
    border-radius: 50px;
    border: none;
    background: linear-gradient(to right, #af3433a1, #af3433a1);
    color: white;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
}
