.coming-soon-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.coming-soon-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.coming-soon-content {
    position: relative;
    background: #ffffff;
    padding: 32px;
    border-radius: 16px;
    width: 90vw;
    max-width: 800px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: scale(0.95);
    opacity: 0;
    animation: popupFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes popupFadeIn {
    to {
        transform: scale(1);
        opacity: 1;
    }
}
.coming-soon-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #f3f4f6;
    color: #101828;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    font-size: 20px;
    cursor: pointer;
    z-index: 2;
    transition: all 0.2s ease;
}
.coming-soon-close:hover {
    background: #e5e7eb;
}
.coming-soon-inner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.coming-soon-message-box {
    background: #f8f9fa;
    border: 1px solid #e5e7eb;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1.25rem;
    font-weight: 500;
    color: #475467;
    text-align: center;
}
.coming-soon-main-image {
    max-width: 60%;
width: 60%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.coming-soon-text {
    color: #000000;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin: 0;
}