/* =================================== */
/* 🚧 COMING SOON MODAL STYLES */
/* 프로젝트 다크 테마 + 레드 악센트 (#FF2B00) */
/* =================================== */

/* 모달 오버레이 */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 1, 1, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
    padding: 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* 모달 컨테이너 공통 */
.modal-container {
    position: relative;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 데스크탑 모달 */
.d-modal-container {
    display: block;
}

.m-modal-container {
    display: none;
}

/* 모달 콘텐츠 - 다크 테마 */
.modal-content {
    background: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 500px;
    width: 100%;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* 닫기 버튼 - 다크 테마 */
.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #2a2a2a;
    border: 1px solid #404040;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff;
}

.modal-close:hover {
    background: #FF2B00;
    border-color: #FF2B00;
    transform: rotate(90deg);
}

.modal-close i {
    width: 24px;
    height: 24px;
}

/* 모달 아이콘 */
.modal-icon-wrapper {
    margin-bottom: 30px;
}

.modal-icon-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #FF2B00 0%, #CC2300 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(255, 43, 0, 0.3);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(255, 43, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 50px rgba(255, 43, 0, 0.5);
    }
}

.modal-icon {
    width: 50px;
    height: 50px;
    color: #ffffff;
    stroke-width: 2;
}

/* 모달 타이틀 - 화이트 텍스트 */
.modal-title {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 16px;
}

/* 모달 메시지 - 그레이 텍스트 */
.modal-message {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* 타임라인 - 다크 테마 */
.modal-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    background: #2a2a2a;
    border: 1px solid #404040;
    border-radius: 12px;
    margin-bottom: 30px;
}

.timeline-icon {
    width: 20px;
    height: 20px;
    color: #FF2B00;
}

.timeline-text {
    font-size: 0.95rem;
    color: #ffffff;
}

/* 모달 액션 버튼 */
.modal-actions {
    display: flex;
    gap: 12px;
    flex-direction: column;
}

.modal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.modal-btn i {
    width: 20px;
    height: 20px;
}

/* 주요 버튼 - 레드 악센트 */
.modal-btn-primary {
    background: #FF2B00;
    color: #ffffff;
    border: 1px solid #FF2B00;
}

.modal-btn-primary:hover {
    background: #CC2300;
    border-color: #CC2300;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 43, 0, 0.4);
}

/* 보조 버튼 - 다크 그레이 */
.modal-btn-secondary {
    background: #2a2a2a;
    color: #ffffff;
    border: 1px solid #404040;
}

.modal-btn-secondary:hover {
    background: #3a3a3a;
    border-color: #505050;
}

/* =================================== */
/* 📱 MOBILE RESPONSIVE (767px 이하) */
/* =================================== */

@media (max-width: 767px) {
    /* 데스크탑 모달 숨김, 모바일 모달 표시 */
    .d-modal-container {
        display: none;
    }
    
    .m-modal-container {
        display: block;
    }
    
    /* 모바일 모달 콘텐츠 */
    .m-modal-content {
        padding: 40px 24px;
        border-radius: 16px;
        max-width: 100%;
    }
    
    /* 모바일 닫기 버튼 */
    .m-modal-content .modal-close {
        top: 16px;
        right: 16px;
        width: 36px;
        height: 36px;
    }
    
    .m-modal-content .modal-close i {
        width: 20px;
        height: 20px;
    }
    
    /* 모바일 아이콘 */
    .m-modal-content .modal-icon-circle {
        width: 80px;
        height: 80px;
    }
    
    .m-modal-content .modal-icon {
        width: 40px;
        height: 40px;
    }
    
    /* 모바일 타이틀 */
    .m-modal-content .modal-title {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    /* 모바일 메시지 */
    .m-modal-content .modal-message {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }
    
    /* 모바일 타임라인 */
    .m-modal-content .modal-timeline {
        padding: 12px 20px;
        margin-bottom: 24px;
    }
    
    .m-modal-content .timeline-text {
        font-size: 0.85rem;
    }
    
    /* 모바일 버튼 */
    .m-modal-content .modal-btn {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
    
    .m-modal-content .modal-btn i {
        width: 18px;
        height: 18px;
    }
}
