.coming-soon-modal {
    background-color: #121212;
    border: none;
    border-radius: 20px;
    padding: 40px 20px;
    position: relative;
    animation: zoomIn 0.4s ease;
}

.coming-text {
    color: #bcfb6c;
    font-weight: bold;
    font-size: 2rem;
    margin-top: 15px;
}

.rocket-img {
    animation: floatUp 2s infinite ease-in-out;
}

@keyframes floatUp {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.btn-close-custom {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: #bcfb6c;
    color: #121212;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    width: 35px;
    height: 35px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-close-custom:hover {
    background-color: #a3e45d;
    transform: rotate(90deg);
}

@keyframes zoomIn {
    from {
        transform: scale(0.7);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ✅ ريسبونسيف للموبايل */
@media (max-width: 576px) {
    .coming-soon-modal {
        padding: 25px 15px;
        border-radius: 15px;
    }

    .coming-text {
        font-size: 1.4rem;
    }

    .rocket-responsive {
        width: 70% !important;
    }

    .btn-close-custom {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }
}