.coming-soon-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--text-light);
    text-align: center;
    overflow: hidden;
    animation: fadeIn 1s ease forwards;
}

.coming-soon-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease forwards;
}

.coming-soon-text {
    font-size: 1.2rem;
    color: var(--accent-light);
    animation: fadeInUp 1.5s ease forwards;
}

/* Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .coming-soon-title {
        font-size: 2.2rem;
    }

    .coming-soon-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .coming-soon-title {
        font-size: 1.8rem;
    }

    .coming-soon-text {
        font-size: 0.9rem;
    }
}
