/**
 * Instagram Hashtag Generator - CreatorFlow Free Tool
 * Brand Colors: #000000 (black), #d1fe17 (lime green)
 * NO box-shadows, NO gradients per brand guidelines
 */

/* This file extends instagram-chat-link-generator.css with Coming Soon specific styles */

/* Coming Soon Badge */
.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #fff3cd;
    color: #856404;
    font-size: 0.9375rem;
    font-weight: 700;
    padding: 0.75rem 1.25rem;
    border-radius: 9999px;
    margin-bottom: 2rem;
    border: 2px solid #ffc107;
}

.coming-soon-badge svg {
    width: 24px;
    height: 24px;
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Coming Soon Message */
.coming-soon-message {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.coming-soon-text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 2rem;
}

/* Coming Soon Features List */
.coming-soon-features {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    margin-bottom: 2rem;
}

.coming-soon-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
    color: #374151;
    line-height: 1.6;
}

.coming-soon-feature:last-child {
    margin-bottom: 0;
}

.coming-soon-feature .check-icon {
    width: 20px;
    height: 20px;
    color: #000000;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Coming Soon CTA */
.coming-soon-cta {
    font-size: 1rem;
    color: #374151;
    line-height: 1.6;
}

.coming-soon-link {
    color: #000000;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.coming-soon-link:hover {
    color: #d1fe17;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .coming-soon-badge {
        font-size: 0.875rem;
        padding: 0.625rem 1rem;
    }

    .coming-soon-features {
        padding: 1.5rem;
    }

    .coming-soon-text {
        font-size: 1rem;
    }

    .coming-soon-feature {
        font-size: 0.875rem;
    }
}

@media (max-width: 430px) {
    .coming-soon-badge {
        font-size: 0.8125rem;
        padding: 0.5rem 0.875rem;
    }

    .coming-soon-features {
        padding: 1.25rem;
    }
}
