/* 添加任何额外需要的全局样式 */

html, body {
    font-family: 'Nunito', sans-serif;
    background-color: #333333;
    max-width: 480px;
    margin: 0 auto;
}
.app{
    min-height: 100vh;
}

/* 全局容器样式 */
.welcome-home-section,
.welcome-ready-section,
.auth-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    position: relative;
    height: 100vh;
}

/* 特定页面样式 */
.welcome-home-section {
    background: url('/images/welcome-home-bg.png') center/cover no-repeat;
    justify-content: flex-end;
    padding-bottom: 150px;
    text-align: center;
}

.welcome-ready-section {
    background: url('/images/welcome-ready-bg.png') top center/cover no-repeat;
    justify-content: flex-start;
    text-align: center;
}

.start-earn-now-button {
    background: linear-gradient(to right, #2f89bc, #379eda);
    color: white;
    padding: 1rem 3rem;
    border-radius: 10px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 450px;
}

.start-earn-now-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 159, 255, 0.4);
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(var(--rotation));
    }

    100% {
        transform: translateY(-100vh) rotate(var(--rotation));
    }
}

/* 响应式 */
@media only screen and (max-width: 480px) {
    .hero-section {
        max-width: 100%;
    }
}

/* 欢迎页面 Ready 页面 */
.welcome-ready-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    width: 100%;
    max-width: 400px;
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.5;
    margin: 2rem 0;
    color: #c6d4df;
    text-align: center;
}

.button-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    margin: 1rem 0;
}

.sign-in-button {
    background: linear-gradient(to top, #87b92a, #b3e23d);
    color: white;
    padding: 1rem 3rem;
    border-radius: 10px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.sign-in-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 159, 255, 0.4);
}

.create-account-button {
    background: linear-gradient(to top, #2f89bc, #379eda);
    color: white;
    padding: 1rem 3rem;
    border-radius: 10px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.create-account-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 159, 255, 0.4);
}

.contact-us-link {
    color: #1999ff;
    margin-top: 1rem;
    font-size: 1rem;
    transition: color 0.2s ease;
    display: block;
}

.contact-us-link:hover {
    color: #00aeff;
}


