/* --- Coming Soon & MVP Styles --- */

/* Badge on Main Page - Enhanced Visibility */
.badge-coming-soon {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: white !important;
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
    z-index: 20;
    animation: pulse-glow 2s infinite ease-in-out;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

@keyframes pulse-glow {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(239, 68, 68, 0.6);
    }
}

/* Coming Soon Wrapper (Chat Page) */
.coming-soon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.coming-soon-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px var(--primary-color));
}

.coming-soon-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.coming-soon-text {
    color: var(--text-secondary);
    max-width: 400px;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.features-preview {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
    text-align: right;
}

.features-preview li {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
}

.notify-form {
    margin-top: 1rem;
    width: 100%;
}

.btn-return {
    margin-top: 1.5rem;
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

/* Disabled Input Overlay */
.disabled-input {
    position: relative;
    pointer-events: none;
    filter: grayscale(1);
}

.disabled-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
    z-index: 100;
}