/* ================================
   WHAT'S NEW MODAL
   ================================ */
#whatsNewModal .whats-new-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
}

#whatsNewModal .whats-new-modal {
    background: var(--bg-card);
    border: 1px solid var(--border-purple);
    border-radius: 20px;
    padding: 28px 24px;
    max-width: 340px;
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#whatsNewModal .whats-new-modal::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(245, 166, 35, 0.08);
    filter: blur(30px);
    pointer-events: none;
}

#whatsNewModal .whats-new-emoji {
    font-size: 48px;
    margin-bottom: 12px;
}

#whatsNewModal .whats-new-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 6px;
}

#whatsNewModal .whats-new-version {
    font-size: 12px;
    color: var(--amber);
    font-weight: 700;
    margin-bottom: 20px;
}

#whatsNewModal .whats-new-features {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

#whatsNewModal .whats-new-feature {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

#whatsNewModal .whats-new-feature-icon {
    font-size: 24px;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: rgba(245, 166, 35, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#whatsNewModal .whats-new-feature-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--text-primary);
    margin-bottom: 2px;
}

#whatsNewModal .whats-new-feature-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
}

#whatsNewModal .whats-new-cta {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, var(--amber), #e8941a);
    color: #1a1a2e;
    font-size: 15px;
    font-weight: 800;
    font-family: inherit;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(245, 166, 35, 0.3);
}

/* ================================================================================
   PROMPTS MODALS (discovery source, what's new, future prompts)
   ================================================================================ */

#discoveryModal .prompts-modal-content {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 0 var(--space-md) var(--space-md);
    max-width: 420px;
    width: calc(100% - 32px);
    margin: auto;
    max-height: 92vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

#discoveryModal .prompts-header {
    text-align: center;
    margin-bottom: 12px;
}

#discoveryModal .prompts-icon {
    font-size: 32px;
    display: block;
}

#discoveryModal .prompts-header h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 4px;
}

#discoveryModal .prompts-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

#discoveryModal .prompts-discovery-options {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 10px;
}

#discoveryModal .prompts-discovery-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(255,255,255,0.05);
    border: 1.5px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    transition: all 0.15s ease;
    width: 100%;
}

#discoveryModal .prompts-discovery-option:active {
    transform: scale(0.98);
}

#discoveryModal .prompts-discovery-option.selected {
    border-color: var(--amber);
    background: rgba(245, 166, 35, 0.1);
}

#discoveryModal .prompts-discovery-option-icon {
    font-size: 18px;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

#discoveryModal .prompts-discovery-option-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

#discoveryModal .prompts-discovery-option.selected .prompts-discovery-option-label {
    color: var(--amber);
}

#discoveryModal .prompts-venue-input {
    margin-bottom: 10px;
}

#discoveryModal .prompts-text-input {
    width: 100%;
    background: var(--bg-input);
    border: 1.5px solid var(--border-purple);
    border-radius: 10px;
    padding: 10px 12px;
    color: var(--text-primary);
    font-size: 14px;
    font-family: inherit;
    outline: none;
}

#discoveryModal .prompts-text-input::placeholder {
    color: var(--text-muted);
}

#discoveryModal .prompts-actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
}

#discoveryModal .prompts-submit {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 800;
}

#discoveryModal .prompts-skip {
    font-size: 12px;
    color: var(--text-muted);
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    padding: 4px;
    text-decoration: underline;
    text-underline-offset: 3px;
}

#discoveryModal .prompts-venue-dropdown {
    background: var(--bg-input);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    margin-top: 4px;
    overflow: hidden;
    max-height: 180px;
    overflow-y: auto;
}

#discoveryModal .prompts-venue-dropdown-item {
    padding: 10px 12px;
    font-size: 13px;
    color: var(--text-primary);
    cursor: pointer;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

#discoveryModal .prompts-venue-dropdown-item:last-child {
    border-bottom: none;
}

#discoveryModal .prompts-venue-dropdown-item:active {
    background: rgba(139,92,246,0.1);
}

#discoveryModal .prompts-venue-dropdown-item-sub {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
}

#discoveryModal .prompts-venue-selected {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    background: rgba(74,222,128,0.08);
    border: 1px solid rgba(74,222,128,0.2);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--green);
    margin-top: 4px;
}

#discoveryModal .prompts-venue-clear {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 14px;
    padding: 0;
    font-family: inherit;
}

#discoveryModal .prompts-venue-search-header {
    margin-bottom: 12px;
}

#discoveryModal .prompts-venue-back {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    padding: 0 0 12px;
    display: block;
}

#discoveryModal .prompts-venue-back:active {
    color: var(--text-primary);
}

#followUsModal .prompts-modal-content {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 16px;
    max-width: 420px;
    width: calc(100% - 32px);
    margin: auto;
}

#followUsModal .prompts-header {
    text-align: center;
    margin-bottom: 16px;
}

#followUsModal .prompts-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 6px;
}

#followUsModal .prompts-header h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 4px;
}

#followUsModal .prompts-header .prompts-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

#followUsModal .prompts-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
}

#followUsModal .prompts-skip {
    font-size: 12px;
    color: var(--text-muted);
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    padding: 4px;
    text-decoration: underline;
    text-underline-offset: 3px;
}

#followUsModal .follow-us-body {
    margin-bottom: 8px;
}

#followUsModal .follow-us-text {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.5;
}

#followUsModal .follow-us-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#followUsModal .follow-us-list li {
    font-size: 13px;
    color: var(--text-primary);
    font-weight: 600;
    padding: 8px 12px;
    background: rgba(255,255,255,0.04);
    border-radius: 8px;
}

#followUsModal .follow-us-btn {
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    font-family: inherit;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.15s ease;
    box-sizing: border-box;
}

#followUsModal .follow-us-btn:active {
    opacity: 0.85;
}