/* Coming Soon Page Styles */

.coming-soon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    position: relative;
    padding: 40px 20px;
}

.coming-soon-content {
    text-align: center;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

/* Animated Icon */
.coming-soon-icon {
    font-size: 80px;
    color: var(--main-color);
    margin-bottom: 30px;
    position: relative;
}

.coming-soon-icon i {
    animation: rocketFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 12px rgba(2, 132, 199, 0.3));
}

@keyframes rocketFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

/* Title and Description */
.coming-soon-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--main-color), var(--text-main));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coming-soon-description {
    font-size: 18px;
    color: var(--span-color);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Progress Bar */
.progress-container {
    margin-bottom: 40px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background-color: var(--side-list-hover-color);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 10px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--main-color), #60a5fa);
    border-radius: 20px;
    width: 0%;
    animation: progressLoad 2s ease-out forwards;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: progressShine 2s ease-out infinite;
}

@keyframes progressLoad {
    0% { width: 0%; }
    100% { width: 75%; }
}

@keyframes progressShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-text {
    color: var(--main-color);
    font-weight: 600;
    font-size: 14px;
}

/* Features List */
.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 40px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background-color: var(--sidebar-bg);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.feature-item i {
    font-size: 16px;
    width: 20px;
}

.feature-item i.fa-check {
    color: #10b981;
}

.feature-item i.fa-clock {
    color: var(--span-color);
}

.feature-item span {
    font-size: 14px;
    color: var(--text-main);
    font-weight: 500;
}

/* Action Buttons */
.coming-soon-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn-notify {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-notify:hover {
    background: var(--main-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

.btn-notify.subscribed {
    background: #10b981;
    border-color: #10b981;
    color: white;
}

/* Estimated Time */
.estimated-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--span-color);
    font-size: 14px;
    padding: 15px 20px;
    background-color: var(--sidebar-bg);
    border-radius: 25px;
    border: 1px solid var(--border-color);
    display: inline-flex;
}

.estimated-time i {
    color: var(--main-color);
}

.estimated-time strong {
    color: var(--main-color);
}

/* Decorative Elements */
.decorative-dots {
    position: absolute;
    top: 20%;
    right: 10%;
    z-index: 1;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: var(--main-color);
    border-radius: 50%;
    margin-bottom: 15px;
    opacity: 0.3;
    animation: dotFloat 3s ease-in-out infinite;
}

.dot:nth-child(2) { animation-delay: 0.5s; }
.dot:nth-child(3) { animation-delay: 1s; }
.dot:nth-child(4) { animation-delay: 1.5s; }
.dot:nth-child(5) { animation-delay: 2s; }

@keyframes dotFloat {
    0%, 100% { transform: translateY(0px); opacity: 0.3; }
    50% { transform: translateY(-15px); opacity: 0.8; }
}

/* Notification Toast */
.notification-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--main-color);
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 9999;
}

.notification-toast.show {
    transform: translateX(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .coming-soon-title {
        font-size: 36px;
    }
    
    .coming-soon-icon {
        font-size: 60px;
    }
    
    .features-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .coming-soon-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .coming-soon-actions .btn-main,
    .coming-soon-actions .btn-notify {
        width: 200px;
        justify-content: center;
    }
    
    .decorative-dots {
        display: none;
    }
    
    .notification-toast {
        right: 10px;
        left: 10px;
        transform: translateY(-100px);
    }
    
    .notification-toast.show {
        transform: translateY(0);
    }
}