/**
 * Coming Soon Page Styles
 */

.page-preorder {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.coming-soon-container {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.coming-soon-title {
    font-size: 4rem;
    color: #fff;
    margin: 0 0 1rem;
    font-weight: 700;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
}

.coming-soon-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 3rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.coming-soon-icon {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

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

    .coming-soon-subtitle {
        font-size: 1.2rem;
    }
}

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

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