/* Coming Soon 区域样式 */
.coming-soon {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(113, 167, 217, 0.1), rgba(113, 167, 217, 0.2));
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.coming-soon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(113, 167, 217, 0.1) 0%, transparent 60%),
                radial-gradient(circle at 70% 70%, rgba(113, 167, 217, 0.1) 0%, transparent 60%);
    opacity: 0.6;
}

.coming-soon-content {
    text-align: center;
    position: relative;
    padding: 2rem;
    width: 100%;
    max-width: 800px;
}

.coming-soon h1 {
    font-size: 6rem;
    color: #333;
    margin-bottom: 2rem;
    font-weight: 600;
    animation: fadeInDown 1s ease-out;
    letter-spacing: -2px;
}

.coming-soon p {
    font-size: 2.5rem;
    color: #666;
    margin: 0;
    animation: fadeInUp 1s ease-out 0.3s;
    animation-fill-mode: both;
    letter-spacing: 1px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 响应式调整 */
@media screen and (max-width: 768px) {
    .coming-soon h1 {
        font-size: 4rem;
    }
    .coming-soon p {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 480px) {
    .coming-soon h1 {
        font-size: 3rem;
    }
    .coming-soon p {
        font-size: 1.5rem;
    }
} 