/* ============================================
   Coming Soon — Rich Preview Heroes + Disabled State
   ============================================ */

/* Hero Section */
.coming-soon-hero {
    position: relative;
    overflow: hidden;
    margin: 16px;
    padding: 32px 28px;
    border-radius: 16px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 10;
}

/* Shimmer animation */
.coming-soon-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.03) 40%,
        rgba(255, 255, 255, 0.06) 50%,
        rgba(255, 255, 255, 0.03) 60%,
        transparent 100%
    );
    animation: comingSoonShimmer 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes comingSoonShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* ---- Theme: Tourney (red/orange) ---- */
.coming-soon-hero--tourney {
    background: linear-gradient(135deg, rgba(239,68,68,0.10) 0%, rgba(168,85,247,0.06) 50%, rgba(249,115,22,0.10) 100%);
    border: 1px solid rgba(239,68,68,0.25);
    border-left: 4px solid rgba(239,68,68,0.7);
}

.coming-soon-hero--tourney .coming-soon-hero__badge {
    background: rgba(239,68,68,0.15);
    color: #f87171;
    border: 1px solid rgba(239,68,68,0.3);
}


/* ---- Theme: Journey (green/cyan) ---- */
.coming-soon-hero--journey {
    background: linear-gradient(135deg, rgba(34,197,94,0.10) 0%, rgba(168,85,247,0.06) 50%, rgba(0,212,255,0.10) 100%);
    border: 1px solid rgba(34,197,94,0.25);
    border-left: 4px solid rgba(34,197,94,0.7);
}

.coming-soon-hero--journey .coming-soon-hero__badge {
    background: rgba(34,197,94,0.15);
    color: #4ade80;
    border: 1px solid rgba(34,197,94,0.3);
}


/* ---- Hero Content ---- */
.coming-soon-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.coming-soon-hero__title {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.2;
}

.coming-soon-hero__subtitle {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    max-width: 520px;
    margin-bottom: 20px;
}

/* Feature Pills */
.coming-soon-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.coming-soon-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.8);
}


/* ---- City Teaser Cards ---- */
.coming-soon-cities {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 24px;
}

.coming-soon-city {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px 10px;
    text-align: center;
    transition: transform 0.2s ease, border-color 0.2s ease;
    position: relative;
    overflow: hidden;
}

.coming-soon-city::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--city-color, #22c55e);
    opacity: 0.6;
}

.coming-soon-city__icon {
    font-size: 16px;
    font-weight: 900;
    color: var(--city-color, #22c55e);
    letter-spacing: 1px;
    margin-bottom: 6px;
    font-family: 'Space Grotesk', monospace;
}

.coming-soon-city__name {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2px;
    white-space: nowrap;
}

.coming-soon-city__count {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}


/* ---- Notify Me CTA ---- */
.coming-soon-notify {
    margin-top: 4px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.coming-soon-notify__label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

.coming-soon-notify__form {
    display: flex;
    gap: 8px;
    max-width: 400px;
}

.coming-soon-notify__input {
    flex: 1;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 13px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s ease;
}

.coming-soon-notify__input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.coming-soon-notify__input:focus {
    border-color: rgba(34, 197, 94, 0.5);
}

.coming-soon-notify__btn {
    padding: 10px 20px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #22c55e, #10b981);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s ease, transform 0.15s ease;
}

.coming-soon-notify__btn:hover {
    opacity: 0.9;
}

.coming-soon-notify__btn:active {
    transform: scale(0.97);
}

.coming-soon-notify__btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.coming-soon-notify__status {
    font-size: 12px;
    margin-top: 8px;
    font-weight: 600;
}


/* Disabled state for interactive elements */
.coming-soon-disabled {
    opacity: 0.4 !important;
    pointer-events: none !important;
    cursor: not-allowed !important;
    user-select: none !important;
}

/* ---- Mobile ---- */
@media (max-width: 767px) {
    .coming-soon-hero {
        margin: 12px;
        padding: 24px 20px;
    }

    .coming-soon-hero__title {
        font-size: 20px;
    }

    .coming-soon-hero__subtitle {
        font-size: 13px;
    }

    .coming-soon-features {
        gap: 6px;
    }

    .coming-soon-feature {
        font-size: 11px;
        padding: 4px 10px;
    }

    .coming-soon-cities {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .coming-soon-notify__form {
        flex-direction: column;
    }

    .coming-soon-notify__btn {
        width: 100%;
    }
}
