/* Coming Soon Page Styles */
:root {
    --primary-color: #2c3e50;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-attachment: fixed;
}

.coming-soon-container {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 100%;
}

.coming-soon-icon {
    font-size: 5rem;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.coming-soon-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.coming-soon-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coming-soon-message {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 5px solid;
}

.coming-soon-message.blue {
    border-left-color: #3498db;
    background: rgba(52, 152, 219, 0.05);
}

.coming-soon-message.red {
    border-left-color: #e74c3c;
    background: rgba(231, 76, 60, 0.05);
}

.coming-soon-message.green {
    border-left-color: #27ae60;
    background: rgba(39, 174, 96, 0.05);
}

.coming-soon-message.purple {
    border-left-color: #9b59b6;
    background: rgba(155, 89, 182, 0.05);
}

.coming-soon-message.orange {
    border-left-color: #e67e22;
    background: rgba(230, 126, 34, 0.05);
}

.coming-soon-message.teal {
    border-left-color: #16a085;
    background: rgba(22, 160, 133, 0.05);
}

.coming-soon-features {
    text-align: left;
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.coming-soon-features h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.coming-soon-features ul {
    list-style: none;
    padding: 0;
}

.coming-soon-features li {
    color: #555;
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
}

.coming-soon-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.2rem;
}

.action-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-back:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
    color: white;
}

.btn-notify {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    background: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #667eea;
    cursor: pointer;
    font-size: 1rem;
}

.btn-notify:hover {
    background: #667eea;
    color: white;
    transform: translateY(-3px);
}

.loading-dots {
    display: inline-block;
    margin-left: 5px;
}

.loading-dots span {
    animation: dots 1.4s infinite;
    font-weight: bold;
    color: var(--primary-color);
}

.loading-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes dots {
    0%, 60%, 100% { opacity: 0.3; }
    30% { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .coming-soon-container {
        padding: 40px 25px;
    }

    .coming-soon-title {
        font-size: 1.8rem;
    }

    .coming-soon-subtitle {
        font-size: 1.1rem;
    }

    .coming-soon-icon {
        font-size: 3.5rem;
    }

    .action-buttons {
        flex-direction: column;
    }

    .btn-back, .btn-notify {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .coming-soon-container {
        padding: 30px 20px;
    }

    .coming-soon-title {
        font-size: 1.5rem;
    }

    .coming-soon-subtitle {
        font-size: 1rem;
    }

    .coming-soon-icon {
        font-size: 3rem;
    }

    .coming-soon-message {
        font-size: 0.95rem;
    }
}
